Package com.google.appengine.v1
Interface ManagedCertificateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ManagedCertificate
,ManagedCertificate.Builder
public interface ManagedCertificateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getLastRenewalTime()
Time at which the certificate was last renewed.com.google.protobuf.TimestampOrBuilder
getLastRenewalTimeOrBuilder()
Time at which the certificate was last renewed.ManagementStatus
getStatus()
Status of certificate management.int
getStatusValue()
Status of certificate management.boolean
hasLastRenewalTime()
Time at which the certificate was last renewed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasLastRenewalTime
boolean hasLastRenewalTime()
Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can be tracked via `ManagementStatus`. @OutputOnly
.google.protobuf.Timestamp last_renewal_time = 1;
- Returns:
- Whether the lastRenewalTime field is set.
-
getLastRenewalTime
com.google.protobuf.Timestamp getLastRenewalTime()
Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can be tracked via `ManagementStatus`. @OutputOnly
.google.protobuf.Timestamp last_renewal_time = 1;
- Returns:
- The lastRenewalTime.
-
getLastRenewalTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getLastRenewalTimeOrBuilder()
Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can be tracked via `ManagementStatus`. @OutputOnly
.google.protobuf.Timestamp last_renewal_time = 1;
-
getStatusValue
int getStatusValue()
Status of certificate management. Refers to the most recent certificate acquisition or renewal attempt. @OutputOnly
.google.appengine.v1.ManagementStatus status = 2;
- Returns:
- The enum numeric value on the wire for status.
-
getStatus
ManagementStatus getStatus()
Status of certificate management. Refers to the most recent certificate acquisition or renewal attempt. @OutputOnly
.google.appengine.v1.ManagementStatus status = 2;
- Returns:
- The status.
-
-