- 2.56.0 (latest)
- 2.55.0
- 2.54.0
- 2.52.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.40.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.8
- 2.5.3
- 2.4.4
- 2.3.1
public interface CertificateOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getIssuer()
public abstract String getIssuer()
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
string issuer = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The issuer. |
getIssuerBytes()
public abstract ByteString getIssuerBytes()
Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.
string issuer = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for issuer. |
getNotAfterTime()
public abstract Timestamp getNotAfterTime()
Output only. The certificate is not valid after this time. Only present if parsed is true.
.google.protobuf.Timestamp not_after_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
Timestamp | The notAfterTime. |
getNotAfterTimeOrBuilder()
public abstract TimestampOrBuilder getNotAfterTimeOrBuilder()
Output only. The certificate is not valid after this time. Only present if parsed is true.
.google.protobuf.Timestamp not_after_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
TimestampOrBuilder |
getNotBeforeTime()
public abstract Timestamp getNotBeforeTime()
Output only. The certificate is not valid before this time. Only present if parsed is true.
.google.protobuf.Timestamp not_before_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
Timestamp | The notBeforeTime. |
getNotBeforeTimeOrBuilder()
public abstract TimestampOrBuilder getNotBeforeTimeOrBuilder()
Output only. The certificate is not valid before this time. Only present if parsed is true.
.google.protobuf.Timestamp not_before_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
TimestampOrBuilder |
getParsed()
public abstract boolean getParsed()
Output only. True if the certificate was parsed successfully.
bool parsed = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
boolean | The parsed. |
getRawDer()
public abstract ByteString getRawDer()
Required. The raw certificate bytes in DER format.
bytes raw_der = 1 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
ByteString | The rawDer. |
getSerialNumber()
public abstract String getSerialNumber()
Output only. The certificate serial number as a hex string. Only present if parsed is true.
string serial_number = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The serialNumber. |
getSerialNumberBytes()
public abstract ByteString getSerialNumberBytes()
Output only. The certificate serial number as a hex string. Only present if parsed is true.
string serial_number = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for serialNumber. |
getSha256Fingerprint()
public abstract String getSha256Fingerprint()
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
string sha256_fingerprint = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The sha256Fingerprint. |
getSha256FingerprintBytes()
public abstract ByteString getSha256FingerprintBytes()
Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
string sha256_fingerprint = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for sha256Fingerprint. |
getSubject()
public abstract String getSubject()
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
string subject = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The subject. |
getSubjectAlternativeDnsNames(int index)
public abstract String getSubjectAlternativeDnsNames(int index)
Output only. The subject Alternative DNS names. Only present if parsed is true.
repeated string subject_alternative_dns_names = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
index | int The index of the element to return. |
Returns | |
---|---|
Type | Description |
String | The subjectAlternativeDnsNames at the given index. |
getSubjectAlternativeDnsNamesBytes(int index)
public abstract ByteString getSubjectAlternativeDnsNamesBytes(int index)
Output only. The subject Alternative DNS names. Only present if parsed is true.
repeated string subject_alternative_dns_names = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
index | int The index of the value to return. |
Returns | |
---|---|
Type | Description |
ByteString | The bytes of the subjectAlternativeDnsNames at the given index. |
getSubjectAlternativeDnsNamesCount()
public abstract int getSubjectAlternativeDnsNamesCount()
Output only. The subject Alternative DNS names. Only present if parsed is true.
repeated string subject_alternative_dns_names = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
int | The count of subjectAlternativeDnsNames. |
getSubjectAlternativeDnsNamesList()
public abstract List<String> getSubjectAlternativeDnsNamesList()
Output only. The subject Alternative DNS names. Only present if parsed is true.
repeated string subject_alternative_dns_names = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
List<String> | A list containing the subjectAlternativeDnsNames. |
getSubjectBytes()
public abstract ByteString getSubjectBytes()
Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true.
string subject = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for subject. |
hasNotAfterTime()
public abstract boolean hasNotAfterTime()
Output only. The certificate is not valid after this time. Only present if parsed is true.
.google.protobuf.Timestamp not_after_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
boolean | Whether the notAfterTime field is set. |
hasNotBeforeTime()
public abstract boolean hasNotBeforeTime()
Output only. The certificate is not valid before this time. Only present if parsed is true.
.google.protobuf.Timestamp not_before_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
boolean | Whether the notBeforeTime field is set. |