1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. oci
  6. getMulticloudOmHubMulticloudResources
Viewing docs for Oracle Cloud Infrastructure v4.15.0
published on Thursday, Jun 11, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.15.0
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 dictionary
    data "oci_oci_getmulticloudomhubmulticloudresources" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    ExternalLocation string
    The cloud service provider region.
    Filters List<GetMulticloudOmHubMulticloudResourcesFilter>
    Limit int
    ResourceAnchorId string
    The OCID of the resource anchor.
    ResourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    SubscriptionServiceName string
    The cloud service provider.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    ExternalLocation string
    The cloud service provider region.
    Filters []GetMulticloudOmHubMulticloudResourcesFilter
    Limit int
    ResourceAnchorId string
    The OCID of the resource anchor.
    ResourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    SubscriptionServiceName string
    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_id string
    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_name string
    The cloud service provider.
    compartmentId String
    The OCID of the compartment in which to list resources.
    externalLocation String
    The cloud service provider region.
    filters List<GetMulticloudOmHubMulticloudResourcesFilter>
    limit Integer
    resourceAnchorId String
    The OCID of the resource anchor.
    resourceType String
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionServiceName String
    The cloud service provider.
    compartmentId string
    The OCID of the compartment in which to list resources.
    externalLocation string
    The cloud service provider region.
    filters GetMulticloudOmHubMulticloudResourcesFilter[]
    limit number
    resourceAnchorId string
    The OCID of the resource anchor.
    resourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    subscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionServiceName string
    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[GetMulticloudOmHubMulticloudResourcesFilter]
    limit int
    resource_anchor_id str
    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_name str
    The cloud service provider.
    compartmentId String
    The OCID of the compartment in which to list resources.
    externalLocation String
    The cloud service provider region.
    filters List<Property Map>
    limit Number
    resourceAnchorId String
    The OCID of the resource anchor.
    resourceType String
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionServiceName String
    The cloud service provider.

    getMulticloudOmHubMulticloudResources Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    MulticloudResourceCollections List<GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection>
    The list of OmHubMulticloudResource.
    CompartmentId string
    Id of the compartment associated with the resource.
    ExternalLocation string
    Filters List<GetMulticloudOmHubMulticloudResourcesFilter>
    Limit int
    ResourceAnchorId string
    ResourceType string
    Type of resource, such as VMCluster or ExaInfra,
    SubscriptionId string
    SubscriptionServiceName string
    Id string
    The provider-assigned unique ID for this managed resource.
    MulticloudResourceCollections []GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection
    The list of OmHubMulticloudResource.
    CompartmentId string
    Id of the compartment associated with the resource.
    ExternalLocation string
    Filters []GetMulticloudOmHubMulticloudResourcesFilter
    Limit int
    ResourceAnchorId string
    ResourceType string
    Type of resource, such as VMCluster or ExaInfra,
    SubscriptionId string
    SubscriptionServiceName string
    id string
    The provider-assigned unique ID for this managed resource.
    multicloud_resource_collections list(object)
    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_id string
    resource_type string
    Type of resource, such as VMCluster or ExaInfra,
    subscription_id string
    subscription_service_name string
    id String
    The provider-assigned unique ID for this managed resource.
    multicloudResourceCollections List<GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection>
    The list of OmHubMulticloudResource.
    compartmentId String
    Id of the compartment associated with the resource.
    externalLocation String
    filters List<GetMulticloudOmHubMulticloudResourcesFilter>
    limit Integer
    resourceAnchorId String
    resourceType String
    Type of resource, such as VMCluster or ExaInfra,
    subscriptionId String
    subscriptionServiceName String
    id string
    The provider-assigned unique ID for this managed resource.
    multicloudResourceCollections GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection[]
    The list of OmHubMulticloudResource.
    compartmentId string
    Id of the compartment associated with the resource.
    externalLocation string
    filters GetMulticloudOmHubMulticloudResourcesFilter[]
    limit number
    resourceAnchorId string
    resourceType string
    Type of resource, such as VMCluster or ExaInfra,
    subscriptionId string
    subscriptionServiceName string
    id str
    The provider-assigned unique ID for this managed resource.
    multicloud_resource_collections Sequence[GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection]
    The list of OmHubMulticloudResource.
    compartment_id str
    Id of the compartment associated with the resource.
    external_location str
    filters Sequence[GetMulticloudOmHubMulticloudResourcesFilter]
    limit int
    resource_anchor_id str
    resource_type str
    Type of resource, such as VMCluster or ExaInfra,
    subscription_id str
    subscription_service_name str
    id String
    The provider-assigned unique ID for this managed resource.
    multicloudResourceCollections List<Property Map>
    The list of OmHubMulticloudResource.
    compartmentId String
    Id of the compartment associated with the resource.
    externalLocation String
    filters List<Property Map>
    limit Number
    resourceAnchorId String
    resourceType String
    Type of resource, such as VMCluster or ExaInfra,
    subscriptionId String
    subscriptionServiceName String

    Supporting Types

    GetMulticloudOmHubMulticloudResourcesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollection

    items list(object)
    List of MulticloudResourceSummary.
    items List<Property Map>
    List of MulticloudResourceSummary.

    GetMulticloudOmHubMulticloudResourcesMulticloudResourceCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentName string
    Name of the compartment associated with the resource.
    CspAdditionalProperties Dictionary<string, string>
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    CspResourceId string
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    LifecycleState string
    The current state of the Multicloud resource.
    NetworkAnchorId string
    The OCID of the network anchor associated with the resource.
    NetworkAnchorName string
    Name of the network anchor associated with the resource.
    ResourceAdditionalProperties Dictionary<string, string>
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    ResourceDisplayName string
    Endpoint used to retrieve the resource's display name and lifecycle state.
    ResourceId string
    The Id of the multicloud resource.
    ResourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    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
    The date and time the subscription was created, in the format defined by RFC 3339.
    TimeUpdated string
    The date and time the subscription was updated, in the format defined by RFC 3339.
    VcnId string
    Id of the virtual cloud network (VCN) associated with the resource.
    VcnName string
    Name of the virtual cloud network (VCN) associated with the resource.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentName string
    Name of the compartment associated with the resource.
    CspAdditionalProperties map[string]string
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    CspResourceId string
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    LifecycleState string
    The current state of the Multicloud resource.
    NetworkAnchorId string
    The OCID of the network anchor associated with the resource.
    NetworkAnchorName string
    Name of the network anchor associated with the resource.
    ResourceAdditionalProperties map[string]string
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    ResourceDisplayName string
    Endpoint used to retrieve the resource's display name and lifecycle state.
    ResourceId string
    The Id of the multicloud resource.
    ResourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    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
    The date and time the subscription was created, in the format defined by RFC 3339.
    TimeUpdated string
    The date and time the subscription was updated, in the format defined by RFC 3339.
    VcnId string
    Id of the virtual cloud network (VCN) associated with the resource.
    VcnName 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_properties map(string)
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    csp_resource_id string
    The resource Id that comes from the Multicloud control plane.
    defined_tags 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"}
    freeform_tags 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_id string
    The OCID of the network anchor associated with the resource.
    network_anchor_name string
    Name of the network anchor associated with the resource.
    resource_additional_properties map(string)
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    resource_display_name string
    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).
    system_tags 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.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentName String
    Name of the compartment associated with the resource.
    cspAdditionalProperties Map<String,String>
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    cspResourceId String
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    lifecycleState String
    The current state of the Multicloud resource.
    networkAnchorId String
    The OCID of the network anchor associated with the resource.
    networkAnchorName String
    Name of the network anchor associated with the resource.
    resourceAdditionalProperties Map<String,String>
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    resourceDisplayName String
    Endpoint used to retrieve the resource's display name and lifecycle state.
    resourceId String
    The Id of the multicloud resource.
    resourceType String
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    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
    The date and time the subscription was created, in the format defined by RFC 3339.
    timeUpdated String
    The date and time the subscription was updated, in the format defined by RFC 3339.
    vcnId String
    Id of the virtual cloud network (VCN) associated with the resource.
    vcnName String
    Name of the virtual cloud network (VCN) associated with the resource.
    compartmentId string
    The OCID of the compartment in which to list resources.
    compartmentName string
    Name of the compartment associated with the resource.
    cspAdditionalProperties {[key: string]: string}
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    cspResourceId string
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    lifecycleState string
    The current state of the Multicloud resource.
    networkAnchorId string
    The OCID of the network anchor associated with the resource.
    networkAnchorName string
    Name of the network anchor associated with the resource.
    resourceAdditionalProperties {[key: string]: string}
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    resourceDisplayName string
    Endpoint used to retrieve the resource's display name and lifecycle state.
    resourceId string
    The Id of the multicloud resource.
    resourceType string
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    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
    The date and time the subscription was created, in the format defined by RFC 3339.
    timeUpdated string
    The date and time the subscription was updated, in the format defined by RFC 3339.
    vcnId string
    Id of the virtual cloud network (VCN) associated with the resource.
    vcnName 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_properties Mapping[str, str]
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    csp_resource_id str
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    lifecycle_state str
    The current state of the Multicloud resource.
    network_anchor_id str
    The OCID of the network anchor associated with the resource.
    network_anchor_name str
    Name of the network anchor associated with the resource.
    resource_additional_properties Mapping[str, str]
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    resource_display_name str
    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).
    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
    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.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentName String
    Name of the compartment associated with the resource.
    cspAdditionalProperties Map<String>
    Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.
    cspResourceId String
    The resource Id that comes from the Multicloud control plane.
    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"}
    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"}
    lifecycleState String
    The current state of the Multicloud resource.
    networkAnchorId String
    The OCID of the network anchor associated with the resource.
    networkAnchorName String
    Name of the network anchor associated with the resource.
    resourceAdditionalProperties Map<String>
    Additional attributes specific to certain resource types, used to construct a URL for accessing the resource in the Oracle Cloud Infrastructure console.
    resourceDisplayName String
    Endpoint used to retrieve the resource's display name and lifecycle state.
    resourceId String
    The Id of the multicloud resource.
    resourceType String
    Filter alerts by resource type (e.g. ADBD, VMCluster).
    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
    The date and time the subscription was created, in the format defined by RFC 3339.
    timeUpdated String
    The date and time the subscription was updated, in the format defined by RFC 3339.
    vcnId String
    Id of the virtual cloud network (VCN) associated with the resource.
    vcnName 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 oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.15.0
    published on Thursday, Jun 11, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial