public static interface StorageConfig.TimespanConfigOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
boolean |
getEnableAutoPopulationOfTimespanConfig()
When the job is started by a JobTrigger we will automatically figure out
a valid start_time to avoid scanning files that have not been modified
since the last time the JobTrigger executed.
|
Timestamp |
getEndTime()
Exclude files newer than this value.
|
TimestampOrBuilder |
getEndTimeOrBuilder()
Exclude files newer than this value.
|
Timestamp |
getStartTime()
Exclude files older than this value.
|
TimestampOrBuilder |
getStartTimeOrBuilder()
Exclude files older than this value.
|
boolean |
hasEndTime()
Exclude files newer than this value.
|
boolean |
hasStartTime()
Exclude files older than this value.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
boolean hasStartTime()
Exclude files older than this value.
.google.protobuf.Timestamp start_time = 1;
Timestamp getStartTime()
Exclude files older than this value.
.google.protobuf.Timestamp start_time = 1;
TimestampOrBuilder getStartTimeOrBuilder()
Exclude files older than this value.
.google.protobuf.Timestamp start_time = 1;
boolean hasEndTime()
Exclude files newer than this value. If set to zero, no upper time limit is applied.
.google.protobuf.Timestamp end_time = 2;
Timestamp getEndTime()
Exclude files newer than this value. If set to zero, no upper time limit is applied.
.google.protobuf.Timestamp end_time = 2;
TimestampOrBuilder getEndTimeOrBuilder()
Exclude files newer than this value. If set to zero, no upper time limit is applied.
.google.protobuf.Timestamp end_time = 2;
boolean getEnableAutoPopulationOfTimespanConfig()
When the job is started by a JobTrigger we will automatically figure out a valid start_time to avoid scanning files that have not been modified since the last time the JobTrigger executed. This will be based on the time of the execution of the last run of the JobTrigger.
bool enable_auto_population_of_timespan_config = 4;