class Google::Apis::BigtableadminV1::OptimizeRestoredTableMetadata
Metadata type for the long-running operation used to track the progress of optimizations performed on a newly restored table. This long-running operation is automatically created by the system after the successful completion of a table restore, and cannot be cancelled.
Attributes
name[RW]
Name of the restored table being optimized. Corresponds to the JSON property `name` @return [String]
progress[RW]
Encapsulates progress related information for a Cloud Bigtable long running operation. Corresponds to the JSON property `progress` @return [Google::Apis::BigtableadminV1::OperationProgress]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 602 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_v1/classes.rb, line 607 def update!(**args) @name = args[:name] if args.key?(:name) @progress = args[:progress] if args.key?(:progress) end