google-apis-container_v1 0.108.0 → 0.110.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4402c979d1055a1dff9ea32c471e9dc8a6851bb44445d502e39876308c221f4c
4
- data.tar.gz: a6e27b2058de99bc92654c727f4d834c19333e0478d3cd62270de208e3277be6
3
+ metadata.gz: 71ad144326a26b5bce723a06bd6c822919d283a8f95e7dc1e1599571f695205f
4
+ data.tar.gz: ad2d3584eae7be5023fce59130734a61b2b555adb00edd5046ddaeb12f58fff6
5
5
  SHA512:
6
- metadata.gz: 748cc7e05b5305cba5d2ce7ec1208a167f891767ba56dae122e51d8c1d15f8809346fbc39dc516bbfc34a7dee96cd76f6895ae0f2cbcf3ca03788b5377249a51
7
- data.tar.gz: c54e0039f6ae03b7954414cc678f196436af3fe2060de59cda5f7b50aba9dfeb874e848d6df1c377381efec6fdf6a8634c1a8f7047c6a383b5ae77fa39d23b3e
6
+ metadata.gz: 4aecac996e3ba7f9dd3a50c661197adbe7edd03e003883dd7a44d623fb9cf6856fdce87d629cc8f4a0aa311c09399c7a9133855200d99947f4313fb21ad3c440
7
+ data.tar.gz: d6da571f2472218b66ecb8f4d9fdc2f6f6faafea2ee629fc399702342152da6ed89c939f176cb84962dc94f1087fe925026203fcbdb103462e633efdbf57171c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.110.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251125
6
+
7
+ ### v0.109.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251104
10
+
3
11
  ### v0.108.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251028
@@ -2183,6 +2183,12 @@ module Google
2183
2183
  # @return [String]
2184
2184
  attr_accessor :desired_private_ipv6_google_access
2185
2185
 
2186
+ # PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
2187
+ # the cluster.
2188
+ # Corresponds to the JSON property `desiredPrivilegedAdmissionConfig`
2189
+ # @return [Google::Apis::ContainerV1::PrivilegedAdmissionConfig]
2190
+ attr_accessor :desired_privileged_admission_config
2191
+
2186
2192
  # RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
2187
2193
  # that can be created.
2188
2194
  # Corresponds to the JSON property `desiredRbacBindingConfig`
@@ -2340,6 +2346,7 @@ module Google
2340
2346
  @desired_pod_autoscaling = args[:desired_pod_autoscaling] if args.key?(:desired_pod_autoscaling)
2341
2347
  @desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
2342
2348
  @desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
2349
+ @desired_privileged_admission_config = args[:desired_privileged_admission_config] if args.key?(:desired_privileged_admission_config)
2343
2350
  @desired_rbac_binding_config = args[:desired_rbac_binding_config] if args.key?(:desired_rbac_binding_config)
2344
2351
  @desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
2345
2352
  @desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
@@ -2997,6 +3004,48 @@ module Google
2997
3004
  end
2998
3005
  end
2999
3006
 
3007
+ # DisruptionEvent is a notification sent to customers about the disruption event
3008
+ # of a resource.
3009
+ class DisruptionEvent
3010
+ include Google::Apis::Core::Hashable
3011
+
3012
+ # The type of the disruption event.
3013
+ # Corresponds to the JSON property `disruptionType`
3014
+ # @return [String]
3015
+ attr_accessor :disruption_type
3016
+
3017
+ # The node whose drain is blocked by PDB. This field is set for both
3018
+ # POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event.
3019
+ # Corresponds to the JSON property `pdbBlockedNode`
3020
+ # @return [String]
3021
+ attr_accessor :pdb_blocked_node
3022
+
3023
+ # The pods whose evictions are blocked by PDB. This field is set for both
3024
+ # POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event.
3025
+ # Corresponds to the JSON property `pdbBlockedPod`
3026
+ # @return [Array<Google::Apis::ContainerV1::PdbBlockedPod>]
3027
+ attr_accessor :pdb_blocked_pod
3028
+
3029
+ # The timeout in seconds for which the node drain is blocked by PDB. After this
3030
+ # timeout, pods are forcefully evicted. This field is only populated when
3031
+ # event_type is POD_PDB_VIOLATION.
3032
+ # Corresponds to the JSON property `pdbViolationTimeout`
3033
+ # @return [String]
3034
+ attr_accessor :pdb_violation_timeout
3035
+
3036
+ def initialize(**args)
3037
+ update!(**args)
3038
+ end
3039
+
3040
+ # Update properties of this object
3041
+ def update!(**args)
3042
+ @disruption_type = args[:disruption_type] if args.key?(:disruption_type)
3043
+ @pdb_blocked_node = args[:pdb_blocked_node] if args.key?(:pdb_blocked_node)
3044
+ @pdb_blocked_pod = args[:pdb_blocked_pod] if args.key?(:pdb_blocked_pod)
3045
+ @pdb_violation_timeout = args[:pdb_violation_timeout] if args.key?(:pdb_violation_timeout)
3046
+ end
3047
+ end
3048
+
3000
3049
  # Configuration for NodeLocal DNSCache
