Package com.google.cloud.iot.v1
Interface X509CertificateDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
X509CertificateDetails
,X509CertificateDetails.Builder
public interface X509CertificateDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getExpiryTime()
The time the certificate becomes invalid.com.google.protobuf.TimestampOrBuilder
getExpiryTimeOrBuilder()
The time the certificate becomes invalid.String
getIssuer()
The entity that signed the certificate.com.google.protobuf.ByteString
getIssuerBytes()
The entity that signed the certificate.String
getPublicKeyType()
The type of public key in the certificate.com.google.protobuf.ByteString
getPublicKeyTypeBytes()
The type of public key in the certificate.String
getSignatureAlgorithm()
The algorithm used to sign the certificate.com.google.protobuf.ByteString
getSignatureAlgorithmBytes()
The algorithm used to sign the certificate.com.google.protobuf.Timestamp
getStartTime()
The time the certificate becomes valid.com.google.protobuf.TimestampOrBuilder
getStartTimeOrBuilder()
The time the certificate becomes valid.String
getSubject()
The entity the certificate and public key belong to.com.google.protobuf.ByteString
getSubjectBytes()
The entity the certificate and public key belong to.boolean
hasExpiryTime()
The time the certificate becomes invalid.boolean
hasStartTime()
The time the certificate becomes valid.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIssuer
String getIssuer()
The entity that signed the certificate.
string issuer = 1;
- Returns:
- The issuer.
-
getIssuerBytes
com.google.protobuf.ByteString getIssuerBytes()
The entity that signed the certificate.
string issuer = 1;
- Returns:
- The bytes for issuer.
-
getSubject
String getSubject()
The entity the certificate and public key belong to.
string subject = 2;
- Returns:
- The subject.
-
getSubjectBytes
com.google.protobuf.ByteString getSubjectBytes()
The entity the certificate and public key belong to.
string subject = 2;
- Returns:
- The bytes for subject.
-
hasStartTime
boolean hasStartTime()
The time the certificate becomes valid.
.google.protobuf.Timestamp start_time = 3;
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
The time the certificate becomes valid.
.google.protobuf.Timestamp start_time = 3;
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
The time the certificate becomes valid.
.google.protobuf.Timestamp start_time = 3;
-
hasExpiryTime
boolean hasExpiryTime()
The time the certificate becomes invalid.
.google.protobuf.Timestamp expiry_time = 4;
- Returns:
- Whether the expiryTime field is set.
-
getExpiryTime
com.google.protobuf.Timestamp getExpiryTime()
The time the certificate becomes invalid.
.google.protobuf.Timestamp expiry_time = 4;
- Returns:
- The expiryTime.
-
getExpiryTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getExpiryTimeOrBuilder()
The time the certificate becomes invalid.
.google.protobuf.Timestamp expiry_time = 4;
-
getSignatureAlgorithm
String getSignatureAlgorithm()
The algorithm used to sign the certificate.
string signature_algorithm = 5;
- Returns:
- The signatureAlgorithm.
-
getSignatureAlgorithmBytes
com.google.protobuf.ByteString getSignatureAlgorithmBytes()
The algorithm used to sign the certificate.
string signature_algorithm = 5;
- Returns:
- The bytes for signatureAlgorithm.
-
getPublicKeyType
String getPublicKeyType()
The type of public key in the certificate.
string public_key_type = 6;
- Returns:
- The publicKeyType.
-
getPublicKeyTypeBytes
com.google.protobuf.ByteString getPublicKeyTypeBytes()
The type of public key in the certificate.
string public_key_type = 6;
- Returns:
- The bytes for publicKeyType.
-
-