maxAttempts = $maxAttempts; } /** * @return int */ public function getMaxAttempts() { return $this->maxAttempts; } /** * Optional. The maximum amount of seconds to wait between retry attempts. The * value must be between 1 and 600. The default value for this field is 60. * * @param string $maxRetryDelay */ public function setMaxRetryDelay($maxRetryDelay) { $this->maxRetryDelay = $maxRetryDelay; } /** * @return string */ public function getMaxRetryDelay() { return $this->maxRetryDelay; } /** * Optional. The minimum amount of seconds to wait between retry attempts. The * value must be between 1 and 600. The default value for this field is 5. * * @param string $minRetryDelay */ public function setMinRetryDelay($minRetryDelay) { $this->minRetryDelay = $minRetryDelay; } /** * @return string */ public function getMinRetryDelay() { return $this->minRetryDelay; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudEventarcV1PipelineRetryPolicy::class, 'Google_Service_Eventarc_GoogleCloudEventarcV1PipelineRetryPolicy');