google-apis-container_v1beta1 0.53.0 → 0.54.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: c18e1f824c9a1ee258b7c7bf0c9d891bd51bacdd7e6dcde584a146e16cfa6e23
|
4
|
+
data.tar.gz: 0236ab83784f92c48494f7212d5cc76ca9c4df0f7bdebc8c955e0dba6a6d6f87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54b910ba5a95836c397176ba08357d7ad04fce686691b0f195b115fe872b925e27148ad84c005415bfb62a2d4061f65b6220721ee1587720b8c0d1754a68feeb
|
7
|
+
data.tar.gz: 9c02aedf210d27030b7a02b3fb168eb73f5a9af1dc8ce3f272e35b9a0f3f83765ac405998329aa7162c54bdd966a5f69f80fdef76a9413cad3e14c27e89891bb
|
data/CHANGELOG.md
CHANGED
@@ -199,6 +199,33 @@ module Google
|
|
199
199
|
end
|
200
200
|
end
|
201
201
|
|
202
|
+
# AdvancedDatapathObservabilityConfig specifies configuration of observability
|
203
|
+
# features of advanced datapath.
|
204
|
+
class AdvancedDatapathObservabilityConfig
|
205
|
+
include Google::Apis::Core::Hashable
|
206
|
+
|
207
|
+
# Expose flow metrics on nodes
|
208
|
+
# Corresponds to the JSON property `enableMetrics`
|
209
|
+
# @return [Boolean]
|
210
|
+
attr_accessor :enable_metrics
|
211
|
+
alias_method :enable_metrics?, :enable_metrics
|
212
|
+
|
213
|
+
# Method used to make Relay available
|
214
|
+
# Corresponds to the JSON property `relayMode`
|
215
|
+
# @return [String]
|
216
|
+
attr_accessor :relay_mode
|
217
|
+
|
218
|
+
def initialize(**args)
|
219
|
+
update!(**args)
|
220
|
+
end
|
221
|
+
|
222
|
+
# Update properties of this object
|
223
|
+
def update!(**args)
|
224
|
+
@enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
|
225
|
+
@relay_mode = args[:relay_mode] if args.key?(:relay_mode)
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
202
229
|
# Specifies options for controlling advanced machine features.
|
203
230
|
class AdvancedMachineFeatures
|
204
231
|
include Google::Apis::Core::Hashable
|
@@ -2819,7 +2846,7 @@ module Google
|
|
2819
2846
|
alias_method :create_subnetwork?, :create_subnetwork
|
2820
2847
|
|
2821
2848
|
# Output only. [Output only] The utilization of the cluster default IPv4 range
|
2822
|
-
# for pod. The ratio is Usage/[Total number of IPs in the secondary range],
|
2849
|
+
# for the pod. The ratio is Usage/[Total number of IPs in the secondary range],
|
2823
2850
|
# Usage=numNodes*numZones*podIPsPerNode.
|
2824
2851
|
# Corresponds to the JSON property `defaultPodIpv4RangeUtilization`
|
2825
2852
|
# @return [Float]
|
@@ -3766,6 +3793,12 @@ module Google
|
|
3766
3793
|
class MonitoringConfig
|
3767
3794
|
include Google::Apis::Core::Hashable
|
3768
3795
|
|
3796
|
+
# AdvancedDatapathObservabilityConfig specifies configuration of observability
|
3797
|
+
# features of advanced datapath.
|
3798
|
+
# Corresponds to the JSON property `advancedDatapathObservabilityConfig`
|
3799
|
+
# @return [Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig]
|
3800
|
+
attr_accessor :advanced_datapath_observability_config
|
3801
|
+
|
3769
3802
|
# MonitoringComponentConfig is cluster monitoring component configuration.
|
3770
3803
|
# Corresponds to the JSON property `componentConfig`
|
3771
3804
|
# @return [Google::Apis::ContainerV1beta1::MonitoringComponentConfig]
|
@@ -3783,6 +3816,7 @@ module Google
|
|
3783
3816
|
|
3784
3817
|
# Update properties of this object
|
3785
3818
|
def update!(**args)
|
3819
|
+
@advanced_datapath_observability_config = args[:advanced_datapath_observability_config] if args.key?(:advanced_datapath_observability_config)
|
3786
3820
|
@component_config = args[:component_config] if args.key?(:component_config)
|
3787
3821
|
@managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
|
3788
3822
|
end
|
@@ -4495,7 +4529,7 @@ module Google
|
|
4495
4529
|
# @return [String]
|
4496
4530
|
attr_accessor :pod_ipv4_cidr_block
|
4497
4531
|
|
4498
|
-
# Output only. [Output only] The utilization of the IPv4 range for pod. The
|
4532
|
+
# Output only. [Output only] The utilization of the IPv4 range for the pod. The
|
4499
4533
|
# ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodes*
|
4500
4534
|
# numZones*podIPsPerNode.
|
4501
4535
|
# Corresponds to the JSON property `podIpv4RangeUtilization`
|
@@ -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.54.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 = "20230626"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class AdvancedDatapathObservabilityConfig
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class AdvancedMachineFeatures
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -1127,6 +1133,14 @@ module Google
|
|
1127
1133
|
end
|
1128
1134
|
end
|
1129
1135
|
|
1136
|
+
class AdvancedDatapathObservabilityConfig
|
1137
|
+
# @private
|
1138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1139
|
+
property :enable_metrics, as: 'enableMetrics'
|
1140
|
+
property :relay_mode, as: 'relayMode'
|
1141
|
+
end
|
1142
|
+
end
|
1143
|
+
|
1130
1144
|
class AdvancedMachineFeatures
|
1131
1145
|
# @private
|
1132
1146
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2091,6 +2105,8 @@ module Google
|
|
2091
2105
|
class MonitoringConfig
|
2092
2106
|
# @private
|
2093
2107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2108
|
+
property :advanced_datapath_observability_config, as: 'advancedDatapathObservabilityConfig', class: Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig, decorator: Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig::Representation
|
2109
|
+
|
2094
2110
|
property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringComponentConfig::Representation
|
2095
2111
|
|
2096
2112
|
property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig::Representation
|
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.54.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-07-
|
11
|
+
date: 2023-07-09 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.54.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: []
|