Show / Hide Table of Contents

Class AutonomousDataWarehouseConnectionStrings

Deprecated. For information about connection strings to connect to an Oracle Autonomous Data Warehouse, see {@link #autonomousDatabaseConnectionStrings(AutonomousDatabaseConnectionStringsRequest) autonomousDatabaseConnectionStrings}.

Inheritance
object
AutonomousDataWarehouseConnectionStrings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutonomousDataWarehouseConnectionStrings

Properties

AllConnectionStrings

Declaration
[JsonProperty(PropertyName = "allConnectionStrings")]
public Dictionary<string, string> AllConnectionStrings { get; set; }
Property Value
Type Description
Dictionary<string, string>

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

High

Declaration
[JsonProperty(PropertyName = "high")]
public string High { get; set; }
Property Value
Type Description
string

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.

Low

Declaration
[JsonProperty(PropertyName = "low")]
public string Low { get; set; }
Property Value
Type Description
string

The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

Medium

Declaration
[JsonProperty(PropertyName = "medium")]
public string Medium { get; set; }
Property Value
Type Description
string

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.

In this article
Back to top