PlainTextPasswordDetails

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

Bases: oci.psql.models.password_details.PasswordDetails

Details for in-line database system password.

Attributes

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

Methods

__init__(**kwargs) Initializes a new PlainTextPasswordDetails 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 PlainTextPasswordDetails object with values from keyword arguments. The default value of the password_type attribute of this class is PLAIN_TEXT 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 PlainTextPasswordDetails. Allowed values for this property are: “PLAIN_TEXT”, “VAULT_SECRET”
  • password (str) – The value to assign to the password property of this PlainTextPasswordDetails.
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

[Required] Gets the password of this PlainTextPasswordDetails. The database system password.

Returns:The password of this PlainTextPasswordDetails.
Return type:str
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