class Google::Cloud::Debugger::V2::Debugger::Client::Configuration::Rpcs

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

delete_breakpoint[R]

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

get_breakpoint[R]

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

list_breakpoints[R]

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

list_debuggees[R]

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

set_breakpoint[R]

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

Public Class Methods

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

@private

# File lib/google/cloud/debugger/v2/debugger/client.rb, line 718
def initialize parent_rpcs = nil
  set_breakpoint_config = parent_rpcs.set_breakpoint if parent_rpcs.respond_to? :set_breakpoint
  @set_breakpoint = ::Gapic::Config::Method.new set_breakpoint_config
  get_breakpoint_config = parent_rpcs.get_breakpoint if parent_rpcs.respond_to? :get_breakpoint
  @get_breakpoint = ::Gapic::Config::Method.new get_breakpoint_config
  delete_breakpoint_config = parent_rpcs.delete_breakpoint if parent_rpcs.respond_to? :delete_breakpoint
  @delete_breakpoint = ::Gapic::Config::Method.new delete_breakpoint_config
  list_breakpoints_config = parent_rpcs.list_breakpoints if parent_rpcs.respond_to? :list_breakpoints
  @list_breakpoints = ::Gapic::Config::Method.new list_breakpoints_config
  list_debuggees_config = parent_rpcs.list_debuggees if parent_rpcs.respond_to? :list_debuggees
  @list_debuggees = ::Gapic::Config::Method.new list_debuggees_config

  yield self if block_given?
end