class Google::Area120::Tables::V1alpha1::TablesService::Client::Configuration::Rpcs

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

batch_create_rows[R]

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

batch_delete_rows[R]

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

batch_update_rows[R]

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

create_row[R]

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

delete_row[R]

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

get_row[R]

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

get_table[R]

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

get_workspace[R]

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

list_rows[R]

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

list_tables[R]

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

list_workspaces[R]

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

update_row[R]

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

Public Class Methods

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

@private

# File lib/google/area120/tables/v1alpha1/tables_service/client.rb, line 1265
def initialize parent_rpcs = nil
  get_table_config = parent_rpcs.get_table if parent_rpcs.respond_to? :get_table
  @get_table = ::Gapic::Config::Method.new get_table_config
  list_tables_config = parent_rpcs.list_tables if parent_rpcs.respond_to? :list_tables
  @list_tables = ::Gapic::Config::Method.new list_tables_config
  get_workspace_config = parent_rpcs.get_workspace if parent_rpcs.respond_to? :get_workspace
  @get_workspace = ::Gapic::Config::Method.new get_workspace_config
  list_workspaces_config = parent_rpcs.list_workspaces if parent_rpcs.respond_to? :list_workspaces
  @list_workspaces = ::Gapic::Config::Method.new list_workspaces_config
  get_row_config = parent_rpcs.get_row if parent_rpcs.respond_to? :get_row
  @get_row = ::Gapic::Config::Method.new get_row_config
  list_rows_config = parent_rpcs.list_rows if parent_rpcs.respond_to? :list_rows
  @list_rows = ::Gapic::Config::Method.new list_rows_config
  create_row_config = parent_rpcs.create_row if parent_rpcs.respond_to? :create_row
  @create_row = ::Gapic::Config::Method.new create_row_config
  batch_create_rows_config = parent_rpcs.batch_create_rows if parent_rpcs.respond_to? :batch_create_rows
  @batch_create_rows = ::Gapic::Config::Method.new batch_create_rows_config
  update_row_config = parent_rpcs.update_row if parent_rpcs.respond_to? :update_row
  @update_row = ::Gapic::Config::Method.new update_row_config
  batch_update_rows_config = parent_rpcs.batch_update_rows if parent_rpcs.respond_to? :batch_update_rows
  @batch_update_rows = ::Gapic::Config::Method.new batch_update_rows_config
  delete_row_config = parent_rpcs.delete_row if parent_rpcs.respond_to? :delete_row
  @delete_row = ::Gapic::Config::Method.new delete_row_config
  batch_delete_rows_config = parent_rpcs.batch_delete_rows if parent_rpcs.respond_to? :batch_delete_rows
  @batch_delete_rows = ::Gapic::Config::Method.new batch_delete_rows_config

  yield self if block_given?
end