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

oci.DatabaseManagement.getCloudDatabases

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 Databases in Oracle Cloud Infrastructure Database Management service.

    Lists the cloud databases in the specified compartment or in the specified DB system.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudDatabases = oci.DatabaseManagement.getCloudDatabases({
        cloudDbSystemId: testCloudDbSystem.id,
        compartmentId: compartmentId,
        displayName: cloudDatabaseDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_databases = oci.DatabaseManagement.get_cloud_databases(cloud_db_system_id=test_cloud_db_system["id"],
        compartment_id=compartment_id,
        display_name=cloud_database_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.GetCloudDatabases(ctx, &databasemanagement.GetCloudDatabasesArgs{
    			CloudDbSystemId: testCloudDbSystem.Id,
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			DisplayName:     pulumi.StringRef(cloudDatabaseDisplayName),
    		}, 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 testCloudDatabases = Oci.DatabaseManagement.GetCloudDatabases.Invoke(new()
        {
            CloudDbSystemId = testCloudDbSystem.Id,
            CompartmentId = compartmentId,
            DisplayName = cloudDatabaseDisplayName,
        });
    
    });
    
    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.GetCloudDatabasesArgs;
    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 testCloudDatabases = DatabaseManagementFunctions.getCloudDatabases(GetCloudDatabasesArgs.builder()
                .cloudDbSystemId(testCloudDbSystem.id())
                .compartmentId(compartmentId)
                .displayName(cloudDatabaseDisplayName)
                .build());
    
        }
    }
    
    variables:
      testCloudDatabases:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudDatabases
          arguments:
            cloudDbSystemId: ${testCloudDbSystem.id}
            compartmentId: ${compartmentId}
            displayName: ${cloudDatabaseDisplayName}
    

    Using getCloudDatabases

    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 getCloudDatabases(args: GetCloudDatabasesArgs, opts?: InvokeOptions): Promise<GetCloudDatabasesResult>
    function getCloudDatabasesOutput(args: GetCloudDatabasesOutputArgs, opts?: InvokeOptions): Output<GetCloudDatabasesResult>
    def get_cloud_databases(cloud_db_system_id: Optional[str] = None,
                            compartment_id: Optional[str] = None,
                            display_name: Optional[str] = None,
                            filters: Optional[Sequence[GetCloudDatabasesFilter]] = None,
                            opts: Optional[InvokeOptions] = None) -> GetCloudDatabasesResult
    def get_cloud_databases_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[GetCloudDatabasesFilterArgs]]]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetCloudDatabasesResult]
    func GetCloudDatabases(ctx *Context, args *GetCloudDatabasesArgs, opts ...InvokeOption) (*GetCloudDatabasesResult, error)
    func GetCloudDatabasesOutput(ctx *Context, args *GetCloudDatabasesOutputArgs, opts ...InvokeOption) GetCloudDatabasesResultOutput

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

    public static class GetCloudDatabases 
    {
        public static Task<GetCloudDatabasesResult> InvokeAsync(GetCloudDatabasesArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudDatabasesResult> Invoke(GetCloudDatabasesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudDatabasesResult> getCloudDatabases(GetCloudDatabasesArgs args, InvokeOptions options)
    public static Output<GetCloudDatabasesResult> getCloudDatabases(GetCloudDatabasesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudDatabases:getCloudDatabases
      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<GetCloudDatabasesFilter>
    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 []GetCloudDatabasesFilter
    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<GetCloudDatabasesFilter>
    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 GetCloudDatabasesFilter[]
    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[GetCloudDatabasesFilter]
    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>

    getCloudDatabases Result

    The following output properties are available:

    CloudDatabaseCollections List<GetCloudDatabasesCloudDatabaseCollection>
    The list of cloud_database_collection.
    CloudDbSystemId string
    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 database. The name does not have to be unique.
    Filters List<GetCloudDatabasesFilter>
    CloudDatabaseCollections []GetCloudDatabasesCloudDatabaseCollection
    The list of cloud_database_collection.
    CloudDbSystemId string
    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 database. The name does not have to be unique.
    Filters []GetCloudDatabasesFilter
    cloudDatabaseCollections List<GetCloudDatabasesCloudDatabaseCollection>
    The list of cloud_database_collection.
    cloudDbSystemId String
    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 database. The name does not have to be unique.
    filters List<GetCloudDatabasesFilter>
    cloudDatabaseCollections GetCloudDatabasesCloudDatabaseCollection[]
    The list of cloud_database_collection.
    cloudDbSystemId string
    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 database. The name does not have to be unique.
    filters GetCloudDatabasesFilter[]
    cloud_database_collections Sequence[GetCloudDatabasesCloudDatabaseCollection]
    The list of cloud_database_collection.
    cloud_db_system_id str
    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 database. The name does not have to be unique.
    filters Sequence[GetCloudDatabasesFilter]
    cloudDatabaseCollections List<Property Map>
    The list of cloud_database_collection.
    cloudDbSystemId String
    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 database. The name does not have to be unique.
    filters List<Property Map>

    Supporting Types

    GetCloudDatabasesCloudDatabaseCollection

    items List<Property Map>
    An array of cloud databases.

    GetCloudDatabasesCloudDatabaseCollectionItem

    CloudDbHomeId string
    The OCID of the external DB home.
    CompartmentId string
    The OCID of the compartment.
    DatabasePlatformName string
    The operating system of database.
    DatabaseSubType string
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    DatabaseType string
    The type of Oracle Database installation.
    DatabaseVersion string
    The Oracle database version.
    DbManagementConfigs List<GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig>
    The configuration details of Database Management for a cloud DB system.
    DbSystemInfos List<GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo>
    The basic information about a cloud DB system.
    DbUniqueName string
    The DB_UNIQUE_NAME of the external database.
    DbmgmtFeatureConfigs List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig>
    The list of feature configurations
    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 external DB system.
    InstanceDetails List<GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail>
    The list of database instances if the database is a RAC database.
    ParentContainerDatabaseId string
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    State string
    The current lifecycle state of the external database resource.
    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"}
    TimeCreated string
    The date and time the external DB system was created.
    CloudDbHomeId string
    The OCID of the external DB home.
    CompartmentId string
    The OCID of the compartment.
    DatabasePlatformName string
    The operating system of database.
    DatabaseSubType string
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    DatabaseType string
    The type of Oracle Database installation.
    DatabaseVersion string
    The Oracle database version.
    DbManagementConfigs []GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig
    The configuration details of Database Management for a cloud DB system.
    DbSystemInfos []GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo
    The basic information about a cloud DB system.
    DbUniqueName string
    The DB_UNIQUE_NAME of the external database.
    DbmgmtFeatureConfigs []GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig
    The list of feature configurations
    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 external DB system.
    InstanceDetails []GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail
    The list of database instances if the database is a RAC database.
    ParentContainerDatabaseId string
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    State string
    The current lifecycle state of the external database resource.
    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"}
    TimeCreated string
    The date and time the external DB system was created.
    cloudDbHomeId String
    The OCID of the external DB home.
    compartmentId String
    The OCID of the compartment.
    databasePlatformName String
    The operating system of database.
    databaseSubType String
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    databaseType String
    The type of Oracle Database installation.
    databaseVersion String
    The Oracle database version.
    dbManagementConfigs List<GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig>
    The configuration details of Database Management for a cloud DB system.
    dbSystemInfos List<GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo>
    The basic information about a cloud DB system.
    dbUniqueName String
    The DB_UNIQUE_NAME of the external database.
    dbmgmtFeatureConfigs List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig>
    The list of feature configurations
    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 external DB system.
    instanceDetails List<GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail>
    The list of database instances if the database is a RAC database.
    parentContainerDatabaseId String
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    state String
    The current lifecycle state of the external database resource.
    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"}
    timeCreated String
    The date and time the external DB system was created.
    cloudDbHomeId string
    The OCID of the external DB home.
    compartmentId string
    The OCID of the compartment.
    databasePlatformName string
    The operating system of database.
    databaseSubType string
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    databaseType string
    The type of Oracle Database installation.
    databaseVersion string
    The Oracle database version.
    dbManagementConfigs GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig[]
    The configuration details of Database Management for a cloud DB system.
    dbSystemInfos GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo[]
    The basic information about a cloud DB system.
    dbUniqueName string
    The DB_UNIQUE_NAME of the external database.
    dbmgmtFeatureConfigs GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig[]
    The list of feature configurations
    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 external DB system.
    instanceDetails GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail[]
    The list of database instances if the database is a RAC database.
    parentContainerDatabaseId string
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    state string
    The current lifecycle state of the external database resource.
    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"}
    timeCreated string
    The date and time the external DB system was created.
    cloud_db_home_id str
    The OCID of the external DB home.
    compartment_id str
    The OCID of the compartment.
    database_platform_name str
    The operating system of database.
    database_sub_type str
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    database_type str
    The type of Oracle Database installation.
    database_version str
    The Oracle database version.
    db_management_configs Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig]
    The configuration details of Database Management for a cloud DB system.
    db_system_infos Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo]
    The basic information about a cloud DB system.
    db_unique_name str
    The DB_UNIQUE_NAME of the external database.
    dbmgmt_feature_configs Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig]
    The list of feature configurations
    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 external DB system.
    instance_details Sequence[GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail]
    The list of database instances if the database is a RAC database.
    parent_container_database_id str
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    state str
    The current lifecycle state of the external database resource.
    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_created str
    The date and time the external DB system was created.
    cloudDbHomeId String
    The OCID of the external DB home.
    compartmentId String
    The OCID of the compartment.
    databasePlatformName String
    The operating system of database.
    databaseSubType String
    The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.
    databaseType String
    The type of Oracle Database installation.
    databaseVersion String
    The Oracle database version.
    dbManagementConfigs List<Property Map>
    The configuration details of Database Management for a cloud DB system.
    dbSystemInfos List<Property Map>
    The basic information about a cloud DB system.
    dbUniqueName String
    The DB_UNIQUE_NAME of the external database.
    dbmgmtFeatureConfigs List<Property Map>
    The list of feature configurations
    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 external DB system.
    instanceDetails List<Property Map>
    The list of database instances if the database is a RAC database.
    parentContainerDatabaseId String
    The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).
    state String
    The current lifecycle state of the external database resource.
    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"}
    timeCreated String
    The date and time the external DB system was created.

    GetCloudDatabasesCloudDatabaseCollectionItemDbManagementConfig

    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    IsEnabled bool
    The status of the associated service.
    Metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled boolean
    The status of the associated service.
    metadata string
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    is_enabled bool
    The status of the associated service.
    metadata str
    The associated service-specific inputs in JSON string format, which Database Management can identify.
    isEnabled Boolean
    The status of the associated service.
    metadata String
    The associated service-specific inputs in JSON string format, which Database Management can identify.

    GetCloudDatabasesCloudDatabaseCollectionItemDbSystemInfo

    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Id string
    The OCID of the external DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Id string
    The OCID of the external DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    id String
    The OCID of the external DB system.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to only return the resources that match the entire display name.
    id string
    The OCID of the external 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.
    id str
    The OCID of the external DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    id String
    The OCID of the external DB system.

    GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfig

    ConnectorDetails List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail>
    The connector details required to connect to an Oracle cloud database.
    DatabaseConnectionDetails List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail>
    The connection details required to connect to the database.
    Feature string
    The name of the Database Management feature.
    FeatureStatus string
    The list of statuses for Database Management features.
    LicenseModel string
    The Oracle license model that applies to the external database.
    ConnectorDetails []GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail
    The connector details required to connect to an Oracle cloud database.
    DatabaseConnectionDetails []GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail
    The connection details required to connect to the database.
    Feature string
    The name of the Database Management feature.
    FeatureStatus string
    The list of statuses for Database Management features.
    LicenseModel string
    The Oracle license model that applies to the external database.
    connectorDetails List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail>
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail>
    The connection details required to connect to the database.
    feature String
    The name of the Database Management feature.
    featureStatus String
    The list of statuses for Database Management features.
    licenseModel String
    The Oracle license model that applies to the external database.
    connectorDetails GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail[]
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail[]
    The connection details required to connect to the database.
    feature string
    The name of the Database Management feature.
    featureStatus string
    The list of statuses for Database Management features.
    licenseModel string
    The Oracle license model that applies to the external database.
    connector_details Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail]
    The connector details required to connect to an Oracle cloud database.
    database_connection_details Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail]
    The connection details required to connect to the database.
    feature str
    The name of the Database Management feature.
    feature_status str
    The list of statuses for Database Management features.
    license_model str
    The Oracle license model that applies to the external database.
    connectorDetails List<Property Map>
    The connector details required to connect to an Oracle cloud database.
    databaseConnectionDetails List<Property Map>
    The connection details required to connect to the database.
    feature String
    The name of the Database Management feature.
    featureStatus String
    The list of statuses for Database Management features.
    licenseModel String
    The Oracle license model that applies to the external database.

    GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigConnectorDetail

    ConnectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    DatabaseConnectorId string
    The OCID of the external database connector.
    ManagementAgentId string
    The OCID of the management agent.
    PrivateEndPointId string
    The OCID of the private endpoint.
    ConnectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    DatabaseConnectorId string
    The OCID of the external database connector.
    ManagementAgentId string
    The OCID of the management agent.
    PrivateEndPointId string
    The OCID of the private endpoint.
    connectorType String
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    databaseConnectorId String
    The OCID of the external database connector.
    managementAgentId String
    The OCID of the management agent.
    privateEndPointId String
    The OCID of the private endpoint.
    connectorType string
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    databaseConnectorId string
    The OCID of the external database connector.
    managementAgentId string
    The OCID of the management agent.
    privateEndPointId string
    The OCID of the private endpoint.
    connector_type str
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    database_connector_id str
    The OCID of the external database connector.
    management_agent_id str
    The OCID of the management agent.
    private_end_point_id str
    The OCID of the private endpoint.
    connectorType String
    The list of supported connection types:

    • PE: Private endpoint
    • MACS: Management agent
    • EXTERNAL: External database connector
    • DIRECT: Direct connection
    databaseConnectorId String
    The OCID of the external database connector.
    managementAgentId String
    The OCID of the management agent.
    privateEndPointId String
    The OCID of the private endpoint.

    GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetail

    ConnectionCredentials List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential>
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionStrings List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString>
    The details of the Oracle Database connection string.
    ConnectionCredentials []GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    ConnectionStrings []GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString
    The details of the Oracle Database connection string.
    connectionCredentials List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential>
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings List<GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString>
    The details of the Oracle Database connection string.
    connectionCredentials GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential[]
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString[]
    The details of the Oracle Database connection string.
    connection_credentials Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential]
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connection_strings Sequence[GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString]
    The details of the Oracle Database connection string.
    connectionCredentials List<Property Map>
    The credentials used to connect to the database. Currently only the DETAILS type is supported for creating MACS connector credentials.
    connectionStrings List<Property Map>
    The details of the Oracle Database connection string.

    GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionCredential

    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 database.
    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 database.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the database.
    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 database.
    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 database.
    SslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    UserName string
    The user name used to connect to the database.
    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 database.
    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 database.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the database.
    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 database.
    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 database.
    sslSecretId string
    The OCID of the secret containing the SSL keystore and truststore details.
    userName string
    The user name used to connect to the database.
    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 database.
    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 database.
    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 database.
    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 database.
    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 database.
    sslSecretId String
    The OCID of the secret containing the SSL keystore and truststore details.
    userName String
    The user name used to connect to the database.

    GetCloudDatabasesCloudDatabaseCollectionItemDbmgmtFeatureConfigDatabaseConnectionDetailConnectionString

    ConnectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    Port int
    The port number used to connect to the database.
    Protocol string
    The protocol used to connect to the database.
    Service string
    The service name of the database.
    ConnectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    Port int
    The port number used to connect to the database.
    Protocol string
    The protocol used to connect to the database.
    Service string
    The service name of the database.
    connectionType String
    The list of supported connection types:

    • BASIC: Basic connection details
    port Integer
    The port number used to connect to the database.
    protocol String
    The protocol used to connect to the database.
    service String
    The service name of the database.
    connectionType string
    The list of supported connection types:

    • BASIC: Basic connection details
    port number
    The port number used to connect to the database.
    protocol string
    The protocol used to connect to the database.
    service string
    The service name of the database.
    connection_type str
    The list of supported connection types:

    • BASIC: Basic connection details
    port int
    The port number used to connect to the database.
    protocol str
    The protocol used to connect to the database.
    service str
    The service name of the database.
    connectionType String
    The list of supported connection types:

    • BASIC: Basic connection details
    port Number
    The port number used to connect to the database.
    protocol String
    The protocol used to connect to the database.
    service String
    The service name of the database.

    GetCloudDatabasesCloudDatabaseCollectionItemInstanceDetail

    HostName string
    The name of the host machine.
    InstanceName string
    The name of the database instance.
    InstanceNumber int
    The instance number of the database instance.
    HostName string
    The name of the host machine.
    InstanceName string
    The name of the database instance.
    InstanceNumber int
    The instance number of the database instance.
    hostName String
    The name of the host machine.
    instanceName String
    The name of the database instance.
    instanceNumber Integer
    The instance number of the database instance.
    hostName string
    The name of the host machine.
    instanceName string
    The name of the database instance.
    instanceNumber number
    The instance number of the database instance.
    host_name str
    The name of the host machine.
    instance_name str
    The name of the database instance.
    instance_number int
    The instance number of the database instance.
    hostName String
    The name of the host machine.
    instanceName String
    The name of the database instance.
    instanceNumber Number
    The instance number of the database instance.

    GetCloudDatabasesFilter

    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