google-cloud-container-v1beta1 0.16.2 → 0.17.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 +2 -2
- data/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +69 -71
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +7 -0
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +2 -2
- data/proto_docs/google/api/client.rb +57 -3
- data/proto_docs/google/container/v1beta1/cluster_service.rb +25 -2
- metadata +8 -7
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
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Kubernetes Engine V1beta1 API
|
2
2
|
|
3
|
-
|
3
|
+
Builds and manages container-based applications, powered by the open source Kubernetes technology.
|
4
4
|
|
5
5
|
Builds and manages container-based applications, powered by the open source Kubernetes technology.
|
6
6
|
|
@@ -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
|
|
@@ -2056,44 +2056,35 @@ module Google
|
|
2056
2056
|
end
|
2057
2057
|
|
2058
2058
|
##
|
2059
|
-
#
|
2059
|
+
# Gets the public component of the cluster signing keys in
|
2060
|
+
# JSON Web Key format.
|
2061
|
+
# This API is not yet intended for general use, and is not available for all
|
2062
|
+
# clusters.
|
2060
2063
|
#
|
2061
|
-
# @overload
|
2062
|
-
# Pass arguments to `
|
2063
|
-
# {::Google::Cloud::Container::V1beta1::
|
2064
|
+
# @overload get_json_web_keys(request, options = nil)
|
2065
|
+
# Pass arguments to `get_json_web_keys` via a request object, either of type
|
2066
|
+
# {::Google::Cloud::Container::V1beta1::GetJSONWebKeysRequest} or an equivalent Hash.
|
2064
2067
|
#
|
2065
|
-
# @param request [::Google::Cloud::Container::V1beta1::
|
2068
|
+
# @param request [::Google::Cloud::Container::V1beta1::GetJSONWebKeysRequest, ::Hash]
|
2066
2069
|
# A request object representing the call parameters. Required. To specify no
|
2067
2070
|
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2068
2071
|
# @param options [::Gapic::CallOptions, ::Hash]
|
2069
2072
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
2070
2073
|
#
|
2071
|
-
# @overload
|
2072
|
-
# Pass arguments to `
|
2074
|
+
# @overload get_json_web_keys(parent: nil)
|
2075
|
+
# Pass arguments to `get_json_web_keys` via keyword arguments. Note that at
|
2073
2076
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
2074
2077
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
2075
2078
|
#
|
2076
|
-
# @param project_id [::String]
|
2077
|
-
# Required. Deprecated. The Google Developers Console [project ID or project
|
2078
|
-
# number](https://cloud.google.com/resource-manager/docs/creating-managing-projects).
|
2079
|
-
# This field has been deprecated and replaced by the parent field.
|
2080
|
-
# @param zone [::String]
|
2081
|
-
# Required. Deprecated. The name of the Google Compute Engine
|
2082
|
-
# [zone](https://cloud.google.com/compute/docs/zones#available) in which the
|
2083
|
-
# cluster resides. This field has been deprecated and replaced by the parent
|
2084
|
-
# field.
|
2085
|
-
# @param cluster_id [::String]
|
2086
|
-
# Required. Deprecated. The name of the cluster.
|
2087
|
-
# This field has been deprecated and replaced by the parent field.
|
2088
2079
|
# @param parent [::String]
|
2089
|
-
# The
|
2090
|
-
#
|
2080
|
+
# The cluster (project, location, cluster name) to get keys for. Specified in
|
2081
|
+
# the format `projects/*/locations/*/clusters/*`.
|
2091
2082
|
#
|
2092
2083
|
# @yield [response, operation] Access the result along with the RPC operation
|
2093
|
-
# @yieldparam response [::Google::Cloud::Container::V1beta1::
|
2084
|
+
# @yieldparam response [::Google::Cloud::Container::V1beta1::GetJSONWebKeysResponse]
|
2094
2085
|
# @yieldparam operation [::GRPC::ActiveCall::Operation]
|
2095
2086
|
#
|
2096
|
-
# @return [::Google::Cloud::Container::V1beta1::
|
2087
|
+
# @return [::Google::Cloud::Container::V1beta1::GetJSONWebKeysResponse]
|
2097
2088
|
#
|
2098
2089
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
2099
2090
|
#
|
@@ -2104,24 +2095,24 @@ module Google
|
|
2104
2095
|
# client = Google::Cloud::Container::V1beta1::ClusterManager::Client.new
|
2105
2096
|
#
|
2106
2097
|
# # Create a request. To set request fields, pass in keyword arguments.
|
2107
|
-
# request = Google::Cloud::Container::V1beta1::
|
2098
|
+
# request = Google::Cloud::Container::V1beta1::GetJSONWebKeysRequest.new
|
2108
2099
|
#
|
2109
|
-
# # Call the
|
2110
|
-
# result = client.
|
2100
|
+
# # Call the get_json_web_keys method.
|
2101
|
+
# result = client.get_json_web_keys request
|
2111
2102
|
#
|
2112
|
-
# # The returned object is of type Google::Cloud::Container::V1beta1::
|
2103
|
+
# # The returned object is of type Google::Cloud::Container::V1beta1::GetJSONWebKeysResponse.
|
2113
2104
|
# p result
|
2114
2105
|
#
|
2115
|
-
def
|
2106
|
+
def get_json_web_keys request, options = nil
|
2116
2107
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
2117
2108
|
|
2118
|
-
request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Container::V1beta1::
|
2109
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Container::V1beta1::GetJSONWebKeysRequest
|
2119
2110
|
|
2120
2111
|
# Converts hash and nil to an options object
|
2121
2112
|
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2122
2113
|
|
2123
2114
|
# Customize the options with defaults
|
2124
|
-
metadata = @config.rpcs.
|
2115
|
+
metadata = @config.rpcs.get_json_web_keys.metadata.to_h
|
2125
2116
|
|
2126
2117
|
# Set x-goog-api-client and x-goog-user-project headers
|
2127
2118
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
@@ -2137,15 +2128,15 @@ module Google
|
|
2137
2128
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
2138
2129
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
2139
2130
|
|
2140
|
-
options.apply_defaults timeout: @config.rpcs.
|
2131
|
+
options.apply_defaults timeout: @config.rpcs.get_json_web_keys.timeout,
|
2141
2132
|
metadata: metadata,
|
2142
|
-
retry_policy: @config.rpcs.
|
2133
|
+
retry_policy: @config.rpcs.get_json_web_keys.retry_policy
|
2143
2134
|
|
2144
2135
|
options.apply_defaults timeout: @config.timeout,
|
2145
2136
|
metadata: @config.metadata,
|
2146
2137
|
retry_policy: @config.retry_policy
|
2147
2138
|
|
2148
|
-
@cluster_manager_stub.call_rpc :
|
2139
|
+
@cluster_manager_stub.call_rpc :get_json_web_keys, request, options: options do |response, operation|
|
2149
2140
|
yield response, operation if block_given?
|
2150
2141
|
return response
|
2151
2142
|
end
|
@@ -2154,35 +2145,44 @@ module Google
|
|
2154
2145
|
end
|
2155
2146
|
|
2156
2147
|
##
|
2157
|
-
#
|
2158
|
-
# JSON Web Key format.
|
2159
|
-
# This API is not yet intended for general use, and is not available for all
|
2160
|
-
# clusters.
|
2148
|
+
# Lists the node pools for a cluster.
|
2161
2149
|
#
|
2162
|
-
# @overload
|
2163
|
-
# Pass arguments to `
|
2164
|
-
# {::Google::Cloud::Container::V1beta1::
|
2150
|
+
# @overload list_node_pools(request, options = nil)
|
2151
|
+
# Pass arguments to `list_node_pools` via a request object, either of type
|
2152
|
+
# {::Google::Cloud::Container::V1beta1::ListNodePoolsRequest} or an equivalent Hash.
|
2165
2153
|
#
|
2166
|
-
# @param request [::Google::Cloud::Container::V1beta1::
|
2154
|
+
# @param request [::Google::Cloud::Container::V1beta1::ListNodePoolsRequest, ::Hash]
|
2167
2155
|
# A request object representing the call parameters. Required. To specify no
|
2168
2156
|
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2169
2157
|
# @param options [::Gapic::CallOptions, ::Hash]
|
2170
2158
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
2171
2159
|
#
|
2172
|
-
# @overload
|
2173
|
-
# Pass arguments to `
|
2160
|
+
# @overload list_node_pools(project_id: nil, zone: nil, cluster_id: nil, parent: nil)
|
2161
|
+
# Pass arguments to `list_node_pools` via keyword arguments. Note that at
|
2174
2162
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
2175
2163
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
2176
2164
|
#
|
2165
|
+
# @param project_id [::String]
|
2166
|
+
# Required. Deprecated. The Google Developers Console [project ID or project
|
2167
|
+
# number](https://cloud.google.com/resource-manager/docs/creating-managing-projects).
|
2168
|
+
# This field has been deprecated and replaced by the parent field.
|
2169
|
+
# @param zone [::String]
|
2170
|
+
# Required. Deprecated. The name of the Google Compute Engine
|
2171
|
+
# [zone](https://cloud.google.com/compute/docs/zones#available) in which the
|
2172
|
+
# cluster resides. This field has been deprecated and replaced by the parent
|
2173
|
+
# field.
|
2174
|
+
# @param cluster_id [::String]
|
2175
|
+
# Required. Deprecated. The name of the cluster.
|
2176
|
+
# This field has been deprecated and replaced by the parent field.
|
2177
2177
|
# @param parent [::String]
|
2178
|
-
# The
|
2179
|
-
# the format `projects/*/locations/*/clusters/*`.
|
2178
|
+
# The parent (project, location, cluster name) where the node pools will be
|
2179
|
+
# listed. Specified in the format `projects/*/locations/*/clusters/*`.
|
2180
2180
|
#
|
2181
2181
|
# @yield [response, operation] Access the result along with the RPC operation
|
2182
|
-
# @yieldparam response [::Google::Cloud::Container::V1beta1::
|
2182
|
+
# @yieldparam response [::Google::Cloud::Container::V1beta1::ListNodePoolsResponse]
|
2183
2183
|
# @yieldparam operation [::GRPC::ActiveCall::Operation]
|
2184
2184
|
#
|
2185
|
-
# @return [::Google::Cloud::Container::V1beta1::
|
2185
|
+
# @return [::Google::Cloud::Container::V1beta1::ListNodePoolsResponse]
|
2186
2186
|
#
|
2187
2187
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
2188
2188
|
#
|
@@ -2193,24 +2193,24 @@ module Google
|
|
2193
2193
|
# client = Google::Cloud::Container::V1beta1::ClusterManager::Client.new
|
2194
2194
|
#
|
2195
2195
|
# # Create a request. To set request fields, pass in keyword arguments.
|
2196
|
-
# request = Google::Cloud::Container::V1beta1::
|
2196
|
+
# request = Google::Cloud::Container::V1beta1::ListNodePoolsRequest.new
|
2197
2197
|
#
|
2198
|
-
# # Call the
|
2199
|
-
# result = client.
|
2198
|
+
# # Call the list_node_pools method.
|
2199
|
+
# result = client.list_node_pools request
|
2200
2200
|
#
|
2201
|
-
# # The returned object is of type Google::Cloud::Container::V1beta1::
|
2201
|
+
# # The returned object is of type Google::Cloud::Container::V1beta1::ListNodePoolsResponse.
|
2202
2202
|
# p result
|
2203
2203
|
#
|
2204
|
-
def
|
2204
|
+
def list_node_pools request, options = nil
|
2205
2205
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
2206
2206
|
|
2207
|
-
request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Container::V1beta1::
|
2207
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Container::V1beta1::ListNodePoolsRequest
|
2208
2208
|
|
2209
2209
|
# Converts hash and nil to an options object
|
2210
2210
|
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2211
2211
|
|
2212
2212
|
# Customize the options with defaults
|
2213
|
-
metadata = @config.rpcs.
|
2213
|
+
metadata = @config.rpcs.list_node_pools.metadata.to_h
|
2214
2214
|
|
2215
2215
|
# Set x-goog-api-client and x-goog-user-project headers
|
2216
2216
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
@@ -2226,15 +2226,15 @@ module Google
|
|
2226
2226
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
2227
2227
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
2228
2228
|
|
2229
|
-
options.apply_defaults timeout: @config.rpcs.
|
2229
|
+
options.apply_defaults timeout: @config.rpcs.list_node_pools.timeout,
|
2230
2230
|
metadata: metadata,
|
2231
|
-
retry_policy: @config.rpcs.
|
2231
|
+
retry_policy: @config.rpcs.list_node_pools.retry_policy
|
2232
2232
|
|
2233
2233
|
options.apply_defaults timeout: @config.timeout,
|
2234
2234
|
metadata: @config.metadata,
|
2235
2235
|
retry_policy: @config.retry_policy
|
2236
2236
|
|
2237
|
-
@cluster_manager_stub.call_rpc :
|
2237
|
+
@cluster_manager_stub.call_rpc :list_node_pools, request, options: options do |response, operation|
|
2238
2238
|
yield response, operation if block_given?
|
2239
2239
|
return response
|
2240
2240
|
end
|
@@ -3610,13 +3610,11 @@ module Google
|
|
3610
3610
|
# # Call the list_usable_subnetworks method.
|
3611
3611
|
# result = client.list_usable_subnetworks request
|
3612
3612
|
#
|
3613
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
3614
|
-
# #
|
3615
|
-
#
|
3616
|
-
# # methods are also available for managing paging directly.
|
3617
|
-
# result.each do |response|
|
3613
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
3614
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
3615
|
+
# result.each do |item|
|
3618
3616
|
# # Each element is of type ::Google::Cloud::Container::V1beta1::UsableSubnetwork.
|
3619
|
-
# p
|
3617
|
+
# p item
|
3620
3618
|
# end
|
3621
3619
|
#
|
3622
3620
|
def list_usable_subnetworks request, options = nil
|
@@ -3785,9 +3783,9 @@ module Google
|
|
3785
3783
|
# * (`String`) The path to a service account key file in JSON format
|
3786
3784
|
# * (`Hash`) A service account key as a Hash
|
3787
3785
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
3788
|
-
# (see the [googleauth docs](https://
|
3786
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
3789
3787
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
3790
|
-
# (see the [signet docs](https://
|
3788
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
3791
3789
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
3792
3790
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
3793
3791
|
# * (`nil`) indicating no credentials
|
@@ -3968,15 +3966,15 @@ module Google
|
|
3968
3966
|
#
|
3969
3967
|
attr_reader :get_server_config
|
3970
3968
|
##
|
3971
|
-
# RPC-specific configuration for `
|
3969
|
+
# RPC-specific configuration for `get_json_web_keys`
|
3972
3970
|
# @return [::Gapic::Config::Method]
|
3973
3971
|
#
|
3974
|
-
attr_reader :
|
3972
|
+
attr_reader :get_json_web_keys
|
3975
3973
|
##
|
3976
|
-
# RPC-specific configuration for `
|
3974
|
+
# RPC-specific configuration for `list_node_pools`
|
3977
3975
|
# @return [::Gapic::Config::Method]
|
3978
3976
|
#
|
3979
|
-
attr_reader :
|
3977
|
+
attr_reader :list_node_pools
|
3980
3978
|
##
|
3981
3979
|
# RPC-specific configuration for `get_node_pool`
|
3982
3980
|
# @return [::Gapic::Config::Method]
|
@@ -4089,10 +4087,10 @@ module Google
|
|
4089
4087
|
@cancel_operation = ::Gapic::Config::Method.new cancel_operation_config
|
4090
4088
|
get_server_config_config = parent_rpcs.get_server_config if parent_rpcs.respond_to? :get_server_config
|
4091
4089
|
@get_server_config = ::Gapic::Config::Method.new get_server_config_config
|
4092
|
-
list_node_pools_config = parent_rpcs.list_node_pools if parent_rpcs.respond_to? :list_node_pools
|
4093
|
-
@list_node_pools = ::Gapic::Config::Method.new list_node_pools_config
|
4094
4090
|
get_json_web_keys_config = parent_rpcs.get_json_web_keys if parent_rpcs.respond_to? :get_json_web_keys
|
4095
4091
|
@get_json_web_keys = ::Gapic::Config::Method.new get_json_web_keys_config
|
4092
|
+
list_node_pools_config = parent_rpcs.list_node_pools if parent_rpcs.respond_to? :list_node_pools
|
4093
|
+
@list_node_pools = ::Gapic::Config::Method.new list_node_pools_config
|
4096
4094
|
get_node_pool_config = parent_rpcs.get_node_pool if parent_rpcs.respond_to? :get_node_pool
|
4097
4095
|
@get_node_pool = ::Gapic::Config::Method.new get_node_pool_config
|
4098
4096
|
create_node_pool_config = parent_rpcs.create_node_pool if parent_rpcs.respond_to? :create_node_pool
|
@@ -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
|
@@ -94,13 +94,13 @@ module Google
|
|
94
94
|
rpc :CancelOperation, ::Google::Cloud::Container::V1beta1::CancelOperationRequest, ::Google::Protobuf::Empty
|
95
95
|
# Returns configuration info about the Google Kubernetes Engine service.
|
96
96
|
rpc :GetServerConfig, ::Google::Cloud::Container::V1beta1::GetServerConfigRequest, ::Google::Cloud::Container::V1beta1::ServerConfig
|
97
|
-
# Lists the node pools for a cluster.
|
98
|
-
rpc :ListNodePools, ::Google::Cloud::Container::V1beta1::ListNodePoolsRequest, ::Google::Cloud::Container::V1beta1::ListNodePoolsResponse
|
99
97
|
# Gets the public component of the cluster signing keys in
|
100
98
|
# JSON Web Key format.
|
101
99
|
# This API is not yet intended for general use, and is not available for all
|
102
100
|
# clusters.
|
103
101
|
rpc :GetJSONWebKeys, ::Google::Cloud::Container::V1beta1::GetJSONWebKeysRequest, ::Google::Cloud::Container::V1beta1::GetJSONWebKeysResponse
|
102
|
+
# Lists the node pools for a cluster.
|
103
|
+
rpc :ListNodePools, ::Google::Cloud::Container::V1beta1::ListNodePoolsRequest, ::Google::Cloud::Container::V1beta1::ListNodePoolsResponse
|
104
104
|
# Retrieves the requested node pool.
|
105
105
|
rpc :GetNodePool, ::Google::Cloud::Container::V1beta1::GetNodePoolRequest, ::Google::Cloud::Container::V1beta1::NodePool
|
106
106
|
# Creates a node pool for a cluster.
|
@@ -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
|
@@ -604,7 +604,7 @@ module Google
|
|
604
604
|
end
|
605
605
|
end
|
606
606
|
|
607
|
-
# Kubernetes taint is
|
607
|
+
# Kubernetes taint is composed of three fields: key, value, and effect. Effect
|
608
608
|
# can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute.
|
609
609
|
#
|
610
610
|
# See
|
@@ -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
|
@@ -5101,7 +5124,7 @@ module Google
|
|
5101
5124
|
# Enables private IPv6 access to Google Services from GKE
|
5102
5125
|
PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE = 2
|
5103
5126
|
|
5104
|
-
# Enables
|
5127
|
+
# Enables private IPv6 access to and from Google Services
|
5105
5128
|
PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL = 3
|
5106
5129
|
end
|
5107
5130
|
|
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-
|
11
|
+
date: 2023-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.18.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.18.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.
|
53
|
+
version: 1.26.3
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.26.
|
60
|
+
version: 1.26.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -214,5 +214,6 @@ requirements: []
|
|
214
214
|
rubygems_version: 3.4.2
|
215
215
|
signing_key:
|
216
216
|
specification_version: 4
|
217
|
-
summary:
|
217
|
+
summary: Builds and manages container-based applications, powered by the open source
|
218
|
+
Kubernetes technology.
|
218
219
|
test_files: []
|