Package com.google.cloud.datastream.v1
Interface BackfillJobOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BackfillJob
,BackfillJob.Builder
public interface BackfillJobOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Error
getErrors(int index)
Output only.int
getErrorsCount()
Output only.List<Error>
getErrorsList()
Output only.ErrorOrBuilder
getErrorsOrBuilder(int index)
Output only.List<? extends ErrorOrBuilder>
getErrorsOrBuilderList()
Output only.com.google.protobuf.Timestamp
getLastEndTime()
Output only.com.google.protobuf.TimestampOrBuilder
getLastEndTimeOrBuilder()
Output only.com.google.protobuf.Timestamp
getLastStartTime()
Output only.com.google.protobuf.TimestampOrBuilder
getLastStartTimeOrBuilder()
Output only.BackfillJob.State
getState()
Backfill job state.int
getStateValue()
Backfill job state.BackfillJob.Trigger
getTrigger()
Backfill job's triggering reason.int
getTriggerValue()
Backfill job's triggering reason.boolean
hasLastEndTime()
Output only.boolean
hasLastStartTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStateValue
int getStateValue()
Backfill job state.
.google.cloud.datastream.v1.BackfillJob.State state = 1;
- Returns:
- The enum numeric value on the wire for state.
-
getState
BackfillJob.State getState()
Backfill job state.
.google.cloud.datastream.v1.BackfillJob.State state = 1;
- Returns:
- The state.
-
getTriggerValue
int getTriggerValue()
Backfill job's triggering reason.
.google.cloud.datastream.v1.BackfillJob.Trigger trigger = 2;
- Returns:
- The enum numeric value on the wire for trigger.
-
getTrigger
BackfillJob.Trigger getTrigger()
Backfill job's triggering reason.
.google.cloud.datastream.v1.BackfillJob.Trigger trigger = 2;
- Returns:
- The trigger.
-
hasLastStartTime
boolean hasLastStartTime()
Output only. Backfill job's start time.
.google.protobuf.Timestamp last_start_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the lastStartTime field is set.
-
getLastStartTime
com.google.protobuf.Timestamp getLastStartTime()
Output only. Backfill job's start time.
.google.protobuf.Timestamp last_start_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The lastStartTime.
-
getLastStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getLastStartTimeOrBuilder()
Output only. Backfill job's start time.
.google.protobuf.Timestamp last_start_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasLastEndTime
boolean hasLastEndTime()
Output only. Backfill job's end time.
.google.protobuf.Timestamp last_end_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the lastEndTime field is set.
-
getLastEndTime
com.google.protobuf.Timestamp getLastEndTime()
Output only. Backfill job's end time.
.google.protobuf.Timestamp last_end_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The lastEndTime.
-
getLastEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getLastEndTimeOrBuilder()
Output only. Backfill job's end time.
.google.protobuf.Timestamp last_end_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsList
List<Error> getErrorsList()
Output only. Errors which caused the backfill job to fail.
repeated .google.cloud.datastream.v1.Error errors = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrors
Error getErrors(int index)
Output only. Errors which caused the backfill job to fail.
repeated .google.cloud.datastream.v1.Error errors = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsCount
int getErrorsCount()
Output only. Errors which caused the backfill job to fail.
repeated .google.cloud.datastream.v1.Error errors = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsOrBuilderList
List<? extends ErrorOrBuilder> getErrorsOrBuilderList()
Output only. Errors which caused the backfill job to fail.
repeated .google.cloud.datastream.v1.Error errors = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsOrBuilder
ErrorOrBuilder getErrorsOrBuilder(int index)
Output only. Errors which caused the backfill job to fail.
repeated .google.cloud.datastream.v1.Error errors = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-