Interface OperationProgressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OperationProgress,OperationProgress.Builder
public interface OperationProgressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetEndTime()If set, the time at which this operation failed or was completed successfully.com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder()If set, the time at which this operation failed or was completed successfully.intgetProgressPercent()Percent completion of the operation.com.google.protobuf.TimestampgetStartTime()Time the request was received.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Time the request was received.booleanhasEndTime()If set, the time at which this operation failed or was completed successfully.booleanhasStartTime()Time the request was received.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProgressPercent
int getProgressPercent()
Percent completion of the operation. Values are between 0 and 100 inclusive.
int32 progress_percent = 1;- Returns:
- The progressPercent.
-
hasStartTime
boolean hasStartTime()
Time the request was received.
.google.protobuf.Timestamp start_time = 2;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Time the request was received.
.google.protobuf.Timestamp start_time = 2;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Time the request was received.
.google.protobuf.Timestamp start_time = 2;
-
hasEndTime
boolean hasEndTime()
If set, the time at which this operation failed or was completed successfully.
.google.protobuf.Timestamp end_time = 3;- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
If set, the time at which this operation failed or was completed successfully.
.google.protobuf.Timestamp end_time = 3;- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
If set, the time at which this operation failed or was completed successfully.
.google.protobuf.Timestamp end_time = 3;
-
-