google-apis-container_v1beta1 0.90.0 → 0.92.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: d132fce75a8bf2aa1286b1ea24089d237b1c506f41086bb85fe4461037821c25
|
4
|
+
data.tar.gz: 2aa955648f747f9c377ba073bc19c287cd5a4ecf05accc8b7b9cffbf6c4c4618
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56a6b0d915598507e62df3e2a2e7864a0dda04d75ce855225cd73544fe749f72ad29d4b551cae530d4c2fcfda44cea146f37aa2fd27c45206a553ad48ca780b7
|
7
|
+
data.tar.gz: fd401bf13fb7d758a3059a9bed02c2800b10b5e940d7be16c2089bc2d268d7882abf1a90ca62840ec0455155f01db3b171e16040237688136bf55cf4a70e41a6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.92.0 (2025-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250916
|
6
|
+
|
7
|
+
### v0.91.0 (2025-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250819
|
10
|
+
|
3
11
|
### v0.90.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250807
|
@@ -222,7 +222,7 @@ module Google
|
|
222
222
|
# @return [Google::Apis::ContainerV1beta1::GcePersistentDiskCsiDriverConfig]
|
223
223
|
attr_accessor :gce_persistent_disk_csi_driver_config
|
224
224
|
|
225
|
-
# Configuration for the
|
225
|
+
# Configuration for the Filestore CSI driver.
|
226
226
|
# Corresponds to the JSON property `gcpFilestoreCsiDriverConfig`
|
227
227
|
# @return [Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig]
|
228
228
|
attr_accessor :gcp_filestore_csi_driver_config
|
@@ -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
|
@@ -1323,7 +1344,8 @@ module Google
|
|
1323
1344
|
# @return [String]
|
1324
1345
|
attr_accessor :endpoint
|
1325
1346
|
|
1326
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
1347
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
1348
|
+
# Enterprise features are now available without an Enterprise tier.
|
1327
1349
|
# Corresponds to the JSON property `enterpriseConfig`
|
1328
1350
|
# @return [Google::Apis::ContainerV1beta1::EnterpriseConfig]
|
1329
1351
|
attr_accessor :enterprise_config
|
@@ -1726,7 +1748,7 @@ module Google
|
|
1726
1748
|
# @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
|
1727
1749
|
attr_accessor :workload_certificates
|
1728
1750
|
|
1729
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
1751
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
1730
1752
|
# Corresponds to the JSON property `workloadIdentityConfig`
|
1731
1753
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
1732
1754
|
attr_accessor :workload_identity_config
|
@@ -2074,6 +2096,8 @@ module Google
|
|
2074
2096
|
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
2075
2097
|
|
2076
2098
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2099
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
2100
|
+
# tier.
|
2077
2101
|
# Corresponds to the JSON property `desiredEnterpriseConfig`
|
2078
2102
|
# @return [Google::Apis::ContainerV1beta1::DesiredEnterpriseConfig]
|
2079
2103
|
attr_accessor :desired_enterprise_config
|
@@ -2209,6 +2233,11 @@ module Google
|
|
2209
2233
|
# @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
|
2210
2234
|
attr_accessor :desired_network_performance_config
|
2211
2235
|
|
2236
|
+
# NetworkTierConfig contains network tier information.
|
2237
|
+
# Corresponds to the JSON property `desiredNetworkTierConfig`
|
2238
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
2239
|
+
attr_accessor :desired_network_tier_config
|
2240
|
+
|
2212
2241
|
# Node kubelet configs.
|
2213
2242
|
# Corresponds to the JSON property `desiredNodeKubeletConfig`
|
2214
2243
|
# @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
|
@@ -2388,7 +2417,7 @@ module Google
|
|
2388
2417
|
# @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
|
2389
2418
|
attr_accessor :desired_workload_certificates
|
2390
2419
|
|
2391
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
2420
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
2392
2421
|
# Corresponds to the JSON property `desiredWorkloadIdentityConfig`
|
2393
2422
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
2394
2423
|
attr_accessor :desired_workload_identity_config
|
@@ -2478,6 +2507,7 @@ module Google
|
|
2478
2507
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
2479
2508
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
2480
2509
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
2510
|
+
@desired_network_tier_config = args[:desired_network_tier_config] if args.key?(:desired_network_tier_config)
|
2481
2511
|
@desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
|
2482
2512
|
@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)
|
2483
2513
|
@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)
|
@@ -2950,13 +2980,25 @@ module Google
|
|
2950
2980
|
class DnsEndpointConfig
|
2951
2981
|
include Google::Apis::Core::Hashable
|
2952
2982
|
|
2953
|
-
# Controls whether user traffic is allowed over this endpoint. Note that
|
2983
|
+
# Controls whether user traffic is allowed over this endpoint. Note that Google-
|
2954
2984
|
# managed services may still use the endpoint even if this is false.
|
2955
2985
|
# Corresponds to the JSON property `allowExternalTraffic`
|
2956
2986
|
# @return [Boolean]
|
2957
2987
|
attr_accessor :allow_external_traffic
|
2958
2988
|
alias_method :allow_external_traffic?, :allow_external_traffic
|
2959
2989
|
|
2990
|
+
# Controls whether the k8s certs auth is allowed via DNS.
|
2991
|
+
# Corresponds to the JSON property `enableK8sCertsViaDns`
|
2992
|
+
# @return [Boolean]
|
2993
|
+
attr_accessor :enable_k8s_certs_via_dns
|
2994
|
+
alias_method :enable_k8s_certs_via_dns?, :enable_k8s_certs_via_dns
|
2995
|
+
|
2996
|
+
# Controls whether the k8s token auth is allowed via DNS.
|
2997
|
+
# Corresponds to the JSON property `enableK8sTokensViaDns`
|
2998
|
+
# @return [Boolean]
|
2999
|
+
attr_accessor :enable_k8s_tokens_via_dns
|
3000
|
+
alias_method :enable_k8s_tokens_via_dns?, :enable_k8s_tokens_via_dns
|
3001
|
+
|
2960
3002
|
# Output only. The cluster's DNS endpoint configuration. A DNS format address.
|
2961
3003
|
# This is accessible from the public internet. Ex: uid.us-central1.gke.goog.
|
2962
3004
|
# Always present, but the behavior may change according to the value of
|
@@ -2972,6 +3014,8 @@ module Google
|
|
2972
3014
|
# Update properties of this object
|
2973
3015
|
def update!(**args)
|
2974
3016
|
@allow_external_traffic = args[:allow_external_traffic] if args.key?(:allow_external_traffic)
|
3017
|
+
@enable_k8s_certs_via_dns = args[:enable_k8s_certs_via_dns] if args.key?(:enable_k8s_certs_via_dns)
|
3018
|
+
@enable_k8s_tokens_via_dns = args[:enable_k8s_tokens_via_dns] if args.key?(:enable_k8s_tokens_via_dns)
|
2975
3019
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2976
3020
|
end
|
2977
3021
|
end
|
@@ -3152,6 +3196,8 @@ module Google
|
|
3152
3196
|
end
|
3153
3197
|
|
3154
3198
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
3199
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
3200
|
+
# tier.
|
3155
3201
|
class DesiredEnterpriseConfig
|
3156
3202
|
include Google::Apis::Core::Hashable
|
3157
3203
|
|
@@ -3206,7 +3252,8 @@ module Google
|
|
3206
3252
|
end
|
3207
3253
|
end
|
3208
3254
|
|
3209
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
3255
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
3256
|
+
# Enterprise features are now available without an Enterprise tier.
|
3210
3257
|
class EnterpriseConfig
|
3211
3258
|
include Google::Apis::Core::Hashable
|
3212
3259
|
|
@@ -3721,11 +3768,11 @@ module Google
|
|
3721
3768
|
end
|
3722
3769
|
end
|
3723
3770
|
|
3724
|
-
# Configuration for the
|
3771
|
+
# Configuration for the Filestore CSI driver.
|
3725
3772
|
class GcpFilestoreCsiDriverConfig
|
3726
3773
|
include Google::Apis::Core::Hashable
|
3727
3774
|
|
3728
|
-
# Whether the
|
3775
|
+
# Whether the Filestore CSI driver is enabled for this cluster.
|
3729
3776
|
# Corresponds to the JSON property `enabled`
|
3730
3777
|
# @return [Boolean]
|
3731
3778
|
attr_accessor :enabled
|
@@ -4136,6 +4183,11 @@ module Google
|
|
4136
4183
|
# @return [String]
|
4137
4184
|
attr_accessor :ipv6_access_type
|
4138
4185
|
|
4186
|
+
# NetworkTierConfig contains network tier information.
|
4187
|
+
# Corresponds to the JSON property `networkTierConfig`
|
4188
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
4189
|
+
attr_accessor :network_tier_config
|
4190
|
+
|
4139
4191
|
# This field is deprecated, use node_ipv4_cidr_block.
|
4140
4192
|
# Corresponds to the JSON property `nodeIpv4Cidr`
|
4141
4193
|
# @return [String]
|
@@ -4250,6 +4302,7 @@ module Google
|
|
4250
4302
|
@create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
|
4251
4303
|
@default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
|
4252
4304
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
4305
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
4253
4306
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
4254
4307
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
4255
4308
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
@@ -5517,6 +5570,25 @@ module Google
|
|
5517
5570
|
end
|
5518
5571
|
end
|
5519
5572
|
|
5573
|
+
# NetworkTierConfig contains network tier information.
|
5574
|
+
class NetworkTierConfig
|
5575
|
+
include Google::Apis::Core::Hashable
|
5576
|
+
|
5577
|
+
# Network tier configuration.
|
5578
|
+
# Corresponds to the JSON property `networkTier`
|
5579
|
+
# @return [String]
|
5580
|
+
attr_accessor :network_tier
|
5581
|
+
|
5582
|
+
def initialize(**args)
|
5583
|
+
update!(**args)
|
5584
|
+
end
|
5585
|
+
|
5586
|
+
# Update properties of this object
|
5587
|
+
def update!(**args)
|
5588
|
+
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
5589
|
+
end
|
5590
|
+
end
|
5591
|
+
|
5520
5592
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
5521
5593
|
# shared sole tenant node group affinities](https://`$universe.dns_names.
|
5522
5594
|
# final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
|
@@ -6280,6 +6352,11 @@ module Google
|
|
6280
6352
|
# @return [Google::Apis::ContainerV1beta1::NetworkPerformanceConfig]
|
6281
6353
|
attr_accessor :network_performance_config
|
6282
6354
|
|
6355
|
+
# NetworkTierConfig contains network tier information.
|
6356
|
+
# Corresponds to the JSON property `networkTierConfig`
|
6357
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTierConfig]
|
6358
|
+
attr_accessor :network_tier_config
|
6359
|
+
|
6283
6360
|
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
6284
6361
|
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
6285
6362
|
# @return [Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig]
|
@@ -6331,6 +6408,7 @@ module Google
|
|
6331
6408
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
6332
6409
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
6333
6410
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
6411
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
6334
6412
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
6335
6413
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
6336
6414
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
@@ -7723,7 +7801,7 @@ module Google
|
|
7723
7801
|
end
|
7724
7802
|
end
|
7725
7803
|
|
7726
|
-
# Collection of [
|
7804
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
7727
7805
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
7728
7806
|
class ResourceLabels
|
7729
7807
|
include Google::Apis::Core::Hashable
|
@@ -9541,7 +9619,7 @@ module Google
|
|
9541
9619
|
# @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
|
9542
9620
|
attr_accessor :queued_provisioning
|
9543
9621
|
|
9544
|
-
# Collection of [
|
9622
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
9545
9623
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
9546
9624
|
# Corresponds to the JSON property `resourceLabels`
|
9547
9625
|
# @return [Google::Apis::ContainerV1beta1::ResourceLabels]
|
@@ -10320,7 +10398,7 @@ module Google
|
|
10320
10398
|
end
|
10321
10399
|
end
|
10322
10400
|
|
10323
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
10401
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
10324
10402
|
class WorkloadIdentityConfig
|
10325
10403
|
include Google::Apis::Core::Hashable
|
10326
10404
|
|
@@ -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.92.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 = "20250916"
|
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
|
@@ -2183,6 +2205,8 @@ module Google
|
|
2183
2205
|
# @private
|
2184
2206
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2185
2207
|
property :allow_external_traffic, as: 'allowExternalTraffic'
|
2208
|
+
property :enable_k8s_certs_via_dns, as: 'enableK8sCertsViaDns'
|
2209
|
+
property :enable_k8s_tokens_via_dns, as: 'enableK8sTokensViaDns'
|
2186
2210
|
property :endpoint, as: 'endpoint'
|
2187
2211
|
end
|
2188
2212
|
end
|
@@ -2507,6 +2531,8 @@ module Google
|
|
2507
2531
|
property :create_subnetwork, as: 'createSubnetwork'
|
2508
2532
|
property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
|
2509
2533
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
2534
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1beta1::NetworkTierConfig, decorator: Google::Apis::ContainerV1beta1::NetworkTierConfig::Representation
|
2535
|
+
|
2510
2536
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
2511
2537
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
2512
2538
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
|
@@ -2880,6 +2906,13 @@ module Google
|
|
2880
2906
|
end
|
2881
2907
|
end
|
2882
2908
|
|
2909
|
+
class NetworkTierConfig
|
2910
|
+
# @private
|
2911
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2912
|
+
property :network_tier, as: 'networkTier'
|
2913
|
+
end
|
2914
|
+
end
|
2915
|
+
|
2883
2916
|
class NodeAffinity
|
2884
2917
|
# @private
|
2885
2918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3042,6 +3075,8 @@ module Google
|
|
3042
3075
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
3043
3076
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
|
3044
3077
|
|
3078
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1beta1::NetworkTierConfig, decorator: Google::Apis::ContainerV1beta1::NetworkTierConfig::Representation
|
3079
|
+
|
3045
3080
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
|
3046
3081
|
|
3047
3082
|
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.92.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.92.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:
|