EncryptionKeyLocationDetails¶
- 
class oci.database.models.EncryptionKeyLocationDetails(**kwargs)¶
- Bases: - object- Types of providers supported for managing database encryption keys - Attributes - PROVIDER_TYPE_AZURE- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. - PROVIDER_TYPE_EXTERNAL- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. - PROVIDER_TYPE_GCP- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. - provider_type- [Required] Gets the provider_type of this EncryptionKeyLocationDetails. - Methods - __init__(**kwargs)- Initializes a new EncryptionKeyLocationDetails object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
PROVIDER_TYPE_AZURE= 'AZURE'¶
- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. This constant has a value of “AZURE” 
 - 
PROVIDER_TYPE_EXTERNAL= 'EXTERNAL'¶
- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. This constant has a value of “EXTERNAL” 
 - 
PROVIDER_TYPE_GCP= 'GCP'¶
- A constant which can be used with the provider_type property of a EncryptionKeyLocationDetails. This constant has a value of “GCP” 
 - 
__init__(**kwargs)¶
- Initializes a new EncryptionKeyLocationDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - provider_type (str) – The value to assign to the provider_type property of this EncryptionKeyLocationDetails. Allowed values for this property are: “EXTERNAL”, “AZURE”, “GCP”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
provider_type¶
- [Required] Gets the provider_type of this EncryptionKeyLocationDetails. 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. - Allowed values for this property are: “EXTERNAL”, “AZURE”, “GCP”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The provider_type of this EncryptionKeyLocationDetails. - Return type: - str 
 
-