Class: Google::Apis::BigtableadminV1::OptimizeRestoredTableMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV1::OptimizeRestoredTableMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v1/classes.rb,
lib/google/apis/bigtableadmin_v1/representations.rb,
lib/google/apis/bigtableadmin_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the restored table being optimized.
-
#progress ⇒ Google::Apis::BigtableadminV1::OperationProgress
Encapsulates progress related information for a Cloud Bigtable long running operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OptimizeRestoredTableMetadata
constructor
A new instance of OptimizeRestoredTableMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OptimizeRestoredTableMetadata
Returns a new instance of OptimizeRestoredTableMetadata.
655 656 657 |
# File 'lib/google/apis/bigtableadmin_v1/classes.rb', line 655 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the restored table being optimized.
Corresponds to the JSON property name
647 648 649 |
# File 'lib/google/apis/bigtableadmin_v1/classes.rb', line 647 def name @name end |
#progress ⇒ Google::Apis::BigtableadminV1::OperationProgress
Encapsulates progress related information for a Cloud Bigtable long running
operation.
Corresponds to the JSON property progress
653 654 655 |
# File 'lib/google/apis/bigtableadmin_v1/classes.rb', line 653 def progress @progress end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
660 661 662 663 |
# File 'lib/google/apis/bigtableadmin_v1/classes.rb', line 660 def update!(**args) @name = args[:name] if args.key?(:name) @progress = args[:progress] if args.key?(:progress) end |