google-apis-container_v1beta1 0.61.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ee53300e4a7e86d5dade99bbd08269fea806a02f037493b22166186e2a35418
|
4
|
+
data.tar.gz: 2d3332ef38ede37b1957a7bda1a9cd31e3ea6c841659c6a03e77e08fd5f6dbe0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1731604f80888a4db4513b868a1831be64149499e037d934e3eebfbf603a08bc710509f7490f96d021a17a913eb681ba0b09b75d18b34a6356c9bb2af2560d86
|
7
|
+
data.tar.gz: d8a21afb2a3c1a6ae0ddbbb6d9f8aa0ea5aa5fac984d0606380c79bd0f64fa9bf9f529a6765071c883949cfdd8d56ffba2d4adda2fa692cc1f1190dfb671c28f
|
data/CHANGELOG.md
CHANGED
@@ -367,6 +367,11 @@ module Google
|
|
367
367
|
class Autopilot
|
368
368
|
include Google::Apis::Core::Hashable
|
369
369
|
|
370
|
+
# AutopilotConversionStatus represents conversion status.
|
371
|
+
# Corresponds to the JSON property `conversionStatus`
|
372
|
+
# @return [Google::Apis::ContainerV1beta1::AutopilotConversionStatus]
|
373
|
+
attr_accessor :conversion_status
|
374
|
+
|
370
375
|
# Enable Autopilot
|
371
376
|
# Corresponds to the JSON property `enabled`
|
372
377
|
# @return [Boolean]
|
@@ -385,6 +390,7 @@ module Google
|
|
385
390
|
|
386
391
|
# Update properties of this object
|
387
392
|
def update!(**args)
|
393
|
+
@conversion_status = args[:conversion_status] if args.key?(:conversion_status)
|
388
394
|
@enabled = args[:enabled] if args.key?(:enabled)
|
389
395
|
@workload_policy_config = args[:workload_policy_config] if args.key?(:workload_policy_config)
|
390
396
|
end
|
@@ -440,6 +446,25 @@ module Google
|
|
440
446
|
end
|
441
447
|
end
|
442
448
|
|
449
|
+
# AutopilotConversionStatus represents conversion status.
|
450
|
+
class AutopilotConversionStatus
|
451
|
+
include Google::Apis::Core::Hashable
|
452
|
+
|
453
|
+
# Output only. The current state of the conversion.
|
454
|
+
# Corresponds to the JSON property `state`
|
455
|
+
# @return [String]
|
456
|
+
attr_accessor :state
|
457
|
+
|
458
|
+
def initialize(**args)
|
459
|
+
update!(**args)
|
460
|
+
end
|
461
|
+
|
462
|
+
# Update properties of this object
|
463
|
+
def update!(**args)
|
464
|
+
@state = args[:state] if args.key?(:state)
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
443
468
|
# AutoprovisioningNodePoolDefaults contains defaults for a node pool created by
|
444
469
|
# NAP.
|
445
470
|
class AutoprovisioningNodePoolDefaults
|
@@ -522,6 +547,20 @@ module Google
|
|
522
547
|
# @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
|
523
548
|
attr_accessor :shielded_instance_config
|
524
549
|
|
550
|
+
# These upgrade settings control the level of parallelism and the level of
|
551
|
+
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
552
|
+
# that can be simultaneously unavailable. maxSurge controls the number of
|
553
|
+
# additional nodes that can be added to the node pool temporarily for the time
|
554
|
+
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
555
|
+
# maxSurge) determines the level of parallelism (how many nodes are being
|
556
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
557
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
558
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
559
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
560
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
561
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
562
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
563
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
525
564
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
526
565
|
# strategy to switch between the strategies applied to the node pool. If the
|
527
566
|
# strategy is SURGE, use max_surge and max_unavailable to control the level of
|
@@ -2192,20 +2231,7 @@ module Google
|
|
2192
2231
|
# specification, under the control of the cluster master. They may have a set of
|
2193
2232
|
# Kubernetes labels applied to them, which may be used to reference them during
|
2194
2233
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
2195
|
-
# workload.
|
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.
|
2234
|
+
# workload.
|
2209
2235
|
# Corresponds to the JSON property `nodePool`
|
2210
2236
|
# @return [Google::Apis::ContainerV1beta1::NodePool]
|
2211
2237
|
attr_accessor :node_pool
|
@@ -4805,20 +4831,7 @@ module Google
|
|
4805
4831
|
# specification, under the control of the cluster master. They may have a set of
|
4806
4832
|
# Kubernetes labels applied to them, which may be used to reference them during
|
4807
4833
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
4808
|
-
# workload.
|
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.
|
4834
|
+
# workload.
|
4822
4835
|
class NodePool
|
4823
4836
|
include Google::Apis::Core::Hashable
|
4824
4837
|
|
@@ -4909,6 +4922,11 @@ module Google
|
|
4909
4922
|
# @return [Fixnum]
|
4910
4923
|
attr_accessor :pod_ipv4_cidr_size
|
4911
4924
|
|
4925
|
+
# QueuedProvisioning defines the queued provisioning used by the node pool.
|
4926
|
+
# Corresponds to the JSON property `queuedProvisioning`
|
4927
|
+
# @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
|
4928
|
+
attr_accessor :queued_provisioning
|
4929
|
+
|
4912
4930
|
# [Output only] Server-defined URL for the resource.
|
4913
4931
|
# Corresponds to the JSON property `selfLink`
|
4914
4932
|
# @return [String]
|
@@ -4931,6 +4949,20 @@ module Google
|
|
4931
4949
|
# @return [Google::Apis::ContainerV1beta1::UpdateInfo]
|
4932
4950
|
attr_accessor :update_info
|
4933
4951
|
|
4952
|
+
# These upgrade settings control the level of parallelism and the level of
|
4953
|
+
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
4954
|
+
# that can be simultaneously unavailable. maxSurge controls the number of
|
4955
|
+
# additional nodes that can be added to the node pool temporarily for the time
|
4956
|
+
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
4957
|
+
# maxSurge) determines the level of parallelism (how many nodes are being
|
4958
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
4959
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
4960
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
4961
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
4962
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
4963
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
4964
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
4965
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
4934
4966
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
4935
4967
|
# strategy to switch between the strategies applied to the node pool. If the
|
4936
4968
|
# strategy is SURGE, use max_surge and max_unavailable to control the level of
|
@@ -4979,6 +5011,7 @@ module Google
|
|
4979
5011
|
@network_config = args[:network_config] if args.key?(:network_config)
|
4980
5012
|
@placement_policy = args[:placement_policy] if args.key?(:placement_policy)
|
4981
5013
|
@pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
|
5014
|
+
@queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
|
4982
5015
|
@self_link = args[:self_link] if args.key?(:self_link)
|
4983
5016
|
@status = args[:status] if args.key?(:status)
|
4984
5017
|
@status_message = args[:status_message] if args.key?(:status_message)
|
@@ -5676,6 +5709,27 @@ module Google
|
|
5676
5709
|
end
|
5677
5710
|
end
|
5678
5711
|
|
5712
|
+
# QueuedProvisioning defines the queued provisioning used by the node pool.
|
5713
|
+
class QueuedProvisioning
|
5714
|
+
include Google::Apis::Core::Hashable
|
5715
|
+
|
5716
|
+
# Denotes that this nodepool is QRM specific, meaning nodes can be only obtained
|
5717
|
+
# through queuing via the Cluster Autoscaler ProvisioningRequest API.
|
5718
|
+
# Corresponds to the JSON property `enabled`
|
5719
|
+
# @return [Boolean]
|
5720
|
+
attr_accessor :enabled
|
5721
|
+
alias_method :enabled?, :enabled
|
5722
|
+
|
5723
|
+
def initialize(**args)
|
5724
|
+
update!(**args)
|
5725
|
+
end
|
5726
|
+
|
5727
|
+
# Update properties of this object
|
5728
|
+
def update!(**args)
|
5729
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
5730
|
+
end
|
5731
|
+
end
|
5732
|
+
|
5679
5733
|
# RangeInfo contains the range name and the range utilization by this cluster.
|
5680
5734
|
class RangeInfo
|
5681
5735
|
include Google::Apis::Core::Hashable
|
@@ -7443,6 +7497,20 @@ module Google
|
|
7443
7497
|
# @return [Google::Apis::ContainerV1beta1::NodeTaints]
|
7444
7498
|
attr_accessor :taints
|
7445
7499
|
|
7500
|
+
# These upgrade settings control the level of parallelism and the level of
|
7501
|
+
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
7502
|
+
# that can be simultaneously unavailable. maxSurge controls the number of
|
7503
|
+
# additional nodes that can be added to the node pool temporarily for the time
|
7504
|
+
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
7505
|
+
# maxSurge) determines the level of parallelism (how many nodes are being
|
7506
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
7507
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
7508
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
7509
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
7510
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
7511
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
7512
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
7513
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
7446
7514
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
7447
7515
|
# strategy to switch between the strategies applied to the node pool. If the
|
7448
7516
|
# strategy is SURGE, use max_surge and max_unavailable to control the level of
|
@@ -7620,6 +7688,20 @@ module Google
|
|
7620
7688
|
end
|
7621
7689
|
end
|
7622
7690
|
|
7691
|
+
# These upgrade settings control the level of parallelism and the level of
|
7692
|
+
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
7693
|
+
# that can be simultaneously unavailable. maxSurge controls the number of
|
7694
|
+
# additional nodes that can be added to the node pool temporarily for the time
|
7695
|
+
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
7696
|
+
# maxSurge) determines the level of parallelism (how many nodes are being
|
7697
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
7698
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
7699
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
7700
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
7701
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
7702
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
7703
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
7704
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
7623
7705
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
7624
7706
|
# strategy to switch between the strategies applied to the node pool. If the
|
7625
7707
|
# 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.
|
19
|
+
GEM_VERSION = "0.62.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 = "
|
25
|
+
REVISION = "20231030"
|
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
|
|
@@ -1233,6 +1245,8 @@ module Google
|
|
1233
1245
|
class Autopilot
|
1234
1246
|
# @private
|
1235
1247
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1248
|
+
property :conversion_status, as: 'conversionStatus', class: Google::Apis::ContainerV1beta1::AutopilotConversionStatus, decorator: Google::Apis::ContainerV1beta1::AutopilotConversionStatus::Representation
|
1249
|
+
|
1236
1250
|
property :enabled, as: 'enabled'
|
1237
1251
|
property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
1238
1252
|
|
@@ -1251,6 +1265,13 @@ module Google
|
|
1251
1265
|
end
|
1252
1266
|
end
|
1253
1267
|
|
1268
|
+
class AutopilotConversionStatus
|
1269
|
+
# @private
|
1270
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1271
|
+
property :state, as: 'state'
|
1272
|
+
end
|
1273
|
+
end
|
1274
|
+
|
1254
1275
|
class AutoprovisioningNodePoolDefaults
|
1255
1276
|
# @private
|
1256
1277
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2422,6 +2443,8 @@ module Google
|
|
2422
2443
|
property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
|
2423
2444
|
|
2424
2445
|
property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
|
2446
|
+
property :queued_provisioning, as: 'queuedProvisioning', class: Google::Apis::ContainerV1beta1::QueuedProvisioning, decorator: Google::Apis::ContainerV1beta1::QueuedProvisioning::Representation
|
2447
|
+
|
2425
2448
|
property :self_link, as: 'selfLink'
|
2426
2449
|
property :status, as: 'status'
|
2427
2450
|
property :status_message, as: 'statusMessage'
|
@@ -2622,6 +2645,13 @@ module Google
|
|
2622
2645
|
end
|
2623
2646
|
end
|
2624
2647
|
|
2648
|
+
class QueuedProvisioning
|
2649
|
+
# @private
|
2650
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2651
|
+
property :enabled, as: 'enabled'
|
2652
|
+
end
|
2653
|
+
end
|
2654
|
+
|
2625
2655
|
class RangeInfo
|
2626
2656
|
# @private
|
2627
2657
|
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.
|
4
|
+
version: 0.62.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-
|
11
|
+
date: 2023-11-19 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
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.62.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: []
|