Package com.google.cloud.alloydb.v1beta
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 StringgetCaCert()Optional.com.google.protobuf.ByteStringgetCaCertBytes()Optional.StringgetPemCertificate()Output only.com.google.protobuf.ByteStringgetPemCertificateBytes()Output only.StringgetPemCertificateChain(int index)Output only.com.google.protobuf.ByteStringgetPemCertificateChainBytes(int index)Output only.intgetPemCertificateChainCount()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.
-
-