google-apis-container_v1beta1 0.51.0 → 0.52.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8e705e44c1504952cd36a8a08db1795e0425f3cb080021b9970742a7cac7913
|
4
|
+
data.tar.gz: c47cc563d809f4110cf994fc0048970d7cbdedc31be1df5c3fbcdffb8793e4c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f997f27e12945f0b199a6c2b4deafa4b4b10c2764fe5439bbd8f802e2943c146ea0f9e7320a398d94ebf1b35bd99048a8b0ade02737f1ff4b6679a4475e6b77e
|
7
|
+
data.tar.gz: ff3fbf128e140758286a549c8a0174443e7828a9d0999c35878e5d9671591d2ae1d87844e5028f5fdb2997d3e54cb8817bacdbbd301607244952a8dcb4411f6f
|
data/CHANGELOG.md
CHANGED
@@ -1397,6 +1397,25 @@ module Google
|
|
1397
1397
|
end
|
1398
1398
|
end
|
1399
1399
|
|
1400
|
+
# Configuration of all network bandwidth tiers
|
1401
|
+
class ClusterNetworkPerformanceConfig
|
1402
|
+
include Google::Apis::Core::Hashable
|
1403
|
+
|
1404
|
+
# Specifies the total network bandwidth tier for the NodePool.
|
1405
|
+
# Corresponds to the JSON property `totalEgressBandwidthTier`
|
1406
|
+
# @return [String]
|
1407
|
+
attr_accessor :total_egress_bandwidth_tier
|
1408
|
+
|
1409
|
+
def initialize(**args)
|
1410
|
+
update!(**args)
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
# Update properties of this object
|
1414
|
+
def update!(**args)
|
1415
|
+
@total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
|
1416
|
+
end
|
1417
|
+
end
|
1418
|
+
|
1400
1419
|
# Telemetry integration for the cluster.
|
1401
1420
|
class ClusterTelemetry
|
1402
1421
|
include Google::Apis::Core::Hashable
|
@@ -1613,6 +1632,11 @@ module Google
|
|
1613
1632
|
# @return [String]
|
1614
1633
|
attr_accessor :desired_monitoring_service
|
1615
1634
|
|
1635
|
+
# Configuration of all network bandwidth tiers
|
1636
|
+
# Corresponds to the JSON property `desiredNetworkPerformanceConfig`
|
1637
|
+
# @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
|
1638
|
+
attr_accessor :desired_network_performance_config
|
1639
|
+
|
1616
1640
|
# Collection of Compute Engine network tags that can be applied to a node's
|
1617
1641
|
# underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
|
1618
1642
|
# docs/reference/rest/v1/NodeConfig)).
|
@@ -1794,6 +1818,7 @@ module Google
|
|
1794
1818
|
@desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
|
1795
1819
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
1796
1820
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1821
|
+
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
1797
1822
|
@desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
|
1798
1823
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
1799
1824
|
@desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
|
@@ -3794,6 +3819,11 @@ module Google
|
|
3794
3819
|
# @return [String]
|
3795
3820
|
attr_accessor :network
|
3796
3821
|
|
3822
|
+
# Configuration of all network bandwidth tiers
|
3823
|
+
# Corresponds to the JSON property `networkPerformanceConfig`
|
3824
|
+
# @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
|
3825
|
+
attr_accessor :network_performance_config
|
3826
|
+
|
3797
3827
|
# The desired state of IPv6 connectivity to Google Services. By default, no
|
3798
3828
|
# private IPv6 access to or from Google Services (all access will be via IPv4)
|
3799
3829
|
# Corresponds to the JSON property `privateIpv6GoogleAccess`
|
@@ -3826,6 +3856,7 @@ module Google
|
|
3826
3856
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
3827
3857
|
@gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
|
3828
3858
|
@network = args[:network] if args.key?(:network)
|
3859
|
+
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
3829
3860
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
3830
3861
|
@service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
|
3831
3862
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
@@ -4135,7 +4166,7 @@ module Google
|
|
4135
4166
|
attr_accessor :oauth_scopes
|
4136
4167
|
|
4137
4168
|
# Whether the nodes are created as preemptible VM instances. See: https://cloud.
|
4138
|
-
# google.com/compute/docs/instances/preemptible for more
|
4169
|
+
# google.com/compute/docs/instances/preemptible for more information about
|
4139
4170
|
# preemptible VM instances.
|
4140
4171
|
# Corresponds to the JSON property `preemptible`
|
4141
4172
|
# @return [Boolean]
|
@@ -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.52.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 = "20230614"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -154,6 +154,12 @@ module Google
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
155
155
|
end
|
156
156
|
|
157
|
+
class ClusterNetworkPerformanceConfig
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
157
163
|
class ClusterTelemetry
|
158
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
165
|
|
@@ -1405,6 +1411,13 @@ module Google
|
|
1405
1411
|
end
|
1406
1412
|
end
|
1407
1413
|
|
1414
|
+
class ClusterNetworkPerformanceConfig
|
1415
|
+
# @private
|
1416
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1417
|
+
property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
|
1418
|
+
end
|
1419
|
+
end
|
1420
|
+
|
1408
1421
|
class ClusterTelemetry
|
1409
1422
|
# @private
|
1410
1423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1469,6 +1482,8 @@ module Google
|
|
1469
1482
|
property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
|
1470
1483
|
|
1471
1484
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1485
|
+
property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
|
1486
|
+
|
1472
1487
|
property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
|
1473
1488
|
|
1474
1489
|
property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1beta1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoscaling::Representation
|
@@ -2087,6 +2102,8 @@ module Google
|
|
2087
2102
|
property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1beta1::GatewayApiConfig, decorator: Google::Apis::ContainerV1beta1::GatewayApiConfig::Representation
|
2088
2103
|
|
2089
2104
|
property :network, as: 'network'
|
2105
|
+
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
|
2106
|
+
|
2090
2107
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
2091
2108
|
property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig::Representation
|
2092
2109
|
|
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.52.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-06-
|
11
|
+
date: 2023-06-25 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.52.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: []
|