1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5// Database Service API
6//
7// The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see Overview of the Database Service (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm).
8//
9
10package database
11
12import (
13	"github.com/oracle/oci-go-sdk/common"
14)
15
16// AutonomousDatabaseConnectionStrings Connection strings to connect to an Oracle Autonomous Database.
17type AutonomousDatabaseConnectionStrings struct {
18
19	// 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.
20	High *string `mandatory:"false" json:"high"`
21
22	// 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.
23	Medium *string `mandatory:"false" json:"medium"`
24
25	// The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.
26	Low *string `mandatory:"false" json:"low"`
27
28	// The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.
29	Dedicated *string `mandatory:"false" json:"dedicated"`
30
31	// Returns all connection strings that can be used to connect to the Autonomous Database.
32	// For more information, please see Predefined Database Service Names for Autonomous Transaction Processing (https://docs.oracle.com/en/cloud/paas/atp-cloud/atpug/connect-predefined.html#GUID-9747539B-FD46-44F1-8FF8-F5AC650F15BE)
33	AllConnectionStrings map[string]string `mandatory:"false" json:"allConnectionStrings"`
34}
35
36func (m AutonomousDatabaseConnectionStrings) String() string {
37	return common.PointerString(m)
38}
39