1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getExternalDbSystemConnectors
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DatabaseManagement.getExternalDbSystemConnectors

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

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

Lists the external connectors in the specified external DB system.

Example Usage

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

const testExternalDbSystemConnectors = oci.DatabaseManagement.getExternalDbSystemConnectors({
    compartmentId: compartmentId,
    displayName: externalDbSystemConnectorDisplayName,
    externalDbSystemId: testExternalDbSystem.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_external_db_system_connectors = oci.DatabaseManagement.get_external_db_system_connectors(compartment_id=compartment_id,
    display_name=external_db_system_connector_display_name,
    external_db_system_id=test_external_db_system["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetExternalDbSystemConnectors(ctx, &databasemanagement.GetExternalDbSystemConnectorsArgs{
			CompartmentId:      pulumi.StringRef(compartmentId),
			DisplayName:        pulumi.StringRef(externalDbSystemConnectorDisplayName),
			ExternalDbSystemId: pulumi.StringRef(testExternalDbSystem.Id),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExternalDbSystemConnectors = Oci.DatabaseManagement.GetExternalDbSystemConnectors.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = externalDbSystemConnectorDisplayName,
        ExternalDbSystemId = testExternalDbSystem.Id,
    });

});
Copy
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.GetExternalDbSystemConnectorsArgs;
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 testExternalDbSystemConnectors = DatabaseManagementFunctions.getExternalDbSystemConnectors(GetExternalDbSystemConnectorsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(externalDbSystemConnectorDisplayName)
            .externalDbSystemId(testExternalDbSystem.id())
            .build());

    }
}
Copy
variables:
  testExternalDbSystemConnectors:
    fn::invoke:
      function: oci:DatabaseManagement:getExternalDbSystemConnectors
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${externalDbSystemConnectorDisplayName}
        externalDbSystemId: ${testExternalDbSystem.id}
Copy

Using getExternalDbSystemConnectors

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 getExternalDbSystemConnectors(args: GetExternalDbSystemConnectorsArgs, opts?: InvokeOptions): Promise<GetExternalDbSystemConnectorsResult>
function getExternalDbSystemConnectorsOutput(args: GetExternalDbSystemConnectorsOutputArgs, opts?: InvokeOptions): Output<GetExternalDbSystemConnectorsResult>
Copy
def get_external_db_system_connectors(compartment_id: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      external_db_system_id: Optional[str] = None,
                                      filters: Optional[Sequence[_databasemanagement.GetExternalDbSystemConnectorsFilter]] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetExternalDbSystemConnectorsResult
def get_external_db_system_connectors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                      display_name: Optional[pulumi.Input[str]] = None,
                                      external_db_system_id: Optional[pulumi.Input[str]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetExternalDbSystemConnectorsFilterArgs]]]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetExternalDbSystemConnectorsResult]
Copy
func GetExternalDbSystemConnectors(ctx *Context, args *GetExternalDbSystemConnectorsArgs, opts ...InvokeOption) (*GetExternalDbSystemConnectorsResult, error)
func GetExternalDbSystemConnectorsOutput(ctx *Context, args *GetExternalDbSystemConnectorsOutputArgs, opts ...InvokeOption) GetExternalDbSystemConnectorsResultOutput
Copy

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

