class Google::Apis::BigtableadminV1::RestoreTableMetadata
Metadata type for the long-running operation returned by RestoreTable.
Attributes
Information about a backup. Corresponds to the JSON property `backupInfo` @return [Google::Apis::BigtableadminV1::BackupInfo]
Name of the table being created and restored to. Corresponds to the JSON property `name` @return [String]
If exists, the name of the long-running operation that will be used to track the post-restore optimization process to optimize the performance of the restored table. The metadata type of the long-running operation is OptimizeRestoreTableMetadata. The response type is Empty. This long-running operation may be automatically created by the system if applicable after the RestoreTable long-running operation completes successfully. This operation may not be created if the table is already optimized or the restore was not successful. Corresponds to the JSON property `optimizeTableOperationName` @return [String]
Encapsulates progress related information for a Cloud Bigtable long running operation. Corresponds to the JSON property `progress` @return [Google::Apis::BigtableadminV1::OperationProgress]
The type of the restore source. Corresponds to the JSON property `sourceType` @return [String]
Public Class Methods
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 677 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 682 def update!(**args) @backup_info = args[:backup_info] if args.key?(:backup_info) @name = args[:name] if args.key?(:name) @optimize_table_operation_name = args[:optimize_table_operation_name] if args.key?(:optimize_table_operation_name) @progress = args[:progress] if args.key?(:progress) @source_type = args[:source_type] if args.key?(:source_type) end