Package com.google.cloud.compute.v1
Interface ShieldedInstanceIdentityEntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ShieldedInstanceIdentityEntry
,ShieldedInstanceIdentityEntry.Builder
public interface ShieldedInstanceIdentityEntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEkCert()
A PEM-encoded X.509 certificate.com.google.protobuf.ByteString
getEkCertBytes()
A PEM-encoded X.509 certificate.String
getEkPub()
A PEM-encoded public key.com.google.protobuf.ByteString
getEkPubBytes()
A PEM-encoded public key.boolean
hasEkCert()
A PEM-encoded X.509 certificate.boolean
hasEkPub()
A PEM-encoded public key.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEkCert
boolean hasEkCert()
A PEM-encoded X.509 certificate. This field can be empty.
optional string ek_cert = 450178589;
- Returns:
- Whether the ekCert field is set.
-
getEkCert
String getEkCert()
A PEM-encoded X.509 certificate. This field can be empty.
optional string ek_cert = 450178589;
- Returns:
- The ekCert.
-
getEkCertBytes
com.google.protobuf.ByteString getEkCertBytes()
A PEM-encoded X.509 certificate. This field can be empty.
optional string ek_cert = 450178589;
- Returns:
- The bytes for ekCert.
-
hasEkPub
boolean hasEkPub()
A PEM-encoded public key.
optional string ek_pub = 308947940;
- Returns:
- Whether the ekPub field is set.
-
getEkPub
String getEkPub()
A PEM-encoded public key.
optional string ek_pub = 308947940;
- Returns:
- The ekPub.
-
getEkPubBytes
com.google.protobuf.ByteString getEkPubBytes()
A PEM-encoded public key.
optional string ek_pub = 308947940;
- Returns:
- The bytes for ekPub.
-
-