UpdateNamedPreferredCredentialDetails¶
- 
class oci.database_management.models.UpdateNamedPreferredCredentialDetails(**kwargs)¶
- Bases: - oci.database_management.models.update_preferred_credential_details.UpdatePreferredCredentialDetails- 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 UpdateNamedPreferredCredentialDetails. - type- [Required] Gets the type of this UpdatePreferredCredentialDetails. - Methods - __init__(**kwargs)- Initializes a new UpdateNamedPreferredCredentialDetails 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 UpdateNamedPreferredCredentialDetails 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 UpdateNamedPreferredCredentialDetails. 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 UpdateNamedPreferredCredentialDetails.
 
 - 
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 UpdateNamedPreferredCredentialDetails. The OCID of the Named Credential that contains the database user password. - Returns: - The named_credential_id of this UpdateNamedPreferredCredentialDetails. - Return type: - str 
 - 
type¶
- [Required] Gets the type of this UpdatePreferredCredentialDetails. The type of preferred credential. - Allowed values for this property are: “BASIC”, “NAMED_CREDENTIAL” - Returns: - The type of this UpdatePreferredCredentialDetails. - Return type: - str 
 
-