Interface CertificateRevocationList.RevokedCertificateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CertificateRevocationList.RevokedCertificate
,CertificateRevocationList.RevokedCertificate.Builder
- Enclosing class:
- CertificateRevocationList
public static interface CertificateRevocationList.RevokedCertificateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCertificate()
The resource path for the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] in the format `projects/*/locations/*/certificateAuthorities/*/certificates/*`.com.google.protobuf.ByteString
getCertificateBytes()
The resource path for the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] in the format `projects/*/locations/*/certificateAuthorities/*/certificates/*`.String
getHexSerialNumber()
The serial number of the [Certificate][google.cloud.security.privateca.v1beta1.Certificate].com.google.protobuf.ByteString
getHexSerialNumberBytes()
The serial number of the [Certificate][google.cloud.security.privateca.v1beta1.Certificate].RevocationReason
getRevocationReason()
The reason the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] was revoked.int
getRevocationReasonValue()
The reason the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] was revoked.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCertificate
String getCertificate()
The resource path for the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] in the format `projects/*/locations/*/certificateAuthorities/*/certificates/*`.
string certificate = 1;
- Returns:
- The certificate.
-
getCertificateBytes
com.google.protobuf.ByteString getCertificateBytes()
The resource path for the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] in the format `projects/*/locations/*/certificateAuthorities/*/certificates/*`.
string certificate = 1;
- Returns:
- The bytes for certificate.
-
getHexSerialNumber
String getHexSerialNumber()
The serial number of the [Certificate][google.cloud.security.privateca.v1beta1.Certificate].
string hex_serial_number = 2;
- Returns:
- The hexSerialNumber.
-
getHexSerialNumberBytes
com.google.protobuf.ByteString getHexSerialNumberBytes()
The serial number of the [Certificate][google.cloud.security.privateca.v1beta1.Certificate].
string hex_serial_number = 2;
- Returns:
- The bytes for hexSerialNumber.
-
getRevocationReasonValue
int getRevocationReasonValue()
The reason the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] was revoked.
.google.cloud.security.privateca.v1beta1.RevocationReason revocation_reason = 3;
- Returns:
- The enum numeric value on the wire for revocationReason.
-
getRevocationReason
RevocationReason getRevocationReason()
The reason the [Certificate][google.cloud.security.privateca.v1beta1.Certificate] was revoked.
.google.cloud.security.privateca.v1beta1.RevocationReason revocation_reason = 3;
- Returns:
- The revocationReason.
-
-