Package com.google.cloud.batch.v1alpha
Interface Environment.KMSEnvMapOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Environment.KMSEnvMap,Environment.KMSEnvMap.Builder
- Enclosing class:
- Environment
public static interface Environment.KMSEnvMapOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCipherText()The value of the cipherText response from the `encrypt` method.com.google.protobuf.ByteStringgetCipherTextBytes()The value of the cipherText response from the `encrypt` method.StringgetKeyName()The name of the KMS key that will be used to decrypt the cipher text.com.google.protobuf.ByteStringgetKeyNameBytes()The name of the KMS key that will be used to decrypt the cipher text.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKeyName
String getKeyName()
The name of the KMS key that will be used to decrypt the cipher text.
string key_name = 1;- Returns:
- The keyName.
-
getKeyNameBytes
com.google.protobuf.ByteString getKeyNameBytes()
The name of the KMS key that will be used to decrypt the cipher text.
string key_name = 1;- Returns:
- The bytes for keyName.
-
getCipherText
String getCipherText()
The value of the cipherText response from the `encrypt` method.
string cipher_text = 2;- Returns:
- The cipherText.
-
getCipherTextBytes
com.google.protobuf.ByteString getCipherTextBytes()
The value of the cipherText response from the `encrypt` method.
string cipher_text = 2;- Returns:
- The bytes for cipherText.
-
-