3001
3050
  class DnsCacheConfig
3002
3051
  include Google::Apis::Core::Hashable
@@ -4361,16 +4410,20 @@ module Google
4361
4410
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
4362
4411
  # net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
4363
4412
  # net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.
4364
- # tcp_max_orphans net.netfilter.nf_conntrack_max net.netfilter.
4365
- # nf_conntrack_buckets net.netfilter.nf_conntrack_tcp_timeout_close_wait net.
4366
- # netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.
4413
+ # tcp_mtu_probing net.ipv4.tcp_max_orphans net.ipv4.tcp_max_tw_buckets net.ipv4.
4414
+ # tcp_syn_retries net.ipv4.tcp_ecn net.ipv4.tcp_congestion_control net.netfilter.
4415
+ # nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.
4416
+ # nf_conntrack_tcp_timeout_close_wait net.netfilter.
4417
+ # nf_conntrack_tcp_timeout_time_wait net.netfilter.
4367
4418
  # nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
4368
- # shmmni kernel.shmmax kernel.shmall fs.aio-max-nr fs.file-max fs.inotify.
4369
- # max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
4370
- # dirty_background_ratio vm.dirty_expire_centisecs vm.dirty_ratio vm.
4371
- # dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory vm.
4372
- # overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.watermark_scale_factor
4373
- # vm.min_free_kbytes
4419
+ # shmmni kernel.shmmax kernel.shmall kernel.perf_event_paranoid kernel.
4420
+ # sched_rt_runtime_us kernel.softlockup_panic kernel.yama.ptrace_scope kernel.
4421
+ # kptr_restrict kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max fs.
4422
+ # inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
4423
+ # dirty_background_ratio vm.dirty_background_bytes vm.dirty_expire_centisecs vm.
4424
+ # dirty_ratio vm.dirty_bytes vm.dirty_writeback_centisecs vm.max_map_count vm.
4425
+ # overcommit_memory vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
4426
+ # watermark_scale_factor vm.min_free_kbytes
4374
4427
  # Corresponds to the JSON property `sysctls`
4375
4428
  # @return [Hash<String,String>]
4376
4429
  attr_accessor :sysctls
@@ -5687,6 +5740,27 @@ module Google
5687
5740
  end
5688
5741
  end
5689
5742
 
5743
+ # NodeDrainConfig contains the node drain related configurations for this
5744
+ # nodepool.
5745
+ class NodeDrainConfig
5746
+ include Google::Apis::Core::Hashable
5747
+
5748
+ # Whether to respect PDB during node pool deletion.
5749
+ # Corresponds to the JSON property `respectPdbDuringNodePoolDeletion`
5750
+ # @return [Boolean]
5751
+ attr_accessor :respect_pdb_during_node_pool_deletion
5752
+ alias_method :respect_pdb_during_node_pool_deletion?, :respect_pdb_during_node_pool_deletion
5753
+
5754
+ def initialize(**args)
5755
+ update!(**args)
5756
+ end
5757
+
5758
+ # Update properties of this object
5759
+ def update!(**args)
5760
+ @respect_pdb_during_node_pool_deletion = args[:respect_pdb_during_node_pool_deletion] if args.key?(:respect_pdb_during_node_pool_deletion)
5761
+ end
5762
+ end
5763
+
5690
5764
  # Configuration for kernel module loading on nodes.
5691
5765
  class NodeKernelModuleLoading
5692
5766
  include Google::Apis::Core::Hashable
@@ -6047,10 +6121,10 @@ module Google
6047
6121
  # @return [String]
6048
6122
  attr_accessor :pod_range
6049
6123
 
