Interface RolloutStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RolloutState
,RolloutState.Builder
public interface RolloutStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getStartTime()
Start time of the current step.com.google.protobuf.TimestampOrBuilder
getStartTimeOrBuilder()
Start time of the current step.String
getStep()
Display name of the current auto rollout step.com.google.protobuf.ByteString
getStepBytes()
Display name of the current auto rollout step.int
getStepIndex()
Index of the current step in the auto rollout steps list.boolean
hasStartTime()
Start time of the current step.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStep
String getStep()
Display name of the current auto rollout step.
string step = 1;
- Returns:
- The step.
-
getStepBytes
com.google.protobuf.ByteString getStepBytes()
Display name of the current auto rollout step.
string step = 1;
- Returns:
- The bytes for step.
-
getStepIndex
int getStepIndex()
Index of the current step in the auto rollout steps list.
int32 step_index = 3;
- Returns:
- The stepIndex.
-
hasStartTime
boolean hasStartTime()
Start time of the current step.
.google.protobuf.Timestamp start_time = 2;
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Start time of the current step.
.google.protobuf.Timestamp start_time = 2;
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Start time of the current step.
.google.protobuf.Timestamp start_time = 2;
-
-