Package com.oracle.bmc.database.model
Enum EncryptionKeyLocationDetails.ProviderType
- java.lang.Object
-
- java.lang.Enum<EncryptionKeyLocationDetails.ProviderType>
-
- com.oracle.bmc.database.model.EncryptionKeyLocationDetails.ProviderType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<EncryptionKeyLocationDetails.ProviderType>
- Enclosing class:
- EncryptionKeyLocationDetails
public static enum EncryptionKeyLocationDetails.ProviderType extends Enum<EncryptionKeyLocationDetails.ProviderType> implements BmcEnum
Use ‘EXTERNAL’ for creating a new database or migrating a database key to an External HSM.Use ‘AZURE’ for creating a new database or migrating a database key to Azure. Use ‘GCP’ for creating a new database or migrating a database key to Google Cloud Provider. Use ‘AWS’ for creating a new database or migrating a database key to Aws.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AwsAzureExternalGcpUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EncryptionKeyLocationDetails.ProviderTypecreate(String key)StringgetValue()static EncryptionKeyLocationDetails.ProviderTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EncryptionKeyLocationDetails.ProviderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
External
public static final EncryptionKeyLocationDetails.ProviderType External
-
Azure
public static final EncryptionKeyLocationDetails.ProviderType Azure
-
Gcp
public static final EncryptionKeyLocationDetails.ProviderType Gcp
-
Aws
public static final EncryptionKeyLocationDetails.ProviderType Aws
-
UnknownEnumValue
public static final EncryptionKeyLocationDetails.ProviderType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static EncryptionKeyLocationDetails.ProviderType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EncryptionKeyLocationDetails.ProviderType c : EncryptionKeyLocationDetails.ProviderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncryptionKeyLocationDetails.ProviderType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
create
public static EncryptionKeyLocationDetails.ProviderType create(String key)
-
-