google-apis-container_v1beta1 0.96.0 → 0.98.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: 5756ac2b5af2cb6850258fe6d94dbd5d56ebd3ee934fc1bf74a78e0542dcadf1
4
- data.tar.gz: a1552aedad30ff23e871b0cff9676147ecaf3acb061c4cd5941554a2b6bcd766
3
+ metadata.gz: d74461194892b18df364d083cc6b235ceeb2a16878ef7c0933bbb2fbb92e0e50
4
+ data.tar.gz: 9faab6ea740b2daa01f7b5638f78d9a8be8a59ecf84c45eeaecb3281b7b0b7fd
5
5
  SHA512:
6
- metadata.gz: 370a05c67019b96130c8a29c3f1899428a754972162131c7f130334dd54f0c08e147cfd4de2fe17899cff0099f0e81377ccca4dfb2aa1ad9bfa77246ce3f9cef
7
- data.tar.gz: 208b0c3c0116e309d77e33cabb41bf794cc788832f656660abc3c34a61ef3ac112fd6ccbd72a441b82600ce48adefabd1033e88556818240ba2e2b35a294c377
6
+ metadata.gz: cc83379461fd8fa3a8af2895cf81080d1d7876c2532bf1c8bebca53e9d20a524657bf0eff9f2ffb0f289ebcdef26a832429ac7fcd0259fd58ea93dc52f498eca
7
+ data.tar.gz: 68e5eb93fa2048b069e4fd01bc9583a635dc5f060d073d195368d3527b6952b75f4464c733633ca67083264a24ac1018a42e3290819b0d982bab7faa2ec6b361
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.98.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251125
6
+
7
+ ### v0.97.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251104
10
+
3
11
  ### v0.96.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251028
@@ -2427,6 +2427,12 @@ module Google
2427
2427
  # @return [String]
2428
2428
  attr_accessor :desired_private_ipv6_google_access
2429
2429
 
2430
+ # PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
2431
+ # the cluster.
2432
+ # Corresponds to the JSON property `desiredPrivilegedAdmissionConfig`
2433
+ # @return [Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig]
2434
+ attr_accessor :desired_privileged_admission_config
2435
+
2430
2436
  # ProtectConfig defines the flags needed to enable/disable features for the
2431
2437
  # Protect API.
2432
2438
  # Corresponds to the JSON property `desiredProtectConfig`
@@ -2627,6 +2633,7 @@ module Google
2627
2633
  @desired_pod_security_policy_config = args[:desired_pod_security_policy_config] if args.key?(:desired_pod_security_policy_config)
2628
2634
  @desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
2629
2635
  @desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
2636
+ @desired_privileged_admission_config = args[:desired_privileged_admission_config] if args.key?(:desired_privileged_admission_config)
2630
2637
  @desired_protect_config = args[:desired_protect_config] if args.key?(:desired_protect_config)
2631
2638
  @desired_rbac_binding_config = args[:desired_rbac_binding_config] if args.key?(:desired_rbac_binding_config)
2632
2639
  @desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
@@ -3405,6 +3412,48 @@ module Google
3405
3412
  end
3406
3413
  end
3407
3414
 
3415
+ # DisruptionEvent is a notification sent to customers about the disruption event
3416
+ # of a resource.
3417
+ class DisruptionEvent
3418
+ include Google::Apis::Core::Hashable
3419
+
3420
+ # The type of the disruption event.
3421
+ # Corresponds to the JSON property `disruptionType`
3422
+ # @return [String]
3423
+ attr_accessor :disruption_type
3424
+
3425
+ # The node whose drain is blocked by PDB. This field is set for both
3426
+ # POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event.
3427
+ # Corresponds to the JSON property `pdbBlockedNode`
3428
+ # @return [String]
3429
+ attr_accessor :pdb_blocked_node
3430
+
3431
+ # The pods whose evictions are blocked by PDB. This field is set for both
3432
+ # POD_PDB_VIOLATION and POD_NOT_ENOUGH_PDB event.
3433
+ # Corresponds to the JSON property `pdbBlockedPod`
3434
+ # @return [Array<Google::Apis::ContainerV1beta1::PdbBlockedPod>]
3435
+ attr_accessor :pdb_blocked_pod
3436
+
3437
+ # The timeout in seconds for which the node drain is blocked by PDB. After this
3438
+ # timeout, pods are forcefully evicted. This field is only populated when
3439
+ # event_type is POD_PDB_VIOLATION.
3440
+ # Corresponds to the JSON property `pdbViolationTimeout`
3441
+ # @return [String]
3442
+ attr_accessor :pdb_violation_timeout
3443
+
3444
+ def initialize(**args)
3445
+ update!(**args)
3446
+ end
3447
+
3448
+ # Update properties of this object
3449
+ def update!(**args)
3450
+ @disruption_type = args[:disruption_type] if args.key?(:disruption_type)
3451
+ @pdb_blocked_node = args[:pdb_blocked_node] if args.key?(:pdb_blocked_node)
3452
+ @pdb_blocked_pod = args[:pdb_blocked_pod] if args.key?(:pdb_blocked_pod)
3453
+ @pdb_violation_timeout = args[:pdb_violation_timeout] if args.key?(:pdb_violation_timeout)
3454
+ end
3455
+ end
3456
+
3408
3457
  # Configuration for NodeLocal DNSCache