6050
- # Output only. The subnetwork path for the node pool. Format: projects/`project`/
6051
- # regions/`region`/subnetworks/`subnetwork` If the cluster is associated with
6052
- # multiple subnetworks, the subnetwork for the node pool is picked based on the
6053
- # IP utilization during node pool creation and is immutable.
6124
+ # The subnetwork path for the node pool. Format: projects/`project`/regions/`
6125
+ # region`/subnetworks/`subnetwork` If the cluster is associated with multiple
6126
+ # subnetworks, the subnetwork for the node pool is picked based on the IP
6127
+ # utilization during node pool creation and is immutable.
6054
6128
  # Corresponds to the JSON property `subnetwork`
6055
6129
  # @return [String]
6056
6130
  attr_accessor :subnetwork
@@ -6166,6 +6240,12 @@ module Google
6166
6240
  # @return [Google::Apis::ContainerV1::NodeNetworkConfig]
6167
6241
  attr_accessor :network_config
6168
6242
 
6243
+ # NodeDrainConfig contains the node drain related configurations for this
6244
+ # nodepool.
6245
+ # Corresponds to the JSON property `nodeDrainConfig`
6246
+ # @return [Google::Apis::ContainerV1::NodeDrainConfig]
6247
+ attr_accessor :node_drain_config
6248
+
6169
6249
  # PlacementPolicy defines the placement policy used by the node pool.
6170
6250
  # Corresponds to the JSON property `placementPolicy`
6171
6251
  # @return [Google::Apis::ContainerV1::PlacementPolicy]
@@ -6264,6 +6344,7 @@ module Google
6264
6344
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
6265
6345
  @name = args[:name] if args.key?(:name)
6266
6346
  @network_config = args[:network_config] if args.key?(:network_config)
6347
+ @node_drain_config = args[:node_drain_config] if args.key?(:node_drain_config)
6267
6348
  @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
6268
6349
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
6269
6350
  @queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
@@ -6797,6 +6878,31 @@ module Google
6797
6878
  end
6798
6879
  end
6799
6880
 
6881
+ # The namespace/name of the pod whose eviction is blocked by PDB.
6882
+ class PdbBlockedPod
6883
+ include Google::Apis::Core::Hashable
6884
+
6885
+ # The name of the pod.
6886
+ # Corresponds to the JSON property `name`
6887
+ # @return [String]
6888
+ attr_accessor :name
6889
+
6890
+ # The namespace of the pod.
6891
+ # Corresponds to the JSON property `namespace`
6892
+ # @return [String]
6893
+ attr_accessor :namespace
6894
+
6895
+ def initialize(**args)
6896
+ update!(**args)
6897
+ end
6898
+
6899
+ # Update properties of this object
6900
+ def update!(**args)
6901
+ @name = args[:name] if args.key?(:name)
6902
+ @namespace = args[:namespace] if args.key?(:namespace)
6903
+ end
6904
+ end
6905
+
6800
6906
  # PlacementPolicy defines the placement policy used by the node pool.
6801
6907
  class PlacementPolicy
6802
6908
  include Google::Apis::Core::Hashable
@@ -7212,7 +7318,7 @@ module Google
7212
7318
  include Google::Apis::Core::Hashable
7213
7319
 
7214
7320
  # An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how this
7215
- # window reccurs. They go on for the span of time between the start and end time.
7321
+ # window recurs. They go on for the span of time between the start and end time.
7216
7322
  # For example, to have something repeat every weekday, you'd use: `FREQ=WEEKLY;
7217
7323
  # BYDAY=MO,TU,WE,TH,FR` To repeat some window daily (equivalent to the
7218
7324
  # DailyMaintenanceWindow): `FREQ=DAILY` For the first weekend of every month: `
@@ -9107,6 +9213,12 @@ module Google
9107
9213
  # @return [String]
9108
9214
  attr_accessor :name
9109
9215
 
9216
+ # NodeDrainConfig contains the node drain related configurations for this
9217
+ # nodepool.
9218
+ # Corresponds to the JSON property `nodeDrainConfig`
9219
+ # @return [Google::Apis::ContainerV1::NodeDrainConfig]
9220
+ attr_accessor :node_drain_config
9221
+
9110
9222
  # Parameters for node pool-level network config.
9111
9223
  # Corresponds to the JSON property `nodeNetworkConfig`
9112
9224
  # @return [Google::Apis::ContainerV1::NodeNetworkConfig]
@@ -9256,6 +9368,7 @@ module Google
9256
9368
  @machine_type = args[:machine_type] if args.key?(:machine_type)
9257
9369
  @max_run_duration = args[:max_run_duration] if args.key?(:max_run_duration)
9258
9370
  @name = args[:name] if args.key?(:name)
