google-apis-container_v1 0.102.0 → 0.104.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: 6489391d147638e8737b7557c36f5befeb8ec8373c6e4749d697fda911ccdf8a
|
4
|
+
data.tar.gz: 38eb5e79f6001564f18e305f1e6b25ba8dba78230ca731ae0c1c6ff6a1d9043f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39dd42150276f66e6ff167272d16fe79d0768b5848434c794fb9f40d43f5511d5e93f261e34edcc4eb77a0a74b158148cfac1db05085e905da19d44d54860803
|
7
|
+
data.tar.gz: 5e7fc46202ee92bb95bf18282ced48bd321e517492060876eab00d9f970b6f4aa00a92d5ca2ee0a40c8141ddc24c95d6730cebd4f74b935d604d696eda1a90da
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.104.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250923
|
6
|
+
|
7
|
+
### v0.103.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250812
|
10
|
+
|
3
11
|
### v0.102.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250807
|
@@ -216,7 +216,7 @@ module Google
|
|
216
216
|
# @return [Google::Apis::ContainerV1::GcePersistentDiskCsiDriverConfig]
|
217
217
|
attr_accessor :gce_persistent_disk_csi_driver_config
|
218
218
|
|
219
|
-
# Configuration for the
|
219
|
+
# Configuration for the Filestore CSI driver.
|
220
220
|
# Corresponds to the JSON property `gcpFilestoreCsiDriverConfig`
|
221
221
|
# @return [Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig]
|
222
222
|
attr_accessor :gcp_filestore_csi_driver_config
|
@@ -724,6 +724,27 @@ module Google
|
|
724
724
|
end
|
725
725
|
end
|
726
726
|
|
727
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
728
|
+
# upgrade to scale both the blue and green pools.
|
729
|
+
class AutoscaledRolloutPolicy
|
730
|
+
include Google::Apis::Core::Hashable
|
731
|
+
|
732
|
+
# Optional. Time to wait after cordoning the blue pool before draining the nodes.
|
733
|
+
# Defaults to 3 days. The value can be set between 0 and 7 days, inclusive.
|
734
|
+
# Corresponds to the JSON property `waitForDrainDuration`
|
735
|
+
# @return [String]
|
736
|
+
attr_accessor :wait_for_drain_duration
|
737
|
+
|
738
|
+
def initialize(**args)
|
739
|
+
update!(**args)
|
740
|
+
end
|
741
|
+
|
742
|
+
# Update properties of this object
|
743
|
+
def update!(**args)
|
744
|
+
@wait_for_drain_duration = args[:wait_for_drain_duration] if args.key?(:wait_for_drain_duration)
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
727
748
|
# Best effort provisioning.
|
728
749
|
class BestEffortProvisioning
|
729
750
|
include Google::Apis::Core::Hashable
|
@@ -852,6 +873,12 @@ module Google
|
|
852
873
|
class BlueGreenSettings
|
853
874
|
include Google::Apis::Core::Hashable
|
854
875
|
|
876
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
877
|
+
# upgrade to scale both the blue and green pools.
|
878
|
+
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
879
|
+
# @return [Google::Apis::ContainerV1::AutoscaledRolloutPolicy]
|
880
|
+
attr_accessor :autoscaled_rollout_policy
|
881
|
+
|
855
882
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
856
883
|
# be cleaned up.
|
857
884
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -869,6 +896,7 @@ module Google
|
|
869
896
|
|
870
897
|
# Update properties of this object
|
871
898
|
def update!(**args)
|
899
|
+
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
872
900
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
873
901
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
874
902
|
end
|
@@ -1234,7 +1262,8 @@ module Google
|
|
1234
1262
|
# @return [String]
|
1235
1263
|
attr_accessor :endpoint
|
1236
1264
|
|
1237
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
1265
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
1266
|
+
# Enterprise features are now available without an Enterprise tier.
|
1238
1267
|
# Corresponds to the JSON property `enterpriseConfig`
|
1239
1268
|
# @return [Google::Apis::ContainerV1::EnterpriseConfig]
|
1240
1269
|
attr_accessor :enterprise_config
|
@@ -1585,7 +1614,7 @@ module Google
|
|
1585
1614
|
# @return [Google::Apis::ContainerV1::VerticalPodAutoscaling]
|
1586
1615
|
attr_accessor :vertical_pod_autoscaling
|
1587
1616
|
|
1588
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
1617
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
1589
1618
|
# Corresponds to the JSON property `workloadIdentityConfig`
|
1590
1619
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
1591
1620
|
attr_accessor :workload_identity_config
|
@@ -1900,6 +1929,8 @@ module Google
|
|
1900
1929
|
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
1901
1930
|
|
1902
1931
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
1932
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
1933
|
+
# tier.
|
1903
1934
|
# Corresponds to the JSON property `desiredEnterpriseConfig`
|
1904
1935
|
# @return [Google::Apis::ContainerV1::DesiredEnterpriseConfig]
|
1905
1936
|
attr_accessor :desired_enterprise_config
|
@@ -2024,6 +2055,11 @@ module Google
|
|
2024
2055
|
# @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
|
2025
2056
|
attr_accessor :desired_network_performance_config
|
2026
2057
|
|
2058
|
+
# NetworkTierConfig contains network tier information.
|
2059
|
+
# Corresponds to the JSON property `desiredNetworkTierConfig`
|
2060
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
2061
|
+
attr_accessor :desired_network_tier_config
|
2062
|
+
|
2027
2063
|
# Node kubelet configs.
|
2028
2064
|
# Corresponds to the JSON property `desiredNodeKubeletConfig`
|
2029
2065
|
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
@@ -2172,7 +2208,7 @@ module Google
|
|
2172
2208
|
# @return [Google::Apis::ContainerV1::VerticalPodAutoscaling]
|
2173
2209
|
attr_accessor :desired_vertical_pod_autoscaling
|
2174
2210
|
|
2175
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
2211
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
2176
2212
|
# Corresponds to the JSON property `desiredWorkloadIdentityConfig`
|
2177
2213
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
2178
2214
|
attr_accessor :desired_workload_identity_config
|
@@ -2254,6 +2290,7 @@ module Google
|
|
2254
2290
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
2255
2291
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
2256
2292
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
2293
|
+
@desired_network_tier_config = args[:desired_network_tier_config] if args.key?(:desired_network_tier_config)
|
2257
2294
|
@desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
|
2258
2295
|
@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)
|
2259
2296
|
@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)
|
@@ -2720,13 +2757,25 @@ module Google
|
|
2720
2757
|
class DnsEndpointConfig
|
2721
2758
|
include Google::Apis::Core::Hashable
|
2722
2759
|
|
2723
|
-
# Controls whether user traffic is allowed over this endpoint. Note that
|
2760
|
+
# Controls whether user traffic is allowed over this endpoint. Note that Google-
|
2724
2761
|
# managed services may still use the endpoint even if this is false.
|
2725
2762
|
# Corresponds to the JSON property `allowExternalTraffic`
|
2726
2763
|
# @return [Boolean]
|
2727
2764
|
attr_accessor :allow_external_traffic
|
2728
2765
|
alias_method :allow_external_traffic?, :allow_external_traffic
|
2729
2766
|
|
2767
|
+
# Controls whether the k8s certs auth is allowed via DNS.
|
2768
|
+
# Corresponds to the JSON property `enableK8sCertsViaDns`
|
2769
|
+
# @return [Boolean]
|
2770
|
+
attr_accessor :enable_k8s_certs_via_dns
|
2771
|
+
alias_method :enable_k8s_certs_via_dns?, :enable_k8s_certs_via_dns
|
2772
|
+
|
2773
|
+
# Controls whether the k8s token auth is allowed via DNS.
|
2774
|
+
# Corresponds to the JSON property `enableK8sTokensViaDns`
|
2775
|
+
# @return [Boolean]
|
2776
|
+
attr_accessor :enable_k8s_tokens_via_dns
|
2777
|
+
alias_method :enable_k8s_tokens_via_dns?, :enable_k8s_tokens_via_dns
|
2778
|
+
|
2730
2779
|
# Output only. The cluster's DNS endpoint configuration. A DNS format address.
|
2731
2780
|
# This is accessible from the public internet. Ex: uid.us-central1.gke.goog.
|
2732
2781
|
# Always present, but the behavior may change according to the value of
|
@@ -2742,6 +2791,8 @@ module Google
|
|
2742
2791
|
# Update properties of this object
|
2743
2792
|
def update!(**args)
|
2744
2793
|
@allow_external_traffic = args[:allow_external_traffic] if args.key?(:allow_external_traffic)
|
2794
|
+
@enable_k8s_certs_via_dns = args[:enable_k8s_certs_via_dns] if args.key?(:enable_k8s_certs_via_dns)
|
2795
|
+
@enable_k8s_tokens_via_dns = args[:enable_k8s_tokens_via_dns] if args.key?(:enable_k8s_tokens_via_dns)
|
2745
2796
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2746
2797
|
end
|
2747
2798
|
end
|
@@ -2883,6 +2934,8 @@ module Google
|
|
2883
2934
|
end
|
2884
2935
|
|
2885
2936
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2937
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
2938
|
+
# tier.
|
2886
2939
|
class DesiredEnterpriseConfig
|
2887
2940
|
include Google::Apis::Core::Hashable
|
2888
2941
|
|
@@ -2937,7 +2990,8 @@ module Google
|
|
2937
2990
|
end
|
2938
2991
|
end
|
2939
2992
|
|
2940
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
2993
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
2994
|
+
# Enterprise features are now available without an Enterprise tier.
|
2941
2995
|
class EnterpriseConfig
|
2942
2996
|
include Google::Apis::Core::Hashable
|
2943
2997
|
|
@@ -3425,11 +3479,11 @@ module Google
|
|
3425
3479
|
end
|
3426
3480
|
end
|
3427
3481
|
|
3428
|
-
# Configuration for the
|
3482
|
+
# Configuration for the Filestore CSI driver.
|
3429
3483
|
class GcpFilestoreCsiDriverConfig
|
3430
3484
|
include Google::Apis::Core::Hashable
|
3431
3485
|
|
3432
|
-
# Whether the
|
3486
|
+
# Whether the Filestore CSI driver is enabled for this cluster.
|
3433
3487
|
# Corresponds to the JSON property `enabled`
|
3434
3488
|
# @return [Boolean]
|
3435
3489
|
attr_accessor :enabled
|
@@ -3800,6 +3854,11 @@ module Google
|
|
3800
3854
|
# @return [String]
|
3801
3855
|
attr_accessor :ipv6_access_type
|
3802
3856
|
|
3857
|
+
# NetworkTierConfig contains network tier information.
|
3858
|
+
# Corresponds to the JSON property `networkTierConfig`
|
3859
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
3860
|
+
attr_accessor :network_tier_config
|
3861
|
+
|
3803
3862
|
# This field is deprecated, use node_ipv4_cidr_block.
|
3804
3863
|
# Corresponds to the JSON property `nodeIpv4Cidr`
|
3805
3864
|
# @return [String]
|
@@ -3913,6 +3972,7 @@ module Google
|
|
3913
3972
|
@create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
|
3914
3973
|
@default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
|
3915
3974
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
3975
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
3916
3976
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
3917
3977
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
3918
3978
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
@@ -5051,6 +5111,25 @@ module Google
|
|
5051
5111
|
end
|
5052
5112
|
end
|
5053
5113
|
|
5114
|
+
# NetworkTierConfig contains network tier information.
|
5115
|
+
class NetworkTierConfig
|
5116
|
+
include Google::Apis::Core::Hashable
|
5117
|
+
|
5118
|
+
# Network tier configuration.
|
5119
|
+
# Corresponds to the JSON property `networkTier`
|
5120
|
+
# @return [String]
|
5121
|
+
attr_accessor :network_tier
|
5122
|
+
|
5123
|
+
def initialize(**args)
|
5124
|
+
update!(**args)
|
5125
|
+
end
|
5126
|
+
|
5127
|
+
# Update properties of this object
|
5128
|
+
def update!(**args)
|
5129
|
+
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
5130
|
+
end
|
5131
|
+
end
|
5132
|
+
|
5054
5133
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
5055
5134
|
# shared sole tenant node group affinities](https://`$universe.dns_names.
|
5056
5135
|
# final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
|
@@ -5800,6 +5879,11 @@ module Google
|
|
5800
5879
|
# @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
|
5801
5880
|
attr_accessor :network_performance_config
|
5802
5881
|
|
5882
|
+
# NetworkTierConfig contains network tier information.
|
5883
|
+
# Corresponds to the JSON property `networkTierConfig`
|
5884
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
5885
|
+
attr_accessor :network_tier_config
|
5886
|
+
|
5803
5887
|
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
5804
5888
|
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
5805
5889
|
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
@@ -5851,6 +5935,7 @@ module Google
|
|
5851
5935
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
5852
5936
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
5853
5937
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
5938
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
5854
5939
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
5855
5940
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
5856
5941
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
@@ -7130,7 +7215,7 @@ module Google
|
|
7130
7215
|
end
|
7131
7216
|
end
|
7132
7217
|
|
7133
|
-
# Collection of [
|
7218
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
7134
7219
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
7135
7220
|
class ResourceLabels
|
7136
7221
|
include Google::Apis::Core::Hashable
|
@@ -8904,7 +8989,7 @@ module Google
|
|
8904
8989
|
# @return [Google::Apis::ContainerV1::QueuedProvisioning]
|
8905
8990
|
attr_accessor :queued_provisioning
|
8906
8991
|
|
8907
|
-
# Collection of [
|
8992
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
8908
8993
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
8909
8994
|
# Corresponds to the JSON property `resourceLabels`
|
8910
8995
|
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
@@ -9552,7 +9637,7 @@ module Google
|
|
9552
9637
|
end
|
9553
9638
|
end
|
9554
9639
|
|
9555
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
9640
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
9556
9641
|
class WorkloadIdentityConfig
|
9557
9642
|
include Google::Apis::Core::Hashable
|
9558
9643
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.104.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 = "20250923"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class AutoscaledRolloutPolicy
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class BestEffortProvisioning
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -724,6 +730,12 @@ module Google
|
|
724
730
|
include Google::Apis::Core::JsonObjectSupport
|
725
731
|
end
|
726
732
|
|
733
|
+
class NetworkTierConfig
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
727
739
|
class NodeAffinity
|
728
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
741
|
|
@@ -1474,6 +1486,13 @@ module Google
|
|
1474
1486
|
end
|
1475
1487
|
end
|
1476
1488
|
|
1489
|
+
class AutoscaledRolloutPolicy
|
1490
|
+
# @private
|
1491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1492
|
+
property :wait_for_drain_duration, as: 'waitForDrainDuration'
|
1493
|
+
end
|
1494
|
+
end
|
1495
|
+
|
1477
1496
|
class BestEffortProvisioning
|
1478
1497
|
# @private
|
1479
1498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1511,6 +1530,8 @@ module Google
|
|
1511
1530
|
class BlueGreenSettings
|
1512
1531
|
# @private
|
1513
1532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1533
|
+
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1::AutoscaledRolloutPolicy::Representation
|
1534
|
+
|
1514
1535
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1515
1536
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1::StandardRolloutPolicy::Representation
|
1516
1537
|
|
@@ -1804,6 +1825,8 @@ module Google
|
|
1804
1825
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1805
1826
|
property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
|
1806
1827
|
|
1828
|
+
property :desired_network_tier_config, as: 'desiredNetworkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
1829
|
+
|
1807
1830
|
property :desired_node_kubelet_config, as: 'desiredNodeKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1808
1831
|
|
1809
1832
|
property :desired_node_pool_auto_config_kubelet_config, as: 'desiredNodePoolAutoConfigKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
@@ -1992,6 +2015,8 @@ module Google
|
|
1992
2015
|
# @private
|
1993
2016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1994
2017
|
property :allow_external_traffic, as: 'allowExternalTraffic'
|
2018
|
+
property :enable_k8s_certs_via_dns, as: 'enableK8sCertsViaDns'
|
2019
|
+
property :enable_k8s_tokens_via_dns, as: 'enableK8sTokensViaDns'
|
1995
2020
|
property :endpoint, as: 'endpoint'
|
1996
2021
|
end
|
1997
2022
|
end
|
@@ -2290,6 +2315,8 @@ module Google
|
|
2290
2315
|
property :create_subnetwork, as: 'createSubnetwork'
|
2291
2316
|
property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
|
2292
2317
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
2318
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
2319
|
+
|
2293
2320
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
2294
2321
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
2295
2322
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
@@ -2623,6 +2650,13 @@ module Google
|
|
2623
2650
|
end
|
2624
2651
|
end
|
2625
2652
|
|
2653
|
+
class NetworkTierConfig
|
2654
|
+
# @private
|
2655
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2656
|
+
property :network_tier, as: 'networkTier'
|
2657
|
+
end
|
2658
|
+
end
|
2659
|
+
|
2626
2660
|
class NodeAffinity
|
2627
2661
|
# @private
|
2628
2662
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2779,6 +2813,8 @@ module Google
|
|
2779
2813
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
2780
2814
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
|
2781
2815
|
|
2816
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
2817
|
+
|
2782
2818
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
2783
2819
|
|
2784
2820
|
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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.104.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.104.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|