ibm 1.78.0 published on Wednesday, Apr 30, 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",
});
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")
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
})
}
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",
});
});
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());
}
}
variables:
databaseConnection:
fn::invoke:
function: ibm:getDatabaseConnection
arguments:
endpointType: public
deploymentId: ${ibm_database.my_db.id}
userId: user_id
userType: database
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>
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]
func GetDatabaseConnection(ctx *Context, args *GetDatabaseConnectionArgs, opts ...InvokeOption) (*GetDatabaseConnectionResult, error)
func GetDatabaseConnectionOutput(ctx *Context, args *GetDatabaseConnectionOutputArgs, opts ...InvokeOption) GetDatabaseConnectionResultOutput
> 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)
}
public static CompletableFuture<GetDatabaseConnectionResult> getDatabaseConnection(GetDatabaseConnectionArgs args, InvokeOptions options)
public static Output<GetDatabaseConnectionResult> getDatabaseConnection(GetDatabaseConnectionArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getDatabaseConnection:getDatabaseConnection
arguments:
# arguments dictionary
The following arguments are supported:
- Deployment
Id string - Deployment ID.
- Endpoint
Type string - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- User
Id string - User ID.
- User
Type string - User type.
- Certificate
Root 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 string - Deployment ID.
- Endpoint
Type string - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- User
Id string - User ID.
- User
Type string - User type.
- Certificate
Root 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 String - Deployment ID.
- endpoint
Type String - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- user
Id String - User ID.
- user
Type String - User type.
- certificate
Root 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 string - Deployment ID.
- endpoint
Type string - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- user
Id string - User ID.
- user
Type string - User type.
- certificate
Root 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 str - Deployment ID.
- endpoint_
type str - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- user_
id str - User ID.
- user_
type 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.
- deployment
Id String - Deployment ID.
- endpoint
Type String - Endpoint Type. The endpoint must be enabled on the deployment before its connection information can be fetched.
- Constraints: Allowable values are:
public
,private
.
- Constraints: Allowable values are:
- user
Id String - User ID.
- user
Type String - User type.
- certificate
Root 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<Get
Database Connection Amqp> - (Optional, List) Nested scheme for amqps:
- Analytics
List<Get
Database Connection Analytic> - (Optional, List) Nested scheme for analytics:
- Bi
Connectors List<GetDatabase Connection Bi Connector> - (Optional, List) Nested scheme for bi_connector:
- Clis
List<Get
Database Connection Cli> - (Optional, List) CLI Connection. Nested scheme for cli:
- Deployment
Id string - Emps
List<Get
Database Connection Emp> - (Optional, List) Nested scheme for emp:
- Endpoint
Type string - Grpcs
List<Get
Database Connection Grpc> - (Optional, List) Nested scheme for grpc:
- Https
List<Get
Database Connection Http> - (Optional, List) Nested scheme for https:
- Id string
- The unique identifier of the database_connection.
- Mongodbs
List<Get
Database Connection Mongodb> - (Optional, List) Nested scheme for mongodb:
- Mqtts
List<Get
Database Connection Mqtt> - (Optional, List) Nested scheme for mqtts:
- Mysqls
List<Get
Database Connection Mysql> - (Optional, List) Nested scheme for mysql:
- Ops
Managers List<GetDatabase Connection Ops Manager> - (Optional, List) Nested scheme for ops_manager:
- Postgres
List<Get
Database Connection Postgre> - (Optional, List) Nested scheme for postgres:
- Redisses
List<Get
Database Connection Rediss> - (Optional, List) Nested scheme for rediss:
- Secures
List<Get
Database Connection Secure> - (Optional, List) Nested scheme for secure:
- Stomp
Ssls List<GetDatabase Connection Stomp Ssl> - (Optional, List) Nested scheme for stomp_ssl:
- User
Id string - User
Type string - Certificate
Root string
- Amqps
[]Get
Database Connection Amqp - (Optional, List) Nested scheme for amqps:
- Analytics
[]Get
Database Connection Analytic - (Optional, List) Nested scheme for analytics:
- Bi
Connectors []GetDatabase Connection Bi Connector - (Optional, List) Nested scheme for bi_connector:
- Clis
[]Get
Database Connection Cli - (Optional, List) CLI Connection. Nested scheme for cli:
- Deployment
Id string - Emps
[]Get
Database Connection Emp - (Optional, List) Nested scheme for emp:
- Endpoint
Type string - Grpcs
[]Get
Database Connection Grpc - (Optional, List) Nested scheme for grpc:
- Https
[]Get
Database Connection Http - (Optional, List) Nested scheme for https:
- Id string
- The unique identifier of the database_connection.
- Mongodbs
[]Get
Database Connection Mongodb - (Optional, List) Nested scheme for mongodb:
- Mqtts
[]Get
Database Connection Mqtt - (Optional, List) Nested scheme for mqtts:
- Mysqls
[]Get
Database Connection Mysql - (Optional, List) Nested scheme for mysql:
- Ops
Managers []GetDatabase Connection Ops Manager - (Optional, List) Nested scheme for ops_manager:
- Postgres
[]Get
Database Connection Postgre - (Optional, List) Nested scheme for postgres:
- Redisses
[]Get
Database Connection Rediss - (Optional, List) Nested scheme for rediss:
- Secures
[]Get
Database Connection Secure - (Optional, List) Nested scheme for secure:
- Stomp
Ssls []GetDatabase Connection Stomp Ssl - (Optional, List) Nested scheme for stomp_ssl:
- User
Id string - User
Type string - Certificate
Root string
- amqps
List<Get
Database Connection Amqp> - (Optional, List) Nested scheme for amqps:
- analytics
List<Get
Database Connection Analytic> - (Optional, List) Nested scheme for analytics:
- bi
Connectors List<GetDatabase Connection Bi Connector> - (Optional, List) Nested scheme for bi_connector:
- clis
List<Get
Database Connection Cli> - (Optional, List) CLI Connection. Nested scheme for cli:
- deployment
Id String - emps
List<Get
Database Connection Emp> - (Optional, List) Nested scheme for emp:
- endpoint
Type String - grpcs
List<Get
Database Connection Grpc> - (Optional, List) Nested scheme for grpc:
- https
List<Get
Database Connection Http> - (Optional, List) Nested scheme for https:
- id String
- The unique identifier of the database_connection.
- mongodbs
List<Get
Database Connection Mongodb> - (Optional, List) Nested scheme for mongodb:
- mqtts
List<Get
Database Connection Mqtt> - (Optional, List) Nested scheme for mqtts:
- mysqls
List<Get
Database Connection Mysql> - (Optional, List) Nested scheme for mysql:
- ops
Managers List<GetDatabase Connection Ops Manager> - (Optional, List) Nested scheme for ops_manager:
- postgres
List<Get
Database Connection Postgre> - (Optional, List) Nested scheme for postgres:
- redisses
List<Get
Database Connection Rediss> - (Optional, List) Nested scheme for rediss:
- secures
List<Get
Database Connection Secure> - (Optional, List) Nested scheme for secure:
- stomp
Ssls List<GetDatabase Connection Stomp Ssl> - (Optional, List) Nested scheme for stomp_ssl:
- user
Id String - user
Type String - certificate
Root String
- amqps
Get
Database Connection Amqp[] - (Optional, List) Nested scheme for amqps:
- analytics
Get
Database Connection Analytic[] - (Optional, List) Nested scheme for analytics:
- bi
Connectors GetDatabase Connection Bi Connector[] - (Optional, List) Nested scheme for bi_connector:
- clis
Get
Database Connection Cli[] - (Optional, List) CLI Connection. Nested scheme for cli:
- deployment
Id string - emps
Get
Database Connection Emp[] - (Optional, List) Nested scheme for emp:
- endpoint
Type string - grpcs
Get
Database Connection Grpc[] - (Optional, List) Nested scheme for grpc:
- https
Get
Database Connection Http[] - (Optional, List) Nested scheme for https:
- id string
- The unique identifier of the database_connection.
- mongodbs
Get
Database Connection Mongodb[] - (Optional, List) Nested scheme for mongodb:
- mqtts
Get
Database Connection Mqtt[] - (Optional, List) Nested scheme for mqtts:
- mysqls
Get
Database Connection Mysql[] - (Optional, List) Nested scheme for mysql:
- ops
Managers GetDatabase Connection Ops Manager[] - (Optional, List) Nested scheme for ops_manager:
- postgres
Get
Database Connection Postgre[] - (Optional, List) Nested scheme for postgres:
- redisses
Get
Database Connection Rediss[] - (Optional, List) Nested scheme for rediss:
- secures
Get
Database Connection Secure[] - (Optional, List) Nested scheme for secure:
- stomp
Ssls GetDatabase Connection Stomp Ssl[] - (Optional, List) Nested scheme for stomp_ssl:
- user
Id string - user
Type string - certificate
Root string
- amqps
Sequence[Get
Database Connection Amqp] - (Optional, List) Nested scheme for amqps:
- analytics
Sequence[Get
Database Connection Analytic] - (Optional, List) Nested scheme for analytics:
- bi_
connectors Sequence[GetDatabase Connection Bi Connector] - (Optional, List) Nested scheme for bi_connector:
- clis
Sequence[Get
Database Connection Cli] - (Optional, List) CLI Connection. Nested scheme for cli:
- deployment_
id str - emps
Sequence[Get
Database Connection Emp] - (Optional, List) Nested scheme for emp:
- endpoint_
type str - grpcs
Sequence[Get
Database Connection Grpc] - (Optional, List) Nested scheme for grpc:
- https
Sequence[Get
Database Connection Http] - (Optional, List) Nested scheme for https:
- id str
- The unique identifier of the database_connection.
- mongodbs
Sequence[Get
Database Connection Mongodb] - (Optional, List) Nested scheme for mongodb:
- mqtts
Sequence[Get
Database Connection Mqtt] - (Optional, List) Nested scheme for mqtts:
- mysqls
Sequence[Get
Database Connection Mysql] - (Optional, List) Nested scheme for mysql:
- ops_
managers Sequence[GetDatabase Connection Ops Manager] - (Optional, List) Nested scheme for ops_manager:
- postgres
Sequence[Get
Database Connection Postgre] - (Optional, List) Nested scheme for postgres:
- redisses
Sequence[Get
Database Connection Rediss] - (Optional, List) Nested scheme for rediss:
- secures
Sequence[Get
Database Connection Secure] - (Optional, List) Nested scheme for secure:
- stomp_
ssls Sequence[GetDatabase Connection Stomp Ssl] - (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:
- bi
Connectors List<Property Map> - (Optional, List) Nested scheme for bi_connector:
- clis List<Property Map>
- (Optional, List) CLI Connection. Nested scheme for cli:
- deployment
Id String - emps List<Property Map>
- (Optional, List) Nested scheme for emp:
- endpoint
Type 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:
- ops
Managers 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:
- stomp
Ssls List<Property Map> - (Optional, List) Nested scheme for stomp_ssl:
- user
Id String - user
Type String - certificate
Root String
Supporting Types
GetDatabaseConnectionAmqp
- Authentications
List<Get
Database Connection Amqp Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Amqp Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Amqp Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Amqp Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Amqp Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Amqp Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Amqp Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Amqp Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Amqp Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Amqp Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Amqp Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Amqp Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Amqp Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Amqp Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Amqp Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionAmqpAuthentication
GetDatabaseConnectionAmqpCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionAmqpHost
GetDatabaseConnectionAnalytic
- Authentications
List<Get
Database Connection Analytic Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Analytic Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Analytic Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Analytic Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Analytic Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Analytic Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Analytic Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Analytic Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Analytic Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Analytic Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Analytic Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Analytic Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Analytic Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Analytic Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Analytic Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionAnalyticAuthentication
GetDatabaseConnectionAnalyticCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionAnalyticHost
GetDatabaseConnectionBiConnector
- Authentications
List<Get
Database Connection Bi Connector Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Bi Connector Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Bi Connector Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Bi Connector Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Bi Connector Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Bi Connector Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Bi Connector Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Bi Connector Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Bi Connector Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Bi Connector Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Bi Connector Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Bi Connector Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Bi Connector Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Bi Connector Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Bi Connector Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionBiConnectorAuthentication
GetDatabaseConnectionBiConnectorCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionBiConnectorHost
GetDatabaseConnectionCli
- Arguments 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 string
- (Optional, String) The name of the executable the CLI should run.
- Certificates
List<Get
Database Connection Cli Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Environment Dictionary<string, string>
- (Optional, Map) A map of environment variables for a CLI connection.
- Type string
- (Optional, String) Type of connection being described.
- Arguments []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 string
- (Optional, String) The name of the executable the CLI should run.
- Certificates
[]Get
Database Connection Cli Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Environment map[string]string
- (Optional, Map) A map of environment variables for a CLI connection.
- Type string
- (Optional, String) Type of connection being described.
- arguments 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 String
- (Optional, String) The name of the executable the CLI should run.
- certificates
List<Get
Database Connection Cli Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- environment Map<String,String>
- (Optional, Map) A map of environment variables for a CLI connection.
- type String
- (Optional, String) Type of connection being described.
- arguments 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 string
- (Optional, String) The name of the executable the CLI should run.
- certificates
Get
Database Connection Cli Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- environment {[key: string]: string}
- (Optional, Map) A map of environment variables for a CLI connection.
- type string
- (Optional, String) Type of connection being described.
- arguments 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 str
- (Optional, String) The name of the executable the CLI should run.
- certificates
Sequence[Get
Database Connection Cli Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- environment Mapping[str, str]
- (Optional, Map) A map of environment variables for a CLI connection.
- type str
- (Optional, String) Type of connection being described.
- arguments 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 String
- (Optional, String) The name of the executable the CLI should run.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- environment Map<String>
- (Optional, Map) A map of environment variables for a CLI connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionCliCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionEmp
- Authentications
List<Get
Database Connection Emp Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Emp Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Emp Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Emp Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Emp Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Emp Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Emp Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Emp Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Emp Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Emp Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Emp Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Emp Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Emp Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Emp Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Emp Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionEmpAuthentication
GetDatabaseConnectionEmpCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionEmpHost
GetDatabaseConnectionGrpc
- Authentications
List<Get
Database Connection Grpc Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Grpc Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Grpc Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Grpc Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Grpc Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Grpc Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Grpc Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Grpc Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Grpc Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Grpc Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Grpc Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Grpc Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Grpc Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Grpc Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Grpc Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionGrpcAuthentication
GetDatabaseConnectionGrpcCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionGrpcHost
GetDatabaseConnectionHttp
- Authentications
List<Get
Database Connection Http Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Http Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Http Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Http Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Http Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Http Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Http Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Http Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Http Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Http Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Http Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Http Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Http Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Http Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Http Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionHttpAuthentication
GetDatabaseConnectionHttpCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionHttpHost
GetDatabaseConnectionMongodb
- Authentications
List<Get
Database Connection Mongodb Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Mongodb Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
List<Get
Database Connection Mongodb Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Replica
Set string - (Optional, String) Name of the replica set to use in the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Mongodb Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Mongodb Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
[]Get
Database Connection Mongodb Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Replica
Set string - (Optional, String) Name of the replica set to use in the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Mongodb Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Mongodb Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
List<Get
Database Connection Mongodb Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- replica
Set String - (Optional, String) Name of the replica set to use in the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Mongodb Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Mongodb Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- database string
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Get
Database Connection Mongodb Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- replica
Set string - (Optional, String) Name of the replica set to use in the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Mongodb Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Mongodb Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- database str
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Sequence[Get
Database Connection Mongodb Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- replica_
set str - (Optional, String) Name of the replica set to use in the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- replica
Set String - (Optional, String) Name of the replica set to use in the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionMongodbAuthentication
GetDatabaseConnectionMongodbCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionMongodbHost
GetDatabaseConnectionMqtt
- Authentications
List<Get
Database Connection Mqtt Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Mqtt Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Mqtt Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Mqtt Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Mqtt Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Mqtt Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Mqtt Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Mqtt Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Mqtt Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Mqtt Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Mqtt Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Mqtt Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Mqtt Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Mqtt Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Mqtt Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionMqttAuthentication
GetDatabaseConnectionMqttCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionMqttHost
GetDatabaseConnectionMysql
- Authentications
List<Get
Database Connection Mysql Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Mysql Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
List<Get
Database Connection Mysql Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Mysql Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Mysql Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
[]Get
Database Connection Mysql Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Mysql Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Mysql Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
List<Get
Database Connection Mysql Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Mysql Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Mysql Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- database string
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Get
Database Connection Mysql Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Mysql Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Mysql Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- database str
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Sequence[Get
Database Connection Mysql Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionMysqlAuthentication
GetDatabaseConnectionMysqlCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionMysqlHost
GetDatabaseConnectionOpsManager
- Authentications
List<Get
Database Connection Ops Manager Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Ops Manager Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Ops Manager Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Ops Manager Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Ops Manager Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Ops Manager Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Ops Manager Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Ops Manager Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Ops Manager Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Ops Manager Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Ops Manager Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Ops Manager Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Ops Manager Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Ops Manager Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Ops Manager Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionOpsManagerAuthentication
GetDatabaseConnectionOpsManagerCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionOpsManagerHost
GetDatabaseConnectionPostgre
- Authentications
List<Get
Database Connection Postgre Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Postgre Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
List<Get
Database Connection Postgre Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Postgre Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Postgre Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Database string
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
[]Get
Database Connection Postgre Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Postgre Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Postgre Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
List<Get
Database Connection Postgre Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Postgre Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Postgre Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- database string
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Get
Database Connection Postgre Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Postgre Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Postgre Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- database str
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Sequence[Get
Database Connection Postgre Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database String
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionPostgreAuthentication
GetDatabaseConnectionPostgreCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionPostgreHost
GetDatabaseConnectionRediss
- Authentications
List<Get
Database Connection Rediss Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Rediss Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Database double
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
List<Get
Database Connection Rediss Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Rediss Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Rediss Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Database float64
- (Optional, Integer) Number of the database to use in the URI connection.
- Hosts
[]Get
Database Connection Rediss Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Rediss Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Rediss Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database Double
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
List<Get
Database Connection Rediss Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Rediss Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Rediss Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- database number
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Get
Database Connection Rediss Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Rediss Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Rediss Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- database float
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts
Sequence[Get
Database Connection Rediss Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- database Number
- (Optional, Integer) Number of the database to use in the URI connection.
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionRedissAuthentication
GetDatabaseConnectionRedissCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionRedissHost
GetDatabaseConnectionSecure
- Authentications
List<Get
Database Connection Secure Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Bundles
List<Get
Database Connection Secure Bundle> - (Optional, List) Nested scheme for bundle:
- Hosts
List<Get
Database Connection Secure Host> - (Optional, List) Nested scheme for hosts:
- Authentications
[]Get
Database Connection Secure Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Bundles
[]Get
Database Connection Secure Bundle - (Optional, List) Nested scheme for bundle:
- Hosts
[]Get
Database Connection Secure Host - (Optional, List) Nested scheme for hosts:
- authentications
List<Get
Database Connection Secure Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- bundles
List<Get
Database Connection Secure Bundle> - (Optional, List) Nested scheme for bundle:
- hosts
List<Get
Database Connection Secure Host> - (Optional, List) Nested scheme for hosts:
- authentications
Get
Database Connection Secure Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- bundles
Get
Database Connection Secure Bundle[] - (Optional, List) Nested scheme for bundle:
- hosts
Get
Database Connection Secure Host[] - (Optional, List) Nested scheme for hosts:
- authentications
Sequence[Get
Database Connection Secure Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- bundles
Sequence[Get
Database Connection Secure Bundle] - (Optional, List) Nested scheme for bundle:
- hosts
Sequence[Get
Database Connection Secure Host] - (Optional, List) Nested scheme for hosts:
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- bundles List<Property Map>
- (Optional, List) Nested scheme for bundle:
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
GetDatabaseConnectionSecureAuthentication
GetDatabaseConnectionSecureBundle
- Bundle
Base64 string - (Optional, String) Base64 encoded version of the certificate bundle.
- Name string
- (Optional, String) Name associated with the certificate.
- Bundle
Base64 string - (Optional, String) Base64 encoded version of the certificate bundle.
- Name string
- (Optional, String) Name associated with the certificate.
- bundle
Base64 String - (Optional, String) Base64 encoded version of the certificate bundle.
- name String
- (Optional, String) Name associated with the certificate.
- bundle
Base64 string - (Optional, String) Base64 encoded version of the certificate bundle.
- name string
- (Optional, String) Name associated with the certificate.
- bundle_
base64 str - (Optional, String) Base64 encoded version of the certificate bundle.
- name str
- (Optional, String) Name associated with the certificate.
- bundle
Base64 String - (Optional, String) Base64 encoded version of the certificate bundle.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionSecureHost
GetDatabaseConnectionStompSsl
- Authentications
List<Get
Database Connection Stomp Ssl Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
List<Get
Database Connection Stomp Ssl Certificate> - (Optional, List) Nested scheme for certificate:
- Composeds List<string>
- (Optional, List)
- Hosts
List<Get
Database Connection Stomp Ssl Host> - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options Dictionary<string, string> - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- Authentications
[]Get
Database Connection Stomp Ssl Authentication - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- Browser
Accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- Certificates
[]Get
Database Connection Stomp Ssl Certificate - (Optional, List) Nested scheme for certificate:
- Composeds []string
- (Optional, List)
- Hosts
[]Get
Database Connection Stomp Ssl Host - (Optional, List) Nested scheme for hosts:
- Path string
- (Optional, String) Path for URI connection.
- Query
Options map[string]string - (Optional, Map) Query options to add to the URI connection.
- Scheme string
- (Optional, String) Scheme/protocol for URI connection.
- Ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- Type string
- (Optional, String) Type of connection being described.
- authentications
List<Get
Database Connection Stomp Ssl Authentication> - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
List<Get
Database Connection Stomp Ssl Certificate> - (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts
List<Get
Database Connection Stomp Ssl Host> - (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String,String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
- authentications
Get
Database Connection Stomp Ssl Authentication[] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Get
Database Connection Stomp Ssl Certificate[] - (Optional, List) Nested scheme for certificate:
- composeds string[]
- (Optional, List)
- hosts
Get
Database Connection Stomp Ssl Host[] - (Optional, List) Nested scheme for hosts:
- path string
- (Optional, String) Path for URI connection.
- query
Options {[key: string]: string} - (Optional, Map) Query options to add to the URI connection.
- scheme string
- (Optional, String) Scheme/protocol for URI connection.
- ssl boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type string
- (Optional, String) Type of connection being described.
- authentications
Sequence[Get
Database Connection Stomp Ssl Authentication] - (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser_
accessible bool - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates
Sequence[Get
Database Connection Stomp Ssl Certificate] - (Optional, List) Nested scheme for certificate:
- composeds Sequence[str]
- (Optional, List)
- hosts
Sequence[Get
Database Connection Stomp Ssl Host] - (Optional, List) Nested scheme for hosts:
- path str
- (Optional, String) Path for URI connection.
- query_
options Mapping[str, str] - (Optional, Map) Query options to add to the URI connection.
- scheme str
- (Optional, String) Scheme/protocol for URI connection.
- ssl bool
- (Optional, Boolean) Indicates ssl is required for the connection.
- type str
- (Optional, String) Type of connection being described.
- authentications List<Property Map>
- (Optional, List) Authentication data for Connection String. Nested scheme for authentication:
- browser
Accessible Boolean - (Optional, Boolean) Indicates the address is accessible by browser.
- certificates List<Property Map>
- (Optional, List) Nested scheme for certificate:
- composeds List<String>
- (Optional, List)
- hosts List<Property Map>
- (Optional, List) Nested scheme for hosts:
- path String
- (Optional, String) Path for URI connection.
- query
Options Map<String> - (Optional, Map) Query options to add to the URI connection.
- scheme String
- (Optional, String) Scheme/protocol for URI connection.
- ssl Boolean
- (Optional, Boolean) Indicates ssl is required for the connection.
- type String
- (Optional, String) Type of connection being described.
GetDatabaseConnectionStompSslAuthentication
GetDatabaseConnectionStompSslCertificate
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- Certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- Name string
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
- certificate
Base64 string - (Optional, String) Base64 encoded version of the certificate.
- name string
- (Optional, String) Name associated with the certificate.
- certificate_
base64 str - (Optional, String) Base64 encoded version of the certificate.
- name str
- (Optional, String) Name associated with the certificate.
- certificate
Base64 String - (Optional, String) Base64 encoded version of the certificate.
- name String
- (Optional, String) Name associated with the certificate.
GetDatabaseConnectionStompSslHost
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.