CreateAdminCredentials¶
- 
class oci.database_migration.models.CreateAdminCredentials(**kwargs)¶
- Bases: - object- Database Administrator Credentials details. - Methods - __init__(**kwargs)- Initializes a new CreateAdminCredentials object with values from keyword arguments. - Attributes - password- [Required] Gets the password of this CreateAdminCredentials. - username- [Required] Gets the username of this CreateAdminCredentials. - 
__init__(**kwargs)¶
- Initializes a new CreateAdminCredentials object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - username (str) – The value to assign to the username property of this CreateAdminCredentials.
- password (str) – The value to assign to the password property of this CreateAdminCredentials.
 
 - 
password¶
- [Required] Gets the password of this CreateAdminCredentials. Administrator password - Returns: - The password of this CreateAdminCredentials. - Return type: - str 
 - 
username¶
- [Required] Gets the username of this CreateAdminCredentials. Administrator username - Returns: - The username of this CreateAdminCredentials. - Return type: - str 
 
-