Class: Google::Apis::BigtableadminV2::TableProgress

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/google/apis/bigtableadmin_v2/representations.rb

Overview

Progress info for copying a table's data to the new cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TableProgress

Returns a new instance of TableProgress.



1698
1699
1700
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1698

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

Instance Attribute Details

#estimated_copied_bytesFixnum

Estimate of the number of bytes copied so far for this table. This will eventually reach 'estimated_size_bytes' unless the table copy is CANCELLED. Corresponds to the JSON property estimatedCopiedBytes

Returns:

  • (Fixnum)


1686
1687
1688
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1686

def estimated_copied_bytes
  @estimated_copied_bytes
end

#estimated_size_bytesFixnum

Estimate of the size of the table to be copied. Corresponds to the JSON property estimatedSizeBytes

Returns:

  • (Fixnum)


1691
1692
1693
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1691

def estimated_size_bytes
  @estimated_size_bytes
end

#stateString

Corresponds to the JSON property state

Returns:

  • (String)


1696
1697
1698
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1696

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1703
1704
1705
1706
1707
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 1703

def update!(**args)
  @estimated_copied_bytes = args[:estimated_copied_bytes] if args.key?(:estimated_copied_bytes)
  @estimated_size_bytes = args[:estimated_size_bytes] if args.key?(:estimated_size_bytes)
  @state = args[:state] if args.key?(:state)
end