public static enum EncryptionInfo.Type extends Enum<EncryptionInfo.Type>
| Enum Constant and Description |
|---|
CUSTOMER_MANAGED_ENCRYPTION
The data backing this resource is encrypted at rest with a key that is managed by the
customer.
|
ENCRYPTION_TYPE_UNSPECIFIED
Encryption type was not specified, though data at rest remains encrypted.
|
GOOGLE_DEFAULT_ENCRYPTION
The data backing this resource is encrypted at rest with a key that is fully managed by
Google.
|
UNRECOGNIZED
Type not known by the client, please upgrade your client
|
| Modifier and Type | Method and Description |
|---|---|
static EncryptionInfo.Type |
fromProto(EncryptionInfo.EncryptionType proto)
Wraps the EncryptionInfo protobuf.
|
static EncryptionInfo.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionInfo.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionInfo.Type ENCRYPTION_TYPE_UNSPECIFIED
public static final EncryptionInfo.Type GOOGLE_DEFAULT_ENCRYPTION
public static final EncryptionInfo.Type CUSTOMER_MANAGED_ENCRYPTION
public static final EncryptionInfo.Type UNRECOGNIZED
public static EncryptionInfo.Type[] values()
for (EncryptionInfo.Type c : EncryptionInfo.Type.values()) System.out.println(c);
public static EncryptionInfo.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static EncryptionInfo.Type fromProto(EncryptionInfo.EncryptionType proto)
Copyright © 2023 Google LLC. All rights reserved.