VaultSecretPasswordDetails

class oci.psql.models.VaultSecretPasswordDetails(**kwargs)

Bases: oci.psql.models.password_details.PasswordDetails

Secret details for the database system password.

Attributes

PASSWORD_TYPE_PLAIN_TEXT str(object=’’) -> str
PASSWORD_TYPE_VAULT_SECRET str(object=’’) -> str
password_type [Required] Gets the password_type of this PasswordDetails.
secret_id [Required] Gets the secret_id of this VaultSecretPasswordDetails.
secret_version [Required] Gets the secret_version of this VaultSecretPasswordDetails.

Methods

__init__(**kwargs) Initializes a new VaultSecretPasswordDetails 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.
PASSWORD_TYPE_PLAIN_TEXT = 'PLAIN_TEXT'
PASSWORD_TYPE_VAULT_SECRET = 'VAULT_SECRET'
__init__(**kwargs)

Initializes a new VaultSecretPasswordDetails object with values from keyword arguments. The default value of the password_type attribute of this class is VAULT_SECRET and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • password_type (str) – The value to assign to the password_type property of this VaultSecretPasswordDetails. Allowed values for this property are: “PLAIN_TEXT”, “VAULT_SECRET”
  • secret_id (str) – The value to assign to the secret_id property of this VaultSecretPasswordDetails.
  • secret_version (str) – The value to assign to the secret_version property of this VaultSecretPasswordDetails.
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.

password_type

[Required] Gets the password_type of this PasswordDetails. The password type.

Allowed values for this property are: “PLAIN_TEXT”, “VAULT_SECRET”

Returns:The password_type of this PasswordDetails.
Return type:str
secret_id

[Required] Gets the secret_id of this VaultSecretPasswordDetails. The OCID of the secret where the password is stored.

Returns:The secret_id of this VaultSecretPasswordDetails.
Return type:str
secret_version

[Required] Gets the secret_version of this VaultSecretPasswordDetails. The secret version of the stored password.

Returns:The secret_version of this VaultSecretPasswordDetails.
Return type:str