google-apis-container_v1 0.102.0 → 0.103.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: 7a7505f4d7c699b895dbb36a820ae8a90d0bcb868113b470a31fd10e77a4374e
|
4
|
+
data.tar.gz: bb00d64632c2cc5aa92521131ba39bbc9a178214e50ae04e1b3835a89bff4581
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28add8b76ea3ca0d2bcdfa67bcc9cb8de0df5f2c98be2ff47c723f16e47ae93fca2f48f44c0f282992e1007d018c4b7120e6d833e51776a78e7289ce7ffed988
|
7
|
+
data.tar.gz: 5af2942ee8d8e2590a83ddbce9d4b81b6ed3b0a433f9169affa5d00ac1196cb0b3537fdaab1a1882b7cdcc5c0b8e060690a7eeca3f3f317c20de10d40d6bbe7e
|
data/CHANGELOG.md
CHANGED
@@ -2024,6 +2024,11 @@ module Google
|
|
2024
2024
|
# @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
|
2025
2025
|
attr_accessor :desired_network_performance_config
|
2026
2026
|
|
2027
|
+
# NetworkTierConfig contains network tier information.
|
2028
|
+
# Corresponds to the JSON property `desiredNetworkTierConfig`
|
2029
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
2030
|
+
attr_accessor :desired_network_tier_config
|
2031
|
+
|
2027
2032
|
# Node kubelet configs.
|
2028
2033
|
# Corresponds to the JSON property `desiredNodeKubeletConfig`
|
2029
2034
|
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
@@ -2254,6 +2259,7 @@ module Google
|
|
2254
2259
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
2255
2260
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
2256
2261
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
2262
|
+
@desired_network_tier_config = args[:desired_network_tier_config] if args.key?(:desired_network_tier_config)
|
2257
2263
|
@desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
|
2258
2264
|
@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
2265
|
@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)
|
@@ -3800,6 +3806,11 @@ module Google
|
|
3800
3806
|
# @return [String]
|
3801
3807
|
attr_accessor :ipv6_access_type
|
3802
3808
|
|
3809
|
+
# NetworkTierConfig contains network tier information.
|
3810
|
+
# Corresponds to the JSON property `networkTierConfig`
|
3811
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
3812
|
+
attr_accessor :network_tier_config
|
3813
|
+
|
3803
3814
|
# This field is deprecated, use node_ipv4_cidr_block.
|
3804
3815
|
# Corresponds to the JSON property `nodeIpv4Cidr`
|
3805
3816
|
# @return [String]
|
@@ -3913,6 +3924,7 @@ module Google
|
|
3913
3924
|
@create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
|
3914
3925
|
@default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
|
3915
3926
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
3927
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
3916
3928
|
@node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
|
3917
3929
|
@node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
|
3918
3930
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
@@ -5051,6 +5063,25 @@ module Google
|
|
5051
5063
|
end
|
5052
5064
|
end
|
5053
5065
|
|
5066
|
+
# NetworkTierConfig contains network tier information.
|
5067
|
+
class NetworkTierConfig
|
5068
|
+
include Google::Apis::Core::Hashable
|
5069
|
+
|
5070
|
+
# Network tier configuration.
|
5071
|
+
# Corresponds to the JSON property `networkTier`
|
5072
|
+
# @return [String]
|
5073
|
+
attr_accessor :network_tier
|
5074
|
+
|
5075
|
+
def initialize(**args)
|
5076
|
+
update!(**args)
|
5077
|
+
end
|
5078
|
+
|
5079
|
+
# Update properties of this object
|
5080
|
+
def update!(**args)
|
5081
|
+
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
5082
|
+
end
|
5083
|
+
end
|
5084
|
+
|
5054
5085
|
# Specifies the NodeAffinity key, values, and affinity operator according to [
|
5055
5086
|
# shared sole tenant node group affinities](https://`$universe.dns_names.
|
5056
5087
|
# final_documentation_domain`/compute/docs/nodes/sole-tenant-nodes#
|
@@ -5800,6 +5831,11 @@ module Google
|
|
5800
5831
|
# @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
|
5801
5832
|
attr_accessor :network_performance_config
|
5802
5833
|
|
5834
|
+
# NetworkTierConfig contains network tier information.
|
5835
|
+
# Corresponds to the JSON property `networkTierConfig`
|
5836
|
+
# @return [Google::Apis::ContainerV1::NetworkTierConfig]
|
5837
|
+
attr_accessor :network_tier_config
|
5838
|
+
|
5803
5839
|
# [PRIVATE FIELD] Config for pod CIDR size overprovisioning.
|
5804
5840
|
# Corresponds to the JSON property `podCidrOverprovisionConfig`
|
5805
5841
|
# @return [Google::Apis::ContainerV1::PodCidrOverprovisionConfig]
|
@@ -5851,6 +5887,7 @@ module Google
|
|
5851
5887
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
5852
5888
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
5853
5889
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
5890
|
+
@network_tier_config = args[:network_tier_config] if args.key?(:network_tier_config)
|
5854
5891
|
@pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
|
5855
5892
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
5856
5893
|
@pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
|
@@ -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.103.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 = "20250812"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -724,6 +724,12 @@ module Google
|
|
724
724
|
include Google::Apis::Core::JsonObjectSupport
|
725
725
|
end
|
726
726
|
|
727
|
+
class NetworkTierConfig
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
|
+
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
731
|
+
end
|
732
|
+
|
727
733
|
class NodeAffinity
|
728
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
735
|
|
@@ -1804,6 +1810,8 @@ module Google
|
|
1804
1810
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1805
1811
|
property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
|
1806
1812
|
|
1813
|
+
property :desired_network_tier_config, as: 'desiredNetworkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
1814
|
+
|
1807
1815
|
property :desired_node_kubelet_config, as: 'desiredNodeKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1808
1816
|
|
1809
1817
|
property :desired_node_pool_auto_config_kubelet_config, as: 'desiredNodePoolAutoConfigKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
@@ -2290,6 +2298,8 @@ module Google
|
|
2290
2298
|
property :create_subnetwork, as: 'createSubnetwork'
|
2291
2299
|
property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
|
2292
2300
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
2301
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
2302
|
+
|
2293
2303
|
property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
|
2294
2304
|
property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
|
2295
2305
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
@@ -2623,6 +2633,13 @@ module Google
|
|
2623
2633
|
end
|
2624
2634
|
end
|
2625
2635
|
|
2636
|
+
class NetworkTierConfig
|
2637
|
+
# @private
|
2638
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2639
|
+
property :network_tier, as: 'networkTier'
|
2640
|
+
end
|
2641
|
+
end
|
2642
|
+
|
2626
2643
|
class NodeAffinity
|
2627
2644
|
# @private
|
2628
2645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2779,6 +2796,8 @@ module Google
|
|
2779
2796
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
2780
2797
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
|
2781
2798
|
|
2799
|
+
property :network_tier_config, as: 'networkTierConfig', class: Google::Apis::ContainerV1::NetworkTierConfig, decorator: Google::Apis::ContainerV1::NetworkTierConfig::Representation
|
2800
|
+
|
2782
2801
|
property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
|
2783
2802
|
|
2784
2803
|
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.103.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.103.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:
|