9371
+ @node_drain_config = args[:node_drain_config] if args.key?(:node_drain_config)
9259
9372
  @node_network_config = args[:node_network_config] if args.key?(:node_network_config)
9260
9373
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
9261
9374
  @node_version = args[:node_version] if args.key?(:node_version)
@@ -9431,6 +9544,12 @@ module Google
9431
9544
  # @return [String]
9432
9545
  attr_accessor :description
9433
9546
 
9547
+ # DisruptionEvent is a notification sent to customers about the disruption event
9548
+ # of a resource.
9549
+ # Corresponds to the JSON property `disruptionEvent`
9550
+ # @return [Google::Apis::ContainerV1::DisruptionEvent]
9551
+ attr_accessor :disruption_event
9552
+
9434
9553
  # The time when the operation ended.
9435
9554
  # Corresponds to the JSON property `endTime`
9436
9555
  # @return [String]
@@ -9490,6 +9609,7 @@ module Google
9490
9609
  def update!(**args)
9491
9610
  @current_version = args[:current_version] if args.key?(:current_version)
9492
9611
  @description = args[:description] if args.key?(:description)
9612
+ @disruption_event = args[:disruption_event] if args.key?(:disruption_event)
9493
9613
  @end_time = args[:end_time] if args.key?(:end_time)
9494
9614
  @event_type = args[:event_type] if args.key?(:event_type)
9495
9615
  @extended_support_end_time = args[:extended_support_end_time] if args.key?(:extended_support_end_time)
@@ -9675,6 +9795,12 @@ module Google
9675
9795
  # @return [String]
9676
9796
  attr_accessor :control_plane_disk_encryption_key
9677
9797
 
9798
+ # Output only. All of the versions of the Cloud KMS cryptoKey that are used by
9799
+ # Confidential Hyperdisks on the control plane nodes.
9800
+ # Corresponds to the JSON property `controlPlaneDiskEncryptionKeyVersions`
9801
+ # @return [Array<String>]
9802
+ attr_accessor :control_plane_disk_encryption_key_versions
9803
+
9678
9804
  # Resource path of the Certificate Authority Service caPool to use for the etcd
9679
9805
  # API CA in this cluster.
9680
9806
  # Corresponds to the JSON property `etcdApiCa`
@@ -9716,6 +9842,7 @@ module Google
9716
9842
  @aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
9717
9843
  @cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
9718
9844
  @control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
9845
+ @control_plane_disk_encryption_key_versions = args[:control_plane_disk_encryption_key_versions] if args.key?(:control_plane_disk_encryption_key_versions)
9719
9846
  @etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
9720
9847
  @etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
9721
9848
  @gkeops_etcd_backup_encryption_key = args[:gkeops_etcd_backup_encryption_key] if args.key?(:gkeops_etcd_backup_encryption_key)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1
18
18
  # Version of the google-apis-container_v1 gem
19
- GEM_VERSION = "0.108.0"
19
+ GEM_VERSION = "0.110.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251028"
25
+ REVISION = "20251125"
26
26
  end
27
27
  end
28
28
  end
@@ -364,6 +364,12 @@ module Google
364
364
  include Google::Apis::Core::JsonObjectSupport
365
365
  end
366
366
 
367
+ class DisruptionEvent
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
367
373
  class DnsCacheConfig
368
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
375
 
@@ -772,6 +778,12 @@ module Google
772
778
  include Google::Apis::Core::JsonObjectSupport
773
779
  end
774
780
 
781
+ class NodeDrainConfig
782
+ class Representation < Google::Apis::Core::JsonRepresentation; end
783
+
784
+ include Google::Apis::Core::JsonObjectSupport
785
+ end
786
+
775
787
  class NodeKernelModuleLoading
776
788
  class Representation < Google::Apis::Core::JsonRepresentation; end
777
789
 
@@ -886,6 +898,12 @@ module Google
886
898
  include Google::Apis::Core::JsonObjectSupport
887
899
  end
888
900
 
901
+ class PdbBlockedPod
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
889
907
  class PlacementPolicy
890
908
  class Representation < Google::Apis::Core::JsonRepresentation; end
891
909
 
@@ -1911,6 +1929,8 @@ module Google
1911
1929
  property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
1912
1930
 
1913
1931
  property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
1932
+ property :desired_privileged_admission_config, as: 'desiredPrivilegedAdmissionConfig', class: Google::Apis::ContainerV1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1::PrivilegedAdmissionConfig::Representation
1933
+
1914
1934
  property :desired_rbac_binding_config, as: 'desiredRbacBindingConfig', class: Google::Apis::ContainerV1::RbacBindingConfig, decorator: Google::Apis::ContainerV1::RbacBindingConfig::Representation
