Package com.google.cloud.alloydb.v1alpha
Interface GenerateClientCertificateResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GenerateClientCertificateResponse
,GenerateClientCertificateResponse.Builder
public interface GenerateClientCertificateResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCaCert()
Optional.com.google.protobuf.ByteString
getCaCertBytes()
Optional.String
getPemCertificate()
Output only.com.google.protobuf.ByteString
getPemCertificateBytes()
Output only.String
getPemCertificateChain(int index)
Output only.com.google.protobuf.ByteString
getPemCertificateChainBytes(int index)
Output only.int
getPemCertificateChainCount()
Output only.List<String>
getPemCertificateChainList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPemCertificate
String getPemCertificate()
Output only. The pem-encoded, signed X.509 certificate.
string pem_certificate = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The pemCertificate.
-
getPemCertificateBytes
com.google.protobuf.ByteString getPemCertificateBytes()
Output only. The pem-encoded, signed X.509 certificate.
string pem_certificate = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for pemCertificate.
-
getPemCertificateChainList
List<String> getPemCertificateChainList()
Output only. The pem-encoded chain that may be used to verify the X.509 certificate. Expected to be in issuer-to-root order according to RFC 5246.
repeated string pem_certificate_chain = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the pemCertificateChain.
-
getPemCertificateChainCount
int getPemCertificateChainCount()
Output only. The pem-encoded chain that may be used to verify the X.509 certificate. Expected to be in issuer-to-root order according to RFC 5246.
repeated string pem_certificate_chain = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of pemCertificateChain.
-
getPemCertificateChain
String getPemCertificateChain(int index)
Output only. The pem-encoded chain that may be used to verify the X.509 certificate. Expected to be in issuer-to-root order according to RFC 5246.
repeated string pem_certificate_chain = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The pemCertificateChain at the given index.
-
getPemCertificateChainBytes
com.google.protobuf.ByteString getPemCertificateChainBytes(int index)
Output only. The pem-encoded chain that may be used to verify the X.509 certificate. Expected to be in issuer-to-root order according to RFC 5246.
repeated string pem_certificate_chain = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the pemCertificateChain at the given index.
-
getCaCert
String getCaCert()
Optional. The pem-encoded cluster ca X.509 certificate.
string ca_cert = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The caCert.
-
getCaCertBytes
com.google.protobuf.ByteString getCaCertBytes()
Optional. The pem-encoded cluster ca X.509 certificate.
string ca_cert = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for caCert.
-
-