1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getDbmulticloudMultiCloudResourceDiscoveries
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.oci.getDbmulticloudMultiCloudResourceDiscoveries

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Multi Cloud Resource Discoveries in Oracle Cloud Infrastructure Dbmulticloud service.

    Lists all Multicloud Resource Discovery resources based on the specified filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMultiCloudResourceDiscoveries = oci.oci.getDbmulticloudMultiCloudResourceDiscoveries({
        compartmentId: compartmentId,
        displayName: multiCloudResourceDiscoveryDisplayName,
        multiCloudResourceDiscoveryId: testMultiCloudResourceDiscovery.id,
        oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
        resourceType: multiCloudResourceDiscoveryResourceType,
        resourcesFilters: multiCloudResourceDiscoveryResourcesFilter,
        state: multiCloudResourceDiscoveryState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_multi_cloud_resource_discoveries = oci.oci.get_dbmulticloud_multi_cloud_resource_discoveries(compartment_id=compartment_id,
        display_name=multi_cloud_resource_discovery_display_name,
        multi_cloud_resource_discovery_id=test_multi_cloud_resource_discovery["id"],
        oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
        resource_type=multi_cloud_resource_discovery_resource_type,
        resources_filters=multi_cloud_resource_discovery_resources_filter,
        state=multi_cloud_resource_discovery_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.GetDbmulticloudMultiCloudResourceDiscoveries(ctx, &oci.GetDbmulticloudMultiCloudResourceDiscoveriesArgs{
    			CompartmentId:                 compartmentId,
    			DisplayName:                   pulumi.StringRef(multiCloudResourceDiscoveryDisplayName),
    			MultiCloudResourceDiscoveryId: pulumi.StringRef(testMultiCloudResourceDiscovery.Id),
    			OracleDbAzureConnectorId:      pulumi.StringRef(testOracleDbAzureConnector.Id),
    			ResourceType:                  pulumi.StringRef(multiCloudResourceDiscoveryResourceType),
    			ResourcesFilters:              multiCloudResourceDiscoveryResourcesFilter,
    			State:                         pulumi.StringRef(multiCloudResourceDiscoveryState),
    		}, 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 testMultiCloudResourceDiscoveries = Oci.Oci.GetDbmulticloudMultiCloudResourceDiscoveries.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = multiCloudResourceDiscoveryDisplayName,
            MultiCloudResourceDiscoveryId = testMultiCloudResourceDiscovery.Id,
            OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
            ResourceType = multiCloudResourceDiscoveryResourceType,
            ResourcesFilters = multiCloudResourceDiscoveryResourcesFilter,
            State = multiCloudResourceDiscoveryState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetDbmulticloudMultiCloudResourceDiscoveriesArgs;
    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 testMultiCloudResourceDiscoveries = OciFunctions.getDbmulticloudMultiCloudResourceDiscoveries(GetDbmulticloudMultiCloudResourceDiscoveriesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(multiCloudResourceDiscoveryDisplayName)
                .multiCloudResourceDiscoveryId(testMultiCloudResourceDiscovery.id())
                .oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
                .resourceType(multiCloudResourceDiscoveryResourceType)
                .resourcesFilters(multiCloudResourceDiscoveryResourcesFilter)
                .state(multiCloudResourceDiscoveryState)
                .build());
    
        }
    }
    
    variables:
      testMultiCloudResourceDiscoveries:
        fn::invoke:
          function: oci:oci:getDbmulticloudMultiCloudResourceDiscoveries
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${multiCloudResourceDiscoveryDisplayName}
            multiCloudResourceDiscoveryId: ${testMultiCloudResourceDiscovery.id}
            oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
            resourceType: ${multiCloudResourceDiscoveryResourceType}
            resourcesFilters: ${multiCloudResourceDiscoveryResourcesFilter}
            state: ${multiCloudResourceDiscoveryState}
    

    Using getDbmulticloudMultiCloudResourceDiscoveries

    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 getDbmulticloudMultiCloudResourceDiscoveries(args: GetDbmulticloudMultiCloudResourceDiscoveriesArgs, opts?: InvokeOptions): Promise<GetDbmulticloudMultiCloudResourceDiscoveriesResult>
    function getDbmulticloudMultiCloudResourceDiscoveriesOutput(args: GetDbmulticloudMultiCloudResourceDiscoveriesOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudMultiCloudResourceDiscoveriesResult>
    def get_dbmulticloud_multi_cloud_resource_discoveries(compartment_id: Optional[str] = None,
                                                          display_name: Optional[str] = None,
                                                          filters: Optional[Sequence[GetDbmulticloudMultiCloudResourceDiscoveriesFilter]] = None,
                                                          multi_cloud_resource_discovery_id: Optional[str] = None,
                                                          oracle_db_azure_connector_id: Optional[str] = None,
                                                          resource_type: Optional[str] = None,
                                                          resources_filters: Optional[Sequence[str]] = None,
                                                          state: Optional[str] = None,
                                                          opts: Optional[InvokeOptions] = None) -> GetDbmulticloudMultiCloudResourceDiscoveriesResult
    def get_dbmulticloud_multi_cloud_resource_discoveries_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                          display_name: Optional[pulumi.Input[str]] = None,
                                                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudMultiCloudResourceDiscoveriesFilterArgs]]]] = None,
                                                          multi_cloud_resource_discovery_id: Optional[pulumi.Input[str]] = None,
                                                          oracle_db_azure_connector_id: Optional[pulumi.Input[str]] = None,
                                                          resource_type: Optional[pulumi.Input[str]] = None,
                                                          resources_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                          state: Optional[pulumi.Input[str]] = None,
                                                          opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudMultiCloudResourceDiscoveriesResult]
    func GetDbmulticloudMultiCloudResourceDiscoveries(ctx *Context, args *GetDbmulticloudMultiCloudResourceDiscoveriesArgs, opts ...InvokeOption) (*GetDbmulticloudMultiCloudResourceDiscoveriesResult, error)
    func GetDbmulticloudMultiCloudResourceDiscoveriesOutput(ctx *Context, args *GetDbmulticloudMultiCloudResourceDiscoveriesOutputArgs, opts ...InvokeOption) GetDbmulticloudMultiCloudResourceDiscoveriesResultOutput

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

    public static class GetDbmulticloudMultiCloudResourceDiscoveries 
    {
        public static Task<GetDbmulticloudMultiCloudResourceDiscoveriesResult> InvokeAsync(GetDbmulticloudMultiCloudResourceDiscoveriesArgs args, InvokeOptions? opts = null)
        public static Output<GetDbmulticloudMultiCloudResourceDiscoveriesResult> Invoke(GetDbmulticloudMultiCloudResourceDiscoveriesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbmulticloudMultiCloudResourceDiscoveriesResult> getDbmulticloudMultiCloudResourceDiscoveries(GetDbmulticloudMultiCloudResourceDiscoveriesArgs args, InvokeOptions options)
    public static Output<GetDbmulticloudMultiCloudResourceDiscoveriesResult> getDbmulticloudMultiCloudResourceDiscoveries(GetDbmulticloudMultiCloudResourceDiscoveriesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getDbmulticloudMultiCloudResourceDiscoveries:getDbmulticloudMultiCloudResourceDiscoveries
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    Filters List<GetDbmulticloudMultiCloudResourceDiscoveriesFilter>
    MultiCloudResourceDiscoveryId string
    The OCID of the Multicloud Discovery resource.
    OracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    ResourceType string
    The type of Multicloud Resource.
    ResourcesFilters List<string>
    Specifies the type(s) of resources to discover in the target cloud provider.
    State string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    Filters []GetDbmulticloudMultiCloudResourceDiscoveriesFilter
    MultiCloudResourceDiscoveryId string
    The OCID of the Multicloud Discovery resource.
    OracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    ResourceType string
    The type of Multicloud Resource.
    ResourcesFilters []string
    Specifies the type(s) of resources to discover in the target cloud provider.
    State string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    filters List<GetDbmulticloudMultiCloudResourceDiscoveriesFilter>
    multiCloudResourceDiscoveryId String
    The OCID of the Multicloud Discovery resource.
    oracleDbAzureConnectorId String
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    resourceType String
    The type of Multicloud Resource.
    resourcesFilters List<String>
    Specifies the type(s) of resources to discover in the target cloud provider.
    state String
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    compartmentId string
    The ID of the compartment.
    displayName string
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    filters GetDbmulticloudMultiCloudResourceDiscoveriesFilter[]
    multiCloudResourceDiscoveryId string
    The OCID of the Multicloud Discovery resource.
    oracleDbAzureConnectorId string
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    resourceType string
    The type of Multicloud Resource.
    resourcesFilters string[]
    Specifies the type(s) of resources to discover in the target cloud provider.
    state string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    compartment_id str
    The ID of the compartment.
    display_name str
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    filters Sequence[GetDbmulticloudMultiCloudResourceDiscoveriesFilter]
    multi_cloud_resource_discovery_id str
    The OCID of the Multicloud Discovery resource.
    oracle_db_azure_connector_id str
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    resource_type str
    The type of Multicloud Resource.
    resources_filters Sequence[str]
    Specifies the type(s) of resources to discover in the target cloud provider.
    state str
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
    filters List<Property Map>
    multiCloudResourceDiscoveryId String
    The OCID of the Multicloud Discovery resource.
    oracleDbAzureConnectorId String
    A filter to return Oracle DB Azure Azure Identity Connector resources.
    resourceType String
    The type of Multicloud Resource.
    resourcesFilters List<String>
    Specifies the type(s) of resources to discover in the target cloud provider.
    state String
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.

    getDbmulticloudMultiCloudResourceDiscoveries Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    MultiCloudResourceDiscoverySummaryCollections List<GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection>
    The list of multi_cloud_resource_discovery_summary_collection.
    DisplayName string
    Display name of the Multicloud Resource Discovery resource.
    Filters List<GetDbmulticloudMultiCloudResourceDiscoveriesFilter>
    MultiCloudResourceDiscoveryId string
    OracleDbAzureConnectorId string
    ResourceType string
    Resource Type to discover.
    ResourcesFilters List<string>
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    State string
    The current lifecycle state of the discovered resource.
    CompartmentId string
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    MultiCloudResourceDiscoverySummaryCollections []GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection
    The list of multi_cloud_resource_discovery_summary_collection.
    DisplayName string
    Display name of the Multicloud Resource Discovery resource.
    Filters []GetDbmulticloudMultiCloudResourceDiscoveriesFilter
    MultiCloudResourceDiscoveryId string
    OracleDbAzureConnectorId string
    ResourceType string
    Resource Type to discover.
    ResourcesFilters []string
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    State string
    The current lifecycle state of the discovered resource.
    compartmentId String
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    id String
    The provider-assigned unique ID for this managed resource.
    multiCloudResourceDiscoverySummaryCollections List<GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection>
    The list of multi_cloud_resource_discovery_summary_collection.
    displayName String
    Display name of the Multicloud Resource Discovery resource.
    filters List<GetDbmulticloudMultiCloudResourceDiscoveriesFilter>
    multiCloudResourceDiscoveryId String
    oracleDbAzureConnectorId String
    resourceType String
    Resource Type to discover.
    resourcesFilters List<String>
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    state String
    The current lifecycle state of the discovered resource.
    compartmentId string
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    id string
    The provider-assigned unique ID for this managed resource.
    multiCloudResourceDiscoverySummaryCollections GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection[]
    The list of multi_cloud_resource_discovery_summary_collection.
    displayName string
    Display name of the Multicloud Resource Discovery resource.
    filters GetDbmulticloudMultiCloudResourceDiscoveriesFilter[]
    multiCloudResourceDiscoveryId string
    oracleDbAzureConnectorId string
    resourceType string
    Resource Type to discover.
    resourcesFilters string[]
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    state string
    The current lifecycle state of the discovered resource.
    compartment_id str
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    id str
    The provider-assigned unique ID for this managed resource.
    multi_cloud_resource_discovery_summary_collections Sequence[GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection]
    The list of multi_cloud_resource_discovery_summary_collection.
    display_name str
    Display name of the Multicloud Resource Discovery resource.
    filters Sequence[GetDbmulticloudMultiCloudResourceDiscoveriesFilter]
    multi_cloud_resource_discovery_id str
    oracle_db_azure_connector_id str
    resource_type str
    Resource Type to discover.
    resources_filters Sequence[str]
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    state str
    The current lifecycle state of the discovered resource.
    compartmentId String
    The OCID of the compartment that contains Multicloud Resource Discovery resource.
    id String
    The provider-assigned unique ID for this managed resource.
    multiCloudResourceDiscoverySummaryCollections List<Property Map>
    The list of multi_cloud_resource_discovery_summary_collection.
    displayName String
    Display name of the Multicloud Resource Discovery resource.
    filters List<Property Map>
    multiCloudResourceDiscoveryId String
    oracleDbAzureConnectorId String
    resourceType String
    Resource Type to discover.
    resourcesFilters List<String>
    Discover resource using attributes as key-value pair. For GCP supported attributes (keyRing) For Azure supported attributes (keyVault) GCP Example {"keyRing": "projects/db-mc-dataplane/locations/global/keyRings/dbmci-keyring"} or {"keyRing": "dbmci-keyring"} Azure Example {"keyVault": "/subscriptions/fd42b73d-5f28-4a23-ae7c-ca08c625fe07/resourceGroups/yumfei0808Test/providers/Microsoft.KeyVault/managedHSMs/orp7HSM001"} or {"keyVault": "orp7HSM001"}
    state String
    The current lifecycle state of the discovered resource.

    Supporting Types

    GetDbmulticloudMultiCloudResourceDiscoveriesFilter

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

    GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection

    GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItem

    CompartmentId string
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    LastModification string
    Description of the latest modification of the Multicloud Resource Discovery resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbConnectorId string
    The OCID of the Oracle DB Connector resource.
    ResourceType string
    The type of Multicloud Resource.
    Resources List<GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource>
    List of All Discovered resources.
    ResourcesFilter Dictionary<string, string>
    Specifies the type(s) of resources to discover in the target cloud provider.
    State string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    CompartmentId string
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    LastModification string
    Description of the latest modification of the Multicloud Resource Discovery resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbConnectorId string
    The OCID of the Oracle DB Connector resource.
    ResourceType string
    The type of Multicloud Resource.
    Resources []GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource
    List of All Discovered resources.
    ResourcesFilter map[string]string
    Specifies the type(s) of resources to discover in the target cloud provider.
    State string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    lastModification String
    Description of the latest modification of the Multicloud Resource Discovery resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbConnectorId String
    The OCID of the Oracle DB Connector resource.
    resourceType String
    The type of Multicloud Resource.
    resources List<GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource>
    List of All Discovered resources.
    resourcesFilter Map<String,String>
    Specifies the type(s) of resources to discover in the target cloud provider.
    state String
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId string
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    lastModification string
    Description of the latest modification of the Multicloud Resource Discovery resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    oracleDbConnectorId string
    The OCID of the Oracle DB Connector resource.
    resourceType string
    The type of Multicloud Resource.
    resources GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource[]
    List of All Discovered resources.
    resourcesFilter {[key: string]: string}
    Specifies the type(s) of resources to discover in the target cloud provider.
    state string
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartment_id str
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    last_modification str
    Description of the latest modification of the Multicloud Resource Discovery resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    oracle_db_connector_id str
    The OCID of the Oracle DB Connector resource.
    resource_type str
    The type of Multicloud Resource.
    resources Sequence[GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource]
    List of All Discovered resources.
    resources_filter Mapping[str, str]
    Specifies the type(s) of resources to discover in the target cloud provider.
    state str
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    The ID of the compartment.
    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 return Oracle DB Multicloud Discovery resources that match the specified 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 ID of the Discovered Resource.
    lastModification String
    Description of the latest modification of the Multicloud Resource Discovery resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbConnectorId String
    The OCID of the Oracle DB Connector resource.
    resourceType String
    The type of Multicloud Resource.
    resources List<Property Map>
    List of All Discovered resources.
    resourcesFilter Map<String>
    Specifies the type(s) of resources to discover in the target cloud provider.
    state String
    A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Multicloud Discovery Resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResource

    Id string
    The ID of the Discovered Resource.
    Location string
    Discovered Resource Location.
    Name string
    Discovered Resource Name.
    Properties Dictionary<string, string>
    Discovered Resource's properties.
    ResourceGroup string
    Discovered Resource Group Name.
    Type string
    Discovered Resource Type.
    Id string
    The ID of the Discovered Resource.
    Location string
    Discovered Resource Location.
    Name string
    Discovered Resource Name.
    Properties map[string]string
    Discovered Resource's properties.
    ResourceGroup string
    Discovered Resource Group Name.
    Type string
    Discovered Resource Type.
    id String
    The ID of the Discovered Resource.
    location String
    Discovered Resource Location.
    name String
    Discovered Resource Name.
    properties Map<String,String>
    Discovered Resource's properties.
    resourceGroup String
    Discovered Resource Group Name.
    type String
    Discovered Resource Type.
    id string
    The ID of the Discovered Resource.
    location string
    Discovered Resource Location.
    name string
    Discovered Resource Name.
    properties {[key: string]: string}
    Discovered Resource's properties.
    resourceGroup string
    Discovered Resource Group Name.
    type string
    Discovered Resource Type.
    id str
    The ID of the Discovered Resource.
    location str
    Discovered Resource Location.
    name str
    Discovered Resource Name.
    properties Mapping[str, str]
    Discovered Resource's properties.
    resource_group str
    Discovered Resource Group Name.
    type str
    Discovered Resource Type.
    id String
    The ID of the Discovered Resource.
    location String
    Discovered Resource Location.
    name String
    Discovered Resource Name.
    properties Map<String>
    Discovered Resource's properties.
    resourceGroup String
    Discovered Resource Group Name.
    type String
    Discovered Resource Type.

    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.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate