Package com.google.container.v1
Interface DailyMaintenanceWindowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DailyMaintenanceWindow
,DailyMaintenanceWindow.Builder
public interface DailyMaintenanceWindowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDuration()
[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario.com.google.protobuf.ByteString
getDurationBytes()
[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario.String
getStartTime()
Time within the maintenance window to start the maintenance operations.com.google.protobuf.ByteString
getStartTimeBytes()
Time within the maintenance window to start the maintenance operations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStartTime
String getStartTime()
Time within the maintenance window to start the maintenance operations. Time format should be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format "HH:MM", where HH : [00-23] and MM : [00-59] GMT.
string start_time = 2;
- Returns:
- The startTime.
-
getStartTimeBytes
com.google.protobuf.ByteString getStartTimeBytes()
Time within the maintenance window to start the maintenance operations. Time format should be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format "HH:MM", where HH : [00-23] and MM : [00-59] GMT.
string start_time = 2;
- Returns:
- The bytes for startTime.
-
getDuration
String getDuration()
[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario. Duration will be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format "PTnHnMnS".
string duration = 3;
- Returns:
- The duration.
-
getDurationBytes
com.google.protobuf.ByteString getDurationBytes()
[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario. Duration will be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format "PTnHnMnS".
string duration = 3;
- Returns:
- The bytes for duration.
-
-