1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getCloudDbSystemConnectors
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DatabaseManagement.getCloudDbSystemConnectors

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This data source provides the list of Cloud Db System Connectors in Oracle Cloud Infrastructure Database Management service.

    Lists the cloud connectors in the specified cloud DB system.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudDbSystemConnectors = oci.DatabaseManagement.getCloudDbSystemConnectors({
        cloudDbSystemId: testCloudDbSystem.id,
        compartmentId: compartmentId,
        displayName: cloudDbSystemConnectorDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_db_system_connectors = oci.DatabaseManagement.get_cloud_db_system_connectors(cloud_db_system_id=test_cloud_db_system["id"],
        compartment_id=compartment_id,
        display_name=cloud_db_system_connector_display_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.GetCloudDbSystemConnectors(ctx, &databasemanagement.GetCloudDbSystemConnectorsArgs{
    			CloudDbSystemId: pulumi.StringRef(testCloudDbSystem.Id),
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			DisplayName:     pulumi.StringRef(cloudDbSystemConnectorDisplayName),
    		}, 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 testCloudDbSystemConnectors = Oci.DatabaseManagement.GetCloudDbSystemConnectors.Invoke(new()
        {
            CloudDbSystemId = testCloudDbSystem.Id,
            CompartmentId = compartmentId,
            DisplayName = cloudDbSystemConnectorDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
    import com.pulumi.oci.DatabaseManagement.inputs.GetCloudDbSystemConnectorsArgs;
    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 testCloudDbSystemConnectors = DatabaseManagementFunctions.getCloudDbSystemConnectors(GetCloudDbSystemConnectorsArgs.builder()
                .cloudDbSystemId(testCloudDbSystem.id())
                .compartmentId(compartmentId)
                .displayName(cloudDbSystemConnectorDisplayName)
                .build());
    
        }
    }
    
    variables:
      testCloudDbSystemConnectors:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudDbSystemConnectors
          arguments:
            cloudDbSystemId: ${testCloudDbSystem.id}
            compartmentId: ${compartmentId}
            displayName: ${cloudDbSystemConnectorDisplayName}
    

    Using getCloudDbSystemConnectors

    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 getCloudDbSystemConnectors(args: GetCloudDbSystemConnectorsArgs, opts?: InvokeOptions): Promise<GetCloudDbSystemConnectorsResult>
    function getCloudDbSystemConnectorsOutput(args: GetCloudDbSystemConnectorsOutputArgs, opts?: InvokeOptions): Output<GetCloudDbSystemConnectorsResult>
    def get_cloud_db_system_connectors(cloud_db_system_id: Optional[str] = None,
                                       compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[GetCloudDbSystemConnectorsFilter]] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetCloudDbSystemConnectorsResult
    def get_cloud_db_system_connectors_output(cloud_db_system_id: Optional[pulumi.Input[str]] = None,
                                       compartment_id: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCloudDbSystemConnectorsFilterArgs]]]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetCloudDbSystemConnectorsResult]
    func GetCloudDbSystemConnectors(ctx *Context, args *GetCloudDbSystemConnectorsArgs, opts ...InvokeOption) (*GetCloudDbSystemConnectorsResult, error)
    func GetCloudDbSystemConnectorsOutput(ctx *Context, args *GetCloudDbSystemConnectorsOutputArgs, opts ...InvokeOption) GetCloudDbSystemConnectorsResultOutput

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

    public static class GetCloudDbSystemConnectors 
    {
        public static Task<GetCloudDbSystemConnectorsResult> InvokeAsync(GetCloudDbSystemConnectorsArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudDbSystemConnectorsResult> Invoke(GetCloudDbSystemConnectorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudDbSystemConnectorsResult> getCloudDbSystemConnectors(GetCloudDbSystemConnectorsArgs args, InvokeOptions options)
    public static Output<GetCloudDbSystemConnectorsResult> getCloudDbSystemConnectors(GetCloudDbSystemConnectorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudDbSystemConnectors:getCloudDbSystemConnectors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters List<GetCloudDbSystemConnectorsFilter>
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters []GetCloudDbSystemConnectorsFilter
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<GetCloudDbSystemConnectorsFilter>
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to only return the resources that match the entire display name.
    filters GetCloudDbSystemConnectorsFilter[]
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to only return the resources that match the entire display name.
    filters Sequence[GetCloudDbSystemConnectorsFilter]
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<Property Map>

    getCloudDbSystemConnectors Result

    The following output properties are available:

    CloudDbSystemConnectorCollections List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection>
    The list of cloud_db_system_connector_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the connector is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud connector. The name does not have to be unique.
    Filters List<GetCloudDbSystemConnectorsFilter>
    CloudDbSystemConnectorCollections []GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection
    The list of cloud_db_system_connector_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the connector is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud connector. The name does not have to be unique.
    Filters []GetCloudDbSystemConnectorsFilter
    cloudDbSystemConnectorCollections List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection>
    The list of cloud_db_system_connector_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the connector is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud connector. The name does not have to be unique.
    filters List<GetCloudDbSystemConnectorsFilter>
    cloudDbSystemConnectorCollections GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection[]
    The list of cloud_db_system_connector_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId string
    The OCID of the cloud DB system that the connector is a part of.
    compartmentId string
    The OCID of the compartment.
    displayName string
    The user-friendly name for the cloud connector. The name does not have to be unique.
    filters GetCloudDbSystemConnectorsFilter[]
    cloud_db_system_connector_collections Sequence[GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection]
    The list of cloud_db_system_connector_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    cloud_db_system_id str
    The OCID of the cloud DB system that the connector is a part of.
    compartment_id str
    The OCID of the compartment.
    display_name str
    The user-friendly name for the cloud connector. The name does not have to be unique.
    filters Sequence[GetCloudDbSystemConnectorsFilter]
    cloudDbSystemConnectorCollections List<Property Map>
    The list of cloud_db_system_connector_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the connector is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud connector. The name does not have to be unique.
    filters List<Property Map>

    Supporting Types

    GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection

    GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItem

    AgentId string
    The OCID of the management agent used for the cloud DB system connector.
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ConnectionFailureMessage string
    The error message indicating the reason for connection failure or null if the connection was successful.
    ConnectionInfos List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo>
    The connection details required to connect to a cloud DB system component.
    ConnectionStatus string
    The status of connectivity to the cloud DB system component.
    ConnectorType string
    The type of connector.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to only return the resources that match the entire display name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the cloud DB system connector.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    State string
    The current lifecycle state of the cloud DB system connector.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeConnectionStatusLastUpdated string
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    TimeCreated string
    The date and time the cloud DB system connector was created.
    TimeUpdated string
    The date and time the cloud DB system connector was last updated.
    AgentId string
    The OCID of the management agent used for the cloud DB system connector.
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ConnectionFailureMessage string
    The error message indicating the reason for connection failure or null if the connection was successful.
    ConnectionInfos []GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo
    The connection details required to connect to a cloud DB system component.
    ConnectionStatus string
    The status of connectivity to the cloud DB system component.
    ConnectorType string
    The type of connector.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to only return the resources that match the entire display name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the cloud DB system connector.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    State string
    The current lifecycle state of the cloud DB system connector.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeConnectionStatusLastUpdated string
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    TimeCreated string
    The date and time the cloud DB system connector was created.
    TimeUpdated string
    The date and time the cloud DB system connector was last updated.
    agentId String
    The OCID of the management agent used for the cloud DB system connector.
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    connectionFailureMessage String
    The error message indicating the reason for connection failure or null if the connection was successful.
    connectionInfos List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo>
    The connection details required to connect to a cloud DB system component.
    connectionStatus String
    The status of connectivity to the cloud DB system component.
    connectorType String
    The type of connector.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to only return the resources that match the entire display name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the cloud DB system connector.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    state String
    The current lifecycle state of the cloud DB system connector.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeConnectionStatusLastUpdated String
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    timeCreated String
    The date and time the cloud DB system connector was created.
    timeUpdated String
    The date and time the cloud DB system connector was last updated.
    agentId string
    The OCID of the management agent used for the cloud DB system connector.
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    connectionFailureMessage string
    The error message indicating the reason for connection failure or null if the connection was successful.
    connectionInfos GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo[]
    The connection details required to connect to a cloud DB system component.
    connectionStatus string
    The status of connectivity to the cloud DB system component.
    connectorType string
    The type of connector.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to only return the resources that match the entire display name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the cloud DB system connector.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    state string
    The current lifecycle state of the cloud DB system connector.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeConnectionStatusLastUpdated string
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    timeCreated string
    The date and time the cloud DB system connector was created.
    timeUpdated string
    The date and time the cloud DB system connector was last updated.
    agent_id str
    The OCID of the management agent used for the cloud DB system connector.
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    connection_failure_message str
    The error message indicating the reason for connection failure or null if the connection was successful.
    connection_infos Sequence[GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo]
    The connection details required to connect to a cloud DB system component.
    connection_status str
    The status of connectivity to the cloud DB system component.
    connector_type str
    The type of connector.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to only return the resources that match the entire display name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the cloud DB system connector.
    lifecycle_details str
    Additional information about the current lifecycle state.
    state str
    The current lifecycle state of the cloud DB system connector.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_connection_status_last_updated str
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    time_created str
    The date and time the cloud DB system connector was created.
    time_updated str
    The date and time the cloud DB system connector was last updated.
    agentId String
    The OCID of the management agent used for the cloud DB system connector.
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    connectionFailureMessage String
    The error message indicating the reason for connection failure or null if the connection was successful.
    connectionInfos List<Property Map>
    The connection details required to connect to a cloud DB system component.
    connectionStatus String
    The status of connectivity to the cloud DB system component.
    connectorType String
    The type of connector.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to only return the resources that match the entire display name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the cloud DB system connector.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    state String
    The current lifecycle state of the cloud DB system connector.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeConnectionStatusLastUpdated String
    The date and time the connectionStatus of the cloud DB system connector was last updated.
    timeCreated String
    The date and time the cloud DB system connector was created.
    timeUpdated String
    The date and time the cloud DB system connector was last updated.

    GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfo

    ComponentType string
    The component type.
    ConnectionCredentials List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential>
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionStrings List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString>
    The Oracle Database connection string.
    ComponentType string
    The component type.
    ConnectionCredentials []GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionStrings []GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString
    The Oracle Database connection string.
    componentType String
    The component type.
    connectionCredentials List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential>
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings List<GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString>
    The Oracle Database connection string.
    componentType string
    The component type.
    connectionCredentials GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential[]
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString[]
    The Oracle Database connection string.
    component_type str
    The component type.
    connection_credentials Sequence[GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential]
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connection_strings Sequence[GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString]
    The Oracle Database connection string.
    componentType String
    The component type.
    connectionCredentials List<Property Map>
    The credentials used to connect to the Cloud ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings List<Property Map>
    The Oracle Database connection string.

    GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionCredential

    CredentialName string
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    CredentialType string
    The type of credential used to connect to the ASM instance.
    NamedCredentialId string
    The OCID of the Named Credential where the database password metadata is stored.
    PasswordSecretId string
    The OCID of the secret containing the user password.
    Role string
    The role of the user connecting to the ASM instance.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the ASM instance.
    CredentialName string
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    CredentialType string
    The type of credential used to connect to the ASM instance.
    NamedCredentialId string
    The OCID of the Named Credential where the database password metadata is stored.
    PasswordSecretId string
    The OCID of the secret containing the user password.
    Role string
    The role of the user connecting to the ASM instance.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the ASM instance.
    credentialName String
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    credentialType String
    The type of credential used to connect to the ASM instance.
    namedCredentialId String
    The OCID of the Named Credential where the database password metadata is stored.
    passwordSecretId String
    The OCID of the secret containing the user password.
    role String
    The role of the user connecting to the ASM instance.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the ASM instance.
    credentialName string
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    credentialType string
    The type of credential used to connect to the ASM instance.
    namedCredentialId string
    The OCID of the Named Credential where the database password metadata is stored.
    passwordSecretId string
    The OCID of the secret containing the user password.
    role string
    The role of the user connecting to the ASM instance.
    sslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    userName string
    The user name used to connect to the ASM instance.
    credential_name str
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    credential_type str
    The type of credential used to connect to the ASM instance.
    named_credential_id str
    The OCID of the Named Credential where the database password metadata is stored.
    password_secret_id str
    The OCID of the secret containing the user password.
    role str
    The role of the user connecting to the ASM instance.
    ssl_secret_id str
    The OCID of the secret containing the SSL keystore and truststore details.
    user_name str
    The user name used to connect to the ASM instance.
    credentialName String
    The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. IMPORTANT - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
    credentialType String
    The type of credential used to connect to the ASM instance.
    namedCredentialId String
    The OCID of the Named Credential where the database password metadata is stored.
    passwordSecretId String
    The OCID of the secret containing the user password.
    role String
    The role of the user connecting to the ASM instance.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the ASM instance.

    GetCloudDbSystemConnectorsCloudDbSystemConnectorCollectionItemConnectionInfoConnectionString

    HostName string
    The host name of the database or the SCAN name in case of a RAC database.
    Hosts List<string>
    The list of host names of the ASM instances.
    Port int
    The port used to connect to the ASM instance.
    Protocol string
    The protocol used to connect to the ASM instance.
    Service string
    The service name of the ASM instance.
    HostName string
    The host name of the database or the SCAN name in case of a RAC database.
    Hosts []string
    The list of host names of the ASM instances.
    Port int
    The port used to connect to the ASM instance.
    Protocol string
    The protocol used to connect to the ASM instance.
    Service string
    The service name of the ASM instance.
    hostName String
    The host name of the database or the SCAN name in case of a RAC database.
    hosts List<String>
    The list of host names of the ASM instances.
    port Integer
    The port used to connect to the ASM instance.
    protocol String
    The protocol used to connect to the ASM instance.
    service String
    The service name of the ASM instance.
    hostName string
    The host name of the database or the SCAN name in case of a RAC database.
    hosts string[]
    The list of host names of the ASM instances.
    port number
    The port used to connect to the ASM instance.
    protocol string
    The protocol used to connect to the ASM instance.
    service string
    The service name of the ASM instance.
    host_name str
    The host name of the database or the SCAN name in case of a RAC database.
    hosts Sequence[str]
    The list of host names of the ASM instances.
    port int
    The port used to connect to the ASM instance.
    protocol str
    The protocol used to connect to the ASM instance.
    service str
    The service name of the ASM instance.
    hostName String
    The host name of the database or the SCAN name in case of a RAC database.
    hosts List<String>
    The list of host names of the ASM instances.
    port Number
    The port used to connect to the ASM instance.
    protocol String
    The protocol used to connect to the ASM instance.
    service String
    The service name of the ASM instance.

    GetCloudDbSystemConnectorsFilter

    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 v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi