class Google::Cloud::AppEngine::V1::DomainMappings::Client::Configuration::Rpcs

Configuration RPC class for the DomainMappings 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.

Attributes

create_domain_mapping[R]

RPC-specific configuration for `create_domain_mapping` @return [::Gapic::Config::Method]

delete_domain_mapping[R]

RPC-specific configuration for `delete_domain_mapping` @return [::Gapic::Config::Method]

get_domain_mapping[R]

RPC-specific configuration for `get_domain_mapping` @return [::Gapic::Config::Method]

list_domain_mappings[R]

RPC-specific configuration for `list_domain_mappings` @return [::Gapic::Config::Method]

update_domain_mapping[R]

RPC-specific configuration for `update_domain_mapping` @return [::Gapic::Config::Method]

Public Class Methods

new(parent_rpcs = nil) { |self| ... } click to toggle source

@private

# File lib/google/cloud/app_engine/v1/domain_mappings/client.rb, line 687
def initialize parent_rpcs = nil
  list_domain_mappings_config = parent_rpcs.list_domain_mappings if parent_rpcs.respond_to? :list_domain_mappings
  @list_domain_mappings = ::Gapic::Config::Method.new list_domain_mappings_config
  get_domain_mapping_config = parent_rpcs.get_domain_mapping if parent_rpcs.respond_to? :get_domain_mapping
  @get_domain_mapping = ::Gapic::Config::Method.new get_domain_mapping_config
  create_domain_mapping_config = parent_rpcs.create_domain_mapping if parent_rpcs.respond_to? :create_domain_mapping
  @create_domain_mapping = ::Gapic::Config::Method.new create_domain_mapping_config
  update_domain_mapping_config = parent_rpcs.update_domain_mapping if parent_rpcs.respond_to? :update_domain_mapping
  @update_domain_mapping = ::Gapic::Config::Method.new update_domain_mapping_config
  delete_domain_mapping_config = parent_rpcs.delete_domain_mapping if parent_rpcs.respond_to? :delete_domain_mapping
  @delete_domain_mapping = ::Gapic::Config::Method.new delete_domain_mapping_config

  yield self if block_given?
end