Interface Certificate.SelfManagedCertificateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Certificate.SelfManagedCertificate
,Certificate.SelfManagedCertificate.Builder
- Enclosing class:
- Certificate
public static interface Certificate.SelfManagedCertificateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPemCertificate()
Input only.com.google.protobuf.ByteString
getPemCertificateBytes()
Input only.String
getPemPrivateKey()
Input only.com.google.protobuf.ByteString
getPemPrivateKeyBytes()
Input 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()
Input only. The PEM-encoded certificate chain. Leaf certificate comes first, followed by intermediate ones if any.
string pem_certificate = 1 [(.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The pemCertificate.
-
getPemCertificateBytes
com.google.protobuf.ByteString getPemCertificateBytes()
Input only. The PEM-encoded certificate chain. Leaf certificate comes first, followed by intermediate ones if any.
string pem_certificate = 1 [(.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The bytes for pemCertificate.
-
getPemPrivateKey
String getPemPrivateKey()
Input only. The PEM-encoded private key of the leaf certificate.
string pem_private_key = 2 [(.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The pemPrivateKey.
-
getPemPrivateKeyBytes
com.google.protobuf.ByteString getPemPrivateKeyBytes()
Input only. The PEM-encoded private key of the leaf certificate.
string pem_private_key = 2 [(.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The bytes for pemPrivateKey.
-
-