Class: Google::Apis::BigtableadminV2::OptimizeRestoredTableMetadata

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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OptimizeRestoredTableMetadata

Returns a new instance of OptimizeRestoredTableMetadata.



1927
1928
1929
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1927

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

Instance Attribute Details

#nameString

Name of the restored table being optimized. Corresponds to the JSON property name

Returns:

  • (String)


1919
1920
1921
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1919

def name
  @name
end

#progressGoogle::Apis::BigtableadminV2::OperationProgress

Encapsulates progress related information for a Cloud Bigtable long running operation. Corresponds to the JSON property progress



1925
1926
1927
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1925

def progress
  @progress
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1932
1933
1934
1935
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 1932

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