1. Packages
  2. Ibm Provider
  3. API Docs
  4. getDatabaseConnection
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getDatabaseConnection

Explore with Pulumi AI

Provides a read-only data source for database_connection. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const databaseConnection = ibm.getDatabaseConnection({
    endpointType: "public",
    deploymentId: ibm_database.my_db.id,
    userId: "user_id",
    userType: "database",
});
Copy
import pulumi
import pulumi_ibm as ibm

database_connection = ibm.get_database_connection(endpoint_type="public",
    deployment_id=ibm_database["my_db"]["id"],
    user_id="user_id",
    user_type="database")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ibm.GetDatabaseConnection(ctx, &ibm.GetDatabaseConnectionArgs{
			EndpointType: "public",
			DeploymentId: ibm_database.My_db.Id,
			UserId:       "user_id",
			UserType:     "database",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var databaseConnection = Ibm.GetDatabaseConnection.Invoke(new()
    {
        EndpointType = "public",
        DeploymentId = ibm_database.My_db.Id,
        UserId = "user_id",
        UserType = "database",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetDatabaseConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var databaseConnection = IbmFunctions.getDatabaseConnection(GetDatabaseConnectionArgs.builder()
            .endpointType("public")
            .deploymentId(ibm_database.my_db().id())
            .userId("user_id")
            .userType("database")
            .build());

    }
}
Copy
variables:
  databaseConnection:
    fn::invoke:
      function: ibm:getDatabaseConnection
      arguments:
        endpointType: public
        deploymentId: ${ibm_database.my_db.id}
        userId: user_id
        userType: database
Copy

Using getDatabaseConnection

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDatabaseConnection(args: GetDatabaseConnectionArgs, opts?: InvokeOptions): Promise<GetDatabaseConnectionResult>
function getDatabaseConnectionOutput(args: GetDatabaseConnectionOutputArgs, opts?: InvokeOptions): Output<GetDatabaseConnectionResult>
Copy
def get_database_connection(certificate_root: Optional[str] = None,
                            deployment_id: Optional[str] = None,
                            endpoint_type: Optional[str] = None,
                            id: Optional[str] = None,
                            user_id: Optional[str] = None,
                            user_type: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetDatabaseConnectionResult
def get_database_connection_output(certificate_root: Optional[pulumi.Input[str]] = None,
                            deployment_id: Optional[pulumi.Input[str]] = None,
                            endpoint_type: Optional[pulumi.Input[str]] = None,
                            id: Optional[pulumi.Input[str]] = None,
                            user_id: Optional[pulumi.Input[str]] = None,
                            user_type: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseConnectionResult]
Copy
func GetDatabaseConnection(ctx *Context, args *GetDatabaseConnectionArgs, opts ...InvokeOption) (*GetDatabaseConnectionResult, error)
func GetDatabaseConnectionOutput(ctx *Context, args *GetDatabaseConnectionOutputArgs, opts ...InvokeOption) GetDatabaseConnectionResultOutput
Copy

> Note: This function is named GetDatabaseConnection in the Go SDK.

public static class GetDatabaseConnection 
{
    public static Task<GetDatabaseConnectionResult> InvokeAsync(GetDatabaseConnectionArgs args, InvokeOptions? opts = null)
    public static Output<GetDatabaseConnectionResult> Invoke(GetDatabaseConnectionInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDatabaseConnectionResult> getDatabaseConnection(GetDatabaseConnectionArgs args, InvokeOptions options)
public static Output<GetDatabaseConnectionResult> getDatabaseConnection(GetDatabaseConnectionArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getDatabaseConnection:getDatabaseConnection
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DeploymentId This property is required. string
Deployment ID.
EndpointType This property is required. string
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
UserId This property is required. string
User ID.
UserType This property is required. string
User type.
CertificateRoot string
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
Id string
The unique identifier of the database_connection.
DeploymentId This property is required. string
Deployment ID.
EndpointType This property is required. string
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
UserId This property is required. string
User ID.
UserType This property is required. string
User type.
CertificateRoot string
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
Id string
The unique identifier of the database_connection.
deploymentId This property is required. String
Deployment ID.
endpointType This property is required. String
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
userId This property is required. String
User ID.
userType This property is required. String
User type.
certificateRoot String
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
id String
The unique identifier of the database_connection.
deploymentId This property is required. string
Deployment ID.
endpointType This property is required. string
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
userId This property is required. string
User ID.
userType This property is required. string
User type.
certificateRoot string
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
id string
The unique identifier of the database_connection.
deployment_id This property is required. str
Deployment ID.
endpoint_type This property is required. str
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
user_id This property is required. str
User ID.
user_type This property is required. str
User type.
certificate_root str
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
id str
The unique identifier of the database_connection.
deploymentId This property is required. String
Deployment ID.
endpointType This property is required. String
Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.

  • Constraints: Allowable values are: public, private.
userId This property is required. String
User ID.
userType This property is required. String
User type.
certificateRoot String
Optional certificate root path to prepend certificate names. Certificates would be stored in this directory for use by other commands.
id String
The unique identifier of the database_connection.

getDatabaseConnection Result

The following output properties are available:

Amqps List<GetDatabaseConnectionAmqp>
(Optional, List) Nested scheme for amqps:
Analytics List<GetDatabaseConnectionAnalytic>
(Optional, List) Nested scheme for analytics:
BiConnectors List<GetDatabaseConnectionBiConnector>
(Optional, List) Nested scheme for bi_connector:
Clis List<GetDatabaseConnectionCli>
(Optional, List) CLI Connection. Nested scheme for cli:
DeploymentId string
Emps List<GetDatabaseConnectionEmp>
(Optional, List) Nested scheme for emp:
EndpointType string
Grpcs List<GetDatabaseConnectionGrpc>
(Optional, List) Nested scheme for grpc:
Https List<GetDatabaseConnectionHttp>
(Optional, List) Nested scheme for https:
Id string
The unique identifier of the database_connection.
Mongodbs List<GetDatabaseConnectionMongodb>
(Optional, List) Nested scheme for mongodb:
Mqtts List<GetDatabaseConnectionMqtt>
(Optional, List) Nested scheme for mqtts:
Mysqls List<GetDatabaseConnectionMysql>
(Optional, List) Nested scheme for mysql:
OpsManagers List<GetDatabaseConnectionOpsManager>
(Optional, List) Nested scheme for ops_manager:
Postgres List<GetDatabaseConnectionPostgre>
(Optional, List) Nested scheme for postgres:
Redisses List<GetDatabaseConnectionRediss>
(Optional, List) Nested scheme for rediss:
Secures List<GetDatabaseConnectionSecure>
(Optional, List) Nested scheme for secure:
StompSsls List<GetDatabaseConnectionStompSsl>
(Optional, List) Nested scheme for stomp_ssl:
UserId string
UserType string
CertificateRoot string
Amqps []GetDatabaseConnectionAmqp
(Optional, List) Nested scheme for amqps:
Analytics []GetDatabaseConnectionAnalytic
(Optional, List) Nested scheme for analytics:
BiConnectors []GetDatabaseConnectionBiConnector
(Optional, List) Nested scheme for bi_connector:
Clis []GetDatabaseConnectionCli
(Optional, List) CLI Connection. Nested scheme for cli:
DeploymentId string
Emps []GetDatabaseConnectionEmp
(Optional, List) Nested scheme for emp:
EndpointType string
Grpcs []GetDatabaseConnectionGrpc
(Optional, List) Nested scheme for grpc:
Https []GetDatabaseConnectionHttp
(Optional, List) Nested scheme for https:
Id string
The unique identifier of the database_connection.
Mongodbs []GetDatabaseConnectionMongodb
(Optional, List) Nested scheme for mongodb:
Mqtts []GetDatabaseConnectionMqtt
(Optional, List) Nested scheme for mqtts:
Mysqls []GetDatabaseConnectionMysql
(Optional, List) Nested scheme for mysql:
OpsManagers []GetDatabaseConnectionOpsManager
(Optional, List) Nested scheme for ops_manager:
Postgres []GetDatabaseConnectionPostgre
(Optional, List) Nested scheme for postgres:
Redisses []GetDatabaseConnectionRediss
(Optional, List) Nested scheme for rediss:
Secures []GetDatabaseConnectionSecure
(Optional, List) Nested scheme for secure:
StompSsls []GetDatabaseConnectionStompSsl
(Optional, List) Nested scheme for stomp_ssl:
UserId string
UserType string
CertificateRoot string
amqps List<GetDatabaseConnectionAmqp>
(Optional, List) Nested scheme for amqps:
analytics List<GetDatabaseConnectionAnalytic>
(Optional, List) Nested scheme for analytics:
biConnectors List<GetDatabaseConnectionBiConnector>
(Optional, List) Nested scheme for bi_connector:
clis List<GetDatabaseConnectionCli>
(Optional, List) CLI Connection. Nested scheme for cli:
deploymentId String
emps List<GetDatabaseConnectionEmp>
(Optional, List) Nested scheme for emp:
endpointType String
grpcs List<GetDatabaseConnectionGrpc>
(Optional, List) Nested scheme for grpc:
https List<GetDatabaseConnectionHttp>
(Optional, List) Nested scheme for https:
id String
The unique identifier of the database_connection.
mongodbs List<GetDatabaseConnectionMongodb>
(Optional, List) Nested scheme for mongodb:
mqtts List<GetDatabaseConnectionMqtt>
(Optional, List) Nested scheme for mqtts:
mysqls List<GetDatabaseConnectionMysql>
(Optional, List) Nested scheme for mysql:
opsManagers List<GetDatabaseConnectionOpsManager>
(Optional, List) Nested scheme for ops_manager:
postgres List<GetDatabaseConnectionPostgre>
(Optional, List) Nested scheme for postgres:
redisses List<GetDatabaseConnectionRediss>
(Optional, List) Nested scheme for rediss:
secures List<GetDatabaseConnectionSecure>
(Optional, List) Nested scheme for secure:
stompSsls List<GetDatabaseConnectionStompSsl>
(Optional, List) Nested scheme for stomp_ssl:
userId String
userType String
certificateRoot String
amqps GetDatabaseConnectionAmqp[]
(Optional, List) Nested scheme for amqps:
analytics GetDatabaseConnectionAnalytic[]
(Optional, List) Nested scheme for analytics:
biConnectors GetDatabaseConnectionBiConnector[]
(Optional, List) Nested scheme for bi_connector:
clis GetDatabaseConnectionCli[]
(Optional, List) CLI Connection. Nested scheme for cli:
deploymentId string
emps GetDatabaseConnectionEmp[]
(Optional, List) Nested scheme for emp:
endpointType string
grpcs GetDatabaseConnectionGrpc[]
(Optional, List) Nested scheme for grpc:
https GetDatabaseConnectionHttp[]
(Optional, List) Nested scheme for https:
id string
The unique identifier of the database_connection.
mongodbs GetDatabaseConnectionMongodb[]
(Optional, List) Nested scheme for mongodb:
mqtts GetDatabaseConnectionMqtt[]
(Optional, List) Nested scheme for mqtts:
mysqls GetDatabaseConnectionMysql[]
(Optional, List) Nested scheme for mysql:
opsManagers GetDatabaseConnectionOpsManager[]
(Optional, List) Nested scheme for ops_manager:
postgres GetDatabaseConnectionPostgre[]
(Optional, List) Nested scheme for postgres:
redisses GetDatabaseConnectionRediss[]
(Optional, List) Nested scheme for rediss:
secures GetDatabaseConnectionSecure[]
(Optional, List) Nested scheme for secure:
stompSsls GetDatabaseConnectionStompSsl[]
(Optional, List) Nested scheme for stomp_ssl:
userId string
userType string
certificateRoot string
amqps Sequence[GetDatabaseConnectionAmqp]
(Optional, List) Nested scheme for amqps:
analytics Sequence[GetDatabaseConnectionAnalytic]
(Optional, List) Nested scheme for analytics:
bi_connectors Sequence[GetDatabaseConnectionBiConnector]
(Optional, List) Nested scheme for bi_connector:
clis Sequence[GetDatabaseConnectionCli]
(Optional, List) CLI Connection. Nested scheme for cli:
deployment_id str
emps Sequence[GetDatabaseConnectionEmp]
(Optional, List) Nested scheme for emp:
endpoint_type str
grpcs Sequence[GetDatabaseConnectionGrpc]
(Optional, List) Nested scheme for grpc:
https Sequence[GetDatabaseConnectionHttp]
(Optional, List) Nested scheme for https:
id str
The unique identifier of the database_connection.
mongodbs Sequence[GetDatabaseConnectionMongodb]
(Optional, List) Nested scheme for mongodb:
mqtts Sequence[GetDatabaseConnectionMqtt]
(Optional, List) Nested scheme for mqtts:
mysqls Sequence[GetDatabaseConnectionMysql]
(Optional, List) Nested scheme for mysql:
ops_managers Sequence[GetDatabaseConnectionOpsManager]
(Optional, List) Nested scheme for ops_manager:
postgres Sequence[GetDatabaseConnectionPostgre]
(Optional, List) Nested scheme for postgres:
redisses Sequence[GetDatabaseConnectionRediss]
(Optional, List) Nested scheme for rediss:
secures Sequence[GetDatabaseConnectionSecure]
(Optional, List) Nested scheme for secure:
stomp_ssls Sequence[GetDatabaseConnectionStompSsl]
(Optional, List) Nested scheme for stomp_ssl:
user_id str
user_type str
certificate_root str
amqps List<Property Map>
(Optional, List) Nested scheme for amqps:
analytics List<Property Map>
(Optional, List) Nested scheme for analytics:
biConnectors List<Property Map>
(Optional, List) Nested scheme for bi_connector:
clis List<Property Map>
(Optional, List) CLI Connection. Nested scheme for cli:
deploymentId String
emps List<Property Map>
(Optional, List) Nested scheme for emp:
endpointType String
grpcs List<Property Map>
(Optional, List) Nested scheme for grpc:
https List<Property Map>
(Optional, List) Nested scheme for https:
id String
The unique identifier of the database_connection.
mongodbs List<Property Map>
(Optional, List) Nested scheme for mongodb:
mqtts List<Property Map>
(Optional, List) Nested scheme for mqtts:
mysqls List<Property Map>
(Optional, List) Nested scheme for mysql:
opsManagers List<Property Map>
(Optional, List) Nested scheme for ops_manager:
postgres List<Property Map>
(Optional, List) Nested scheme for postgres:
redisses List<Property Map>
(Optional, List) Nested scheme for rediss:
secures List<Property Map>
(Optional, List) Nested scheme for secure:
stompSsls List<Property Map>
(Optional, List) Nested scheme for stomp_ssl:
userId String
userType String
certificateRoot String

Supporting Types

GetDatabaseConnectionAmqp

Authentications This property is required. List<GetDatabaseConnectionAmqpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionAmqpCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionAmqpHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionAmqpAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionAmqpCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionAmqpHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionAmqpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionAmqpCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionAmqpHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionAmqpAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionAmqpCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionAmqpHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionAmqpAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionAmqpCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionAmqpHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionAmqpAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionAmqpCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionAmqpHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionAnalytic

Authentications This property is required. List<GetDatabaseConnectionAnalyticAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionAnalyticCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionAnalyticHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionAnalyticAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionAnalyticCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionAnalyticHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionAnalyticAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionAnalyticCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionAnalyticHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionAnalyticAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionAnalyticCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionAnalyticHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionAnalyticAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionAnalyticCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionAnalyticHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionAnalyticAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionAnalyticCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionAnalyticHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionBiConnector

Authentications This property is required. List<GetDatabaseConnectionBiConnectorAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionBiConnectorCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionBiConnectorHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionBiConnectorAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionBiConnectorCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionBiConnectorHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionBiConnectorAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionBiConnectorCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionBiConnectorHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionBiConnectorAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionBiConnectorCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionBiConnectorHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionBiConnectorAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionBiConnectorCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionBiConnectorHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionBiConnectorAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionBiConnectorCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionBiConnectorHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionCli

Arguments This property is required. List<string>
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
Bin This property is required. string
(Optional, String) The name of the executable the CLI should run.
Certificates This property is required. List<GetDatabaseConnectionCliCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Environment This property is required. Dictionary<string, string>
(Optional, Map) A map of environment variables for a CLI connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Arguments This property is required. []string
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
Bin This property is required. string
(Optional, String) The name of the executable the CLI should run.
Certificates This property is required. []GetDatabaseConnectionCliCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Environment This property is required. map[string]string
(Optional, Map) A map of environment variables for a CLI connection.
Type This property is required. string
(Optional, String) Type of connection being described.
arguments This property is required. List<String>
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
bin This property is required. String
(Optional, String) The name of the executable the CLI should run.
certificates This property is required. List<GetDatabaseConnectionCliCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
environment This property is required. Map<String,String>
(Optional, Map) A map of environment variables for a CLI connection.
type This property is required. String
(Optional, String) Type of connection being described.
arguments This property is required. string[]
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
bin This property is required. string
(Optional, String) The name of the executable the CLI should run.
certificates This property is required. GetDatabaseConnectionCliCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
environment This property is required. {[key: string]: string}
(Optional, Map) A map of environment variables for a CLI connection.
type This property is required. string
(Optional, String) Type of connection being described.
arguments This property is required. Sequence[str]
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
bin This property is required. str
(Optional, String) The name of the executable the CLI should run.
certificates This property is required. Sequence[GetDatabaseConnectionCliCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
environment This property is required. Mapping[str, str]
(Optional, Map) A map of environment variables for a CLI connection.
type This property is required. str
(Optional, String) Type of connection being described.
arguments This property is required. List<String>
(Optional, List) Sets of arguments to call the executable with. The outer array corresponds to a possible way to call the CLI; the inner array is the set of arguments to use with that call.
bin This property is required. String
(Optional, String) The name of the executable the CLI should run.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
environment This property is required. Map<String>
(Optional, Map) A map of environment variables for a CLI connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionCliCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionEmp

Authentications This property is required. List<GetDatabaseConnectionEmpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionEmpCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionEmpHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionEmpAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionEmpCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionEmpHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionEmpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionEmpCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionEmpHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionEmpAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionEmpCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionEmpHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionEmpAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionEmpCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionEmpHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionEmpAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionEmpCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionEmpHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionGrpc

Authentications This property is required. List<GetDatabaseConnectionGrpcAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionGrpcCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionGrpcHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionGrpcAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionGrpcCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionGrpcHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionGrpcAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionGrpcCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionGrpcHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionGrpcAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionGrpcCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionGrpcHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionGrpcAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionGrpcCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionGrpcHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionGrpcAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionGrpcCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionGrpcHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionHttp

Authentications This property is required. List<GetDatabaseConnectionHttpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionHttpCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionHttpHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionHttpAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionHttpCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionHttpHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionHttpAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionHttpCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionHttpHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionHttpAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionHttpCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionHttpHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionHttpAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionHttpCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionHttpHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionHttpAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionHttpCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionHttpHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionMongodb

Authentications This property is required. List<GetDatabaseConnectionMongodbAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionMongodbCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. List<GetDatabaseConnectionMongodbHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
ReplicaSet This property is required. string
(Optional, String) Name of the replica set to use in the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionMongodbAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionMongodbCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. []GetDatabaseConnectionMongodbHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
ReplicaSet This property is required. string
(Optional, String) Name of the replica set to use in the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionMongodbAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionMongodbCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<GetDatabaseConnectionMongodbHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
replicaSet This property is required. String
(Optional, String) Name of the replica set to use in the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionMongodbAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionMongodbCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. GetDatabaseConnectionMongodbHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
replicaSet This property is required. string
(Optional, String) Name of the replica set to use in the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionMongodbAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionMongodbCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
database This property is required. str
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. Sequence[GetDatabaseConnectionMongodbHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
replica_set This property is required. str
(Optional, String) Name of the replica set to use in the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
replicaSet This property is required. String
(Optional, String) Name of the replica set to use in the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionMongodbAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionMongodbCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionMongodbHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionMqtt

Authentications This property is required. List<GetDatabaseConnectionMqttAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionMqttCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionMqttHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionMqttAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionMqttCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionMqttHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionMqttAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionMqttCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionMqttHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionMqttAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionMqttCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionMqttHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionMqttAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionMqttCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionMqttHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionMqttAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionMqttCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionMqttHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionMysql

Authentications This property is required. List<GetDatabaseConnectionMysqlAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionMysqlCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. List<GetDatabaseConnectionMysqlHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionMysqlAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionMysqlCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. []GetDatabaseConnectionMysqlHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionMysqlAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionMysqlCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<GetDatabaseConnectionMysqlHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionMysqlAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionMysqlCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. GetDatabaseConnectionMysqlHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionMysqlAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionMysqlCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
database This property is required. str
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. Sequence[GetDatabaseConnectionMysqlHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionMysqlAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionMysqlCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionMysqlHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionOpsManager

Authentications This property is required. List<GetDatabaseConnectionOpsManagerAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionOpsManagerCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionOpsManagerHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionOpsManagerAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionOpsManagerCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionOpsManagerHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionOpsManagerAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionOpsManagerCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionOpsManagerHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionOpsManagerAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionOpsManagerCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionOpsManagerHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionOpsManagerAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionOpsManagerCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionOpsManagerHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionOpsManagerAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionOpsManagerCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionOpsManagerHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionPostgre

Authentications This property is required. List<GetDatabaseConnectionPostgreAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionPostgreCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. List<GetDatabaseConnectionPostgreHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionPostgreAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionPostgreCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. []GetDatabaseConnectionPostgreHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionPostgreAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionPostgreCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<GetDatabaseConnectionPostgreHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionPostgreAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionPostgreCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
database This property is required. string
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. GetDatabaseConnectionPostgreHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionPostgreAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionPostgreCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
database This property is required. str
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. Sequence[GetDatabaseConnectionPostgreHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. String
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionPostgreAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionPostgreCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionPostgreHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionRediss

Authentications This property is required. List<GetDatabaseConnectionRedissAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionRedissCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Database This property is required. double
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. List<GetDatabaseConnectionRedissHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionRedissAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionRedissCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Database This property is required. float64
(Optional, Integer) Number of the database to use in the URI connection.
Hosts This property is required. []GetDatabaseConnectionRedissHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionRedissAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionRedissCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. Double
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<GetDatabaseConnectionRedissHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionRedissAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionRedissCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
database This property is required. number
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. GetDatabaseConnectionRedissHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionRedissAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionRedissCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
database This property is required. float
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. Sequence[GetDatabaseConnectionRedissHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
database This property is required. Number
(Optional, Integer) Number of the database to use in the URI connection.
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionRedissAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionRedissCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionRedissHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionSecure

Authentications This property is required. List<GetDatabaseConnectionSecureAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
Bundles This property is required. List<GetDatabaseConnectionSecureBundle>
(Optional, List) Nested scheme for bundle:
Hosts This property is required. List<GetDatabaseConnectionSecureHost>
(Optional, List) Nested scheme for hosts:
Authentications This property is required. []GetDatabaseConnectionSecureAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
Bundles This property is required. []GetDatabaseConnectionSecureBundle
(Optional, List) Nested scheme for bundle:
Hosts This property is required. []GetDatabaseConnectionSecureHost
(Optional, List) Nested scheme for hosts:
authentications This property is required. List<GetDatabaseConnectionSecureAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
bundles This property is required. List<GetDatabaseConnectionSecureBundle>
(Optional, List) Nested scheme for bundle:
hosts This property is required. List<GetDatabaseConnectionSecureHost>
(Optional, List) Nested scheme for hosts:
authentications This property is required. GetDatabaseConnectionSecureAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
bundles This property is required. GetDatabaseConnectionSecureBundle[]
(Optional, List) Nested scheme for bundle:
hosts This property is required. GetDatabaseConnectionSecureHost[]
(Optional, List) Nested scheme for hosts:
authentications This property is required. Sequence[GetDatabaseConnectionSecureAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
bundles This property is required. Sequence[GetDatabaseConnectionSecureBundle]
(Optional, List) Nested scheme for bundle:
hosts This property is required. Sequence[GetDatabaseConnectionSecureHost]
(Optional, List) Nested scheme for hosts:
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
bundles This property is required. List<Property Map>
(Optional, List) Nested scheme for bundle:
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:

GetDatabaseConnectionSecureAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionSecureBundle

BundleBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate bundle.
Name This property is required. string
(Optional, String) Name associated with the certificate.
BundleBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate bundle.
Name This property is required. string
(Optional, String) Name associated with the certificate.
bundleBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate bundle.
name This property is required. String
(Optional, String) Name associated with the certificate.
bundleBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate bundle.
name This property is required. string
(Optional, String) Name associated with the certificate.
bundle_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate bundle.
name This property is required. str
(Optional, String) Name associated with the certificate.
bundleBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate bundle.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionSecureHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

GetDatabaseConnectionStompSsl

Authentications This property is required. List<GetDatabaseConnectionStompSslAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. List<GetDatabaseConnectionStompSslCertificate>
(Optional, List) Nested scheme for certificate:
Composeds This property is required. List<string>
(Optional, List)
Hosts This property is required. List<GetDatabaseConnectionStompSslHost>
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. Dictionary<string, string>
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
Authentications This property is required. []GetDatabaseConnectionStompSslAuthentication
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
BrowserAccessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
Certificates This property is required. []GetDatabaseConnectionStompSslCertificate
(Optional, List) Nested scheme for certificate:
Composeds This property is required. []string
(Optional, List)
Hosts This property is required. []GetDatabaseConnectionStompSslHost
(Optional, List) Nested scheme for hosts:
Path This property is required. string
(Optional, String) Path for URI connection.
QueryOptions This property is required. map[string]string
(Optional, Map) Query options to add to the URI connection.
Scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
Ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
Type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. List<GetDatabaseConnectionStompSslAuthentication>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<GetDatabaseConnectionStompSslCertificate>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<GetDatabaseConnectionStompSslHost>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String,String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.
authentications This property is required. GetDatabaseConnectionStompSslAuthentication[]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. GetDatabaseConnectionStompSslCertificate[]
(Optional, List) Nested scheme for certificate:
composeds This property is required. string[]
(Optional, List)
hosts This property is required. GetDatabaseConnectionStompSslHost[]
(Optional, List) Nested scheme for hosts:
path This property is required. string
(Optional, String) Path for URI connection.
queryOptions This property is required. {[key: string]: string}
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. string
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. string
(Optional, String) Type of connection being described.
authentications This property is required. Sequence[GetDatabaseConnectionStompSslAuthentication]
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browser_accessible This property is required. bool
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. Sequence[GetDatabaseConnectionStompSslCertificate]
(Optional, List) Nested scheme for certificate:
composeds This property is required. Sequence[str]
(Optional, List)
hosts This property is required. Sequence[GetDatabaseConnectionStompSslHost]
(Optional, List) Nested scheme for hosts:
path This property is required. str
(Optional, String) Path for URI connection.
query_options This property is required. Mapping[str, str]
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. str
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. bool
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. str
(Optional, String) Type of connection being described.
authentications This property is required. List<Property Map>
(Optional, List) Authentication data for Connection String. Nested scheme for authentication:
browserAccessible This property is required. Boolean
(Optional, Boolean) Indicates the address is accessible by browser.
certificates This property is required. List<Property Map>
(Optional, List) Nested scheme for certificate:
composeds This property is required. List<String>
(Optional, List)
hosts This property is required. List<Property Map>
(Optional, List) Nested scheme for hosts:
path This property is required. String
(Optional, String) Path for URI connection.
queryOptions This property is required. Map<String>
(Optional, Map) Query options to add to the URI connection.
scheme This property is required. String
(Optional, String) Scheme/protocol for URI connection.
ssl This property is required. Boolean
(Optional, Boolean) Indicates ssl is required for the connection.
type This property is required. String
(Optional, String) Type of connection being described.

GetDatabaseConnectionStompSslAuthentication

Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
Method This property is required. string
(Optional, String) Authentication method for this credential.
Password This property is required. string
(Optional, String) Password part of credential.
Username This property is required. string
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.
method This property is required. string
(Optional, String) Authentication method for this credential.
password This property is required. string
(Optional, String) Password part of credential.
username This property is required. string
(Optional, String) Username part of credential.
method This property is required. str
(Optional, String) Authentication method for this credential.
password This property is required. str
(Optional, String) Password part of credential.
username This property is required. str
(Optional, String) Username part of credential.
method This property is required. String
(Optional, String) Authentication method for this credential.
password This property is required. String
(Optional, String) Password part of credential.
username This property is required. String
(Optional, String) Username part of credential.

GetDatabaseConnectionStompSslCertificate

CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
CertificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
Name This property is required. string
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. string
(Optional, String) Base64 encoded version of the certificate.
name This property is required. string
(Optional, String) Name associated with the certificate.
certificate_base64 This property is required. str
(Optional, String) Base64 encoded version of the certificate.
name This property is required. str
(Optional, String) Name associated with the certificate.
certificateBase64 This property is required. String
(Optional, String) Base64 encoded version of the certificate.
name This property is required. String
(Optional, String) Name associated with the certificate.

GetDatabaseConnectionStompSslHost

Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. double
(Optional, Integer) Port number for connection.
Hostname This property is required. string
(Optional, String) Hostname for connection.
Port This property is required. float64
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Double
(Optional, Integer) Port number for connection.
hostname This property is required. string
(Optional, String) Hostname for connection.
port This property is required. number
(Optional, Integer) Port number for connection.
hostname This property is required. str
(Optional, String) Hostname for connection.
port This property is required. float
(Optional, Integer) Port number for connection.
hostname This property is required. String
(Optional, String) Hostname for connection.
port This property is required. Number
(Optional, Integer) Port number for connection.

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.