Interface CreateCertificateRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateCertificateRequest,CreateCertificateRequest.Builder
public interface CreateCertificateRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificategetCertificate()Required.StringgetCertificateId()Required.com.google.protobuf.ByteStringgetCertificateIdBytes()Required.CertificateOrBuildergetCertificateOrBuilder()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.booleanhasCertificate()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent resource of the certificate. Must be in the format `projects/*/locations/*`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getCertificateId
String getCertificateId()
Required. A user-provided name of the certificate.
string certificate_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The certificateId.
-
getCertificateIdBytes
com.google.protobuf.ByteString getCertificateIdBytes()
Required. A user-provided name of the certificate.
string certificate_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for certificateId.
-
hasCertificate
boolean hasCertificate()
Required. A definition of the certificate to create.
.google.cloud.certificatemanager.v1.Certificate certificate = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the certificate field is set.
-
getCertificate
Certificate getCertificate()
Required. A definition of the certificate to create.
.google.cloud.certificatemanager.v1.Certificate certificate = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The certificate.
-
getCertificateOrBuilder
CertificateOrBuilder getCertificateOrBuilder()
Required. A definition of the certificate to create.
.google.cloud.certificatemanager.v1.Certificate certificate = 3 [(.google.api.field_behavior) = REQUIRED];
-
-