Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.DatabaseTools.getDatabaseToolsConnections
Start a Neo task
Explain and create an oci.DatabaseTools.getDatabaseToolsConnections resource
This data source provides the list of Database Tools Connections in Oracle Cloud Infrastructure Database Tools service.
Returns a list of Database Tools connections.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDatabaseToolsConnections = oci.DatabaseTools.getDatabaseToolsConnections({
compartmentId: compartmentId,
displayName: databaseToolsConnectionDisplayName,
relatedResourceIdentifier: databaseToolsConnectionRelatedResourceIdentifier,
runtimeIdentities: databaseToolsConnectionRuntimeIdentity,
runtimeSupports: databaseToolsConnectionRuntimeSupport,
state: databaseToolsConnectionState,
types: databaseToolsConnectionType,
});
import pulumi
import pulumi_oci as oci
test_database_tools_connections = oci.DatabaseTools.get_database_tools_connections(compartment_id=compartment_id,
display_name=database_tools_connection_display_name,
related_resource_identifier=database_tools_connection_related_resource_identifier,
runtime_identities=database_tools_connection_runtime_identity,
runtime_supports=database_tools_connection_runtime_support,
state=database_tools_connection_state,
types=database_tools_connection_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasetools"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databasetools.GetDatabaseToolsConnections(ctx, &databasetools.GetDatabaseToolsConnectionsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(databaseToolsConnectionDisplayName),
RelatedResourceIdentifier: pulumi.StringRef(databaseToolsConnectionRelatedResourceIdentifier),
RuntimeIdentities: databaseToolsConnectionRuntimeIdentity,
RuntimeSupports: databaseToolsConnectionRuntimeSupport,
State: pulumi.StringRef(databaseToolsConnectionState),
Types: databaseToolsConnectionType,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDatabaseToolsConnections = Oci.DatabaseTools.GetDatabaseToolsConnections.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = databaseToolsConnectionDisplayName,
RelatedResourceIdentifier = databaseToolsConnectionRelatedResourceIdentifier,
RuntimeIdentities = databaseToolsConnectionRuntimeIdentity,
RuntimeSupports = databaseToolsConnectionRuntimeSupport,
State = databaseToolsConnectionState,
Types = databaseToolsConnectionType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseTools.DatabaseToolsFunctions;
import com.pulumi.oci.DatabaseTools.inputs.GetDatabaseToolsConnectionsArgs;
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 testDatabaseToolsConnections = DatabaseToolsFunctions.getDatabaseToolsConnections(GetDatabaseToolsConnectionsArgs.builder()
.compartmentId(compartmentId)
.displayName(databaseToolsConnectionDisplayName)
.relatedResourceIdentifier(databaseToolsConnectionRelatedResourceIdentifier)
.runtimeIdentities(databaseToolsConnectionRuntimeIdentity)
.runtimeSupports(databaseToolsConnectionRuntimeSupport)
.state(databaseToolsConnectionState)
.types(databaseToolsConnectionType)
.build());
}
}
variables:
testDatabaseToolsConnections:
fn::invoke:
function: oci:DatabaseTools:getDatabaseToolsConnections
arguments:
compartmentId: ${compartmentId}
displayName: ${databaseToolsConnectionDisplayName}
relatedResourceIdentifier: ${databaseToolsConnectionRelatedResourceIdentifier}
runtimeIdentities: ${databaseToolsConnectionRuntimeIdentity}
runtimeSupports: ${databaseToolsConnectionRuntimeSupport}
state: ${databaseToolsConnectionState}
types: ${databaseToolsConnectionType}
Using getDatabaseToolsConnections
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 getDatabaseToolsConnections(args: GetDatabaseToolsConnectionsArgs, opts?: InvokeOptions): Promise<GetDatabaseToolsConnectionsResult>
function getDatabaseToolsConnectionsOutput(args: GetDatabaseToolsConnectionsOutputArgs, opts?: InvokeOptions): Output<GetDatabaseToolsConnectionsResult>def get_database_tools_connections(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDatabaseToolsConnectionsFilter]] = None,
related_resource_identifier: Optional[str] = None,
runtime_identities: Optional[Sequence[str]] = None,
runtime_supports: Optional[Sequence[str]] = None,
state: Optional[str] = None,
types: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetDatabaseToolsConnectionsResult
def get_database_tools_connections_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDatabaseToolsConnectionsFilterArgs]]]] = None,
related_resource_identifier: Optional[pulumi.Input[str]] = None,
runtime_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
runtime_supports: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
state: Optional[pulumi.Input[str]] = None,
types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseToolsConnectionsResult]func GetDatabaseToolsConnections(ctx *Context, args *GetDatabaseToolsConnectionsArgs, opts ...InvokeOption) (*GetDatabaseToolsConnectionsResult, error)
func GetDatabaseToolsConnectionsOutput(ctx *Context, args *GetDatabaseToolsConnectionsOutputArgs, opts ...InvokeOption) GetDatabaseToolsConnectionsResultOutput> Note: This function is named GetDatabaseToolsConnections in the Go SDK.
public static class GetDatabaseToolsConnections
{
public static Task<GetDatabaseToolsConnectionsResult> InvokeAsync(GetDatabaseToolsConnectionsArgs args, InvokeOptions? opts = null)
public static Output<GetDatabaseToolsConnectionsResult> Invoke(GetDatabaseToolsConnectionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDatabaseToolsConnectionsResult> getDatabaseToolsConnections(GetDatabaseToolsConnectionsArgs args, InvokeOptions options)
public static Output<GetDatabaseToolsConnectionsResult> getDatabaseToolsConnections(GetDatabaseToolsConnectionsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DatabaseTools/getDatabaseToolsConnections:getDatabaseToolsConnections
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire specified display name.
- Filters
List<Get
Database Tools Connections Filter> - string
- The OCID of the related resource.
- Runtime
Identities List<string> - A filter to return only resources with one of the specified runtimeIdentity values.
- Runtime
Supports List<string> - A filter to return only resources with one of the specified type values.
- State string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Types List<string>
- A filter to return only resources their type matches the specified type.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire specified display name.
- Filters
[]Get
Database Tools Connections Filter - string
- The OCID of the related resource.
- Runtime
Identities []string - A filter to return only resources with one of the specified runtimeIdentity values.
- Runtime
Supports []string - A filter to return only resources with one of the specified type values.
- State string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Types []string
- A filter to return only resources their type matches the specified type.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire specified display name.
- filters
List<Get
Connections Filter> - String
- The OCID of the related resource.
- runtime
Identities List<String> - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Supports List<String> - A filter to return only resources with one of the specified type values.
- state String
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - types List<String>
- A filter to return only resources their type matches the specified type.
- compartment
Id string - The OCID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire specified display name.
- filters
Get
Database Tools Connections Filter[] - string
- The OCID of the related resource.
- runtime
Identities string[] - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Supports string[] - A filter to return only resources with one of the specified type values.
- state string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - types string[]
- A filter to return only resources their type matches the specified type.
- compartment_
id str - The OCID of the compartment in which to list resources.
- display_
name str - A filter to return only resources that match the entire specified display name.
- filters
Sequence[Get
Database Tools Connections Filter] - str
- The OCID of the related resource.
- runtime_
identities Sequence[str] - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime_
supports Sequence[str] - A filter to return only resources with one of the specified type values.
- state str
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - types Sequence[str]
- A filter to return only resources their type matches the specified type.
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire specified display name.
- filters List<Property Map>
- String
- The OCID of the related resource.
- runtime
Identities List<String> - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Supports List<String> - A filter to return only resources with one of the specified type values.
- state String
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - types List<String>
- A filter to return only resources their type matches the specified type.
getDatabaseToolsConnections Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment containing the Database Tools connection.
- Database
Tools List<GetConnection Collections Database Tools Connections Database Tools Connection Collection> - The list of database_tools_connection_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Database Tools Connections Filter> - string
- Runtime
Identities List<string> - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- Runtime
Supports List<string> - Specifies whether this connection is supported by the Database Tools Runtime.
- State string
- The current state of the Database Tools connection.
- Types List<string>
- The Database Tools connection type.
- Compartment
Id string - The OCID of the compartment containing the Database Tools connection.
- Database
Tools []GetConnection Collections Database Tools Connections Database Tools Connection Collection - The list of database_tools_connection_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Database Tools Connections Filter - string
- Runtime
Identities []string - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- Runtime
Supports []string - Specifies whether this connection is supported by the Database Tools Runtime.
- State string
- The current state of the Database Tools connection.
- Types []string
- The Database Tools connection type.
- compartment
Id String - The OCID of the compartment containing the Database Tools connection.
- database
Tools List<GetConnection Collections Connections Connection Collection> - The list of database_tools_connection_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Connections Filter> - String
- runtime
Identities List<String> - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- runtime
Supports List<String> - Specifies whether this connection is supported by the Database Tools Runtime.
- state String
- The current state of the Database Tools connection.
- types List<String>
- The Database Tools connection type.
- compartment
Id string - The OCID of the compartment containing the Database Tools connection.
- database
Tools GetConnection Collections Database Tools Connections Database Tools Connection Collection[] - The list of database_tools_connection_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Database Tools Connections Filter[] - string
- runtime
Identities string[] - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- runtime
Supports string[] - Specifies whether this connection is supported by the Database Tools Runtime.
- state string
- The current state of the Database Tools connection.
- types string[]
- The Database Tools connection type.
- compartment_
id str - The OCID of the compartment containing the Database Tools connection.
- database_
tools_ Sequence[Getconnection_ collections Database Tools Connections Database Tools Connection Collection] - The list of database_tools_connection_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[Get
Database Tools Connections Filter] - str
- runtime_
identities Sequence[str] - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- runtime_
supports Sequence[str] - Specifies whether this connection is supported by the Database Tools Runtime.
- state str
- The current state of the Database Tools connection.
- types Sequence[str]
- The Database Tools connection type.
- compartment
Id String - The OCID of the compartment containing the Database Tools connection.
- database
Tools List<Property Map>Connection Collections - The list of database_tools_connection_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- String
- runtime
Identities List<String> - Specifies the identity used by the Database Tools service to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault).
- runtime
Supports List<String> - Specifies whether this connection is supported by the Database Tools Runtime.
- state String
- The current state of the Database Tools connection.
- types List<String>
- The Database Tools connection type.
Supporting Types
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItem
- Advanced
Properties Dictionary<string, string> - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - Compartment
Id string - The OCID of the compartment in which to list resources.
- Connection
String string - The connect descriptor or Easy Connect Naming method used to connect to the database.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire specified display name.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the Database Tools connection.
- Key
Stores List<GetDatabase Tools Connections Database Tools Connection Collection Item Key Store> - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- Lifecycle
Details string - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- Locks
List<Get
Database Tools Connections Database Tools Connection Collection Item Lock> - Locks associated with this resource.
- Private
Endpoint stringId - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- Proxy
Clients List<GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client> - The proxy client information.
-
List<Get
Database Tools Connections Database Tools Connection Collection Item Related Resource> - A related resource
- Runtime
Endpoint string - Specifies the Database Tools Runtime endpoint.
- Runtime
Identity string - A filter to return only resources with one of the specified runtimeIdentity values.
- Runtime
Support string - A filter to return only resources with one of the specified type values.
- State string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- Type string
- A filter to return only resources their type matches the specified type.
- Url string
- The JDBC URL used to connect to the Generic JDBC database system.
- User
Name string - The database user name.
- User
Passwords List<GetDatabase Tools Connections Database Tools Connection Collection Item User Password> - The database user password.
- Advanced
Properties map[string]string - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - Compartment
Id string - The OCID of the compartment in which to list resources.
- Connection
String string - The connect descriptor or Easy Connect Naming method used to connect to the database.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire specified display name.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the Database Tools connection.
- Key
Stores []GetDatabase Tools Connections Database Tools Connection Collection Item Key Store - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- Lifecycle
Details string - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- Locks
[]Get
Database Tools Connections Database Tools Connection Collection Item Lock - Locks associated with this resource.
- Private
Endpoint stringId - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- Proxy
Clients []GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client - The proxy client information.
-
[]Get
Database Tools Connections Database Tools Connection Collection Item Related Resource - A related resource
- Runtime
Endpoint string - Specifies the Database Tools Runtime endpoint.
- Runtime
Identity string - A filter to return only resources with one of the specified runtimeIdentity values.
- Runtime
Support string - A filter to return only resources with one of the specified type values.
- State string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- Type string
- A filter to return only resources their type matches the specified type.
- Url string
- The JDBC URL used to connect to the Generic JDBC database system.
- User
Name string - The database user name.
- User
Passwords []GetDatabase Tools Connections Database Tools Connection Collection Item User Password - The database user password.
- advanced
Properties Map<String,String> - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - compartment
Id String - The OCID of the compartment in which to list resources.
- connection
String String - The connect descriptor or Easy Connect Naming method used to connect to the database.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire specified display name.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the Database Tools connection.
- key
Stores List<GetConnections Connection Collection Item Key Store> - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- lifecycle
Details String - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- locks
List<Get
Connections Connection Collection Item Lock> - Locks associated with this resource.
- private
Endpoint StringId - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- proxy
Clients List<GetConnections Connection Collection Item Proxy Client> - The proxy client information.
-
List<Get
Connections Connection Collection Item Related Resource> - A related resource
- runtime
Endpoint String - Specifies the Database Tools Runtime endpoint.
- runtime
Identity String - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Support String - A filter to return only resources with one of the specified type values.
- state String
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- type String
- A filter to return only resources their type matches the specified type.
- url String
- The JDBC URL used to connect to the Generic JDBC database system.
- user
Name String - The database user name.
- user
Passwords List<GetConnections Connection Collection Item User Password> - The database user password.
- advanced
Properties {[key: string]: string} - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - compartment
Id string - The OCID of the compartment in which to list resources.
- connection
String string - The connect descriptor or Easy Connect Naming method used to connect to the database.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name string - A filter to return only resources that match the entire specified display name.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- The OCID of the Database Tools connection.
- key
Stores GetDatabase Tools Connections Database Tools Connection Collection Item Key Store[] - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- lifecycle
Details string - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- locks
Get
Database Tools Connections Database Tools Connection Collection Item Lock[] - Locks associated with this resource.
- private
Endpoint stringId - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- proxy
Clients GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client[] - The proxy client information.
-
Get
Database Tools Connections Database Tools Connection Collection Item Related Resource[] - A related resource
- runtime
Endpoint string - Specifies the Database Tools Runtime endpoint.
- runtime
Identity string - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Support string - A filter to return only resources with one of the specified type values.
- state string
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- type string
- A filter to return only resources their type matches the specified type.
- url string
- The JDBC URL used to connect to the Generic JDBC database system.
- user
Name string - The database user name.
- user
Passwords GetDatabase Tools Connections Database Tools Connection Collection Item User Password[] - The database user password.
- advanced_
properties Mapping[str, str] - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - compartment_
id str - The OCID of the compartment in which to list resources.
- connection_
string str - The connect descriptor or Easy Connect Naming method used to connect to the database.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display_
name str - A filter to return only resources that match the entire specified display name.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id str
- The OCID of the Database Tools connection.
- key_
stores Sequence[GetDatabase Tools Connections Database Tools Connection Collection Item Key Store] - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- lifecycle_
details str - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- locks
Sequence[Get
Database Tools Connections Database Tools Connection Collection Item Lock] - Locks associated with this resource.
- private_
endpoint_ strid - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- proxy_
clients Sequence[GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client] - The proxy client information.
-
Sequence[Get
Database Tools Connections Database Tools Connection Collection Item Related Resource] - A related resource
- runtime_
endpoint str - Specifies the Database Tools Runtime endpoint.
- runtime_
identity str - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime_
support str - A filter to return only resources with one of the specified type values.
- state str
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- type str
- A filter to return only resources their type matches the specified type.
- url str
- The JDBC URL used to connect to the Generic JDBC database system.
- user_
name str - The database user name.
- user_
passwords Sequence[GetDatabase Tools Connections Database Tools Connection Collection Item User Password] - The database user password.
- advanced
Properties Map<String> - The advanced connection properties key-value pair (for example,
oracle.net.ssl_server_dn_match). - compartment
Id String - The OCID of the compartment in which to list resources.
- connection
String String - The connect descriptor or Easy Connect Naming method used to connect to the database.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire specified display name.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the Database Tools connection.
- key
Stores List<Property Map> - The Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.
- lifecycle
Details String - A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state.
- locks List<Property Map>
- Locks associated with this resource.
- private
Endpoint StringId - The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
- proxy
Clients List<Property Map> - The proxy client information.
- List<Property Map>
- A related resource
- runtime
Endpoint String - Specifies the Database Tools Runtime endpoint.
- runtime
Identity String - A filter to return only resources with one of the specified runtimeIdentity values.
- runtime
Support String - A filter to return only resources with one of the specified type values.
- state String
- A filter to return only resources their
lifecycleStatematches the specifiedlifecycleState. - Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the Database Tools connection was updated. An RFC3339 formatted datetime string.
- type String
- A filter to return only resources their type matches the specified type.
- url String
- The JDBC URL used to connect to the Generic JDBC database system.
- user
Name String - The database user name.
- user
Passwords List<Property Map> - The database user password.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore
- Key
Store List<GetContents Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Content> - The key store content.
- Key
Store List<GetPasswords Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Password> - The key store password.
- Key
Store stringType - The key store type.
- Key
Store []GetContents Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Content - The key store content.
- Key
Store []GetPasswords Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Password - The key store password.
- Key
Store stringType - The key store type.
- key
Store List<GetContents Connections Connection Collection Item Key Store Key Store Content> - The key store content.
- key
Store List<GetPasswords Connections Connection Collection Item Key Store Key Store Password> - The key store password.
- key
Store StringType - The key store type.
- key
Store GetContents Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Content[] - The key store content.
- key
Store GetPasswords Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Password[] - The key store password.
- key
Store stringType - The key store type.
- key_
store_ Sequence[Getcontents Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Content] - The key store content.
- key_
store_ Sequence[Getpasswords Database Tools Connections Database Tools Connection Collection Item Key Store Key Store Password] - The key store password.
- key_
store_ strtype - The key store type.
- key
Store List<Property Map>Contents - The key store content.
- key
Store List<Property Map>Passwords - The key store password.
- key
Store StringType - The key store type.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStoreKeyStoreContent
- secret_
id str - The OCID of the secret containing the user password.
- value_
type str - The value type of the user password.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStoreKeyStorePassword
- secret_
id str - The OCID of the secret containing the user password.
- value_
type str - The value type of the user password.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemLock
- Message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- Time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- Type string
- A filter to return only resources their type matches the specified type.
- Message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- Time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- Type string
- A filter to return only resources their type matches the specified type.
- message String
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- String
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created String - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- type String
- A filter to return only resources their type matches the specified type.
- message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created string - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- type string
- A filter to return only resources their type matches the specified type.
- message str
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- str
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time_
created str - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- type str
- A filter to return only resources their type matches the specified type.
- message String
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- String
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created String - The time the Database Tools connection was created. An RFC3339 formatted datetime string.
- type String
- A filter to return only resources their type matches the specified type.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClient
- Proxy
Authentication stringType - The proxy authentication type.
- Roles List<string>
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- User
Name string - The database user name.
- User
Passwords List<GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client User Password> - The database user password.
- Proxy
Authentication stringType - The proxy authentication type.
- Roles []string
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- User
Name string - The database user name.
- User
Passwords []GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client User Password - The database user password.
- proxy
Authentication StringType - The proxy authentication type.
- roles List<String>
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- user
Name String - The database user name.
- user
Passwords List<GetConnections Connection Collection Item Proxy Client User Password> - The database user password.
- proxy
Authentication stringType - The proxy authentication type.
- roles string[]
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- user
Name string - The database user name.
- user
Passwords GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client User Password[] - The database user password.
- proxy_
authentication_ strtype - The proxy authentication type.
- roles Sequence[str]
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- user_
name str - The database user name.
- user_
passwords Sequence[GetDatabase Tools Connections Database Tools Connection Collection Item Proxy Client User Password] - The database user password.
- proxy
Authentication StringType - The proxy authentication type.
- roles List<String>
- A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.
- user
Name String - The database user name.
- user
Passwords List<Property Map> - The database user password.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword
- secret_
id str - The OCID of the secret containing the user password.
- value_
type str - The value type of the user password.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource
- Entity
Type string - The resource entity type.
- Identifier string
- The OCID of the related resource.
- Entity
Type string - The resource entity type.
- Identifier string
- The OCID of the related resource.
- entity
Type String - The resource entity type.
- identifier String
- The OCID of the related resource.
- entity
Type string - The resource entity type.
- identifier string
- The OCID of the related resource.
- entity_
type str - The resource entity type.
- identifier str
- The OCID of the related resource.
- entity
Type String - The resource entity type.
- identifier String
- The OCID of the related resource.
GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword
- secret_
id str - The OCID of the secret containing the user password.
- value_
type str - The value type of the user password.
GetDatabaseToolsConnectionsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
