TestNamedPreferredCredentialDetails¶
- 
class oci.database_management.models.TestNamedPreferredCredentialDetails(**kwargs)¶
- Bases: - oci.database_management.models.test_preferred_credential_details.TestPreferredCredentialDetails- The details of the preferred credential that refers to a Named Credential. - Attributes - TYPE_BASIC- str(object=’’) -> str - TYPE_NAMED_CREDENTIAL- str(object=’’) -> str - named_credential_id- Gets the named_credential_id of this TestNamedPreferredCredentialDetails. - type- [Required] Gets the type of this TestPreferredCredentialDetails. - Methods - __init__(**kwargs)- Initializes a new TestNamedPreferredCredentialDetails 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. - 
TYPE_BASIC= 'BASIC'¶
 - 
TYPE_NAMED_CREDENTIAL= 'NAMED_CREDENTIAL'¶
 - 
__init__(**kwargs)¶
- Initializes a new TestNamedPreferredCredentialDetails object with values from keyword arguments. The default value of the - typeattribute of this class is- NAMED_CREDENTIALand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):- Parameters: - type (str) – The value to assign to the type property of this TestNamedPreferredCredentialDetails. Allowed values for this property are: “BASIC”, “NAMED_CREDENTIAL”
- named_credential_id (str) – The value to assign to the named_credential_id property of this TestNamedPreferredCredentialDetails.
 
 - 
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. 
 - 
named_credential_id¶
- Gets the named_credential_id of this TestNamedPreferredCredentialDetails. The OCID of the Named Credential that contains the database user password metadata. - Returns: - The named_credential_id of this TestNamedPreferredCredentialDetails. - Return type: - str 
 - 
type¶
- [Required] Gets the type of this TestPreferredCredentialDetails. The type of preferred credential. Only ‘BASIC’ is supported currently. - Allowed values for this property are: “BASIC”, “NAMED_CREDENTIAL” - Returns: - The type of this TestPreferredCredentialDetails. - Return type: - str 
 
-