3409
3458
  class DnsCacheConfig
3410
3459
  include Google::Apis::Core::Hashable
@@ -4934,16 +4983,20 @@ module Google
4934
4983
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
4935
4984
  # net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
4936
4985
  # net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.
4937
- # tcp_max_orphans net.netfilter.nf_conntrack_max net.netfilter.
4938
- # nf_conntrack_buckets net.netfilter.nf_conntrack_tcp_timeout_close_wait net.
4939
- # netfilter.nf_conntrack_tcp_timeout_time_wait net.netfilter.
4986
+ # tcp_mtu_probing net.ipv4.tcp_max_orphans net.ipv4.tcp_max_tw_buckets net.ipv4.
4987
+ # tcp_syn_retries net.ipv4.tcp_ecn net.ipv4.tcp_congestion_control net.netfilter.
4988
+ # nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.
4989
+ # nf_conntrack_tcp_timeout_close_wait net.netfilter.
4990
+ # nf_conntrack_tcp_timeout_time_wait net.netfilter.
4940
4991
  # nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
4941
- # shmmni kernel.shmmax kernel.shmall fs.aio-max-nr fs.file-max fs.inotify.
4942
- # max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
4943
- # dirty_background_ratio vm.dirty_expire_centisecs vm.dirty_ratio vm.
4944
- # dirty_writeback_centisecs vm.max_map_count vm.overcommit_memory vm.
4945
- # overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.watermark_scale_factor
4946
- # vm.min_free_kbytes
4992
+ # shmmni kernel.shmmax kernel.shmall kernel.perf_event_paranoid kernel.
4993
+ # sched_rt_runtime_us kernel.softlockup_panic kernel.yama.ptrace_scope kernel.
4994
+ # kptr_restrict kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max fs.
4995
+ # inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
4996
+ # dirty_background_ratio vm.dirty_background_bytes vm.dirty_expire_centisecs vm.
4997
+ # dirty_ratio vm.dirty_bytes vm.dirty_writeback_centisecs vm.max_map_count vm.
4998
+ # overcommit_memory vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
4999
+ # watermark_scale_factor vm.min_free_kbytes
4947
5000
  # Corresponds to the JSON property `sysctls`
4948
5001
  # @return [Hash<String,String>]
4949
5002
  attr_accessor :sysctls
@@ -6369,6 +6422,27 @@ module Google
6369
6422
  end
6370
6423
  end
6371
6424
 
6425
+ # NodeDrainConfig contains the node drain related configurations for this
6426
+ # nodepool.
6427
+ class NodeDrainConfig
6428
+ include Google::Apis::Core::Hashable
6429
+
6430
+ # Whether to respect PDB during node pool deletion.
6431
+ # Corresponds to the JSON property `respectPdbDuringNodePoolDeletion`
6432
+ # @return [Boolean]
6433
+ attr_accessor :respect_pdb_during_node_pool_deletion
6434
+ alias_method :respect_pdb_during_node_pool_deletion?, :respect_pdb_during_node_pool_deletion
6435
+
6436
+ def initialize(**args)
6437
+ update!(**args)
6438
+ end
6439
+
6440
+ # Update properties of this object
6441
+ def update!(**args)
6442
+ @respect_pdb_during_node_pool_deletion = args[:respect_pdb_during_node_pool_deletion] if args.key?(:respect_pdb_during_node_pool_deletion)
6443
+ end
6444
+ end
6445
+
6372
6446
  # Configuration for kernel module loading on nodes.
