Package com.google.cloud.vmmigration.v1
Interface ReplicatingStepOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReplicatingStep
,ReplicatingStep.Builder
public interface ReplicatingStepOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getLastThirtyMinutesAverageBytesPerSecond()
The source disks replication rate for the last 30 minutes in bytes per second.long
getLastTwoMinutesAverageBytesPerSecond()
The source disks replication rate for the last 2 minutes in bytes per second.long
getReplicatedBytes()
Replicated bytes in the step.long
getTotalBytes()
Total bytes to be handled in the step.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTotalBytes
long getTotalBytes()
Total bytes to be handled in the step.
int64 total_bytes = 1;
- Returns:
- The totalBytes.
-
getReplicatedBytes
long getReplicatedBytes()
Replicated bytes in the step.
int64 replicated_bytes = 2;
- Returns:
- The replicatedBytes.
-
getLastTwoMinutesAverageBytesPerSecond
long getLastTwoMinutesAverageBytesPerSecond()
The source disks replication rate for the last 2 minutes in bytes per second.
int64 last_two_minutes_average_bytes_per_second = 3;
- Returns:
- The lastTwoMinutesAverageBytesPerSecond.
-
getLastThirtyMinutesAverageBytesPerSecond
long getLastThirtyMinutesAverageBytesPerSecond()
The source disks replication rate for the last 30 minutes in bytes per second.
int64 last_thirty_minutes_average_bytes_per_second = 4;
- Returns:
- The lastThirtyMinutesAverageBytesPerSecond.
-
-