Class: Google::Cloud::GkeMultiCloud::V1::AwsClusters::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb

Overview

Configuration class for the AwsClusters API.

This class represents the configuration for AwsClusters, providing control over timeouts, retry behavior, logging, transport parameters, and other low-level controls. Certain parameters can also be applied individually to specific RPCs. See Rpcs for a list of RPCs that can be configured independently.

Configuration can be applied globally to all clients, or to a single client on construction.

Examples:


# Modify the global config, setting the timeout for
# create_aws_cluster to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Cloud::GkeMultiCloud::V1::AwsClusters::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.create_aws_cluster.timeout = 20.0
end

# Apply the above configuration only to a new client.
client = ::Google::Cloud::GkeMultiCloud::V1::AwsClusters::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.create_aws_cluster.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channel_args::Hash

Extra parameters passed to the gRPC channel. Note: this is ignored if a GRPC::Core::Channel object is provided as the credential.

Returns:

  • (::Hash)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#credentials::Object

Credentials to send with calls. You may provide any of the following types:

  • (String) The path to a service account key file in JSON format
  • (Hash) A service account key as a Hash
  • (Google::Auth::Credentials) A googleauth credentials object (see the googleauth docs)
  • (Signet::OAuth2::Client) A signet oauth2 client object (see the signet docs)
  • (GRPC::Core::Channel) a gRPC channel with included credentials
  • (GRPC::Core::ChannelCredentials) a gRPC credentails object
  • (nil) indicating no credentials

Returns:

  • (::Object)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#endpoint::String?

A custom service endpoint, as a hostname or hostname:port. The default is nil, indicating to use the default endpoint in the current universe domain.

Returns:

  • (::String, nil)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#interceptors::Array<::GRPC::ClientInterceptor>

An array of interceptors that are run before calls are executed.

Returns:

  • (::Array<::GRPC::ClientInterceptor>)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#metadata::Hash{::Symbol=>::String}

Additional gRPC headers to be sent with the call.

Returns:

  • (::Hash{::Symbol=>::String})


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#retry_policy::Hash

The retry policy. The value is a hash with the following keys:

  • :initial_delay (type: Numeric) - The initial delay in seconds.
  • :max_delay (type: Numeric) - The max delay in seconds.
  • :multiplier (type: Numeric) - The incremental backoff multiplier.
  • :retry_codes (type: Array<String>) - The error codes that should trigger a retry.

Returns:

  • (::Hash)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

#universe_domain::String?

The universe domain within which to make requests. This determines the default endpoint URL. The default value of nil uses the environment universe (usually the default "googleapis.com" universe).

Returns:

  • (::String, nil)


2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2085

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the AwsClusters API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_cluster
    ##
    # RPC-specific configuration for `update_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_cluster
    ##
    # RPC-specific configuration for `get_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_cluster
    ##
    # RPC-specific configuration for `list_aws_clusters`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_clusters
    ##
    # RPC-specific configuration for `delete_aws_cluster`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_cluster
    ##
    # RPC-specific configuration for `generate_aws_cluster_agent_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_cluster_agent_token
    ##
    # RPC-specific configuration for `generate_aws_access_token`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_aws_access_token
    ##
    # RPC-specific configuration for `create_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_aws_node_pool
    ##
    # RPC-specific configuration for `update_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_aws_node_pool
    ##
    # RPC-specific configuration for `rollback_aws_node_pool_update`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :rollback_aws_node_pool_update
    ##
    # RPC-specific configuration for `get_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_node_pool
    ##
    # RPC-specific configuration for `list_aws_node_pools`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_aws_node_pools
    ##
    # RPC-specific configuration for `delete_aws_node_pool`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_aws_node_pool
    ##
    # RPC-specific configuration for `get_aws_open_id_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_open_id_config
    ##
    # RPC-specific configuration for `get_aws_json_web_keys`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_json_web_keys
    ##
    # RPC-specific configuration for `get_aws_server_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_aws_server_config

    # @private
    def initialize parent_rpcs = nil
      create_aws_cluster_config = parent_rpcs.create_aws_cluster if parent_rpcs.respond_to? :create_aws_cluster
      @create_aws_cluster = ::Gapic::Config::Method.new create_aws_cluster_config
      update_aws_cluster_config = parent_rpcs.update_aws_cluster if parent_rpcs.respond_to? :update_aws_cluster
      @update_aws_cluster = ::Gapic::Config::Method.new update_aws_cluster_config
      get_aws_cluster_config = parent_rpcs.get_aws_cluster if parent_rpcs.respond_to? :get_aws_cluster
      @get_aws_cluster = ::Gapic::Config::Method.new get_aws_cluster_config
      list_aws_clusters_config = parent_rpcs.list_aws_clusters if parent_rpcs.respond_to? :list_aws_clusters
      @list_aws_clusters = ::Gapic::Config::Method.new list_aws_clusters_config
      delete_aws_cluster_config = parent_rpcs.delete_aws_cluster if parent_rpcs.respond_to? :delete_aws_cluster
      @delete_aws_cluster = ::Gapic::Config::Method.new delete_aws_cluster_config
      generate_aws_cluster_agent_token_config = parent_rpcs.generate_aws_cluster_agent_token if parent_rpcs.respond_to? :generate_aws_cluster_agent_token
      @generate_aws_cluster_agent_token = ::Gapic::Config::Method.new generate_aws_cluster_agent_token_config
      generate_aws_access_token_config = parent_rpcs.generate_aws_access_token if parent_rpcs.respond_to? :generate_aws_access_token
      @generate_aws_access_token = ::Gapic::Config::Method.new generate_aws_access_token_config
      create_aws_node_pool_config = parent_rpcs.create_aws_node_pool if parent_rpcs.respond_to? :create_aws_node_pool
      @create_aws_node_pool = ::Gapic::Config::Method.new create_aws_node_pool_config
      update_aws_node_pool_config = parent_rpcs.update_aws_node_pool if parent_rpcs.respond_to? :update_aws_node_pool
      @update_aws_node_pool = ::Gapic::Config::Method.new update_aws_node_pool_config
      rollback_aws_node_pool_update_config = parent_rpcs.rollback_aws_node_pool_update if parent_rpcs.respond_to? :rollback_aws_node_pool_update
      @rollback_aws_node_pool_update = ::Gapic::Config::Method.new rollback_aws_node_pool_update_config
      get_aws_node_pool_config = parent_rpcs.get_aws_node_pool if parent_rpcs.respond_to? :get_aws_node_pool
      @get_aws_node_pool = ::Gapic::Config::Method.new get_aws_node_pool_config
      list_aws_node_pools_config = parent_rpcs.list_aws_node_pools if parent_rpcs.respond_to? :list_aws_node_pools
      @list_aws_node_pools = ::Gapic::Config::Method.new list_aws_node_pools_config
      delete_aws_node_pool_config = parent_rpcs.delete_aws_node_pool if parent_rpcs.respond_to? :delete_aws_node_pool
      @delete_aws_node_pool = ::Gapic::Config::Method.new delete_aws_node_pool_config
      get_aws_open_id_config_config = parent_rpcs.get_aws_open_id_config if parent_rpcs.respond_to? :get_aws_open_id_config
      @get_aws_open_id_config = ::Gapic::Config::Method.new get_aws_open_id_config_config
      get_aws_json_web_keys_config = parent_rpcs.get_aws_json_web_keys if parent_rpcs.respond_to? :get_aws_json_web_keys
      @get_aws_json_web_keys = ::Gapic::Config::Method.new get_aws_json_web_keys_config
      get_aws_server_config_config = parent_rpcs.get_aws_server_config if parent_rpcs.respond_to? :get_aws_server_config
      @get_aws_server_config = ::Gapic::Config::Method.new get_aws_server_config_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#channel_pool::Gapic::ServiceStub::ChannelPool::Configuration

Configuration for the channel pool

Returns:

  • (::Gapic::ServiceStub::ChannelPool::Configuration)


2132
2133
2134
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2132

def channel_pool
  @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
end

#rpcsRpcs

Configurations for individual RPCs

Returns:



2120
2121
2122
2123
2124
2125
2126
# File 'lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb', line 2120

def rpcs
  @rpcs ||= begin
    parent_rpcs = nil
    parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
    Rpcs.new parent_rpcs
  end
end