class Google::Cloud::Bigtable::Admin::V2::BigtableTableAdmin::Client::Configuration::Rpcs

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

check_consistency[R]

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

create_backup[R]

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

create_table[R]

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

create_table_from_snapshot[R]

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

delete_backup[R]

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

delete_snapshot[R]

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

delete_table[R]

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

drop_row_range[R]

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

generate_consistency_token[R]

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

get_backup[R]

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

get_iam_policy[R]

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

get_snapshot[R]

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

get_table[R]

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

list_backups[R]

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

list_snapshots[R]

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

list_tables[R]

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

modify_column_families[R]

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

restore_table[R]

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

set_iam_policy[R]

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

snapshot_table[R]

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

test_iam_permissions[R]

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

update_backup[R]

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

Public Class Methods

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

@private

# File lib/google/cloud/bigtable/admin/v2/bigtable_table_admin/client.rb, line 2268
def initialize parent_rpcs = nil
  create_table_config = parent_rpcs.create_table if parent_rpcs.respond_to? :create_table
  @create_table = ::Gapic::Config::Method.new create_table_config
  create_table_from_snapshot_config = parent_rpcs.create_table_from_snapshot if parent_rpcs.respond_to? :create_table_from_snapshot
  @create_table_from_snapshot = ::Gapic::Config::Method.new create_table_from_snapshot_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_table_config = parent_rpcs.get_table if parent_rpcs.respond_to? :get_table
  @get_table = ::Gapic::Config::Method.new get_table_config
  delete_table_config = parent_rpcs.delete_table if parent_rpcs.respond_to? :delete_table
  @delete_table = ::Gapic::Config::Method.new delete_table_config
  modify_column_families_config = parent_rpcs.modify_column_families if parent_rpcs.respond_to? :modify_column_families
  @modify_column_families = ::Gapic::Config::Method.new modify_column_families_config
  drop_row_range_config = parent_rpcs.drop_row_range if parent_rpcs.respond_to? :drop_row_range
  @drop_row_range = ::Gapic::Config::Method.new drop_row_range_config
  generate_consistency_token_config = parent_rpcs.generate_consistency_token if parent_rpcs.respond_to? :generate_consistency_token
  @generate_consistency_token = ::Gapic::Config::Method.new generate_consistency_token_config
  check_consistency_config = parent_rpcs.check_consistency if parent_rpcs.respond_to? :check_consistency
  @check_consistency = ::Gapic::Config::Method.new check_consistency_config
  snapshot_table_config = parent_rpcs.snapshot_table if parent_rpcs.respond_to? :snapshot_table
  @snapshot_table = ::Gapic::Config::Method.new snapshot_table_config
  get_snapshot_config = parent_rpcs.get_snapshot if parent_rpcs.respond_to? :get_snapshot
  @get_snapshot = ::Gapic::Config::Method.new get_snapshot_config
  list_snapshots_config = parent_rpcs.list_snapshots if parent_rpcs.respond_to? :list_snapshots
  @list_snapshots = ::Gapic::Config::Method.new list_snapshots_config
  delete_snapshot_config = parent_rpcs.delete_snapshot if parent_rpcs.respond_to? :delete_snapshot
  @delete_snapshot = ::Gapic::Config::Method.new delete_snapshot_config
  create_backup_config = parent_rpcs.create_backup if parent_rpcs.respond_to? :create_backup
  @create_backup = ::Gapic::Config::Method.new create_backup_config
  get_backup_config = parent_rpcs.get_backup if parent_rpcs.respond_to? :get_backup
  @get_backup = ::Gapic::Config::Method.new get_backup_config
  update_backup_config = parent_rpcs.update_backup if parent_rpcs.respond_to? :update_backup
  @update_backup = ::Gapic::Config::Method.new update_backup_config
  delete_backup_config = parent_rpcs.delete_backup if parent_rpcs.respond_to? :delete_backup
  @delete_backup = ::Gapic::Config::Method.new delete_backup_config
  list_backups_config = parent_rpcs.list_backups if parent_rpcs.respond_to? :list_backups
  @list_backups = ::Gapic::Config::Method.new list_backups_config
  restore_table_config = parent_rpcs.restore_table if parent_rpcs.respond_to? :restore_table
  @restore_table = ::Gapic::Config::Method.new restore_table_config
  get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy
  @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config
  set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy
  @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config
  test_iam_permissions_config = parent_rpcs.test_iam_permissions if parent_rpcs.respond_to? :test_iam_permissions
  @test_iam_permissions = ::Gapic::Config::Method.new test_iam_permissions_config

  yield self if block_given?
end