public static class GetExternalDbSystemConnectors 
{
    public static Task<GetExternalDbSystemConnectorsResult> InvokeAsync(GetExternalDbSystemConnectorsArgs args, InvokeOptions? opts = null)
    public static Output<GetExternalDbSystemConnectorsResult> Invoke(GetExternalDbSystemConnectorsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetExternalDbSystemConnectorsResult> getExternalDbSystemConnectors(GetExternalDbSystemConnectorsArgs args, InvokeOptions options)
public static Output<GetExternalDbSystemConnectorsResult> getExternalDbSystemConnectors(GetExternalDbSystemConnectorsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getExternalDbSystemConnectors:getExternalDbSystemConnectors
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId string
The OCID of the compartment.
DisplayName string
A filter to only return the resources that match the entire display name.
ExternalDbSystemId string
The OCID of the external DB system.
Filters Changes to this property will trigger replacement. List<GetExternalDbSystemConnectorsFilter>
CompartmentId string
The OCID of the compartment.
DisplayName string
A filter to only return the resources that match the entire display name.
ExternalDbSystemId string
The OCID of the external DB system.
Filters Changes to this property will trigger replacement. []GetExternalDbSystemConnectorsFilter
compartmentId String
The OCID of the compartment.
displayName String
A filter to only return the resources that match the entire display name.
externalDbSystemId String
The OCID of the external DB system.
filters Changes to this property will trigger replacement. List<GetExternalDbSystemConnectorsFilter>
compartmentId string
The OCID of the compartment.
displayName string
A filter to only return the resources that match the entire display name.
externalDbSystemId string
The OCID of the external DB system.
filters Changes to this property will trigger replacement. GetExternalDbSystemConnectorsFilter[]
compartment_id str
The OCID of the compartment.
display_name str
A filter to only return the resources that match the entire display name.
external_db_system_id str
The OCID of the external DB system.
filters Changes to this property will trigger replacement. Sequence[databasemanagement.GetExternalDbSystemConnectorsFilter]
compartmentId String
The OCID of the compartment.
displayName String
A filter to only return the resources that match the entire display name.
externalDbSystemId String
The OCID of the external DB system.
filters Changes to this property will trigger replacement. List<Property Map>

getExternalDbSystemConnectors Result

The following output properties are available:

ExternalDbSystemConnectorCollections List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection>
The list of external_db_system_connector_collection.
Id string
The provider-assigned unique ID for this managed resource.
CompartmentId string
The OCID of the compartment.
DisplayName string
The user-friendly name for the external connector. The name does not have to be unique.
ExternalDbSystemId string
The OCID of the external DB system that the connector is a part of.
Filters List<GetExternalDbSystemConnectorsFilter>
ExternalDbSystemConnectorCollections []GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection
The list of external_db_system_connector_collection.
Id string
The provider-assigned unique ID for this managed resource.
CompartmentId string
The OCID of the compartment.
DisplayName string
The user-friendly name for the external connector. The name does not have to be unique.
ExternalDbSystemId string
The OCID of the external DB system that the connector is a part of.
Filters []GetExternalDbSystemConnectorsFilter
externalDbSystemConnectorCollections List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection>
The list of external_db_system_connector_collection.
id String
The provider-assigned unique ID for this managed resource.
compartmentId String
The OCID of the compartment.
displayName String
The user-friendly name for the external connector. The name does not have to be unique.
externalDbSystemId String
The OCID of the external DB system that the connector is a part of.
filters List<GetExternalDbSystemConnectorsFilter>
externalDbSystemConnectorCollections GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection[]
The list of external_db_system_connector_collection.
id string
The provider-assigned unique ID for this managed resource.
compartmentId string
The OCID of the compartment.
displayName string
The user-friendly name for the external connector. The name does not have to be unique.
externalDbSystemId string
The OCID of the external DB system that the connector is a part of.
filters GetExternalDbSystemConnectorsFilter[]
external_db_system_connector_collections Sequence[databasemanagement.GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection]
The list of external_db_system_connector_collection.
id str
The provider-assigned unique ID for this managed resource.
compartment_id str
The OCID of the compartment.
display_name str
The user-friendly name for the external connector. The name does not have to be unique.
external_db_system_id str
The OCID of the external DB system that the connector is a part of.
filters Sequence[databasemanagement.GetExternalDbSystemConnectorsFilter]
externalDbSystemConnectorCollections List<Property Map>
The list of external_db_system_connector_collection.
id String
The provider-assigned unique ID for this managed resource.
compartmentId String
The OCID of the compartment.
displayName String
The user-friendly name for the external connector. The name does not have to be unique.
externalDbSystemId String
The OCID of the external DB system that the connector is a part of.
filters List<Property Map>

Supporting Types

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollection

items This property is required. List<Property Map>

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItem

AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
CompartmentId This property is required. string
The OCID of the compartment.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo>
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DefinedTags This property is required. 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 This property is required. string
A filter to only return the resources that match the entire display name.
ExternalDbSystemId This property is required. string
The OCID of the external DB system.
FreeformTags This property is required. 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 This property is required. string
The OCID of the external DB system connector.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
State This property is required. string
The current lifecycle state of the external DB system connector.
SystemTags This property is required. 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 This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
TimeCreated This property is required. string
The date and time the external DB system connector was created.
TimeUpdated This property is required. string
The date and time the external DB system connector was last updated.
AgentId This property is required. string
The OCID of the management agent used for the external DB system connector.
CompartmentId This property is required. string
The OCID of the compartment.
ConnectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
ConnectionInfos This property is required. []GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo
The connection details required to connect to an external DB system component.
ConnectionStatus This property is required. string
The status of connectivity to the external DB system component.
ConnectorType This property is required. string
The type of connector.
DefinedTags This property is required. 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 This property is required. string
A filter to only return the resources that match the entire display name.
ExternalDbSystemId This property is required. string
The OCID of the external DB system.
FreeformTags This property is required. 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 This property is required. string
The OCID of the external DB system connector.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
State This property is required. string
The current lifecycle state of the external DB system connector.
SystemTags This property is required. 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 This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
TimeCreated This property is required. string
The date and time the external DB system connector was created.
TimeUpdated This property is required. string
The date and time the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. String
The OCID of the compartment.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
definedTags This property is required. 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 This property is required. String
A filter to only return the resources that match the entire display name.
externalDbSystemId This property is required. String
The OCID of the external DB system.
freeformTags This property is required. 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 This property is required. String
The OCID of the external DB system connector.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
state This property is required. String
The current lifecycle state of the external DB system connector.
systemTags This property is required. 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 This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.
timeCreated This property is required. String
The date and time the external DB system connector was created.
timeUpdated This property is required. String
The date and time the external DB system connector was last updated.
agentId This property is required. string
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. string
The OCID of the compartment.
connectionFailureMessage This property is required. string
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo[]
The connection details required to connect to an external DB system component.
connectionStatus This property is required. string
The status of connectivity to the external DB system component.
connectorType This property is required. string
The type of connector.
definedTags This property is required. {[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 This property is required. string
A filter to only return the resources that match the entire display name.
externalDbSystemId This property is required. string
The OCID of the external DB system.
freeformTags This property is required. {[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 This property is required. string
The OCID of the external DB system connector.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
state This property is required. string
The current lifecycle state of the external DB system connector.
systemTags This property is required. {[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 This property is required. string
The date and time the connectionStatus of the external DB system connector was last updated.
timeCreated This property is required. string
The date and time the external DB system connector was created.
timeUpdated This property is required. string
The date and time the external DB system connector was last updated.
agent_id This property is required. str
The OCID of the management agent used for the external DB system connector.
compartment_id This property is required. str
The OCID of the compartment.
connection_failure_message This property is required. str
The error message indicating the reason for connection failure or null if the connection was successful.
connection_infos This property is required. Sequence[databasemanagement.GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo]
The connection details required to connect to an external DB system component.
connection_status This property is required. str
The status of connectivity to the external DB system component.
connector_type This property is required. str
The type of connector.
defined_tags This property is required. 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 This property is required. str
A filter to only return the resources that match the entire display name.
external_db_system_id This property is required. str
The OCID of the external DB system.
freeform_tags This property is required. 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 This property is required. str
The OCID of the external DB system connector.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
state This property is required. str
The current lifecycle state of the external DB system connector.
system_tags This property is required. 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 This property is required. str
The date and time the connectionStatus of the external DB system connector was last updated.
time_created This property is required. str
The date and time the external DB system connector was created.
time_updated This property is required. str
The date and time the external DB system connector was last updated.
agentId This property is required. String
The OCID of the management agent used for the external DB system connector.
compartmentId This property is required. String
The OCID of the compartment.
connectionFailureMessage This property is required. String
The error message indicating the reason for connection failure or null if the connection was successful.
connectionInfos This property is required. List<Property Map>
The connection details required to connect to an external DB system component.
connectionStatus This property is required. String
The status of connectivity to the external DB system component.
connectorType This property is required. String
The type of connector.
definedTags This property is required. 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 This property is required. String
A filter to only return the resources that match the entire display name.
externalDbSystemId This property is required. String
The OCID of the external DB system.
freeformTags This property is required. 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 This property is required. String
The OCID of the external DB system connector.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
state This property is required. String
The current lifecycle state of the external DB system connector.
systemTags This property is required. 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 This property is required. String
The date and time the connectionStatus of the external DB system connector was last updated.
timeCreated This property is required. String
The date and time the external DB system connector was created.
timeUpdated This property is required. String
The date and time the external DB system connector was last updated.

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfo

ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString>
The Oracle Database connection string.
DatabaseCredentials This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
ComponentType This property is required. string
The component type.
ConnectionCredentials This property is required. []GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
ConnectionStrings This property is required. []GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString
The Oracle Database connection string.
DatabaseCredentials This property is required. []GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString>
The Oracle Database connection string.
databaseCredentials This property is required. List<GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential>
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. string
The component type.
connectionCredentials This property is required. GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential[]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString[]
The Oracle Database connection string.
databaseCredentials This property is required. GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential[]
The credential to connect to the database to perform tablespace administration tasks.
component_type This property is required. str
The component type.
connection_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential]
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connection_strings This property is required. Sequence[databasemanagement.GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString]
The Oracle Database connection string.
database_credentials This property is required. Sequence[databasemanagement.GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential]
The credential to connect to the database to perform tablespace administration tasks.
componentType This property is required. String
The component type.
connectionCredentials This property is required. List<Property Map>
The credentials used to connect to the ASM instance. Currently only the DETAILS type is supported for creating MACS connector credentials.
connectionStrings This property is required. List<Property Map>
The Oracle Database connection string.
databaseCredentials This property is required. List<Property Map>
The credential to connect to the database to perform tablespace administration tasks.

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionCredential

CredentialName This property is required. 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 This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
CredentialName This property is required. 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 This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
SslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
UserName This property is required. string
The user name used to connect to the ASM instance.
credentialName This property is required. 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 This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.
credentialName This property is required. 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 This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
sslSecretId This property is required. string
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. string
The user name used to connect to the ASM instance.
credential_name This property is required. 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 This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
ssl_secret_id This property is required. str
The OCID of the secret containing the SSL keystore and truststore details.
user_name This property is required. str
The user name used to connect to the ASM instance.
credentialName This property is required. 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 This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
sslSecretId This property is required. String
The OCID of the secret containing the SSL keystore and truststore details.
userName This property is required. String
The user name used to connect to the ASM instance.

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoConnectionString

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

GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemConnectionInfoDatabaseCredential

CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
CredentialType This property is required. string
The type of the credential for tablespace administration tasks.
NamedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
Password This property is required. string
The database user's password encoded using BASE64 scheme.
PasswordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
Role This property is required. string
The role of the database user.
Username This property is required. string
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.
credentialType This property is required. string
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. string
The OCID of the named credential where the database password metadata is stored.
password This property is required. string
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. string
The OCID of the Secret where the database password is stored.
role This property is required. string
The role of the database user.
username This property is required. string
The user to connect to the database.
credential_type This property is required. str
The type of the credential for tablespace administration tasks.
named_credential_id This property is required. str
The OCID of the named credential where the database password metadata is stored.
password This property is required. str
The database user's password encoded using BASE64 scheme.
password_secret_id This property is required. str
The OCID of the Secret where the database password is stored.
role This property is required. str
The role of the database user.
username This property is required. str
The user to connect to the database.
credentialType This property is required. String
The type of the credential for tablespace administration tasks.
namedCredentialId This property is required. String
The OCID of the named credential where the database password metadata is stored.
password This property is required. String
The database user's password encoded using BASE64 scheme.
passwordSecretId This property is required. String
The OCID of the Secret where the database password is stored.
role This property is required. String
The role of the database user.
username This property is required. String
The user to connect to the database.

GetExternalDbSystemConnectorsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. 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.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi