google-apis-container_v1beta1 0.89.0 → 0.91.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: 00d6df96971dffab973c7aa78431580c6f40e1ae6c37b79b1ba80adcb7f2b2f2
|
4
|
+
data.tar.gz: 5c1c28b8505aa4d0b5a3026408bcc46b83d0f21e67c3a29271c7441658b6437c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 380c3af7247cd40ce910c7c529f7683ca8909ad3c621ccb8540f646d9a2582845c79f93325d36c3384509ba591f61375a769792fb5e2f454d2af568f8e857e00
|
7
|
+
data.tar.gz: 4a9924c6c040e3aa97887a48465ef18a8fe1add24796b0717b73ebee5baa824a4aadea851c8ab923d8dec20c9c8825d452fb4dee636bbe7fb961dee58eec004a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.91.0 (2025-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250819
|
6
|
+
|
7
|
+
### v0.90.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250807
|
10
|
+
|
3
11
|
### v0.89.0 (2025-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250725
|
@@ -777,6 +777,20 @@ module Google
|
|
777
777
|
end
|
778
778
|
end
|
779
779
|
|
780
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
781
|
+
# upgrade to scale both the blue and green pools.
|
782
|
+
class AutoscaledRolloutPolicy
|
783
|
+
include Google::Apis::Core::Hashable
|
784
|
+
|
785
|
+
def initialize(**args)
|
786
|
+
update!(**args)
|
787
|
+
end
|
788
|
+
|
789
|
+
# Update properties of this object
|
790
|
+
def update!(**args)
|
791
|
+
end
|
792
|
+
end
|
793
|
+
|
780
794
|
# Deprecated.
|
781
795
|
class AvailableVersion
|
782
796
|
include Google::Apis::Core::Hashable
|
@@ -936,6 +950,12 @@ module Google
|
|
936
950
|
class BlueGreenSettings
|
937
951
|
include Google::Apis::Core::Hashable
|
938
952
|
|
953
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
954
|
+
# upgrade to scale both the blue and green pools.
|
955
|
+
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
956
|
+
# @return [Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy]
|
957
|
+
attr_accessor :autoscaled_rollout_policy
|
958
|
+
|
939
959
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
940
960
|
# be cleaned up.
|
941
961
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -953,6 +973,7 @@ module Google
|
|
953
973
|
|
954
974
|
# Update properties of this object
|
955
975
|
def update!(**args)
|
976
|
+
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
956
977
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
957
978
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
958
979
|
end
|
@@ -1714,7 +1735,9 @@ module Google
|
|
1714
1735
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
1715
1736
|
attr_accessor :vertical_pod_autoscaling
|
1716
1737
|
|
1717
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
1738
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
1739
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
1740
|
+
# using Workload Identity.
|
1718
1741
|
# Corresponds to the JSON property `workloadAltsConfig`
|
1719
1742
|
# @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
|
1720
1743
|
attr_accessor :workload_alts_config
|
@@ -2207,6 +2230,11 @@ module Google
|
|
2207
2230
|
# @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
|
2208
2231
|
attr_accessor :desired_network_performance_config
|
2209
2232
|
|
2233
|
+
# NetworkTierConfig contains network tier information.
|
2234
|
+
# Corresponds to the JSON property `desiredNetworkTierConfig`
|
2235
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
2236
|
+
attr_accessor :desired_network_tier_config
|
2237
|
+
|
2210
2238
|
# Node kubelet configs.
|
2211
2239
|
# Corresponds to the JSON property `desiredNodeKubeletConfig`
|
2212
2240
|
# @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
|
@@ -2374,7 +2402,9 @@ module Google
|
|
2374
2402
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
2375
2403
|
attr_accessor :desired_vertical_pod_autoscaling
|
2376
2404
|
|
2377
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
2405
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
2406
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
2407
|
+
# using Workload Identity.
|
2378
2408
|
# Corresponds to the JSON property `desiredWorkloadAltsConfig`
|
2379
2409
|
# @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
|
2380
2410
|
attr_accessor :desired_workload_alts_config
|
@@ -2474,6 +2504,7 @@ module Google
|
|
2474
2504
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
2475
2505
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
2476
2506
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
2507
|
+
@desired_network_tier_config = args[:desired_network_tier_config] if args.key?(:desired_network_tier_config)
|
2477
2508
|
@desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
|
2478
2509
|
@desired_node_pool_auto_config_kubelet_config = args[:desired_node_pool_auto_config_kubelet_config] if args.key?(:desired_node_pool_auto_config_kubelet_config)
|
2479
2510
|
@desired_node_pool_auto_config_linux_node_config = args[:desired_node_pool_auto_config_linux_node_config] if args.key?(:desired_node_pool_auto_config_linux_node_config)
|
@@ -4132,6 +4163,11 @@ module Google
|
|
4132
4163
|
# @return [String]
|
4133
4164
|
attr_accessor :ipv6_access_type
|
4134
4165
|
|
4166
|
+
# NetworkTierConfig contains network tier information.
|
4167
|
+
# Corresponds to the JSON property `networkTierConfig`
|
4168
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
4169
|
+
attr_accessor :network_tier_config
|
4170
|
+
|
4135
4171
|
# This field is deprecated, use node_ipv4_cidr_block.
|
4136
4172
|
# Corresponds to the JSON property `nodeIpv4Cidr`
|
4137
4173
|
# @return [String]
|
@@ -4246,6 +4282,7 @@ module Google
|
|
4246
4282
|
@create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
|
4247
4283
|
@default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
|
4248
4284
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
4285
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
4249
4286
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
4250
4287
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
4251
4288
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
@@ -4869,7 +4906,10 @@ module Google
|
|
4869
4906
|
include Google::Apis::Core::Hashable
|
4870
4907
|
|
4871
4908
|
# If set to true, the Lustre CSI driver will install Lustre kernel modules using
|
4872
|
-
# port 6988.
|
4909
|
+
# port 6988. This serves as a workaround for a port conflict with the gke-
|
4910
|
+
# metadata-server. This field is required ONLY under the following conditions: 1.
|
4911
|
+
# The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
|
4912
|
+
# to a Lustre instance that has the 'gke-support-enabled' flag.
|
4873
4913
|
# Corresponds to the JSON property `enableLegacyLustrePort`
|
4874
4914
|
# @return [Boolean]
|
4875
4915
|
attr_accessor :enable_legacy_lustre_port
|
@@ -5510,6 +5550,25 @@ module Google
|
|
5510
5550
|
end
|
5511
5551
|
end
|
5512
5552
|
|
5553
|
+
# NetworkTierConfig contains network tier information.
|
5554
|
+
class NetworkTierConfig
|
5555
|
+
include Google::Apis::Core::Hashable
|
5556
|
+
|
5557
|
+
# Network tier configuration.
|
5558
|
+
# Corresponds to the JSON property `networkTier`
|
5559
|
+
# @return [String]
|
5560
|
+
attr_accessor :network_tier
|
5561
|
+
|
5562
|
+
def initialize(**args)
|
5563
|
+
update!(**args)
|
5564
|
+
end
|
5565
|
+
|
5566
|
+
# Update properties of this object
|
5567
|
+
def update!(**args)
|
5568
|
+
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
5569
|
+
end
|
5570
|
+
end
|
5571
|
+
|
5513
5572
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
5514
5573
|
# shared sole tenant node group affinities](https://`$universe.dns_names.
|
5515
5574
|
# final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
|
@@ -6273,6 +6332,11 @@ module Google
|
|
6273
6332
|
# @return [Google::Apis::ContainerV1beta1::NetworkPerformanceConfig]
|
6274
6333
|
attr_accessor :network_performance_config
|
6275
6334
|
|
6335
|
+
# NetworkTierConfig contains network tier information.
|
6336
|
+
# Corresponds to the JSON property `networkTierConfig`
|
6337
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
6338
|
+
attr_accessor :network_tier_config
|
6339
|
+
|
6276
6340
|
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
6277
6341
|
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
6278
6342
|
# @return [Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig]
|
@@ -6324,6 +6388,7 @@ module Google
|
|
6324
6388
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
6325
6389
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
6326
6390
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
6391
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
6327
6392
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
6328
6393
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
6329
6394
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
@@ -10246,7 +10311,9 @@ module Google
|
|
10246
10311
|
end
|
10247
10312
|
end
|
10248
10313
|
|
10249
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
10314
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
10315
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
10316
|
+
# using Workload Identity.
|
10250
10317
|
class WorkloadAltsConfig
|
10251
10318
|
include Google::Apis::Core::Hashable
|
10252
10319
|
|
@@ -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.91.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 = "
|
25
|
+
REVISION = "20250819"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,12 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class AutoscaledRolloutPolicy
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
133
139
|
class AvailableVersion
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
141
|
|
@@ -790,6 +796,12 @@ module Google
|
|
790
796
|
include Google::Apis::Core::JsonObjectSupport
|
791
797
|
end
|
792
798
|
|
799
|
+
class NetworkTierConfig
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
793
805
|
class NodeAffinity
|
794
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
807
|
|
@@ -1614,6 +1626,12 @@ module Google
|
|
1614
1626
|
end
|
1615
1627
|
end
|
1616
1628
|
|
1629
|
+
class AutoscaledRolloutPolicy
|
1630
|
+
# @private
|
1631
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1632
|
+
end
|
1633
|
+
end
|
1634
|
+
|
1617
1635
|
class AvailableVersion
|
1618
1636
|
# @private
|
1619
1637
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1661,6 +1679,8 @@ module Google
|
|
1661
1679
|
class BlueGreenSettings
|
1662
1680
|
# @private
|
1663
1681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1682
|
+
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy::Representation
|
1683
|
+
|
1664
1684
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1665
1685
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
|
1666
1686
|
|
@@ -1983,6 +2003,8 @@ module Google
|
|
1983
2003
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1984
2004
|
property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
|
1985
2005
|
|
2006
|
+
property :desired_network_tier_config, as: 'desiredNetworkTierConfig', class: Google::Apis::ContainerV1beta1::NetworkTierConfig, decorator: Google::Apis::ContainerV1beta1::NetworkTierConfig::Representation
|
2007
|
+
|
1986
2008
|
property :desired_node_kubelet_config, as: 'desiredNodeKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
|
1987
2009
|
|
1988
2010
|
property :desired_node_pool_auto_config_kubelet_config, as: 'desiredNodePoolAutoConfigKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
|
@@ -2507,6 +2529,8 @@ module Google
|
|
2507
2529
|
property :create_subnetwork, as: 'createSubnetwork'
|
2508
2530
|
property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
|
2509
2531
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
2532
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1beta1::NetworkTierConfig, decorator: Google::Apis::ContainerV1beta1::NetworkTierConfig::Representation
|
2533
|
+
|
2510
2534
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
2511
2535
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
2512
2536
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
|
@@ -2880,6 +2904,13 @@ module Google
|
|
2880
2904
|
end
|
2881
2905
|
end
|
2882
2906
|
|
2907
|
+
class NetworkTierConfig
|
2908
|
+
# @private
|
2909
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2910
|
+
property :network_tier, as: 'networkTier'
|
2911
|
+
end
|
2912
|
+
end
|
2913
|
+
|
2883
2914
|
class NodeAffinity
|
2884
2915
|
# @private
|
2885
2916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3042,6 +3073,8 @@ module Google
|
|
3042
3073
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
3043
3074
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
|
3044
3075
|
|
3076
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1beta1::NetworkTierConfig, decorator: Google::Apis::ContainerV1beta1::NetworkTierConfig::Representation
|
3077
|
+
|
3045
3078
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
|
3046
3079
|
|
3047
3080
|
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
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.
|
4
|
+
version: 0.91.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.91.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:
|