6373
6447
  class NodeKernelModuleLoading
6374
6448
  include Google::Apis::Core::Hashable
@@ -6732,10 +6806,10 @@ module Google
6732
6806
  # @return [String]
6733
6807
  attr_accessor :pod_range
6734
6808
 
6735
- # Output only. The subnetwork path for the node pool. Format: projects/`project`/
6736
- # regions/`region`/subnetworks/`subnetwork` If the cluster is associated with
6737
- # multiple subnetworks, the subnetwork for the node pool is picked based on the
6738
- # IP utilization during node pool creation and is immutable.
6809
+ # The subnetwork path for the node pool. Format: projects/`project`/regions/`
6810
+ # region`/subnetworks/`subnetwork` If the cluster is associated with multiple
6811
+ # subnetworks, the subnetwork for the node pool is picked based on the IP
6812
+ # utilization during node pool creation and is immutable.
6739
6813
  # Corresponds to the JSON property `subnetwork`
6740
6814
  # @return [String]
6741
6815
  attr_accessor :subnetwork
@@ -6852,6 +6926,12 @@ module Google
6852
6926
  # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
6853
6927
  attr_accessor :network_config
6854
6928
 
6929
+ # NodeDrainConfig contains the node drain related configurations for this
6930
+ # nodepool.
6931
+ # Corresponds to the JSON property `nodeDrainConfig`
6932
+ # @return [Google::Apis::ContainerV1beta1::NodeDrainConfig]
6933
+ attr_accessor :node_drain_config
6934
+
6855
6935
  # PlacementPolicy defines the placement policy used by the node pool.
6856
6936
  # Corresponds to the JSON property `placementPolicy`
6857
6937
  # @return [Google::Apis::ContainerV1beta1::PlacementPolicy]
@@ -6950,6 +7030,7 @@ module Google
6950
7030
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
6951
7031
  @name = args[:name] if args.key?(:name)
6952
7032
  @network_config = args[:network_config] if args.key?(:network_config)
7033
+ @node_drain_config = args[:node_drain_config] if args.key?(:node_drain_config)
6953
7034
  @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
6954
7035
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
6955
7036
  @queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
@@ -7521,6 +7602,31 @@ module Google
7521
7602
  end
7522
7603
  end
7523
7604
 
7605
+ # The namespace/name of the pod whose eviction is blocked by PDB.
7606
+ class PdbBlockedPod
7607
+ include Google::Apis::Core::Hashable
7608
+
7609
+ # The name of the pod.
7610
+ # Corresponds to the JSON property `name`
7611
+ # @return [String]
7612
+ attr_accessor :name
7613
+
7614
+ # The namespace of the pod.
7615
+ # Corresponds to the JSON property `namespace`
7616
+ # @return [String]
7617
+ attr_accessor :namespace
7618
+
7619
+ def initialize(**args)
7620
+ update!(**args)
7621
+ end
7622
+
7623
+ # Update properties of this object
7624
+ def update!(**args)
7625
+ @name = args[:name] if args.key?(:name)
7626
+ @namespace = args[:namespace] if args.key?(:namespace)
7627
+ end
7628
+ end
7629
+
7524
7630
  # PlacementPolicy defines the placement policy used by the node pool.
7525
7631
  class PlacementPolicy
7526
7632
  include Google::Apis::Core::Hashable
@@ -10119,6 +10225,12 @@ module Google
10119
10225
  # @return [String]
10120
10226
  attr_accessor :name
10121
10227
 
10228
+ # NodeDrainConfig contains the node drain related configurations for this
10229
+ # nodepool.
10230
+ # Corresponds to the JSON property `nodeDrainConfig`
10231
+ # @return [Google::Apis::ContainerV1beta1::NodeDrainConfig]
10232
+ attr_accessor :node_drain_config
10233
+
10122
10234
  # Parameters for node pool-level network config.
10123
10235
  # Corresponds to the JSON property `nodeNetworkConfig`
10124
10236
  # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
@@ -10269,6 +10381,7 @@ module Google
10269
10381
  @machine_type = args[:machine_type] if args.key?(:machine_type)
10270
10382
  @max_run_duration = args[:max_run_duration] if args.key?(:max_run_duration)
10271
10383
  @name = args[:name] if args.key?(:name)
10384
+ @node_drain_config = args[:node_drain_config] if args.key?(:node_drain_config)
10272
10385
  @node_network_config = args[:node_network_config] if args.key?(:node_network_config)
10273
10386
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
10274
10387
  @node_version = args[:node_version] if args.key?(:node_version)
@@ -10479,6 +10592,12 @@ module Google
10479
10592
  # @return [String]
10480
10593
  attr_accessor :description
10481
10594
 
10595
+ # DisruptionEvent is a notification sent to customers about the disruption event
10596
+ # of a resource.
10597
+ # Corresponds to the JSON property `disruptionEvent`
10598
+ # @return [Google::Apis::ContainerV1beta1::DisruptionEvent]
10599
+ attr_accessor :disruption_event
10600
+
10482
10601
  # The time when the operation ended.
10483
10602
  # Corresponds to the JSON property `endTime`
10484
10603
  # @return [String]
@@ -10544,6 +10663,7 @@ module Google
10544
10663
  @current_emulated_version = args[:current_emulated_version] if args.key?(:current_emulated_version)
10545
10664
  @current_version = args[:current_version] if args.key?(:current_version)
10546
10665
  @description = args[:description] if args.key?(:description)
10666
+ @disruption_event = args[:disruption_event] if args.key?(:disruption_event)
10547
10667
  @end_time = args[:end_time] if args.key?(:end_time)
10548
10668
  @event_type = args[:event_type] if args.key?(:event_type)
10549
10669
  @extended_support_end_time = args[:extended_support_end_time] if args.key?(:extended_support_end_time)
@@ -10730,6 +10850,12 @@ module Google
10730
10850
  # @return [String]
10731
10851
  attr_accessor :control_plane_disk_encryption_key
10732
10852
 
10853
+ # Output only. All of the versions of the Cloud KMS cryptoKey that are used by
10854
+ # Confidential Hyperdisks on the control plane nodes.
10855
+ # Corresponds to the JSON property `controlPlaneDiskEncryptionKeyVersions`
10856
+ # @return [Array<String>]
10857
+ attr_accessor :control_plane_disk_encryption_key_versions
10858
+
10733
10859
  # Resource path of the Certificate Authority Service caPool to use for the etcd
10734
10860
  # API CA in this cluster.
10735
10861
  # Corresponds to the JSON property `etcdApiCa`
@@ -10771,6 +10897,7 @@ module Google
10771
10897
  @aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
10772
10898
  @cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
10773
10899
  @control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
10900
+ @control_plane_disk_encryption_key_versions = args[:control_plane_disk_encryption_key_versions] if args.key?(:control_plane_disk_encryption_key_versions)
10774
10901
  @etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
10775
10902
  @etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
10776
10903
  @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 ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.96.0"
19
+ GEM_VERSION = "0.98.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
@@ -412,6 +412,12 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class DisruptionEvent
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
415
421
  class DnsCacheConfig
416
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
423
 
@@ -874,6 +880,12 @@ module Google
874
880
  include Google::Apis::Core::JsonObjectSupport
875
881
  end
876
882
 
883
+ class NodeDrainConfig
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
877
889
  class NodeKernelModuleLoading
878
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
891
 
@@ -994,6 +1006,12 @@ module Google
994
1006
  include Google::Apis::Core::JsonObjectSupport
995
1007
  end
996
1008
 
1009
+ class PdbBlockedPod
1010
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1011
+
1012
+ include Google::Apis::Core::JsonObjectSupport
1013
+ end
1014
+
997
1015
  class PlacementPolicy
998
1016
  class Representation < Google::Apis::Core::JsonRepresentation; end
999
1017
 
@@ -2179,6 +2197,8 @@ module Google
2179
2197
  property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1beta1::PrivateClusterConfig::Representation
2180
2198
 
2181
2199
  property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
2200
+ property :desired_privileged_admission_config, as: 'desiredPrivilegedAdmissionConfig', class: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig::Representation
2201
+
2182
2202
  property :desired_protect_config, as: 'desiredProtectConfig', class: Google::Apis::ContainerV1beta1::ProtectConfig, decorator: Google::Apis::ContainerV1beta1::ProtectConfig::Representation
2183
2203
 
2184
2204
  property :desired_rbac_binding_config, as: 'desiredRbacBindingConfig', class: Google::Apis::ContainerV1beta1::RbacBindingConfig, decorator: Google::Apis::ContainerV1beta1::RbacBindingConfig::Representation
@@ -2448,6 +2468,17 @@ module Google
2448
2468
  end
2449
2469
  end
2450
2470
 
2471
+ class DisruptionEvent
2472
+ # @private
2473
+ class Representation < Google::Apis::Core::JsonRepresentation
2474
+ property :disruption_type, as: 'disruptionType'
2475
+ property :pdb_blocked_node, as: 'pdbBlockedNode'
2476
+ collection :pdb_blocked_pod, as: 'pdbBlockedPod', class: Google::Apis::ContainerV1beta1::PdbBlockedPod, decorator: Google::Apis::ContainerV1beta1::PdbBlockedPod::Representation
2477
+
2478
+ property :pdb_violation_timeout, as: 'pdbViolationTimeout'
2479
+ end
2480
+ end
2481
+
2451
2482
  class DnsCacheConfig
2452
2483
  # @private
2453
2484
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3233,6 +3264,13 @@ module Google
3233
3264
  end
3234
3265
  end
3235
3266
 
3267
+ class NodeDrainConfig
3268
+ # @private
3269
+ class Representation < Google::Apis::Core::JsonRepresentation
3270
+ property :respect_pdb_during_node_pool_deletion, as: 'respectPdbDuringNodePoolDeletion'
3271
+ end
3272
+ end
3273
+
3236
3274
  class NodeKernelModuleLoading
3237
3275
  # @private
3238
3276
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3335,6 +3373,8 @@ module Google
3335
3373
  property :name, as: 'name'
3336
3374
  property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
3337
3375
 
3376
+ property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1beta1::NodeDrainConfig, decorator: Google::Apis::ContainerV1beta1::NodeDrainConfig::Representation
3377
+
3338
3378
  property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
3339
3379
 
3340
3380
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
@@ -3503,6 +3543,14 @@ module Google
3503
3543
  end
3504
3544
  end
3505
3545
 
3546
+ class PdbBlockedPod
3547
+ # @private
3548
+ class Representation < Google::Apis::Core::JsonRepresentation
3549
+ property :name, as: 'name'
3550
+ property :namespace, as: 'namespace'
3551
+ end
3552
+ end
3553
+
3506
3554
  class PlacementPolicy
3507
3555
  # @private
3508
3556
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4191,6 +4239,8 @@ module Google
4191
4239
  property :machine_type, as: 'machineType'
4192
4240
  property :max_run_duration, as: 'maxRunDuration'
4193
4241
  property :name, as: 'name'
4242
+ property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1beta1::NodeDrainConfig, decorator: Google::Apis::ContainerV1beta1::NodeDrainConfig::Representation
4243
+
4194
4244
  property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
4195
4245
 
4196
4246
  property :node_pool_id, as: 'nodePoolId'
@@ -4264,6 +4314,8 @@ module Google
4264
4314
  property :current_emulated_version, as: 'currentEmulatedVersion'
4265
4315
  property :current_version, as: 'currentVersion'
4266
4316
  property :description, as: 'description'
4317
+ property :disruption_event, as: 'disruptionEvent', class: Google::Apis::ContainerV1beta1::DisruptionEvent, decorator: Google::Apis::ContainerV1beta1::DisruptionEvent::Representation
4318
+
4267
4319
  property :end_time, as: 'endTime'
4268
4320
  property :event_type, as: 'eventType'
4269
4321
  property :extended_support_end_time, as: 'extendedSupportEndTime'
@@ -4316,6 +4368,7 @@ module Google
4316
4368
  property :aggregation_ca, as: 'aggregationCa'
4317
4369
  property :cluster_ca, as: 'clusterCa'
4318
4370
  property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
4371
+ collection :control_plane_disk_encryption_key_versions, as: 'controlPlaneDiskEncryptionKeyVersions'
4319
4372
  property :etcd_api_ca, as: 'etcdApiCa'
4320
4373
  property :etcd_peer_ca, as: 'etcdPeerCa'
4321
4374
  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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.96.0
4
+ version: 0.98.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.96.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.98.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: