Package com.google.cloud.compute.v1
Interface SslCertificateSelfManagedSslCertificateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SslCertificateSelfManagedSslCertificate
,SslCertificateSelfManagedSslCertificate.Builder
public interface SslCertificateSelfManagedSslCertificateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCertificate()
A local certificate file.com.google.protobuf.ByteString
getCertificateBytes()
A local certificate file.String
getPrivateKey()
A write-only private key in PEM format.com.google.protobuf.ByteString
getPrivateKeyBytes()
A write-only private key in PEM format.boolean
hasCertificate()
A local certificate file.boolean
hasPrivateKey()
A write-only private key in PEM format.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCertificate
boolean hasCertificate()
A local certificate file. The certificate must be in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert.
optional string certificate = 341787031;
- Returns:
- Whether the certificate field is set.
-
getCertificate
String getCertificate()
A local certificate file. The certificate must be in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert.
optional string certificate = 341787031;
- Returns:
- The certificate.
-
getCertificateBytes
com.google.protobuf.ByteString getCertificateBytes()
A local certificate file. The certificate must be in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert.
optional string certificate = 341787031;
- Returns:
- The bytes for certificate.
-
hasPrivateKey
boolean hasPrivateKey()
A write-only private key in PEM format. Only insert requests will include this field.
optional string private_key = 361331107;
- Returns:
- Whether the privateKey field is set.
-
getPrivateKey
String getPrivateKey()
A write-only private key in PEM format. Only insert requests will include this field.
optional string private_key = 361331107;
- Returns:
- The privateKey.
-
getPrivateKeyBytes
com.google.protobuf.ByteString getPrivateKeyBytes()
A write-only private key in PEM format. Only insert requests will include this field.
optional string private_key = 361331107;
- Returns:
- The bytes for privateKey.
-
-