published on Thursday, Jun 11, 2026 by Pulumi
published on Thursday, Jun 11, 2026 by Pulumi
This data source provides the list of Om Hub Multicloud Resources in Oracle Cloud Infrastructure Multicloud service.
Lists Multicloud resources in the specified Multicloud subscription. Details for each resource include Multicloud base compartment, name, state, resource type, and network anchor. For more information, see Multicloud Resources.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOmHubMulticloudResources = oci.oci.getMulticloudOmHubMulticloudResources({
subscriptionId: subscriptionId,
subscriptionServiceName: subscriptionServiceName,
compartmentId: compartmentId,
externalLocation: externalLocation,
resourceAnchorId: resourceAnchorId,
});
import pulumi
import pulumi_oci as oci
test_om_hub_multicloud_resources = oci.oci.get_multicloud_om_hub_multicloud_resources(subscription_id=subscription_id,
subscription_service_name=subscription_service_name,
compartment_id=compartment_id,
external_location=external_location,
resource_anchor_id=resource_anchor_id)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.GetMulticloudOmHubMulticloudResources(ctx, &oci.GetMulticloudOmHubMulticloudResourcesArgs{
SubscriptionId: pulumi.StringRef(subscriptionId),
SubscriptionServiceName: pulumi.StringRef(subscriptionServiceName),
CompartmentId: pulumi.StringRef(compartmentId),
ExternalLocation: pulumi.StringRef(externalLocation),
ResourceAnchorId: pulumi.StringRef(resourceAnchorId),
}, 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 testOmHubMulticloudResources = Oci.Oci.GetMulticloudOmHubMulticloudResources.Invoke(new()
{
SubscriptionId = subscriptionId,
SubscriptionServiceName = subscriptionServiceName,
CompartmentId = compartmentId,
ExternalLocation = externalLocation,
ResourceAnchorId = resourceAnchorId,
});
});
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.GetMulticloudOmHubMulticloudResourcesArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 testOmHubMulticloudResources = OciFunctions.getMulticloudOmHubMulticloudResources(GetMulticloudOmHubMulticloudResourcesArgs.builder()
.subscriptionId(subscriptionId)
.subscriptionServiceName(subscriptionServiceName)
.compartmentId(compartmentId)
.externalLocation(externalLocation)
.resourceAnchorId(resourceAnchorId)
.build());
}
}
variables:
testOmHubMulticloudResources:
fn::invoke:
function: oci:oci:getMulticloudOmHubMulticloudResources
arguments:
subscriptionId: ${subscriptionId}
subscriptionServiceName: ${subscriptionServiceName}
compartmentId: ${compartmentId}
externalLocation: ${externalLocation}
resourceAnchorId: ${resourceAnchorId}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_oci_getmulticloudomhubmulticloudresources" "testOmHubMulticloudResources" {
subscription_id = subscriptionId
subscription_service_name = subscriptionServiceName
compartment_id = compartmentId
external_location = externalLocation
resource_anchor_id = resourceAnchorId
}
Using getMulticloudOmHubMulticloudResources
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 getMulticloudOmHubMulticloudResources(args: GetMulticloudOmHubMulticloudResourcesArgs, opts?: InvokeOptions): Promise<GetMulticloudOmHubMulticloudResourcesResult>
function getMulticloudOmHubMulticloudResourcesOutput(args: GetMulticloudOmHubMulticloudResourcesOutputArgs, opts?: InvokeOptions): Output<GetMulticloudOmHubMulticloudResourcesResult>def get_multicloud_om_hub_multicloud_resources(compartment_id: Optional[str] = None,
external_location: Optional[str] = None,
filters: Optional[Sequence[GetMulticloudOmHubMulticloudResourcesFilter]] = None,
limit: Optional[int] = None,
resource_anchor_id: Optional[str] = None,
resource_type: Optional[str] = None,
subscription_id: Optional[str] = None,
subscription_service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMulticloudOmHubMulticloudResourcesResult
def get_multicloud_om_hub_multicloud_resources_output(compartment_id: pulumi.Input[Optional[str]] = None,
external_location: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetMulticloudOmHubMulticloudResourcesFilterArgs]]]] = None,
limit: pulumi.Input[Optional[int]] = None,
resource_anchor_id: pulumi.Input[Optional[str]] = None,
resource_type: pulumi.Input[Optional[str]] = None,
subscription_id: pulumi.Input[Optional[str]] = None,
subscription_service_name: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudOmHubMulticloudResourcesResult]func GetMulticloudOmHubMulticloudResources(ctx *Context, args *GetMulticloudOmHubMulticloudResourcesArgs, opts ...InvokeOption) (*GetMulticloudOmHubMulticloudResourcesResult, error)
func GetMulticloudOmHubMulticloudResourcesOutput(ctx *Context, args *GetMulticloudOmHubMulticloudResourcesOutputArgs, opts ...InvokeOption) GetMulticloudOmHubMulticloudResourcesResultOutput> Note: This function is named GetMulticloudOmHubMulticloudResources in the Go SDK.
public static class GetMulticloudOmHubMulticloudResources
{
public static Task<GetMulticloudOmHubMulticloudResourcesResult> InvokeAsync(GetMulticloudOmHubMulticloudResourcesArgs args, InvokeOptions? opts = null)
public static Output<GetMulticloudOmHubMulticloudResourcesResult> Invoke(GetMulticloudOmHubMulticloudResourcesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMulticloudOmHubMulticloudResourcesResult> getMulticloudOmHubMulticloudResources(GetMulticloudOmHubMulticloudResourcesArgs args, InvokeOptions options)
public static Output<GetMulticloudOmHubMulticloudResourcesResult> getMulticloudOmHubMulticloudResources(GetMulticloudOmHubMulticloudResourcesArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getMulticloudOmHubMulticloudResources:getMulticloudOmHubMulticloudResources
arguments:
# arguments dictionarydata "oci_oci_getmulticloudomhubmulticloudresources" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- External
Location string - The cloud service provider region.
- Filters
List<Get
Multicloud Om Hub Multicloud Resources Filter> - Limit int
- Resource
Anchor stringId - The OCID of the resource anchor.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The cloud service provider.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- External
Location string - The cloud service provider region.
- Filters
[]Get
Multicloud Om Hub Multicloud Resources Filter - Limit int
- Resource
Anchor stringId - The OCID of the resource anchor.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The cloud service provider.
- compartment_
id string - The OCID of the compartment in which to list resources.
- external_
location string - The cloud service provider region.
- filters list(object)
- limit number
- resource_
anchor_ stringid - The OCID of the resource anchor.
- resource_
type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- subscription_
id string - The OCID of the Multicloud subscription in which to list resources.
- subscription_
service_ stringname - The cloud service provider.
- compartment
Id String - The OCID of the compartment in which to list resources.
- external
Location String - The cloud service provider region.
- filters
List<Get
Multicloud Om Hub Multicloud Resources Filter> - limit Integer
- resource
Anchor StringId - The OCID of the resource anchor.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The cloud service provider.
- compartment
Id string - The OCID of the compartment in which to list resources.
- external
Location string - The cloud service provider region.
- filters
Get
Multicloud Om Hub Multicloud Resources Filter[] - limit number
- resource
Anchor stringId - The OCID of the resource anchor.
- resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service stringName - The cloud service provider.
- compartment_
id str - The OCID of the compartment in which to list resources.
- external_
location str - The cloud service provider region.
- filters
Sequence[Get
Multicloud Om Hub Multicloud Resources Filter] - limit int
- resource_
anchor_ strid - The OCID of the resource anchor.
- resource_
type str - Filter alerts by resource type (e.g. ADBD, VMCluster).
- subscription_
id str - The OCID of the Multicloud subscription in which to list resources.
- subscription_
service_ strname - The cloud service provider.
- compartment
Id String - The OCID of the compartment in which to list resources.
- external
Location String - The cloud service provider region.
- filters List<Property Map>
- limit Number
- resource
Anchor StringId - The OCID of the resource anchor.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The cloud service provider.
getMulticloudOmHubMulticloudResources Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Multicloud
Resource List<GetCollections Multicloud Om Hub Multicloud Resources Multicloud Resource Collection> - The list of OmHubMulticloudResource.
- Compartment
Id string - Id of the compartment associated with the resource.
- External
Location string - Filters
List<Get
Multicloud Om Hub Multicloud Resources Filter> - Limit int
- Resource
Anchor stringId - Resource
Type string - Type of resource, such as
VMClusterorExaInfra, - Subscription
Id string - Subscription
Service stringName
- Id string
- The provider-assigned unique ID for this managed resource.
- Multicloud
Resource []GetCollections Multicloud Om Hub Multicloud Resources Multicloud Resource Collection - The list of OmHubMulticloudResource.
- Compartment
Id string - Id of the compartment associated with the resource.
- External
Location string - Filters
[]Get
Multicloud Om Hub Multicloud Resources Filter - Limit int
- Resource
Anchor stringId - Resource
Type string - Type of resource, such as
VMClusterorExaInfra, - Subscription
Id string - Subscription
Service stringName
- id string
- The provider-assigned unique ID for this managed resource.
- multicloud_
resource_ list(object)collections - The list of OmHubMulticloudResource.
- compartment_
id string - Id of the compartment associated with the resource.
- external_
location string - filters list(object)
- limit number
- resource_
anchor_ stringid - resource_
type string - Type of resource, such as
VMClusterorExaInfra, - subscription_
id string - subscription_
service_ stringname
- id String
- The provider-assigned unique ID for this managed resource.
- multicloud
Resource List<GetCollections Multicloud Om Hub Multicloud Resources Multicloud Resource Collection> - The list of OmHubMulticloudResource.
- compartment
Id String - Id of the compartment associated with the resource.
- external
Location String - filters
List<Get
Multicloud Om Hub Multicloud Resources Filter> - limit Integer
- resource
Anchor StringId - resource
Type String - Type of resource, such as
VMClusterorExaInfra, - subscription
Id String - subscription
Service StringName
- id string
- The provider-assigned unique ID for this managed resource.
- multicloud
Resource GetCollections Multicloud Om Hub Multicloud Resources Multicloud Resource Collection[] - The list of OmHubMulticloudResource.
- compartment
Id string - Id of the compartment associated with the resource.
- external
Location string - filters
Get
Multicloud Om Hub Multicloud Resources Filter[] - limit number
- resource
Anchor stringId - resource
Type string - Type of resource, such as
VMClusterorExaInfra, - subscription
Id string - subscription
Service stringName
- id str
- The provider-assigned unique ID for this managed resource.
- multicloud_
resource_ Sequence[Getcollections Multicloud Om Hub Multicloud Resources Multicloud Resource Collection] - The list of OmHubMulticloudResource.
- compartment_
id str - Id of the compartment associated with the resource.
- external_
location str - filters
Sequence[Get
Multicloud Om Hub Multicloud Resources Filter] - limit int
- resource_
anchor_ strid - resource_
type str - Type of resource, such as
VMClusterorExaInfra, - subscription_
id str - subscription_
service_ strname
- id String
- The provider-assigned unique ID for this managed resource.
- multicloud
Resource List<Property Map>Collections - The list of OmHubMulticloudResource.
- compartment
Id String - Id of the compartment associated with the resource.
- external
Location String - filters List<Property Map>
- limit Number
- resource
Anchor StringId - resource
Type String - Type of resource, such as
VMClusterorExaInfra, - subscription
Id String - subscription
Service StringName
Supporting Types
GetMulticloudOmHubMulticloudResourcesFilter
GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection
- Items
List<Get
Multicloud Om Hub Multicloud Resources Multicloud Resource Collection Item> - List of MulticloudResourceSummary.
- Items
[]Get
Multicloud Om Hub Multicloud Resources Multicloud Resource Collection Item - List of MulticloudResourceSummary.
- items list(object)
- List of MulticloudResourceSummary.
- items
List<Get
Multicloud Om Hub Multicloud Resources Multicloud Resource Collection Item> - List of MulticloudResourceSummary.
- items
Get
Multicloud Om Hub Multicloud Resources Multicloud Resource Collection Item[] - List of MulticloudResourceSummary.
- items
Sequence[Get
Multicloud Om Hub Multicloud Resources Multicloud Resource Collection Item] - List of MulticloudResourceSummary.
- items List<Property Map>
- List of MulticloudResourceSummary.
GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollectionItem
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Compartment
Name string - Name of the compartment associated with the resource.
- Csp
Additional Dictionary<string, string>Properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- Csp
Resource stringId - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - Lifecycle
State string - The current state of the Multicloud resource.
- Network
Anchor stringId - The OCID of the network anchor associated with the resource.
- Network
Anchor stringName - Name of the network anchor associated with the resource.
- Resource
Additional Dictionary<string, string>Properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- Resource
Display stringName - Endpoint used to retrieve the resource's display name and lifecycle state.
- Resource
Id string - The Id of the multicloud resource.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- Time
Updated string - The date and time the subscription was updated, in the format defined by RFC 3339.
- Vcn
Id string - Id of the virtual cloud network (VCN) associated with the resource.
- Vcn
Name string - Name of the virtual cloud network (VCN) associated with the resource.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Compartment
Name string - Name of the compartment associated with the resource.
- Csp
Additional map[string]stringProperties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- Csp
Resource stringId - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - Lifecycle
State string - The current state of the Multicloud resource.
- Network
Anchor stringId - The OCID of the network anchor associated with the resource.
- Network
Anchor stringName - Name of the network anchor associated with the resource.
- Resource
Additional map[string]stringProperties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- Resource
Display stringName - Endpoint used to retrieve the resource's display name and lifecycle state.
- Resource
Id string - The Id of the multicloud resource.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- Time
Updated string - The date and time the subscription was updated, in the format defined by RFC 3339.
- Vcn
Id string - Id of the virtual cloud network (VCN) associated with the resource.
- Vcn
Name string - Name of the virtual cloud network (VCN) associated with the resource.
- compartment_
id string - The OCID of the compartment in which to list resources.
- compartment_
name string - Name of the compartment associated with the resource.
- csp_
additional_ map(string)properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- csp_
resource_ stringid - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - lifecycle_
state string - The current state of the Multicloud resource.
- network_
anchor_ stringid - The OCID of the network anchor associated with the resource.
- network_
anchor_ stringname - Name of the network anchor associated with the resource.
- resource_
additional_ map(string)properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- resource_
display_ stringname - Endpoint used to retrieve the resource's display name and lifecycle state.
- resource_
id string - The Id of the multicloud resource.
- resource_
type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- time_
updated string - The date and time the subscription was updated, in the format defined by RFC 3339.
- vcn_
id string - Id of the virtual cloud network (VCN) associated with the resource.
- vcn_
name string - Name of the virtual cloud network (VCN) associated with the resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Name String - Name of the compartment associated with the resource.
- csp
Additional Map<String,String>Properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- csp
Resource StringId - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - lifecycle
State String - The current state of the Multicloud resource.
- network
Anchor StringId - The OCID of the network anchor associated with the resource.
- network
Anchor StringName - Name of the network anchor associated with the resource.
- resource
Additional Map<String,String>Properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- resource
Display StringName - Endpoint used to retrieve the resource's display name and lifecycle state.
- resource
Id String - The Id of the multicloud resource.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- time
Updated String - The date and time the subscription was updated, in the format defined by RFC 3339.
- vcn
Id String - Id of the virtual cloud network (VCN) associated with the resource.
- vcn
Name String - Name of the virtual cloud network (VCN) associated with the resource.
- compartment
Id string - The OCID of the compartment in which to list resources.
- compartment
Name string - Name of the compartment associated with the resource.
- csp
Additional {[key: string]: string}Properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- csp
Resource stringId - The resource Id that comes from the Multicloud control plane.
- {[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"} - {[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"} - lifecycle
State string - The current state of the Multicloud resource.
- network
Anchor stringId - The OCID of the network anchor associated with the resource.
- network
Anchor stringName - Name of the network anchor associated with the resource.
- resource
Additional {[key: string]: string}Properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- resource
Display stringName - Endpoint used to retrieve the resource's display name and lifecycle state.
- resource
Id string - The Id of the multicloud resource.
- resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- {[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 - The date and time the subscription was created, in the format defined by RFC 3339.
- time
Updated string - The date and time the subscription was updated, in the format defined by RFC 3339.
- vcn
Id string - Id of the virtual cloud network (VCN) associated with the resource.
- vcn
Name string - Name of the virtual cloud network (VCN) associated with the resource.
- compartment_
id str - The OCID of the compartment in which to list resources.
- compartment_
name str - Name of the compartment associated with the resource.
- csp_
additional_ Mapping[str, str]properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- csp_
resource_ strid - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - lifecycle_
state str - The current state of the Multicloud resource.
- network_
anchor_ strid - The OCID of the network anchor associated with the resource.
- network_
anchor_ strname - Name of the network anchor associated with the resource.
- resource_
additional_ Mapping[str, str]properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- resource_
display_ strname - Endpoint used to retrieve the resource's display name and lifecycle state.
- resource_
id str - The Id of the multicloud resource.
- resource_
type str - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- time_
updated str - The date and time the subscription was updated, in the format defined by RFC 3339.
- vcn_
id str - Id of the virtual cloud network (VCN) associated with the resource.
- vcn_
name str - Name of the virtual cloud network (VCN) associated with the resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Name String - Name of the compartment associated with the resource.
- csp
Additional Map<String>Properties - Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
- csp
Resource StringId - The resource Id that comes from the Multicloud control plane.
- 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"} - 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"} - lifecycle
State String - The current state of the Multicloud resource.
- network
Anchor StringId - The OCID of the network anchor associated with the resource.
- network
Anchor StringName - Name of the network anchor associated with the resource.
- resource
Additional Map<String>Properties - Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
- resource
Display StringName - Endpoint used to retrieve the resource's display name and lifecycle state.
- resource
Id String - The Id of the multicloud resource.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- 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 - The date and time the subscription was created, in the format defined by RFC 3339.
- time
Updated String - The date and time the subscription was updated, in the format defined by RFC 3339.
- vcn
Id String - Id of the virtual cloud network (VCN) associated with the resource.
- vcn
Name String - Name of the virtual cloud network (VCN) associated with the resource.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Thursday, Jun 11, 2026 by Pulumi