1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getMulticloudResourceAnchors
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi

    This data source provides the list of Resource Anchors in Oracle Cloud Infrastructure Multicloud service.

    Gets a list of ResourceAnchors.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testResourceAnchors = oci.oci.getMulticloudResourceAnchors({
        subscriptionId: subscriptionId,
        subscriptionServiceName: subscriptionServiceName,
        compartmentId: compartmentId,
        displayName: resourceAnchorDisplayName,
        id: resourceAnchorId,
        isCompartmentIdInSubtree: resourceAnchorIsCompartmentIdInSubtree,
        linkedCompartmentId: linkedCompartmentId,
        lifecycleState: resourceAnchorState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_resource_anchors = oci.oci.get_multicloud_resource_anchors(subscription_id=subscription_id,
        subscription_service_name=subscription_service_name,
        compartment_id=compartment_id,
        display_name=resource_anchor_display_name,
        id=resource_anchor_id,
        is_compartment_id_in_subtree=resource_anchor_is_compartment_id_in_subtree,
        linked_compartment_id=linked_compartment_id,
        lifecycle_state=resource_anchor_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.GetMulticloudResourceAnchors(ctx, &oci.GetMulticloudResourceAnchorsArgs{
    			SubscriptionId:           subscriptionId,
    			SubscriptionServiceName:  subscriptionServiceName,
    			CompartmentId:            pulumi.StringRef(compartmentId),
    			DisplayName:              pulumi.StringRef(resourceAnchorDisplayName),
    			Id:                       pulumi.StringRef(resourceAnchorId),
    			IsCompartmentIdInSubtree: pulumi.BoolRef(resourceAnchorIsCompartmentIdInSubtree),
    			LinkedCompartmentId:      pulumi.StringRef(linkedCompartmentId),
    			LifecycleState:           pulumi.StringRef(resourceAnchorState),
    		}, 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 testResourceAnchors = Oci.Oci.GetMulticloudResourceAnchors.Invoke(new()
        {
            SubscriptionId = subscriptionId,
            SubscriptionServiceName = subscriptionServiceName,
            CompartmentId = compartmentId,
            DisplayName = resourceAnchorDisplayName,
            Id = resourceAnchorId,
            IsCompartmentIdInSubtree = resourceAnchorIsCompartmentIdInSubtree,
            LinkedCompartmentId = linkedCompartmentId,
            LifecycleState = resourceAnchorState,
        });
    
    });
    
    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.GetMulticloudResourceAnchorsArgs;
    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 testResourceAnchors = OciFunctions.getMulticloudResourceAnchors(GetMulticloudResourceAnchorsArgs.builder()
                .subscriptionId(subscriptionId)
                .subscriptionServiceName(subscriptionServiceName)
                .compartmentId(compartmentId)
                .displayName(resourceAnchorDisplayName)
                .id(resourceAnchorId)
                .isCompartmentIdInSubtree(resourceAnchorIsCompartmentIdInSubtree)
                .linkedCompartmentId(linkedCompartmentId)
                .lifecycleState(resourceAnchorState)
                .build());
    
        }
    }
    
    variables:
      testResourceAnchors:
        fn::invoke:
          function: oci:oci:getMulticloudResourceAnchors
          arguments:
            subscriptionId: ${subscriptionId}
            subscriptionServiceName: ${subscriptionServiceName}
            compartmentId: ${compartmentId}
            displayName: ${resourceAnchorDisplayName}
            id: ${resourceAnchorId}
            isCompartmentIdInSubtree: ${resourceAnchorIsCompartmentIdInSubtree}
            linkedCompartmentId: ${linkedCompartmentId}
            lifecycleState: ${resourceAnchorState}
    

    Using getMulticloudResourceAnchors

    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 getMulticloudResourceAnchors(args: GetMulticloudResourceAnchorsArgs, opts?: InvokeOptions): Promise<GetMulticloudResourceAnchorsResult>
    function getMulticloudResourceAnchorsOutput(args: GetMulticloudResourceAnchorsOutputArgs, opts?: InvokeOptions): Output<GetMulticloudResourceAnchorsResult>
    def get_multicloud_resource_anchors(compartment_id: Optional[str] = None,
                                        display_name: Optional[str] = None,
                                        filters: Optional[Sequence[GetMulticloudResourceAnchorsFilter]] = None,
                                        id: Optional[str] = None,
                                        is_compartment_id_in_subtree: Optional[bool] = None,
                                        lifecycle_state: Optional[str] = None,
                                        limit: Optional[int] = None,
                                        linked_compartment_id: Optional[str] = None,
                                        subscription_id: Optional[str] = None,
                                        subscription_service_name: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetMulticloudResourceAnchorsResult
    def get_multicloud_resource_anchors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                        display_name: Optional[pulumi.Input[str]] = None,
                                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMulticloudResourceAnchorsFilterArgs]]]] = None,
                                        id: Optional[pulumi.Input[str]] = None,
                                        is_compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                        lifecycle_state: Optional[pulumi.Input[str]] = None,
                                        limit: Optional[pulumi.Input[int]] = None,
                                        linked_compartment_id: Optional[pulumi.Input[str]] = None,
                                        subscription_id: Optional[pulumi.Input[str]] = None,
                                        subscription_service_name: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudResourceAnchorsResult]
    func GetMulticloudResourceAnchors(ctx *Context, args *GetMulticloudResourceAnchorsArgs, opts ...InvokeOption) (*GetMulticloudResourceAnchorsResult, error)
    func GetMulticloudResourceAnchorsOutput(ctx *Context, args *GetMulticloudResourceAnchorsOutputArgs, opts ...InvokeOption) GetMulticloudResourceAnchorsResultOutput

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

    public static class GetMulticloudResourceAnchors 
    {
        public static Task<GetMulticloudResourceAnchorsResult> InvokeAsync(GetMulticloudResourceAnchorsArgs args, InvokeOptions? opts = null)
        public static Output<GetMulticloudResourceAnchorsResult> Invoke(GetMulticloudResourceAnchorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMulticloudResourceAnchorsResult> getMulticloudResourceAnchors(GetMulticloudResourceAnchorsArgs args, InvokeOptions options)
    public static Output<GetMulticloudResourceAnchorsResult> getMulticloudResourceAnchors(GetMulticloudResourceAnchorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getMulticloudResourceAnchors:getMulticloudResourceAnchors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    SubscriptionId string
    The OCID of the subscription in which to list resources.
    SubscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetMulticloudResourceAnchorsFilter>
    Id string
    The OCID of the ResourceAnchor.
    IsCompartmentIdInSubtree bool
    Check the sub-compartments of a given compartmentId
    LifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    Limit int
    LinkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    SubscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetMulticloudResourceAnchorsFilter
    Id string
    The OCID of the ResourceAnchor.
    IsCompartmentIdInSubtree bool
    Check the sub-compartments of a given compartmentId
    LifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    Limit int
    LinkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    subscriptionServiceName String
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetMulticloudResourceAnchorsFilter>
    id String
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree Boolean
    Check the sub-compartments of a given compartmentId
    lifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    limit Integer
    linkedCompartmentId String
    The OCID of the compartment in which linked to Resource.
    subscriptionId string
    The OCID of the subscription in which to list resources.
    subscriptionServiceName string
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetMulticloudResourceAnchorsFilter[]
    id string
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree boolean
    Check the sub-compartments of a given compartmentId
    lifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    limit number
    linkedCompartmentId string
    The OCID of the compartment in which linked to Resource.
    subscription_id str
    The OCID of the subscription in which to list resources.
    subscription_service_name str
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetMulticloudResourceAnchorsFilter]
    id str
    The OCID of the ResourceAnchor.
    is_compartment_id_in_subtree bool
    Check the sub-compartments of a given compartmentId
    lifecycle_state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    limit int
    linked_compartment_id str
    The OCID of the compartment in which linked to Resource.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    subscriptionServiceName String
    The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    id String
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree Boolean
    Check the sub-compartments of a given compartmentId
    lifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    limit Number
    linkedCompartmentId String
    The OCID of the compartment in which linked to Resource.

    getMulticloudResourceAnchors Result

    The following output properties are available:

    ResourceAnchorCollections List<GetMulticloudResourceAnchorsResourceAnchorCollection>
    The list of ResourceAnchorCollection.
    SubscriptionId string
    Oracle Cloud Infrastructure Subscription Id
    SubscriptionServiceName string
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters List<GetMulticloudResourceAnchorsFilter>
    Id string
    The OCID of the ResourceAnchor.
    IsCompartmentIdInSubtree bool
    LifecycleState string
    The current state of the ResourceAnchor.
    Limit int
    LinkedCompartmentId string
    ResourceAnchorCollections []GetMulticloudResourceAnchorsResourceAnchorCollection
    The list of ResourceAnchorCollection.
    SubscriptionId string
    Oracle Cloud Infrastructure Subscription Id
    SubscriptionServiceName string
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters []GetMulticloudResourceAnchorsFilter
    Id string
    The OCID of the ResourceAnchor.
    IsCompartmentIdInSubtree bool
    LifecycleState string
    The current state of the ResourceAnchor.
    Limit int
    LinkedCompartmentId string
    resourceAnchorCollections List<GetMulticloudResourceAnchorsResourceAnchorCollection>
    The list of ResourceAnchorCollection.
    subscriptionId String
    Oracle Cloud Infrastructure Subscription Id
    subscriptionServiceName String
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<GetMulticloudResourceAnchorsFilter>
    id String
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree Boolean
    lifecycleState String
    The current state of the ResourceAnchor.
    limit Integer
    linkedCompartmentId String
    resourceAnchorCollections GetMulticloudResourceAnchorsResourceAnchorCollection[]
    The list of ResourceAnchorCollection.
    subscriptionId string
    Oracle Cloud Infrastructure Subscription Id
    subscriptionServiceName string
    compartmentId string
    The OCID of the compartment.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters GetMulticloudResourceAnchorsFilter[]
    id string
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree boolean
    lifecycleState string
    The current state of the ResourceAnchor.
    limit number
    linkedCompartmentId string
    resource_anchor_collections Sequence[GetMulticloudResourceAnchorsResourceAnchorCollection]
    The list of ResourceAnchorCollection.
    subscription_id str
    Oracle Cloud Infrastructure Subscription Id
    subscription_service_name str
    compartment_id str
    The OCID of the compartment.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters Sequence[GetMulticloudResourceAnchorsFilter]
    id str
    The OCID of the ResourceAnchor.
    is_compartment_id_in_subtree bool
    lifecycle_state str
    The current state of the ResourceAnchor.
    limit int
    linked_compartment_id str
    resourceAnchorCollections List<Property Map>
    The list of ResourceAnchorCollection.
    subscriptionId String
    Oracle Cloud Infrastructure Subscription Id
    subscriptionServiceName String
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<Property Map>
    id String
    The OCID of the ResourceAnchor.
    isCompartmentIdInSubtree Boolean
    lifecycleState String
    The current state of the ResourceAnchor.
    limit Number
    linkedCompartmentId String

    Supporting Types

    GetMulticloudResourceAnchorsFilter

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

    GetMulticloudResourceAnchorsResourceAnchorCollection

    items List<Property Map>
    List of ResourceAnchorSummary

    GetMulticloudResourceAnchorsResourceAnchorCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the ResourceAnchor.
    LifecycleDetails string
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    LifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the ResourceAnchor.
    LifecycleDetails string
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    LifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SubscriptionId string
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the ResourceAnchor.
    lifecycleDetails String
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the ResourceAnchor.
    lifecycleDetails string
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    subscriptionId string
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the ResourceAnchor.
    lifecycle_details str
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lifecycle_state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    subscription_id str
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the ResourceAnchor.
    lifecycleDetails String
    A message that describes the current state of the ResourceAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    subscriptionId String
    The OCID of the subscription in which to list resources.
    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 ResourceAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ResourceAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate