google-apis-container_v1beta1 0.61.0 → 0.63.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f85c06d0b17add17e25cb4258e7f8bfcb7445b1b75c66a785e52e3d723ce023
4
- data.tar.gz: 3ad490a37d2edd92ef5007c1a1152865e0deb9f7c16f0a37afbd69dc9488e333
3
+ metadata.gz: 91ddb50328baf2820305b84e057a0fe7f120153e788aa167c71c4968b95b7612
4
+ data.tar.gz: f14fb2172e7daf6250d46e7a7089753a8d663420f8daa7bbbcffe19a818a0198
5
5
  SHA512:
6
- metadata.gz: 5d9e47f97de23eab5bb4df02cfc2f3007b74848ea151968b86c3f74fe64c3f7040d702ce7bea613e14111a3fc2386c761872fd0e25a6eedff2023429d7bbd983
7
- data.tar.gz: 73c4dc4d92680188472765483543ba4de5a7d607e1a5d508659e06f02a049314bea4ae5f3ce661f26e4f58a4f8bae55718e8eb0a07c602f2d06d3e1bdfc4ebc4
6
+ metadata.gz: fafefc5a379442b69a788649a206af3e5c5e3c4e0ada45be783bef9f49187bc706949d109f8f5c987915c64790924f26ec560fbd45ccc1b781675bf8fab3a434
7
+ data.tar.gz: 565cad0f602f96d694f547412c5c2856eb0034d545cdb025aa06d3554487cab2605e2af6438dff99b3aa446bed312b841bb2de02c18d5257411292941ec697cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.63.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231122
6
+
7
+ ### v0.62.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231030
10
+
3
11
  ### v0.61.0 (2023-11-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20231024
@@ -269,6 +269,12 @@ module Google
269
269
  attr_accessor :enable_metrics
270
270
  alias_method :enable_metrics?, :enable_metrics
271
271
 
272
+ # Enable Relay component
273
+ # Corresponds to the JSON property `enableRelay`
274
+ # @return [Boolean]
275
+ attr_accessor :enable_relay
276
+ alias_method :enable_relay?, :enable_relay
277
+
272
278
  # Method used to make Relay available
273
279
  # Corresponds to the JSON property `relayMode`
274
280
  # @return [String]
@@ -281,6 +287,7 @@ module Google
281
287
  # Update properties of this object
282
288
  def update!(**args)
283
289
  @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
290
+ @enable_relay = args[:enable_relay] if args.key?(:enable_relay)
284
291
  @relay_mode = args[:relay_mode] if args.key?(:relay_mode)
285
292
  end
286
293
  end
@@ -367,6 +374,11 @@ module Google
367
374
  class Autopilot
368
375
  include Google::Apis::Core::Hashable
369
376
 
377
+ # AutopilotConversionStatus represents conversion status.
378
+ # Corresponds to the JSON property `conversionStatus`
379
+ # @return [Google::Apis::ContainerV1beta1::AutopilotConversionStatus]
380
+ attr_accessor :conversion_status
381
+
370
382
  # Enable Autopilot
371
383
  # Corresponds to the JSON property `enabled`
372
384
  # @return [Boolean]
@@ -385,6 +397,7 @@ module Google
385
397
 
386
398
  # Update properties of this object
387
399
  def update!(**args)
400
+ @conversion_status = args[:conversion_status] if args.key?(:conversion_status)
388
401
  @enabled = args[:enabled] if args.key?(:enabled)
389
402
  @workload_policy_config = args[:workload_policy_config] if args.key?(:workload_policy_config)
390
403
  end
@@ -440,6 +453,25 @@ module Google
440
453
  end
441
454
  end
442
455
 
456
+ # AutopilotConversionStatus represents conversion status.
457
+ class AutopilotConversionStatus
458
+ include Google::Apis::Core::Hashable
459
+
460
+ # Output only. The current state of the conversion.
461
+ # Corresponds to the JSON property `state`
462
+ # @return [String]
463
+ attr_accessor :state
464
+
465
+ def initialize(**args)
466
+ update!(**args)
467
+ end
468
+
469
+ # Update properties of this object
470
+ def update!(**args)
471
+ @state = args[:state] if args.key?(:state)
472
+ end
473
+ end
474
+
443
475
  # AutoprovisioningNodePoolDefaults contains defaults for a node pool created by
444
476
  # NAP.
445
477
  class AutoprovisioningNodePoolDefaults
@@ -522,6 +554,20 @@ module Google
522
554
  # @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
523
555
  attr_accessor :shielded_instance_config
524
556
 
557
+ # These upgrade settings control the level of parallelism and the level of
558
+ # disruption caused by an upgrade. maxUnavailable controls the number of nodes
559
+ # that can be simultaneously unavailable. maxSurge controls the number of
560
+ # additional nodes that can be added to the node pool temporarily for the time
561
+ # of the upgrade to increase the number of available nodes. (maxUnavailable +
562
+ # maxSurge) determines the level of parallelism (how many nodes are being
563
+ # upgraded at the same time). Note: upgrades inevitably introduce some
564
+ # disruption since workloads need to be moved from old nodes to new, upgraded
565
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
566
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
567
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
568
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
569
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
570
+ # same time. This ensures that there are always at least 4 nodes available.
525
571
  # These upgrade settings configure the upgrade strategy for the node pool. Use
526
572
  # strategy to switch between the strategies applied to the node pool. If the
527
573
  # strategy is SURGE, use max_surge and max_unavailable to control the level of
@@ -2192,20 +2238,7 @@ module Google
2192
2238
  # specification, under the control of the cluster master. They may have a set of
2193
2239
  # Kubernetes labels applied to them, which may be used to reference them during
2194
2240
  # pod scheduling. They may also be resized up or down, to accommodate the
2195
- # workload. These upgrade settings control the level of parallelism and the
2196
- # level of disruption caused by an upgrade. maxUnavailable controls the number
2197
- # of nodes that can be simultaneously unavailable. maxSurge controls the number
2198
- # of additional nodes that can be added to the node pool temporarily for the
2199
- # time of the upgrade to increase the number of available nodes. (maxUnavailable
2200
- # + maxSurge) determines the level of parallelism (how many nodes are being
2201
- # upgraded at the same time). Note: upgrades inevitably introduce some
2202
- # disruption since workloads need to be moved from old nodes to new, upgraded
2203
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
2204
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
2205
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
2206
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
2207
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
2208
- # same time. This ensures that there are always at least 4 nodes available.
2241
+ # workload.
2209
2242
  # Corresponds to the JSON property `nodePool`
2210
2243
  # @return [Google::Apis::ContainerV1beta1::NodePool]
2211
2244
  attr_accessor :node_pool
@@ -4805,20 +4838,7 @@ module Google
4805
4838
  # specification, under the control of the cluster master. They may have a set of
4806
4839
  # Kubernetes labels applied to them, which may be used to reference them during
4807
4840
  # pod scheduling. They may also be resized up or down, to accommodate the
4808
- # workload. These upgrade settings control the level of parallelism and the
4809
- # level of disruption caused by an upgrade. maxUnavailable controls the number
4810
- # of nodes that can be simultaneously unavailable. maxSurge controls the number
4811
- # of additional nodes that can be added to the node pool temporarily for the
4812
- # time of the upgrade to increase the number of available nodes. (maxUnavailable
4813
- # + maxSurge) determines the level of parallelism (how many nodes are being
4814
- # upgraded at the same time). Note: upgrades inevitably introduce some
4815
- # disruption since workloads need to be moved from old nodes to new, upgraded
4816
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
4817
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
4818
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
4819
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
4820
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
4821
- # same time. This ensures that there are always at least 4 nodes available.
4841
+ # workload.
4822
4842
  class NodePool
4823
4843
  include Google::Apis::Core::Hashable
4824
4844
 
@@ -4909,6 +4929,11 @@ module Google
4909
4929
  # @return [Fixnum]
4910
4930
  attr_accessor :pod_ipv4_cidr_size
4911
4931
 
4932
+ # QueuedProvisioning defines the queued provisioning used by the node pool.
4933
+ # Corresponds to the JSON property `queuedProvisioning`
4934
+ # @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
4935
+ attr_accessor :queued_provisioning
4936
+
4912
4937
  # [Output only] Server-defined URL for the resource.
4913
4938
  # Corresponds to the JSON property `selfLink`
4914
4939
  # @return [String]
@@ -4931,6 +4956,20 @@ module Google
4931
4956
  # @return [Google::Apis::ContainerV1beta1::UpdateInfo]
4932
4957
  attr_accessor :update_info
4933
4958
 
4959
+ # These upgrade settings control the level of parallelism and the level of
4960
+ # disruption caused by an upgrade. maxUnavailable controls the number of nodes
4961
+ # that can be simultaneously unavailable. maxSurge controls the number of
4962
+ # additional nodes that can be added to the node pool temporarily for the time
4963
+ # of the upgrade to increase the number of available nodes. (maxUnavailable +
4964
+ # maxSurge) determines the level of parallelism (how many nodes are being
4965
+ # upgraded at the same time). Note: upgrades inevitably introduce some
4966
+ # disruption since workloads need to be moved from old nodes to new, upgraded
4967
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
4968
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
4969
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
4970
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
4971
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
4972
+ # same time. This ensures that there are always at least 4 nodes available.
4934
4973
  # These upgrade settings configure the upgrade strategy for the node pool. Use
4935
4974
  # strategy to switch between the strategies applied to the node pool. If the
4936
4975
  # strategy is SURGE, use max_surge and max_unavailable to control the level of
@@ -4979,6 +5018,7 @@ module Google
4979
5018
  @network_config = args[:network_config] if args.key?(:network_config)
4980
5019
  @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
4981
5020
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
5021
+ @queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
4982
5022
  @self_link = args[:self_link] if args.key?(:self_link)
4983
5023
  @status = args[:status] if args.key?(:status)
4984
5024
  @status_message = args[:status_message] if args.key?(:status_message)
@@ -5676,6 +5716,27 @@ module Google
5676
5716
  end
5677
5717
  end
5678
5718
 
5719
+ # QueuedProvisioning defines the queued provisioning used by the node pool.
5720
+ class QueuedProvisioning
5721
+ include Google::Apis::Core::Hashable
5722
+
5723
+ # Denotes that this nodepool is QRM specific, meaning nodes can be only obtained
5724
+ # through queuing via the Cluster Autoscaler ProvisioningRequest API.
5725
+ # Corresponds to the JSON property `enabled`
5726
+ # @return [Boolean]
5727
+ attr_accessor :enabled
5728
+ alias_method :enabled?, :enabled
5729
+
5730
+ def initialize(**args)
5731
+ update!(**args)
5732
+ end
5733
+
5734
+ # Update properties of this object
5735
+ def update!(**args)
5736
+ @enabled = args[:enabled] if args.key?(:enabled)
5737
+ end
5738
+ end
5739
+
5679
5740
  # RangeInfo contains the range name and the range utilization by this cluster.
5680
5741
  class RangeInfo
5681
5742
  include Google::Apis::Core::Hashable
@@ -7443,6 +7504,20 @@ module Google
7443
7504
  # @return [Google::Apis::ContainerV1beta1::NodeTaints]
7444
7505
  attr_accessor :taints
7445
7506
 
7507
+ # These upgrade settings control the level of parallelism and the level of
7508
+ # disruption caused by an upgrade. maxUnavailable controls the number of nodes
7509
+ # that can be simultaneously unavailable. maxSurge controls the number of
7510
+ # additional nodes that can be added to the node pool temporarily for the time
7511
+ # of the upgrade to increase the number of available nodes. (maxUnavailable +
7512
+ # maxSurge) determines the level of parallelism (how many nodes are being
7513
+ # upgraded at the same time). Note: upgrades inevitably introduce some
7514
+ # disruption since workloads need to be moved from old nodes to new, upgraded
7515
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
7516
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
7517
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
7518
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
7519
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
7520
+ # same time. This ensures that there are always at least 4 nodes available.
7446
7521
  # These upgrade settings configure the upgrade strategy for the node pool. Use
7447
7522
  # strategy to switch between the strategies applied to the node pool. If the
