google-cloud-container-v1beta1 0.16.3 → 0.18.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +2 -2
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +19 -0
- data/proto_docs/google/api/client.rb +57 -3
- data/proto_docs/google/container/v1beta1/cluster_service.rb +84 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6434adbf5b68cd22fa86f46dd37c6d5bdd1bce804c7a7a650cd9b7bf4d34643e
|
|
4
|
+
data.tar.gz: 96e177d929d2692341918a4ed97f3a0f31eeacdc24d1b9a306fde02fe0cd067f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7f9062f1223348ec9833622909844fc1be04a8b7bb5661886d344558dc4f2563d06620fd7b49998a04992fb70ad0ad13fa0783d48d9b85c3746678f0b020d9a
|
|
7
|
+
data.tar.gz: 566cd73c9535d09ec0e5d8a5be3d18a48c9320f1c2bcd27e2d7f5c93f915d6fb46845c7731ad85ce4133211b0ac4f6e3783a195b5798c0f1ec5f4783a5222850
|
data/README.md
CHANGED
|
@@ -47,7 +47,7 @@ for general usage information.
|
|
|
47
47
|
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
49
49
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
53
53
|
|
|
@@ -3783,9 +3783,9 @@ module Google
|
|
|
3783
3783
|
# * (`String`) The path to a service account key file in JSON format
|
|
3784
3784
|
# * (`Hash`) A service account key as a Hash
|
|
3785
3785
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
3786
|
-
# (see the [googleauth docs](https://
|
|
3786
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
3787
3787
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
3788
|
-
# (see the [signet docs](https://
|
|
3788
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
3789
3789
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
|
3790
3790
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
3791
3791
|
# * (`nil`) indicating no credentials
|
|
@@ -85,6 +85,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
85
85
|
optional :pod_ipv4_cidr_block, :string, 6
|
|
86
86
|
proto3_optional :enable_private_nodes, :bool, 9
|
|
87
87
|
proto3_optional :network_performance_config, :message, 11, "google.container.v1beta1.NodeNetworkConfig.NetworkPerformanceConfig"
|
|
88
|
+
optional :pod_cidr_overprovision_config, :message, 13, "google.container.v1beta1.PodCIDROverprovisionConfig"
|
|
88
89
|
end
|
|
89
90
|
add_message "google.container.v1beta1.NodeNetworkConfig.NetworkPerformanceConfig" do
|
|
90
91
|
proto3_optional :total_egress_bandwidth_tier, :enum, 1, "google.container.v1beta1.NodeNetworkConfig.NetworkPerformanceConfig.Tier"
|
|
@@ -257,6 +258,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
257
258
|
value :PROVIDER_UNSPECIFIED, 0
|
|
258
259
|
value :CALICO, 1
|
|
259
260
|
end
|
|
261
|
+
add_message "google.container.v1beta1.PodCIDROverprovisionConfig" do
|
|
262
|
+
optional :disable, :bool, 1
|
|
263
|
+
end
|
|
260
264
|
add_message "google.container.v1beta1.IPAllocationPolicy" do
|
|
261
265
|
optional :use_ip_aliases, :bool, 1
|
|
262
266
|
optional :create_subnetwork, :bool, 2
|
|
@@ -274,8 +278,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
274
278
|
optional :use_routes, :bool, 15
|
|
275
279
|
optional :stack_type, :enum, 16, "google.container.v1beta1.IPAllocationPolicy.StackType"
|
|
276
280
|
optional :ipv6_access_type, :enum, 17, "google.container.v1beta1.IPAllocationPolicy.IPv6AccessType"
|
|
281
|
+
optional :pod_cidr_overprovision_config, :message, 21, "google.container.v1beta1.PodCIDROverprovisionConfig"
|
|
277
282
|
optional :subnet_ipv6_cidr_block, :string, 22
|
|
278
283
|
optional :services_ipv6_cidr_block, :string, 23
|
|
284
|
+
optional :additional_pod_ranges_config, :message, 24, "google.container.v1beta1.AdditionalPodRangesConfig"
|
|
279
285
|
end
|
|
280
286
|
add_enum "google.container.v1beta1.IPAllocationPolicy.StackType" do
|
|
281
287
|
value :STACK_TYPE_UNSPECIFIED, 0
|
|
@@ -385,6 +391,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
385
391
|
optional :node_pool_auto_config, :message, 136, "google.container.v1beta1.NodePoolAutoConfig"
|
|
386
392
|
proto3_optional :protect_config, :message, 137, "google.container.v1beta1.ProtectConfig"
|
|
387
393
|
optional :etag, :string, 139
|
|
394
|
+
optional :fleet, :message, 140, "google.container.v1beta1.Fleet"
|
|
388
395
|
end
|
|
389
396
|
add_enum "google.container.v1beta1.Cluster.Status" do
|
|
390
397
|
value :STATUS_UNSPECIFIED, 0
|
|
@@ -472,6 +479,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
472
479
|
optional :etag, :string, 115
|
|
473
480
|
optional :desired_node_pool_logging_config, :message, 116, "google.container.v1beta1.NodePoolLoggingConfig"
|
|
474
481
|
optional :desired_stack_type, :enum, 119, "google.container.v1beta1.StackType"
|
|
482
|
+
optional :additional_pod_ranges_config, :message, 120, "google.container.v1beta1.AdditionalPodRangesConfig"
|
|
483
|
+
optional :removed_additional_pod_ranges_config, :message, 121, "google.container.v1beta1.AdditionalPodRangesConfig"
|
|
484
|
+
end
|
|
485
|
+
add_message "google.container.v1beta1.AdditionalPodRangesConfig" do
|
|
475
486
|
end
|
|
476
487
|
add_message "google.container.v1beta1.Operation" do
|
|
477
488
|
optional :name, :string, 1
|
|
@@ -1292,6 +1303,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
1292
1303
|
value :SCHEDULER, 4
|
|
1293
1304
|
value :CONTROLLER_MANAGER, 5
|
|
1294
1305
|
end
|
|
1306
|
+
add_message "google.container.v1beta1.Fleet" do
|
|
1307
|
+
optional :project, :string, 1
|
|
1308
|
+
optional :membership, :string, 2
|
|
1309
|
+
optional :pre_registered, :bool, 3
|
|
1310
|
+
end
|
|
1295
1311
|
add_enum "google.container.v1beta1.PrivateIPv6GoogleAccess" do
|
|
1296
1312
|
value :PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED, 0
|
|
1297
1313
|
value :PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED, 1
|
|
@@ -1374,6 +1390,7 @@ module Google
|
|
|
1374
1390
|
LegacyAbac = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LegacyAbac").msgclass
|
|
1375
1391
|
NetworkPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkPolicy").msgclass
|
|
1376
1392
|
NetworkPolicy::Provider = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkPolicy.Provider").enummodule
|
|
1393
|
+
PodCIDROverprovisionConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PodCIDROverprovisionConfig").msgclass
|
|
1377
1394
|
IPAllocationPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IPAllocationPolicy").msgclass
|
|
1378
1395
|
IPAllocationPolicy::StackType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IPAllocationPolicy.StackType").enummodule
|
|
1379
1396
|
IPAllocationPolicy::IPv6AccessType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IPAllocationPolicy.IPv6AccessType").enummodule
|
|
@@ -1393,6 +1410,7 @@ module Google
|
|
|
1393
1410
|
NodeConfigDefaults = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeConfigDefaults").msgclass
|
|
1394
1411
|
NodePoolAutoConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePoolAutoConfig").msgclass
|
|
1395
1412
|
ClusterUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClusterUpdate").msgclass
|
|
1413
|
+
AdditionalPodRangesConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AdditionalPodRangesConfig").msgclass
|
|
1396
1414
|
Operation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation").msgclass
|
|
1397
1415
|
Operation::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation.Status").enummodule
|
|
1398
1416
|
Operation::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation.Type").enummodule
|
|
@@ -1534,6 +1552,7 @@ module Google
|
|
|
1534
1552
|
LoggingVariantConfig::Variant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LoggingVariantConfig.Variant").enummodule
|
|
1535
1553
|
MonitoringComponentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig").msgclass
|
|
1536
1554
|
MonitoringComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig.Component").enummodule
|
|
1555
|
+
Fleet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Fleet").msgclass
|
|
1537
1556
|
PrivateIPv6GoogleAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateIPv6GoogleAccess").enummodule
|
|
1538
1557
|
UpgradeResourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpgradeResourceType").enummodule
|
|
1539
1558
|
NodePoolUpdateStrategy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePoolUpdateStrategy").enummodule
|
|
@@ -35,7 +35,9 @@ module Google
|
|
|
35
35
|
# Details about how and where to publish client libraries.
|
|
36
36
|
# @!attribute [rw] version
|
|
37
37
|
# @return [::String]
|
|
38
|
-
# Version of the API to apply these settings to.
|
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
|
39
|
+
# package for the API, ending in the version element.
|
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
|
39
41
|
# @!attribute [rw] launch_stage
|
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
|
41
43
|
# Launch stage of this version of the API.
|
|
@@ -111,6 +113,10 @@ module Google
|
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
|
113
115
|
# settings with the same version string are discarded.
|
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
|
117
|
+
# @return [::String]
|
|
118
|
+
# Optional link to proto reference documentation. Example:
|
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
|
114
120
|
class Publishing
|
|
115
121
|
include ::Google::Protobuf::MessageExts
|
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -203,9 +209,57 @@ module Google
|
|
|
203
209
|
# @!attribute [rw] common
|
|
204
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
|
205
211
|
# Some settings.
|
|
212
|
+
# @!attribute [rw] renamed_services
|
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
214
|
+
# Map from original service names to renamed versions.
|
|
215
|
+
# This is used when the default generated types
|
|
216
|
+
# would cause a naming conflict. (Neither name is
|
|
217
|
+
# fully-qualified.)
|
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
|
219
|
+
# @!attribute [rw] renamed_resources
|
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
|
221
|
+
# Map from full resource types to the effective short name
|
|
222
|
+
# for the resource. This is used when otherwise resource
|
|
223
|
+
# named from different services would cause naming collisions.
|
|
224
|
+
# Example entry:
|
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
|
226
|
+
# @!attribute [rw] ignored_resources
|
|
227
|
+
# @return [::Array<::String>]
|
|
228
|
+
# List of full resource types to ignore during generation.
|
|
229
|
+
# This is typically used for API-specific Location resources,
|
|
230
|
+
# which should be handled by the generator as if they were actually
|
|
231
|
+
# the common Location resources.
|
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
|
234
|
+
# @return [::Array<::String>]
|
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
|
238
|
+
# @return [::Array<::String>]
|
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
|
206
242
|
class DotnetSettings
|
|
207
243
|
include ::Google::Protobuf::MessageExts
|
|
208
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
245
|
+
|
|
246
|
+
# @!attribute [rw] key
|
|
247
|
+
# @return [::String]
|
|
248
|
+
# @!attribute [rw] value
|
|
249
|
+
# @return [::String]
|
|
250
|
+
class RenamedServicesEntry
|
|
251
|
+
include ::Google::Protobuf::MessageExts
|
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
# @!attribute [rw] key
|
|
256
|
+
# @return [::String]
|
|
257
|
+
# @!attribute [rw] value
|
|
258
|
+
# @return [::String]
|
|
259
|
+
class RenamedResourcesEntry
|
|
260
|
+
include ::Google::Protobuf::MessageExts
|
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
262
|
+
end
|
|
209
263
|
end
|
|
210
264
|
|
|
211
265
|
# Settings for Ruby client libraries.
|
|
@@ -240,8 +294,8 @@ module Google
|
|
|
240
294
|
# Example of a YAML configuration::
|
|
241
295
|
#
|
|
242
296
|
# publishing:
|
|
243
|
-
#
|
|
244
|
-
# - selector:
|
|
297
|
+
# method_settings:
|
|
298
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
|
245
299
|
# long_running:
|
|
246
300
|
# initial_poll_delay:
|
|
247
301
|
# seconds: 60 # 1 minute
|
|
@@ -446,6 +446,20 @@ module Google
|
|
|
446
446
|
# @!attribute [rw] network_performance_config
|
|
447
447
|
# @return [::Google::Cloud::Container::V1beta1::NodeNetworkConfig::NetworkPerformanceConfig]
|
|
448
448
|
# Network bandwidth tier configuration.
|
|
449
|
+
# @!attribute [rw] pod_cidr_overprovision_config
|
|
450
|
+
# @return [::Google::Cloud::Container::V1beta1::PodCIDROverprovisionConfig]
|
|
451
|
+
# [PRIVATE FIELD]
|
|
452
|
+
# Pod CIDR size overprovisioning config for the nodepool.
|
|
453
|
+
#
|
|
454
|
+
# Pod CIDR size per node depends on max_pods_per_node. By default, the value
|
|
455
|
+
# of max_pods_per_node is rounded off to next power of 2 and we then double
|
|
456
|
+
# that to get the size of pod CIDR block per node.
|
|
457
|
+
# Example: max_pods_per_node of 30 would result in 64 IPs (/26).
|
|
458
|
+
#
|
|
459
|
+
# This config can disable the doubling of IPs (we still round off to next
|
|
460
|
+
# power of 2)
|
|
461
|
+
# Example: max_pods_per_node of 30 will result in 32 IPs (/27) when
|
|
462
|
+
# overprovisioning is disabled.
|
|
449
463
|
class NodeNetworkConfig
|
|
450
464
|
include ::Google::Protobuf::MessageExts
|
|
451
465
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1063,6 +1077,17 @@ module Google
|
|
|
1063
1077
|
end
|
|
1064
1078
|
end
|
|
1065
1079
|
|
|
1080
|
+
# [PRIVATE FIELD]
|
|
1081
|
+
# Config for pod CIDR size overprovisioning.
|
|
1082
|
+
# @!attribute [rw] disable
|
|
1083
|
+
# @return [::Boolean]
|
|
1084
|
+
# Whether Pod CIDR overprovisioning is disabled.
|
|
1085
|
+
# Note: Pod CIDR overprovisioning is enabled by default.
|
|
1086
|
+
class PodCIDROverprovisionConfig
|
|
1087
|
+
include ::Google::Protobuf::MessageExts
|
|
1088
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
1089
|
+
end
|
|
1090
|
+
|
|
1066
1091
|
# Configuration for controlling how IPs are allocated in the cluster.
|
|
1067
1092
|
# @!attribute [rw] use_ip_aliases
|
|
1068
1093
|
# @return [::Boolean]
|
|
@@ -1201,6 +1226,20 @@ module Google
|
|
|
1201
1226
|
# @!attribute [rw] ipv6_access_type
|
|
1202
1227
|
# @return [::Google::Cloud::Container::V1beta1::IPAllocationPolicy::IPv6AccessType]
|
|
1203
1228
|
# The ipv6 access type (internal or external) when create_subnetwork is true
|
|
1229
|
+
# @!attribute [rw] pod_cidr_overprovision_config
|
|
1230
|
+
# @return [::Google::Cloud::Container::V1beta1::PodCIDROverprovisionConfig]
|
|
1231
|
+
# [PRIVATE FIELD]
|
|
1232
|
+
# Pod CIDR size overprovisioning config for the cluster.
|
|
1233
|
+
#
|
|
1234
|
+
# Pod CIDR size per node depends on max_pods_per_node. By default, the value
|
|
1235
|
+
# of max_pods_per_node is doubled and then rounded off to next power of 2 to
|
|
1236
|
+
# get the size of pod CIDR block per node.
|
|
1237
|
+
# Example: max_pods_per_node of 30 would result in 64 IPs (/26).
|
|
1238
|
+
#
|
|
1239
|
+
# This config can disable the doubling of IPs (we still round off to next
|
|
1240
|
+
# power of 2)
|
|
1241
|
+
# Example: max_pods_per_node of 30 will result in 32 IPs (/27) when
|
|
1242
|
+
# overprovisioning is disabled.
|
|
1204
1243
|
# @!attribute [r] subnet_ipv6_cidr_block
|
|
1205
1244
|
# @return [::String]
|
|
1206
1245
|
# Output only. [Output only] The subnet's IPv6 CIDR block used by nodes and
|
|
@@ -1208,6 +1247,12 @@ module Google
|
|
|
1208
1247
|
# @!attribute [r] services_ipv6_cidr_block
|
|
1209
1248
|
# @return [::String]
|
|
1210
1249
|
# Output only. [Output only] The services IPv6 CIDR block for the cluster.
|
|
1250
|
+
# @!attribute [r] additional_pod_ranges_config
|
|
1251
|
+
# @return [::Google::Cloud::Container::V1beta1::AdditionalPodRangesConfig]
|
|
1252
|
+
# Output only. [Output only] The additional pod ranges that are added to the
|
|
1253
|
+
# cluster. These pod ranges can be used by new node pools to allocate pod IPs
|
|
1254
|
+
# automatically. Once the range is removed it will not show up in
|
|
1255
|
+
# IPAllocationPolicy.
|
|
1211
1256
|
class IPAllocationPolicy
|
|
1212
1257
|
include ::Google::Protobuf::MessageExts
|
|
1213
1258
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1669,6 +1714,9 @@ module Google
|
|
|
1669
1714
|
# This checksum is computed by the server based on the value of cluster
|
|
1670
1715
|
# fields, and may be sent on update requests to ensure the client has an
|
|
1671
1716
|
# up-to-date value before proceeding.
|
|
1717
|
+
# @!attribute [rw] fleet
|
|
1718
|
+
# @return [::Google::Cloud::Container::V1beta1::Fleet]
|
|
1719
|
+
# Fleet information for the cluster.
|
|
1672
1720
|
class Cluster
|
|
1673
1721
|
include ::Google::Protobuf::MessageExts
|
|
1674
1722
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -2010,11 +2058,27 @@ module Google
|
|
|
2010
2058
|
# The desired stack type of the cluster.
|
|
2011
2059
|
# If a stack type is provided and does not match the current stack type of
|
|
2012
2060
|
# the cluster, update will attempt to change the stack type to the new type.
|
|
2061
|
+
# @!attribute [rw] additional_pod_ranges_config
|
|
2062
|
+
# @return [::Google::Cloud::Container::V1beta1::AdditionalPodRangesConfig]
|
|
2063
|
+
# The additional pod ranges to be added to the cluster. These pod ranges
|
|
2064
|
+
# can be used by node pools to allocate pod IPs.
|
|
2065
|
+
# @!attribute [rw] removed_additional_pod_ranges_config
|
|
2066
|
+
# @return [::Google::Cloud::Container::V1beta1::AdditionalPodRangesConfig]
|
|
2067
|
+
# The additional pod ranges that are to be removed from the cluster.
|
|
2068
|
+
# The pod ranges specified here must have been specified earlier in the
|
|
2069
|
+
# 'additional_pod_ranges_config' argument.
|
|
2013
2070
|
class ClusterUpdate
|
|
2014
2071
|
include ::Google::Protobuf::MessageExts
|
|
2015
2072
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2016
2073
|
end
|
|
2017
2074
|
|
|
2075
|
+
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
|
2076
|
+
# ranges supporting the ClusterUpdate message.
|
|
2077
|
+
class AdditionalPodRangesConfig
|
|
2078
|
+
include ::Google::Protobuf::MessageExts
|
|
2079
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2080
|
+
end
|
|
2081
|
+
|
|
2018
2082
|
# This operation resource represents operations that may have happened or are
|
|
2019
2083
|
# happening on the cluster. All fields are output only.
|
|
2020
2084
|
# @!attribute [rw] name
|
|
@@ -5089,6 +5153,26 @@ module Google
|
|
|
5089
5153
|
end
|
|
5090
5154
|
end
|
|
5091
5155
|
|
|
5156
|
+
# Fleet is the fleet configuration for the cluster.
|
|
5157
|
+
# @!attribute [rw] project
|
|
5158
|
+
# @return [::String]
|
|
5159
|
+
# The Fleet host project(project ID or project number) where this cluster
|
|
5160
|
+
# will be registered to. This field cannot be changed after the cluster has
|
|
5161
|
+
# been registered.
|
|
5162
|
+
# @!attribute [rw] membership
|
|
5163
|
+
# @return [::String]
|
|
5164
|
+
# [Output only] The full resource name of the registered fleet membership of
|
|
5165
|
+
# the cluster, in the format
|
|
5166
|
+
# `//gkehub.googleapis.com/projects/*/locations/*/memberships/*`.
|
|
5167
|
+
# @!attribute [rw] pre_registered
|
|
5168
|
+
# @return [::Boolean]
|
|
5169
|
+
# [Output only] Whether the cluster has been registered through the fleet
|
|
5170
|
+
# API.
|
|
5171
|
+
class Fleet
|
|
5172
|
+
include ::Google::Protobuf::MessageExts
|
|
5173
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
5174
|
+
end
|
|
5175
|
+
|
|
5092
5176
|
# PrivateIPv6GoogleAccess controls whether and how the pods can communicate
|
|
5093
5177
|
# with Google Services through gRPC over IPv6.
|
|
5094
5178
|
module PrivateIPv6GoogleAccess
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-container-v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.18.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-
|
|
11
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|