google-apis-container_v1beta1 0.60.0 → 0.62.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:
|
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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.62.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231030
|
6
|
+
|
7
|
+
### v0.61.0 (2023-11-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231024
|
10
|
+
|
3
11
|
### v0.60.0 (2023-10-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231012
|
@@ -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
|
@@ -1015,6 +1054,11 @@ module Google
|
|
1015
1054
|
# @return [String]
|
1016
1055
|
attr_accessor :endpoint
|
1017
1056
|
|
1057
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
1058
|
+
# Corresponds to the JSON property `enterpriseConfig`
|
1059
|
+
# @return [Google::Apis::ContainerV1beta1::EnterpriseConfig]
|
1060
|
+
attr_accessor :enterprise_config
|
1061
|
+
|
1018
1062
|
# This checksum is computed by the server based on the value of cluster fields,
|
1019
1063
|
# and may be sent on update requests to ensure the client has an up-to-date
|
1020
1064
|
# value before proceeding.
|
@@ -1403,6 +1447,7 @@ module Google
|
|
1403
1447
|
@enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
|
1404
1448
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
1405
1449
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1450
|
+
@enterprise_config = args[:enterprise_config] if args.key?(:enterprise_config)
|
1406
1451
|
@etag = args[:etag] if args.key?(:etag)
|
1407
1452
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1408
1453
|
@fleet = args[:fleet] if args.key?(:fleet)
|
@@ -2186,20 +2231,7 @@ module Google
|
|
2186
2231
|
# specification, under the control of the cluster master. They may have a set of
|
2187
2232
|
# Kubernetes labels applied to them, which may be used to reference them during
|
2188
2233
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
2189
|
-
# workload.
|
2190
|
-
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
2191
|
-
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
2192
|
-
# of additional nodes that can be added to the node pool temporarily for the
|
2193
|
-
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
2194
|
-
# + maxSurge) determines the level of parallelism (how many nodes are being
|
2195
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
2196
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
2197
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
2198
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
2199
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
2200
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
2201
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
2202
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
2234
|
+
# workload.
|
2203
2235
|
# Corresponds to the JSON property `nodePool`
|
2204
2236
|
# @return [Google::Apis::ContainerV1beta1::NodePool]
|
2205
2237
|
attr_accessor :node_pool
|
@@ -2420,6 +2452,26 @@ module Google
|
|
2420
2452
|
end
|
2421
2453
|
end
|
2422
2454
|
|
2455
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
2456
|
+
class EnterpriseConfig
|
2457
|
+
include Google::Apis::Core::Hashable
|
2458
|
+
|
2459
|
+
# Output only. [Output only] cluster_tier specifies the premium tier of the
|
2460
|
+
# cluster.
|
2461
|
+
# Corresponds to the JSON property `clusterTier`
|
2462
|
+
# @return [String]
|
2463
|
+
attr_accessor :cluster_tier
|
2464
|
+
|
2465
|
+
def initialize(**args)
|
2466
|
+
update!(**args)
|
2467
|
+
end
|
2468
|
+
|
2469
|
+
# Update properties of this object
|
2470
|
+
def update!(**args)
|
2471
|
+
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
2472
|
+
end
|
2473
|
+
end
|
2474
|
+
|
2423
2475
|
# EphemeralStorageConfig contains configuration for the ephemeral storage
|
2424
2476
|
# filesystem.
|
2425
2477
|
class EphemeralStorageConfig
|
@@ -4779,20 +4831,7 @@ module Google
|
|
4779
4831
|
# specification, under the control of the cluster master. They may have a set of
|
4780
4832
|
# Kubernetes labels applied to them, which may be used to reference them during
|
4781
4833
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
4782
|
-
# workload.
|
4783
|
-
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
4784
|
-
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
4785
|
-
# of additional nodes that can be added to the node pool temporarily for the
|
4786
|
-
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
4787
|
-
# + maxSurge) determines the level of parallelism (how many nodes are being
|
4788
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
4789
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
4790
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
4791
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
4792
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
4793
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
4794
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
4795
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
4834
|
+
# workload.
|
4796
4835
|
class NodePool
|
4797
4836
|
include Google::Apis::Core::Hashable
|
4798
4837
|
|
@@ -4883,6 +4922,11 @@ module Google
|
|
4883
4922
|
# @return [Fixnum]
|
4884
4923
|
attr_accessor :pod_ipv4_cidr_size
|
4885
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
|
+
|
4886
4930
|
# [Output only] Server-defined URL for the resource.
|
4887
4931
|
# Corresponds to the JSON property `selfLink`
|
4888
4932
|
# @return [String]
|
@@ -4905,6 +4949,20 @@ module Google
|
|
4905
4949
|
# @return [Google::Apis::ContainerV1beta1::UpdateInfo]
|
4906
4950
|
attr_accessor :update_info
|
4907
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.
|
4908
4966
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
4909
4967
|
# strategy to switch between the strategies applied to the node pool. If the
|
4910
4968
|
# strategy is SURGE, use max_surge and max_unavailable to control the level of
|
@@ -4953,6 +5011,7 @@ module Google
|
|
4953
5011
|
@network_config = args[:network_config] if args.key?(:network_config)
|
4954
5012
|
@placement_policy = args[:placement_policy] if args.key?(:placement_policy)
|
4955
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)
|
4956
5015
|
@self_link = args[:self_link] if args.key?(:self_link)
|
4957
5016
|
@status = args[:status] if args.key?(:status)
|
4958
5017
|
@status_message = args[:status_message] if args.key?(:status_message)
|
@@ -5650,6 +5709,27 @@ module Google
|
|
5650
5709
|
end
|
5651
5710
|
end
|
5652
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
|
+
|
5653
5733
|
# RangeInfo contains the range name and the range utilization by this cluster.
|
5654
5734
|
class RangeInfo
|
5655
5735
|
include Google::Apis::Core::Hashable
|
@@ -7417,6 +7497,20 @@ module Google
|
|
7417
7497
|
# @return [Google::Apis::ContainerV1beta1::NodeTaints]
|
7418
7498
|
attr_accessor :taints
|
7419
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.
|
7420
7514
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
7421
7515
|
# strategy to switch between the strategies applied to the node pool. If the
|
7422
7516
|
# strategy is SURGE, use max_surge and max_unavailable to control the level of
|
@@ -7594,6 +7688,20 @@ module Google
|
|
7594
7688
|
end
|
7595
7689
|
end
|
7596
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.
|
7597
7705
|
# These upgrade settings configure the upgrade strategy for the node pool. Use
|
7598
7706
|
# strategy to switch between the strategies applied to the node pool. If the
|
7599
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
|
|
@@ -280,6 +286,12 @@ module Google
|
|
280
286
|
include Google::Apis::Core::JsonObjectSupport
|
281
287
|
end
|
282
288
|
|
289
|
+
class EnterpriseConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
283
295
|
class EphemeralStorageConfig
|
284
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
297
|
|
@@ -784,6 +796,12 @@ module Google
|
|
784
796
|
include Google::Apis::Core::JsonObjectSupport
|
785
797
|
end
|
786
798
|
|
799
|
+
class QueuedProvisioning
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
787
805
|
class RangeInfo
|
788
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
807
|
|
@@ -1227,6 +1245,8 @@ module Google
|
|
1227
1245
|
class Autopilot
|
1228
1246
|
# @private
|
1229
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
|
+
|
1230
1250
|
property :enabled, as: 'enabled'
|
1231
1251
|
property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
1232
1252
|
|
@@ -1245,6 +1265,13 @@ module Google
|
|
1245
1265
|
end
|
1246
1266
|
end
|
1247
1267
|
|
1268
|
+
class AutopilotConversionStatus
|
1269
|
+
# @private
|
1270
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1271
|
+
property :state, as: 'state'
|
1272
|
+
end
|
1273
|
+
end
|
1274
|
+
|
1248
1275
|
class AutoprovisioningNodePoolDefaults
|
1249
1276
|
# @private
|
1250
1277
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1396,6 +1423,8 @@ module Google
|
|
1396
1423
|
property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
|
1397
1424
|
property :enable_tpu, as: 'enableTpu'
|
1398
1425
|
property :endpoint, as: 'endpoint'
|
1426
|
+
property :enterprise_config, as: 'enterpriseConfig', class: Google::Apis::ContainerV1beta1::EnterpriseConfig, decorator: Google::Apis::ContainerV1beta1::EnterpriseConfig::Representation
|
1427
|
+
|
1399
1428
|
property :etag, as: 'etag'
|
1400
1429
|
property :expire_time, as: 'expireTime'
|
1401
1430
|
property :fleet, as: 'fleet', class: Google::Apis::ContainerV1beta1::Fleet, decorator: Google::Apis::ContainerV1beta1::Fleet::Representation
|
@@ -1745,6 +1774,13 @@ module Google
|
|
1745
1774
|
end
|
1746
1775
|
end
|
1747
1776
|
|
1777
|
+
class EnterpriseConfig
|
1778
|
+
# @private
|
1779
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1780
|
+
property :cluster_tier, as: 'clusterTier'
|
1781
|
+
end
|
1782
|
+
end
|
1783
|
+
|
1748
1784
|
class EphemeralStorageConfig
|
1749
1785
|
# @private
|
1750
1786
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2407,6 +2443,8 @@ module Google
|
|
2407
2443
|
property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1beta1::PlacementPolicy, decorator: Google::Apis::ContainerV1beta1::PlacementPolicy::Representation
|
2408
2444
|
|
2409
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
|
+
|
2410
2448
|
property :self_link, as: 'selfLink'
|
2411
2449
|
property :status, as: 'status'
|
2412
2450
|
property :status_message, as: 'statusMessage'
|
@@ -2607,6 +2645,13 @@ module Google
|
|
2607
2645
|
end
|
2608
2646
|
end
|
2609
2647
|
|
2648
|
+
class QueuedProvisioning
|
2649
|
+
# @private
|
2650
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2651
|
+
property :enabled, as: 'enabled'
|
2652
|
+
end
|
2653
|
+
end
|
2654
|
+
|
2610
2655
|
class RangeInfo
|
2611
2656
|
# @private
|
2612
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
|
+
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: []
|