Package com.google.bigtable.admin.v2
Interface CreateClusterMetadata.TableProgressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateClusterMetadata.TableProgress
,CreateClusterMetadata.TableProgress.Builder
- Enclosing class:
- CreateClusterMetadata
public static interface CreateClusterMetadata.TableProgressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getEstimatedCopiedBytes()
Estimate of the number of bytes copied so far for this table.long
getEstimatedSizeBytes()
Estimate of the size of the table to be copied.CreateClusterMetadata.TableProgress.State
getState()
.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
int
getStateValue()
.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEstimatedSizeBytes
long getEstimatedSizeBytes()
Estimate of the size of the table to be copied.
int64 estimated_size_bytes = 2;
- Returns:
- The estimatedSizeBytes.
-
getEstimatedCopiedBytes
long getEstimatedCopiedBytes()
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.
int64 estimated_copied_bytes = 3;
- Returns:
- The estimatedCopiedBytes.
-
getStateValue
int getStateValue()
.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
- Returns:
- The enum numeric value on the wire for state.
-
getState
CreateClusterMetadata.TableProgress.State getState()
.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
- Returns:
- The state.
-
-