AutonomousDataWarehouseConnectionStrings¶
-
class
oci.database.models.
AutonomousDataWarehouseConnectionStrings
(**kwargs)¶ Bases:
object
Deprecated. For information about connection strings to connect to an Oracle Autonomous Data Warehouse, see
autonomous_database_connection_strings()
.Methods
__init__
(**kwargs)Initializes a new AutonomousDataWarehouseConnectionStrings object with values from keyword arguments. Attributes
all_connection_strings
Gets the all_connection_strings of this AutonomousDataWarehouseConnectionStrings. high
Gets the high of this AutonomousDataWarehouseConnectionStrings. low
Gets the low of this AutonomousDataWarehouseConnectionStrings. medium
Gets the medium of this AutonomousDataWarehouseConnectionStrings. -
__init__
(**kwargs)¶ Initializes a new AutonomousDataWarehouseConnectionStrings object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - high (str) – The value to assign to the high property of this AutonomousDataWarehouseConnectionStrings.
- medium (str) – The value to assign to the medium property of this AutonomousDataWarehouseConnectionStrings.
- low (str) – The value to assign to the low property of this AutonomousDataWarehouseConnectionStrings.
- all_connection_strings (dict(str, str)) – The value to assign to the all_connection_strings property of this AutonomousDataWarehouseConnectionStrings.
-
all_connection_strings
¶ Gets the all_connection_strings of this AutonomousDataWarehouseConnectionStrings. Returns all connection strings that can be used to connect to the Autonomous Data Warehouse. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing
Returns: The all_connection_strings of this AutonomousDataWarehouseConnectionStrings. Return type: dict(str, str)
-
high
¶ Gets the high of this AutonomousDataWarehouseConnectionStrings. The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.
Returns: The high of this AutonomousDataWarehouseConnectionStrings. Return type: str
-
low
¶ Gets the low of this AutonomousDataWarehouseConnectionStrings. The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.
Returns: The low of this AutonomousDataWarehouseConnectionStrings. Return type: str
-
medium
¶ Gets the medium of this AutonomousDataWarehouseConnectionStrings. The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.
Returns: The medium of this AutonomousDataWarehouseConnectionStrings. Return type: str
-