Package com.google.cloud.memcache.v1
Interface WeeklyMaintenanceWindowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WeeklyMaintenanceWindow
,WeeklyMaintenanceWindow.Builder
public interface WeeklyMaintenanceWindowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.type.DayOfWeek
getDay()
Required.int
getDayValue()
Required.com.google.protobuf.Duration
getDuration()
Required.com.google.protobuf.DurationOrBuilder
getDurationOrBuilder()
Required.com.google.type.TimeOfDay
getStartTime()
Required.com.google.type.TimeOfDayOrBuilder
getStartTimeOrBuilder()
Required.boolean
hasDuration()
Required.boolean
hasStartTime()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDayValue
int getDayValue()
Required. Allows to define schedule that runs specified day of the week.
.google.type.DayOfWeek day = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The enum numeric value on the wire for day.
-
getDay
com.google.type.DayOfWeek getDay()
Required. Allows to define schedule that runs specified day of the week.
.google.type.DayOfWeek day = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The day.
-
hasStartTime
boolean hasStartTime()
Required. Start time of the window in UTC.
.google.type.TimeOfDay start_time = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.type.TimeOfDay getStartTime()
Required. Start time of the window in UTC.
.google.type.TimeOfDay start_time = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.type.TimeOfDayOrBuilder getStartTimeOrBuilder()
Required. Start time of the window in UTC.
.google.type.TimeOfDay start_time = 2 [(.google.api.field_behavior) = REQUIRED];
-
hasDuration
boolean hasDuration()
Required. Duration of the time window.
.google.protobuf.Duration duration = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the duration field is set.
-
getDuration
com.google.protobuf.Duration getDuration()
Required. Duration of the time window.
.google.protobuf.Duration duration = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The duration.
-
getDurationOrBuilder
com.google.protobuf.DurationOrBuilder getDurationOrBuilder()
Required. Duration of the time window.
.google.protobuf.Duration duration = 3 [(.google.api.field_behavior) = REQUIRED];
-
-