1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseTools
  5. getDatabaseToolsConnections
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DatabaseTools.getDatabaseToolsConnections

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        displayName: _var.database_tools_connection_display_name,
        relatedResourceIdentifier: _var.database_tools_connection_related_resource_identifier,
        runtimeSupports: _var.database_tools_connection_runtime_support,
        state: _var.database_tools_connection_state,
        types: _var.database_tools_connection_type,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_connections = oci.DatabaseTools.get_database_tools_connections(compartment_id=var["compartment_id"],
        display_name=var["database_tools_connection_display_name"],
        related_resource_identifier=var["database_tools_connection_related_resource_identifier"],
        runtime_supports=var["database_tools_connection_runtime_support"],
        state=var["database_tools_connection_state"],
        types=var["database_tools_connection_type"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:             _var.Compartment_id,
    			DisplayName:               pulumi.StringRef(_var.Database_tools_connection_display_name),
    			RelatedResourceIdentifier: pulumi.StringRef(_var.Database_tools_connection_related_resource_identifier),
    			RuntimeSupports:           _var.Database_tools_connection_runtime_support,
    			State:                     pulumi.StringRef(_var.Database_tools_connection_state),
    			Types:                     _var.Database_tools_connection_type,
    		}, 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 = @var.Compartment_id,
            DisplayName = @var.Database_tools_connection_display_name,
            RelatedResourceIdentifier = @var.Database_tools_connection_related_resource_identifier,
            RuntimeSupports = @var.Database_tools_connection_runtime_support,
            State = @var.Database_tools_connection_state,
            Types = @var.Database_tools_connection_type,
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.database_tools_connection_display_name())
                .relatedResourceIdentifier(var_.database_tools_connection_related_resource_identifier())
                .runtimeSupports(var_.database_tools_connection_runtime_support())
                .state(var_.database_tools_connection_state())
                .types(var_.database_tools_connection_type())
                .build());
    
        }
    }
    
    variables:
      testDatabaseToolsConnections:
        fn::invoke:
          Function: oci:DatabaseTools:getDatabaseToolsConnections
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.database_tools_connection_display_name}
            relatedResourceIdentifier: ${var.database_tools_connection_related_resource_identifier}
            runtimeSupports: ${var.database_tools_connection_runtime_support}
            state: ${var.database_tools_connection_state}
            types: ${var.database_tools_connection_type}
    

    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[_databasetools.GetDatabaseToolsConnectionsFilter]] = None,
                                       related_resource_identifier: Optional[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[_databasetools.GetDatabaseToolsConnectionsFilterArgs]]]] = None,
                                       related_resource_identifier: Optional[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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DatabaseTools/getDatabaseToolsConnections:getDatabaseToolsConnections
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters List<GetDatabaseToolsConnectionsFilter>
    RelatedResourceIdentifier string
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    RuntimeSupports List<string>
    A filter to return only resources with one of the specified runtimeSupport values.
    State string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    Types List<string>
    A filter to return only resources their type matches the specified type.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    Filters []GetDatabaseToolsConnectionsFilter
    RelatedResourceIdentifier string
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    RuntimeSupports []string
    A filter to return only resources with one of the specified runtimeSupport values.
    State string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    Types []string
    A filter to return only resources their type matches the specified type.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<GetConnectionsFilter>
    relatedResourceIdentifier String
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    runtimeSupports List<String>
    A filter to return only resources with one of the specified runtimeSupport values.
    state String
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    types List<String>
    A filter to return only resources their type matches the specified type.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire specified display name.
    filters GetDatabaseToolsConnectionsFilter[]
    relatedResourceIdentifier string
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    runtimeSupports string[]
    A filter to return only resources with one of the specified runtimeSupport values.
    state string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    types string[]
    A filter to return only resources their type matches the specified type.
    compartment_id str
    The ID 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[databasetools.GetDatabaseToolsConnectionsFilter]
    related_resource_identifier str
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    runtime_supports Sequence[str]
    A filter to return only resources with one of the specified runtimeSupport values.
    state str
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    types Sequence[str]
    A filter to return only resources their type matches the specified type.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire specified display name.
    filters List<Property Map>
    relatedResourceIdentifier String
    A filter to return only resources associated to the related resource identifier OCID passed in the query string.
    runtimeSupports List<String>
    A filter to return only resources with one of the specified runtimeSupport values.
    state String
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    types List<String>
    A filter to return only resources their type matches the specified type.

    getDatabaseToolsConnections Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the Database Tools connection.
    DatabaseToolsConnectionCollections List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection>
    The list of database_tools_connection_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetDatabaseToolsConnectionsFilter>
    RelatedResourceIdentifier string
    RuntimeSupports 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.
    CompartmentId string
    The OCID of the compartment containing the Database Tools connection.
    DatabaseToolsConnectionCollections []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection
    The list of database_tools_connection_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetDatabaseToolsConnectionsFilter
    RelatedResourceIdentifier string
    RuntimeSupports []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.
    compartmentId String
    The OCID of the compartment containing the Database Tools connection.
    databaseToolsConnectionCollections List<GetConnectionsConnectionCollection>
    The list of database_tools_connection_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetConnectionsFilter>
    relatedResourceIdentifier String
    runtimeSupports 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.
    compartmentId string
    The OCID of the compartment containing the Database Tools connection.
    databaseToolsConnectionCollections GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection[]
    The list of database_tools_connection_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetDatabaseToolsConnectionsFilter[]
    relatedResourceIdentifier string
    runtimeSupports 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_connection_collections Sequence[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollection]
    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[databasetools.GetDatabaseToolsConnectionsFilter]
    related_resource_identifier str
    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.
    compartmentId String
    The OCID of the compartment containing the Database Tools connection.
    databaseToolsConnectionCollections List<Property Map>
    The list of database_tools_connection_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    relatedResourceIdentifier String
    runtimeSupports 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

    AdvancedProperties Dictionary<string, object>
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    CompartmentId string
    The ID of the compartment in which to list resources.
    ConnectionString string
    The connect descriptor or Easy Connect Naming method used to connect to the database.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    FreeformTags Dictionary<string, object>
    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.
    KeyStores List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore>
    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.
    LifecycleDetails 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<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemLock>
    Locks associated with this resource.
    PrivateEndpointId string
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    ProxyClients List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClient>
    The proxy client information.
    RelatedResources List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource>
    A related resource
    RuntimeSupport string
    A filter to return only resources with one of the specified runtimeSupport values.
    State string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools connection was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the DatabaseToolsConnection 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.
    UserName string
    The database user name.
    UserPasswords List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword>
    The user password.
    AdvancedProperties map[string]interface{}
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    CompartmentId string
    The ID of the compartment in which to list resources.
    ConnectionString string
    The connect descriptor or Easy Connect Naming method used to connect to the database.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire specified display name.
    FreeformTags map[string]interface{}
    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.
    KeyStores []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore
    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.
    LifecycleDetails 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 []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemLock
    Locks associated with this resource.
    PrivateEndpointId string
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    ProxyClients []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClient
    The proxy client information.
    RelatedResources []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource
    A related resource
    RuntimeSupport string
    A filter to return only resources with one of the specified runtimeSupport values.
    State string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Database Tools connection was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time the DatabaseToolsConnection 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.
    UserName string
    The database user name.
    UserPasswords []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword
    The user password.
    advancedProperties Map<String,Object>
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    compartmentId String
    The ID of the compartment in which to list resources.
    connectionString String
    The connect descriptor or Easy Connect Naming method used to connect to the database.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire specified display name.
    freeformTags Map<String,Object>
    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.
    keyStores List<GetConnectionsConnectionCollectionItemKeyStore>
    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.
    lifecycleDetails 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<GetConnectionsConnectionCollectionItemLock>
    Locks associated with this resource.
    privateEndpointId String
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    proxyClients List<GetConnectionsConnectionCollectionItemProxyClient>
    The proxy client information.
    relatedResources List<GetConnectionsConnectionCollectionItemRelatedResource>
    A related resource
    runtimeSupport String
    A filter to return only resources with one of the specified runtimeSupport values.
    state String
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools connection was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the DatabaseToolsConnection 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.
    userName String
    The database user name.
    userPasswords List<GetConnectionsConnectionCollectionItemUserPassword>
    The user password.
    advancedProperties {[key: string]: any}
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    compartmentId string
    The ID of the compartment in which to list resources.
    connectionString string
    The connect descriptor or Easy Connect Naming method used to connect to the database.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    A filter to return only resources that match the entire specified display name.
    freeformTags {[key: string]: any}
    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.
    keyStores GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore[]
    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.
    lifecycleDetails 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 GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemLock[]
    Locks associated with this resource.
    privateEndpointId string
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    proxyClients GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClient[]
    The proxy client information.
    relatedResources GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource[]
    A related resource
    runtimeSupport string
    A filter to return only resources with one of the specified runtimeSupport values.
    state string
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the Database Tools connection was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time the DatabaseToolsConnection 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.
    userName string
    The database user name.
    userPasswords GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword[]
    The user password.
    advanced_properties Mapping[str, Any]
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    compartment_id str
    The ID 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.
    defined_tags Mapping[str, Any]
    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.
    freeform_tags Mapping[str, Any]
    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[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore]
    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[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemLock]
    Locks associated with this resource.
    private_endpoint_id str
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    proxy_clients Sequence[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClient]
    The proxy client information.
    related_resources Sequence[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource]
    A related resource
    runtime_support str
    A filter to return only resources with one of the specified runtimeSupport values.
    state str
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    system_tags Mapping[str, Any]
    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 DatabaseToolsConnection 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[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword]
    The user password.
    advancedProperties Map<Any>
    The advanced connection properties key-value pair (for example, oracle.net.ssl_server_dn_match).
    compartmentId String
    The ID of the compartment in which to list resources.
    connectionString String
    The connect descriptor or Easy Connect Naming method used to connect to the database.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire specified display name.
    freeformTags Map<Any>
    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.
    keyStores 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.
    lifecycleDetails 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.
    privateEndpointId String
    The OCID of the Database Tools private endpoint used to access the database in the customer VCN.
    proxyClients List<Property Map>
    The proxy client information.
    relatedResources List<Property Map>
    A related resource
    runtimeSupport String
    A filter to return only resources with one of the specified runtimeSupport values.
    state String
    A filter to return only resources their lifecycleState matches the specified lifecycleState.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Database Tools connection was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time the DatabaseToolsConnection 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.
    userName String
    The database user name.
    userPasswords List<Property Map>
    The user password.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStore

    keyStoreContents List<Property Map>
    The key store content.
    keyStorePasswords List<Property Map>
    The key store password.
    keyStoreType String
    The key store type.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStoreKeyStoreContent

    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.
    secretId string
    The OCID of the secret containing the user password.
    valueType string
    The value type of the user password.
    secret_id str
    The OCID of the secret containing the user password.
    value_type str
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemKeyStoreKeyStorePassword

    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.
    secretId string
    The OCID of the secret containing the user password.
    valueType string
    The value type of the user password.
    secret_id str
    The OCID of the secret containing the user password.
    value_type str
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    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.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated 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.
    RelatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    TimeCreated 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.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated 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.
    relatedResourceId string
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated 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.
    related_resource_id 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.
    relatedResourceId String
    The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
    timeCreated 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

    ProxyAuthenticationType string
    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.
    UserName string
    The database user name.
    UserPasswords List<GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword>
    The user password.
    ProxyAuthenticationType string
    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.
    UserName string
    The database user name.
    UserPasswords []GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword
    The user password.
    proxyAuthenticationType String
    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.
    userName String
    The database user name.
    userPasswords List<GetConnectionsConnectionCollectionItemProxyClientUserPassword>
    The user password.
    proxyAuthenticationType string
    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.
    userName string
    The database user name.
    userPasswords GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword[]
    The user password.
    proxy_authentication_type str
    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[databasetools.GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword]
    The user password.
    proxyAuthenticationType String
    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.
    userName String
    The database user name.
    userPasswords List<Property Map>
    The user password.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemProxyClientUserPassword

    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.
    secretId string
    The OCID of the secret containing the user password.
    valueType string
    The value type of the user password.
    secret_id str
    The OCID of the secret containing the user password.
    value_type str
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemRelatedResource

    EntityType string
    The resource entity type.
    Identifier string
    The OCID of the related resource.
    EntityType string
    The resource entity type.
    Identifier string
    The OCID of the related resource.
    entityType String
    The resource entity type.
    identifier String
    The OCID of the related resource.
    entityType 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.
    entityType String
    The resource entity type.
    identifier String
    The OCID of the related resource.

    GetDatabaseToolsConnectionsDatabaseToolsConnectionCollectionItemUserPassword

    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    SecretId string
    The OCID of the secret containing the user password.
    ValueType string
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.
    secretId string
    The OCID of the secret containing the user password.
    valueType string
    The value type of the user password.
    secret_id str
    The OCID of the secret containing the user password.
    value_type str
    The value type of the user password.
    secretId String
    The OCID of the secret containing the user password.
    valueType String
    The value type of the user password.

    GetDatabaseToolsConnectionsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi