Interface ModelMonitoringInput.TimeOffsetOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ModelMonitoringInput.TimeOffset,ModelMonitoringInput.TimeOffset.Builder
- Enclosing class:
- ModelMonitoringInput
public static interface ModelMonitoringInput.TimeOffsetOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescription[offset] is the time difference from the cut-off time.com.google.protobuf.ByteString[offset] is the time difference from the cut-off time.[window] refers to the scope of data selected for analysis.com.google.protobuf.ByteString[window] refers to the scope of data selected for analysis.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getOffset
String getOffset()[offset] is the time difference from the cut-off time. For scheduled jobs, the cut-off time is the scheduled time. For non-scheduled jobs, it's the time when the job was created. Currently we support the following format: 'w|W': Week, 'd|D': Day, 'h|H': Hour E.g. '1h' stands for 1 hour, '2d' stands for 2 days.
string offset = 1;- Returns:
- The offset.
-
getOffsetBytes
com.google.protobuf.ByteString getOffsetBytes()[offset] is the time difference from the cut-off time. For scheduled jobs, the cut-off time is the scheduled time. For non-scheduled jobs, it's the time when the job was created. Currently we support the following format: 'w|W': Week, 'd|D': Day, 'h|H': Hour E.g. '1h' stands for 1 hour, '2d' stands for 2 days.
string offset = 1;- Returns:
- The bytes for offset.
-
getWindow
String getWindow()[window] refers to the scope of data selected for analysis. It allows you to specify the quantity of data you wish to examine. Currently we support the following format: 'w|W': Week, 'd|D': Day, 'h|H': Hour E.g. '1h' stands for 1 hour, '2d' stands for 2 days.
string window = 2;- Returns:
- The window.
-
getWindowBytes
com.google.protobuf.ByteString getWindowBytes()[window] refers to the scope of data selected for analysis. It allows you to specify the quantity of data you wish to examine. Currently we support the following format: 'w|W': Week, 'd|D': Day, 'h|H': Hour E.g. '1h' stands for 1 hour, '2d' stands for 2 days.
string window = 2;- Returns:
- The bytes for window.
-