google-cloud-container-v1beta1 0.16.3 → 0.17.0
Sign up to get free protection for your applications and to get access to all the features.
- 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 +7 -0
- data/proto_docs/google/api/client.rb +57 -3
- data/proto_docs/google/container/v1beta1/cluster_service.rb +23 -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: 03efa83b306015f90af21f49eb708a642f5027c84be343ea016e61c9337ba961
|
4
|
+
data.tar.gz: 30387340f45a6735c7c01f6fa5db026a3c7ef5efbf371c1e6f336a68015ab933
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee86e5663ae9b6b2dce5301911ae0ad61949a0f469770d46b1d4e634d0404147dab944c98a0938949e0e1d5d2636e24beaea0647cd21f912e7093419b2182465
|
7
|
+
data.tar.gz: 85c08a8ee2e559a7e658a5c06873019c409f8b0031d45c82d444e7b76f4eab014ddb52bd40fb09fbfc12510df5ccd7221c7458bc5d21d87b61d46484cc493d94
|
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
|
@@ -385,6 +385,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
385
385
|
optional :node_pool_auto_config, :message, 136, "google.container.v1beta1.NodePoolAutoConfig"
|
386
386
|
proto3_optional :protect_config, :message, 137, "google.container.v1beta1.ProtectConfig"
|
387
387
|
optional :etag, :string, 139
|
388
|
+
optional :fleet, :message, 140, "google.container.v1beta1.Fleet"
|
388
389
|
end
|
389
390
|
add_enum "google.container.v1beta1.Cluster.Status" do
|
390
391
|
value :STATUS_UNSPECIFIED, 0
|
@@ -1292,6 +1293,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1292
1293
|
value :SCHEDULER, 4
|
1293
1294
|
value :CONTROLLER_MANAGER, 5
|
1294
1295
|
end
|
1296
|
+
add_message "google.container.v1beta1.Fleet" do
|
1297
|
+
optional :project, :string, 1
|
1298
|
+
optional :membership, :string, 2
|
1299
|
+
optional :pre_registered, :bool, 3
|
1300
|
+
end
|
1295
1301
|
add_enum "google.container.v1beta1.PrivateIPv6GoogleAccess" do
|
1296
1302
|
value :PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED, 0
|
1297
1303
|
value :PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED, 1
|
@@ -1534,6 +1540,7 @@ module Google
|
|
1534
1540
|
LoggingVariantConfig::Variant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LoggingVariantConfig.Variant").enummodule
|
1535
1541
|
MonitoringComponentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig").msgclass
|
1536
1542
|
MonitoringComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig.Component").enummodule
|
1543
|
+
Fleet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Fleet").msgclass
|
1537
1544
|
PrivateIPv6GoogleAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateIPv6GoogleAccess").enummodule
|
1538
1545
|
UpgradeResourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpgradeResourceType").enummodule
|
1539
1546
|
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
|
@@ -1669,6 +1669,9 @@ module Google
|
|
1669
1669
|
# This checksum is computed by the server based on the value of cluster
|
1670
1670
|
# fields, and may be sent on update requests to ensure the client has an
|
1671
1671
|
# up-to-date value before proceeding.
|
1672
|
+
# @!attribute [rw] fleet
|
1673
|
+
# @return [::Google::Cloud::Container::V1beta1::Fleet]
|
1674
|
+
# Fleet information for the cluster.
|
1672
1675
|
class Cluster
|
1673
1676
|
include ::Google::Protobuf::MessageExts
|
1674
1677
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -5089,6 +5092,26 @@ module Google
|
|
5089
5092
|
end
|
5090
5093
|
end
|
5091
5094
|
|
5095
|
+
# Fleet is the fleet configuration for the cluster.
|
5096
|
+
# @!attribute [rw] project
|
5097
|
+
# @return [::String]
|
5098
|
+
# The Fleet host project(project ID or project number) where this cluster
|
5099
|
+
# will be registered to. This field cannot be changed after the cluster has
|
5100
|
+
# been registered.
|
5101
|
+
# @!attribute [rw] membership
|
5102
|
+
# @return [::String]
|
5103
|
+
# [Output only] The full resource name of the registered fleet membership of
|
5104
|
+
# the cluster, in the format
|
5105
|
+
# `//gkehub.googleapis.com/projects/*/locations/*/memberships/*`.
|
5106
|
+
# @!attribute [rw] pre_registered
|
5107
|
+
# @return [::Boolean]
|
5108
|
+
# [Output only] Whether the cluster has been registered through the fleet
|
5109
|
+
# API.
|
5110
|
+
class Fleet
|
5111
|
+
include ::Google::Protobuf::MessageExts
|
5112
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
5113
|
+
end
|
5114
|
+
|
5092
5115
|
# PrivateIPv6GoogleAccess controls whether and how the pods can communicate
|
5093
5116
|
# with Google Services through gRPC over IPv6.
|
5094
5117
|
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.17.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-03-
|
11
|
+
date: 2023-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|