Class: Google::Apis::BigtableadminV2::RestoreTableRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb

Overview

The request for RestoreTable.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RestoreTableRequest

Returns a new instance of RestoreTableRequest.



2203
2204
2205
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2203

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#backupString

Name of the backup from which to restore. Values are of the form projects// instances//clusters//backups/. Corresponds to the JSON property backup

Returns:

  • (String)


2194
2195
2196
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2194

def backup
  @backup
end

#table_idString

Required. The id of the table to create and restore to. This table must not already exist. The table_id appended to parent forms the full table name of the form projects//instances//tables/. Corresponds to the JSON property tableId

Returns:

  • (String)


2201
2202
2203
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2201

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2208
2209
2210
2211
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2208

def update!(**args)
  @backup = args[:backup] if args.key?(:backup)
  @table_id = args[:table_id] if args.key?(:table_id)
end