Class: Google::Cloud::Bigtable::Admin::V2::CreateClusterMetadata::TableProgress
- Inherits:
-
Object
- Object
- Google::Cloud::Bigtable::Admin::V2::CreateClusterMetadata::TableProgress
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/bigtable/admin/v2/bigtable_instance_admin.rb
Overview
Progress info for copying a table's data to the new cluster.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#estimated_copied_bytes ⇒ ::Integer
Estimate of the number of bytes copied so far for this table.
-
#estimated_size_bytes ⇒ ::Integer
Estimate of the size of the table to be copied.
- #state ⇒ ::Google::Cloud::Bigtable::Admin::V2::CreateClusterMetadata::TableProgress::State
Instance Attribute Details
#estimated_copied_bytes ⇒ ::Integer
Returns 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.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'proto_docs/google/bigtable/admin/v2/bigtable_instance_admin.rb', line 265 class TableProgress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods module State STATE_UNSPECIFIED = 0 # The table has not yet begun copying to the new cluster. PENDING = 1 # The table is actively being copied to the new cluster. COPYING = 2 # The table has been fully copied to the new cluster. COMPLETED = 3 # The table was deleted before it finished copying to the new cluster. # Note that tables deleted after completion will stay marked as # COMPLETED, not CANCELLED. CANCELLED = 4 end end |
#estimated_size_bytes ⇒ ::Integer
Returns Estimate of the size of the table to be copied.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'proto_docs/google/bigtable/admin/v2/bigtable_instance_admin.rb', line 265 class TableProgress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods module State STATE_UNSPECIFIED = 0 # The table has not yet begun copying to the new cluster. PENDING = 1 # The table is actively being copied to the new cluster. COPYING = 2 # The table has been fully copied to the new cluster. COMPLETED = 3 # The table was deleted before it finished copying to the new cluster. # Note that tables deleted after completion will stay marked as # COMPLETED, not CANCELLED. CANCELLED = 4 end end |
#state ⇒ ::Google::Cloud::Bigtable::Admin::V2::CreateClusterMetadata::TableProgress::State
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'proto_docs/google/bigtable/admin/v2/bigtable_instance_admin.rb', line 265 class TableProgress include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods module State STATE_UNSPECIFIED = 0 # The table has not yet begun copying to the new cluster. PENDING = 1 # The table is actively being copied to the new cluster. COPYING = 2 # The table has been fully copied to the new cluster. COMPLETED = 3 # The table was deleted before it finished copying to the new cluster. # Note that tables deleted after completion will stay marked as # COMPLETED, not CANCELLED. CANCELLED = 4 end end |