@@ -480,7 +480,7 @@ class ConnectCluster
480480 attr_accessor :satisfies_pzs
481481 alias_method :satisfies_pzs? , :satisfies_pzs
482482
483- # Output only. The current state of the cluster.
483+ # Output only. The current state of the Kafka Connect cluster.
484484 # Corresponds to the JSON property `state`
485485 # @return [String]
486486 attr_accessor :state
@@ -603,13 +603,15 @@ class Connector
603603 # @return [String]
604604 attr_accessor :state
605605
606- # Task Retry Policy is implemented on a best-effort basis. Retry delay will be
607- # exponential based on provided minimum and maximum backoffs. https://en.
608- # wikipedia.org/wiki/Exponential_backoff. Note that the delay between
609- # consecutive task restarts may not always precisely match the configured
610- # settings. This can happen when the ConnectCluster is in rebalancing state or
611- # if the ConnectCluster is unresponsive etc. The default values for minimum and
612- # maximum backoffs are 60 seconds and 30 minutes respectively.
606+ # Task Retry Policy is implemented on a best-effort basis. The default policy
607+ # retries tasks with a minimum_backoff of 60 seconds, and a maximum_backoff of
608+ # 12 hours. You can disable the policy by setting the task_retry_disabled field
609+ # to true. Retry delay will be exponential based on provided minimum and maximum
610+ # backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. Note that the
611+ # delay between consecutive task restarts may not always precisely match the
612+ # configured settings. This can happen when the ConnectCluster is in rebalancing
613+ # state or if the ConnectCluster is unresponsive etc. The default values for
614+ # minimum and maximum backoffs are 60 seconds and 12 hours respectively.
613615 # Corresponds to the JSON property `taskRestartPolicy`
614616 # @return [Google::Apis::ManagedkafkaV1::TaskRetryPolicy]
615617 attr_accessor :task_restart_policy
@@ -1111,6 +1113,13 @@ class ListOperationsResponse
11111113 # @return [Array<Google::Apis::ManagedkafkaV1::Operation>]
11121114 attr_accessor :operations
11131115
1116+ # Unordered list. Unreachable resources. Populated when the request sets `
1117+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1118+ # when attempting to list all resources across all supported locations.
1119+ # Corresponds to the JSON property `unreachable`
1120+ # @return [Array<String>]
1121+ attr_accessor :unreachable
1122+
11141123 def initialize ( **args )
11151124 update! ( **args )
11161125 end
@@ -1119,6 +1128,7 @@ def initialize(**args)
11191128 def update! ( **args )
11201129 @next_page_token = args [ :next_page_token ] if args . key? ( :next_page_token )
11211130 @operations = args [ :operations ] if args . key? ( :operations )
1131+ @unreachable = args [ :unreachable ] if args . key? ( :unreachable )
11221132 end
11231133 end
11241134
@@ -1804,13 +1814,15 @@ def update!(**args)
18041814 end
18051815 end
18061816
1807- # Task Retry Policy is implemented on a best-effort basis. Retry delay will be
1808- # exponential based on provided minimum and maximum backoffs. https://en.
1809- # wikipedia.org/wiki/Exponential_backoff. Note that the delay between
1810- # consecutive task restarts may not always precisely match the configured
1811- # settings. This can happen when the ConnectCluster is in rebalancing state or
1812- # if the ConnectCluster is unresponsive etc. The default values for minimum and
1813- # maximum backoffs are 60 seconds and 30 minutes respectively.
1817+ # Task Retry Policy is implemented on a best-effort basis. The default policy
1818+ # retries tasks with a minimum_backoff of 60 seconds, and a maximum_backoff of
1819+ # 12 hours. You can disable the policy by setting the task_retry_disabled field
1820+ # to true. Retry delay will be exponential based on provided minimum and maximum
1821+ # backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. Note that the
1822+ # delay between consecutive task restarts may not always precisely match the
1823+ # configured settings. This can happen when the ConnectCluster is in rebalancing
1824+ # state or if the ConnectCluster is unresponsive etc. The default values for
1825+ # minimum and maximum backoffs are 60 seconds and 12 hours respectively.
18141826 class TaskRetryPolicy
18151827 include Google ::Apis ::Core ::Hashable
18161828
@@ -1826,6 +1838,12 @@ class TaskRetryPolicy
18261838 # @return [String]
18271839 attr_accessor :minimum_backoff
18281840
1841+ # Optional. If true, task retry is disabled.
1842+ # Corresponds to the JSON property `taskRetryDisabled`
1843+ # @return [Boolean]
1844+ attr_accessor :task_retry_disabled
1845+ alias_method :task_retry_disabled? , :task_retry_disabled
1846+
18291847 def initialize ( **args )
18301848 update! ( **args )
18311849 end
@@ -1834,6 +1852,7 @@ def initialize(**args)
18341852 def update! ( **args )
18351853 @maximum_backoff = args [ :maximum_backoff ] if args . key? ( :maximum_backoff )
18361854 @minimum_backoff = args [ :minimum_backoff ] if args . key? ( :minimum_backoff )
1855+ @task_retry_disabled = args [ :task_retry_disabled ] if args . key? ( :task_retry_disabled )
18371856 end
18381857 end
18391858
0 commit comments