7448
7523
  # strategy is SURGE, use max_surge and max_unavailable to control the level of
@@ -7620,6 +7695,20 @@ module Google
7620
7695
  end
7621
7696
  end
7622
7697
 
7698
+ # These upgrade settings control the level of parallelism and the level of
7699
+ # disruption caused by an upgrade. maxUnavailable controls the number of nodes
7700
+ # that can be simultaneously unavailable. maxSurge controls the number of
7701
+ # additional nodes that can be added to the node pool temporarily for the time
7702
+ # of the upgrade to increase the number of available nodes. (maxUnavailable +
7703
+ # maxSurge) determines the level of parallelism (how many nodes are being
7704
+ # upgraded at the same time). Note: upgrades inevitably introduce some
7705
+ # disruption since workloads need to be moved from old nodes to new, upgraded
7706
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
7707
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
7708
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
7709
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
7710
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
7711
+ # same time. This ensures that there are always at least 4 nodes available.
7623
7712
  # These upgrade settings configure the upgrade strategy for the node pool. Use
7624
7713
  # strategy to switch between the strategies applied to the node pool. If the
7625
7714
  # strategy is SURGE, use max_surge and max_unavailable to control the level of
@@ -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.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231024"
25
+ REVISION = "20231122"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class AutopilotConversionStatus
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class AutoprovisioningNodePoolDefaults
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -790,6 +796,12 @@ module Google
790
796
  include Google::Apis::Core::JsonObjectSupport
791
797
  end
792
798
 
799
+ class QueuedProvisioning
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
793
805
  class RangeInfo
794
806
  class Representation < Google::Apis::Core::JsonRepresentation; end
795
807
 
@@ -1203,6 +1215,7 @@ module Google
1203
1215
  # @private
1204
1216
  class Representation < Google::Apis::Core::JsonRepresentation
1205
1217
  property :enable_metrics, as: 'enableMetrics'
1218
+ property :enable_relay, as: 'enableRelay'
1206
1219
  property :relay_mode, as: 'relayMode'
1207
1220
  end
1208
1221
  end
@@ -1233,6 +1246,8 @@ module Google
1233
1246
  class Autopilot
1234
1247
  # @private
1235
1248
  class Representation < Google::Apis::Core::JsonRepresentation
1249
+ property :conversion_status, as: 'conversionStatus', class: Google::Apis::ContainerV1beta1::AutopilotConversionStatus, decorator: Google::Apis::ContainerV1beta1::AutopilotConversionStatus::Representation
1250
+
1236
1251
  property :enabled, as: 'enabled'
1237
1252
  property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
1238
1253
 
@@ -1251,6 +1266,13 @@ module Google
1251
1266
  end
1252
1267
  end
1253
1268
 
1269
+ class AutopilotConversionStatus
1270
+ # @private
1271
+ class Representation < Google::Apis::Core::JsonRepresentation
1272
+ property :state, as: 'state'
1273
+ end
1274
+ end
1275
+
1254
1276
  class AutoprovisioningNodePoolDefaults
1255
1277
  # @private
1256
1278
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2422,6 +2444,8 @@ module Google
2422
2444
  property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
2423
2445
 
2424
2446
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
2447
+ property :queued_provisioning, as: 'queuedProvisioning', class: Google::Apis::ContainerV1beta1::QueuedProvisioning, decorator: Google::Apis::ContainerV1beta1::QueuedProvisioning::Representation
2448
+
2425
2449
  property :self_link, as: 'selfLink'
2426
2450
  property :status, as: 'status'
2427
2451
  property :status_message, as: 'statusMessage'
@@ -2622,6 +2646,13 @@ module Google
2622
2646
  end
2623
2647
  end
2624
2648
 
2649
+ class QueuedProvisioning
2650
+ # @private
2651
+ class Representation < Google::Apis::Core::JsonRepresentation
2652
+ property :enabled, as: 'enabled'
2653
+ end
2654
+ end
2655
+
2625
2656
  class RangeInfo
2626
2657
  # @private
2627
2658
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-05 00:00:00.000000000 Z
11
+ date: 2023-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.63.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []