Package com.google.cloud.deploy.v1
Interface SkaffoldVersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SkaffoldVersion
,SkaffoldVersion.Builder
public interface SkaffoldVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getMaintenanceModeTime()
The time at which this version of skaffold will enter maintenance mode.com.google.protobuf.TimestampOrBuilder
getMaintenanceModeTimeOrBuilder()
The time at which this version of skaffold will enter maintenance mode.com.google.type.Date
getSupportEndDate()
Date when this version is expected to no longer be supported.com.google.type.DateOrBuilder
getSupportEndDateOrBuilder()
Date when this version is expected to no longer be supported.com.google.protobuf.Timestamp
getSupportExpirationTime()
The time at which this version of skaffold will no longer be supported.com.google.protobuf.TimestampOrBuilder
getSupportExpirationTimeOrBuilder()
The time at which this version of skaffold will no longer be supported.String
getVersion()
Release version number.com.google.protobuf.ByteString
getVersionBytes()
Release version number.boolean
hasMaintenanceModeTime()
The time at which this version of skaffold will enter maintenance mode.boolean
hasSupportEndDate()
Date when this version is expected to no longer be supported.boolean
hasSupportExpirationTime()
The time at which this version of skaffold will no longer be supported.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
Release version number. For example, "1.20.3".
string version = 1;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Release version number. For example, "1.20.3".
string version = 1;
- Returns:
- The bytes for version.
-
hasMaintenanceModeTime
boolean hasMaintenanceModeTime()
The time at which this version of skaffold will enter maintenance mode.
.google.protobuf.Timestamp maintenance_mode_time = 3;
- Returns:
- Whether the maintenanceModeTime field is set.
-
getMaintenanceModeTime
com.google.protobuf.Timestamp getMaintenanceModeTime()
The time at which this version of skaffold will enter maintenance mode.
.google.protobuf.Timestamp maintenance_mode_time = 3;
- Returns:
- The maintenanceModeTime.
-
getMaintenanceModeTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getMaintenanceModeTimeOrBuilder()
The time at which this version of skaffold will enter maintenance mode.
.google.protobuf.Timestamp maintenance_mode_time = 3;
-
hasSupportExpirationTime
boolean hasSupportExpirationTime()
The time at which this version of skaffold will no longer be supported.
.google.protobuf.Timestamp support_expiration_time = 4;
- Returns:
- Whether the supportExpirationTime field is set.
-
getSupportExpirationTime
com.google.protobuf.Timestamp getSupportExpirationTime()
The time at which this version of skaffold will no longer be supported.
.google.protobuf.Timestamp support_expiration_time = 4;
- Returns:
- The supportExpirationTime.
-
getSupportExpirationTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getSupportExpirationTimeOrBuilder()
The time at which this version of skaffold will no longer be supported.
.google.protobuf.Timestamp support_expiration_time = 4;
-
hasSupportEndDate
boolean hasSupportEndDate()
Date when this version is expected to no longer be supported.
.google.type.Date support_end_date = 2;
- Returns:
- Whether the supportEndDate field is set.
-
getSupportEndDate
com.google.type.Date getSupportEndDate()
Date when this version is expected to no longer be supported.
.google.type.Date support_end_date = 2;
- Returns:
- The supportEndDate.
-
getSupportEndDateOrBuilder
com.google.type.DateOrBuilder getSupportEndDateOrBuilder()
Date when this version is expected to no longer be supported.
.google.type.Date support_end_date = 2;
-
-