class Google::Apis::BigtableadminV2::RestoreTableRequest
The request for RestoreTable.
Attributes
backup[RW]
Name of the backup from which to restore. Values are of the form `projects// instances//clusters//backups/`. Corresponds to the JSON property `backup` @return [String]
table_id[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1787 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1792 def update!(**args) @backup = args[:backup] if args.key?(:backup) @table_id = args[:table_id] if args.key?(:table_id) end