Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.oci.getDbmulticloudMultiCloudResourceDiscoveries
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 dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- Filters
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Filter> - Multi
Cloud stringResource Discovery Id - The OCID of the Multicloud Discovery resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- Resource
Type string - The type of Multicloud Resource.
- Resources
Filters 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.
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- Filters
[]Get
Dbmulticloud Multi Cloud Resource Discoveries Filter - Multi
Cloud stringResource Discovery Id - The OCID of the Multicloud Discovery resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- Resource
Type string - The type of Multicloud Resource.
- Resources
Filters []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 String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- filters
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Filter> - multi
Cloud StringResource Discovery Id - The OCID of the Multicloud Discovery resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- resource
Type String - The type of Multicloud Resource.
- resources
Filters 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.
- compartment
Id string - The ID of the compartment.
- display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- filters
Get
Dbmulticloud Multi Cloud Resource Discoveries Filter[] - multi
Cloud stringResource Discovery Id - The OCID of the Multicloud Discovery resource.
- oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- resource
Type string - The type of Multicloud Resource.
- resources
Filters 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[Get
Dbmulticloud Multi Cloud Resource Discoveries Filter] - multi_
cloud_ strresource_ discovery_ id - The OCID of the Multicloud Discovery resource.
- oracle_
db_ strazure_ connector_ id - 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.
- compartment
Id String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- filters List<Property Map>
- multi
Cloud StringResource Discovery Id - The OCID of the Multicloud Discovery resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- resource
Type String - The type of Multicloud Resource.
- resources
Filters 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:
- Compartment
Id string - The OCID of the compartment that contains Multicloud Resource Discovery resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Multi
Cloud List<GetResource Discovery Summary Collections Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection> - The list of multi_cloud_resource_discovery_summary_collection.
- Display
Name string - Display name of the Multicloud Resource Discovery resource.
- Filters
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Filter> - Multi
Cloud stringResource Discovery Id - Oracle
Db stringAzure Connector Id - Resource
Type string - Resource Type to discover.
- Resources
Filters 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.
- Compartment
Id string - The OCID of the compartment that contains Multicloud Resource Discovery resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Multi
Cloud []GetResource Discovery Summary Collections Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection - The list of multi_cloud_resource_discovery_summary_collection.
- Display
Name string - Display name of the Multicloud Resource Discovery resource.
- Filters
[]Get
Dbmulticloud Multi Cloud Resource Discoveries Filter - Multi
Cloud stringResource Discovery Id - Oracle
Db stringAzure Connector Id - Resource
Type string - Resource Type to discover.
- Resources
Filters []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 String - The OCID of the compartment that contains Multicloud Resource Discovery resource.
- id String
- The provider-assigned unique ID for this managed resource.
- multi
Cloud List<GetResource Discovery Summary Collections Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection> - The list of multi_cloud_resource_discovery_summary_collection.
- display
Name String - Display name of the Multicloud Resource Discovery resource.
- filters
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Filter> - multi
Cloud StringResource Discovery Id - oracle
Db StringAzure Connector Id - resource
Type String - Resource Type to discover.
- resources
Filters 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.
- compartment
Id string - The OCID of the compartment that contains Multicloud Resource Discovery resource.
- id string
- The provider-assigned unique ID for this managed resource.
- multi
Cloud GetResource Discovery Summary Collections Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection[] - The list of multi_cloud_resource_discovery_summary_collection.
- display
Name string - Display name of the Multicloud Resource Discovery resource.
- filters
Get
Dbmulticloud Multi Cloud Resource Discoveries Filter[] - multi
Cloud stringResource Discovery Id - oracle
Db stringAzure Connector Id - resource
Type string - Resource Type to discover.
- resources
Filters 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_ Sequence[Getresource_ discovery_ summary_ collections Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection] - The list of multi_cloud_resource_discovery_summary_collection.
- display_
name str - Display name of the Multicloud Resource Discovery resource.
- filters
Sequence[Get
Dbmulticloud Multi Cloud Resource Discoveries Filter] - multi_
cloud_ strresource_ discovery_ id - oracle_
db_ strazure_ connector_ id - 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.
- compartment
Id String - The OCID of the compartment that contains Multicloud Resource Discovery resource.
- id String
- The provider-assigned unique ID for this managed resource.
- multi
Cloud List<Property Map>Resource Discovery Summary Collections - The list of multi_cloud_resource_discovery_summary_collection.
- display
Name String - Display name of the Multicloud Resource Discovery resource.
- filters List<Property Map>
- multi
Cloud StringResource Discovery Id - oracle
Db StringAzure Connector Id - resource
Type String - Resource Type to discover.
- resources
Filters 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
GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollection
GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItem
- Compartment
Id string - The ID of the compartment.
- 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"} - Display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- 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.
- Last
Modification string - Description of the latest modification of the Multicloud Resource Discovery resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- Resource
Type string - The type of Multicloud Resource.
- Resources
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection Item Resource> - List of All Discovered resources.
- Resources
Filter 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.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated 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 string - The ID of the compartment.
- 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"} - Display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- 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.
- Last
Modification string - Description of the latest modification of the Multicloud Resource Discovery resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- Resource
Type string - The type of Multicloud Resource.
- Resources
[]Get
Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection Item Resource - List of All Discovered resources.
- Resources
Filter 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.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated 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 String - The ID of the compartment.
- 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"} - display
Name String - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- 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.
- last
Modification String - Description of the latest modification of the Multicloud Resource Discovery resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oracle
Db StringConnector Id - The OCID of the Oracle DB Connector resource.
- resource
Type String - The type of Multicloud Resource.
- resources
List<Get
Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection Item Resource> - List of All Discovered resources.
- resources
Filter 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.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated 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 string - The ID of the compartment.
- {[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"} - display
Name string - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- {[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.
- last
Modification string - Description of the latest modification of the Multicloud Resource Discovery resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- oracle
Db stringConnector Id - The OCID of the Oracle DB Connector resource.
- resource
Type string - The type of Multicloud Resource.
- resources
Get
Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection Item Resource[] - List of All Discovered resources.
- resources
Filter {[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.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated 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.
- 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.
- 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_ strdetails - Description of the current lifecycle state in more detail.
- oracle_
db_ strconnector_ id - The OCID of the Oracle DB Connector resource.
- resource_
type str - The type of Multicloud Resource.
- resources
Sequence[Get
Dbmulticloud Multi Cloud Resource Discoveries Multi Cloud Resource Discovery Summary Collection Item Resource] - 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.
- 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'
- compartment
Id String - The ID of the compartment.
- 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"} - display
Name String - A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
- 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.
- last
Modification String - Description of the latest modification of the Multicloud Resource Discovery resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oracle
Db StringConnector Id - The OCID of the Oracle DB Connector resource.
- resource
Type String - The type of Multicloud Resource.
- resources List<Property Map>
- List of All Discovered resources.
- resources
Filter 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Multicloud Discovery Resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated 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.
- Resource
Group 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.
- Resource
Group 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.
- resource
Group 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.
- resource
Group 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.
- resource
Group 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
ociTerraform Provider.
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
