DatabaseConnectionStrings¶
-
class
oci.database.models.
DatabaseConnectionStrings
(**kwargs)¶ Bases:
object
Connection strings to connect to an Oracle Database.
Methods
__init__
(**kwargs)Initializes a new DatabaseConnectionStrings object with values from keyword arguments. Attributes
all_connection_strings
Gets the all_connection_strings of this DatabaseConnectionStrings. cdb_default
Gets the cdb_default of this DatabaseConnectionStrings. cdb_ip_default
Gets the cdb_ip_default of this DatabaseConnectionStrings. -
__init__
(**kwargs)¶ Initializes a new DatabaseConnectionStrings object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - cdb_default (str) – The value to assign to the cdb_default property of this DatabaseConnectionStrings.
- cdb_ip_default (str) – The value to assign to the cdb_ip_default property of this DatabaseConnectionStrings.
- all_connection_strings (dict(str, str)) – The value to assign to the all_connection_strings property of this DatabaseConnectionStrings.
-
all_connection_strings
¶ Gets the all_connection_strings of this DatabaseConnectionStrings. All connection strings to use to connect to the Database.
Returns: The all_connection_strings of this DatabaseConnectionStrings. Return type: dict(str, str)
-
cdb_default
¶ Gets the cdb_default of this DatabaseConnectionStrings. Host name based CDB Connection String.
Returns: The cdb_default of this DatabaseConnectionStrings. Return type: str
-
cdb_ip_default
¶ Gets the cdb_ip_default of this DatabaseConnectionStrings. IP based CDB Connection String.
Returns: The cdb_ip_default of this DatabaseConnectionStrings. Return type: str
-