1915
1935
 
1916
1936
  property :desired_release_channel, as: 'desiredReleaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
@@ -2133,6 +2153,17 @@ module Google
2133
2153
  end
2134
2154
  end
2135
2155
 
2156
+ class DisruptionEvent
2157
+ # @private
2158
+ class Representation < Google::Apis::Core::JsonRepresentation
2159
+ property :disruption_type, as: 'disruptionType'
2160
+ property :pdb_blocked_node, as: 'pdbBlockedNode'
2161
+ collection :pdb_blocked_pod, as: 'pdbBlockedPod', class: Google::Apis::ContainerV1::PdbBlockedPod, decorator: Google::Apis::ContainerV1::PdbBlockedPod::Representation
2162
+
2163
+ property :pdb_violation_timeout, as: 'pdbViolationTimeout'
2164
+ end
2165
+ end
2166
+
2136
2167
  class DnsCacheConfig
2137
2168
  # @private
2138
2169
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2836,6 +2867,13 @@ module Google
2836
2867
  end
2837
2868
  end
2838
2869
 
2870
+ class NodeDrainConfig
2871
+ # @private
2872
+ class Representation < Google::Apis::Core::JsonRepresentation
2873
+ property :respect_pdb_during_node_pool_deletion, as: 'respectPdbDuringNodePoolDeletion'
2874
+ end
2875
+ end
2876
+
2839
2877
  class NodeKernelModuleLoading
2840
2878
  # @private
2841
2879
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2937,6 +2975,8 @@ module Google
2937
2975
  property :name, as: 'name'
2938
2976
  property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
2939
2977
 
2978
+ property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1::NodeDrainConfig, decorator: Google::Apis::ContainerV1::NodeDrainConfig::Representation
2979
+
2940
2980
  property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1::PlacementPolicy, decorator: Google::Apis::ContainerV1::PlacementPolicy::Representation
2941
2981
 
2942
2982
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
@@ -3096,6 +3136,14 @@ module Google
3096
3136
  end
3097
3137
  end
3098
3138
 
3139
+ class PdbBlockedPod
3140
+ # @private
3141
+ class Representation < Google::Apis::Core::JsonRepresentation
3142
+ property :name, as: 'name'
3143
+ property :namespace, as: 'namespace'
3144
+ end
3145
+ end
3146
+
3099
3147
  class PlacementPolicy
3100
3148
  # @private
3101
3149
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3692,6 +3740,8 @@ module Google
3692
3740
  property :machine_type, as: 'machineType'
3693
3741
  property :max_run_duration, as: 'maxRunDuration'
3694
3742
  property :name, as: 'name'
3743
+ property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1::NodeDrainConfig, decorator: Google::Apis::ContainerV1::NodeDrainConfig::Representation
3744
+
3695
3745
  property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
3696
3746
 
3697
3747
  property :node_pool_id, as: 'nodePoolId'
@@ -3758,6 +3808,8 @@ module Google
3758
3808
  class Representation < Google::Apis::Core::JsonRepresentation
3759
3809
  property :current_version, as: 'currentVersion'
3760
3810
  property :description, as: 'description'
3811
+ property :disruption_event, as: 'disruptionEvent', class: Google::Apis::ContainerV1::DisruptionEvent, decorator: Google::Apis::ContainerV1::DisruptionEvent::Representation
3812
+
3761
3813
  property :end_time, as: 'endTime'
3762
3814
  property :event_type, as: 'eventType'
3763
3815
  property :extended_support_end_time, as: 'extendedSupportEndTime'
@@ -3809,6 +3861,7 @@ module Google
3809
3861
  property :aggregation_ca, as: 'aggregationCa'
3810
3862
  property :cluster_ca, as: 'clusterCa'
3811
3863
  property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
3864
+ collection :control_plane_disk_encryption_key_versions, as: 'controlPlaneDiskEncryptionKeyVersions'
3812
3865
  property :etcd_api_ca, as: 'etcdApiCa'
3813
3866
  property :etcd_peer_ca, as: 'etcdPeerCa'
3814
3867
  property :gkeops_etcd_backup_encryption_key, as: 'gkeopsEtcdBackupEncryptionKey'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.108.0
4
+ version: 0.110.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.108.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.110.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
62
62
  rdoc_options: []
63
63
  require_paths: