PasswordDetails

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

Bases: object

Details for the database system password. Password can be passed as VaultSecretPasswordDetails or PlainTextPasswordDetails.

Attributes

PASSWORD_TYPE_PLAIN_TEXT A constant which can be used with the password_type property of a PasswordDetails.
PASSWORD_TYPE_VAULT_SECRET A constant which can be used with the password_type property of a PasswordDetails.
password_type [Required] Gets the password_type of this PasswordDetails.

Methods

__init__(**kwargs) Initializes a new PasswordDetails 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'

A constant which can be used with the password_type property of a PasswordDetails. This constant has a value of “PLAIN_TEXT”

PASSWORD_TYPE_VAULT_SECRET = 'VAULT_SECRET'

A constant which can be used with the password_type property of a PasswordDetails. This constant has a value of “VAULT_SECRET”

__init__(**kwargs)

Initializes a new PasswordDetails 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:password_type (str) – The value to assign to the password_type property of this PasswordDetails. Allowed values for this property are: “PLAIN_TEXT”, “VAULT_SECRET”
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