1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getMulticloudNetworkAnchors
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 Network Anchors in Oracle Cloud Infrastructure Multicloud service.

    Gets a list of NetworkAnchors.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testNetworkAnchors = oci.oci.getMulticloudNetworkAnchors({
        externalLocation: externalLocation,
        subscriptionId: subscriptionId,
        subscriptionServiceName: subscriptionServiceName,
        compartmentId: compartmentId,
        networkAnchorLifecycleState: networkAnchorLifecycleState,
        displayName: displayName,
        networkAnchorOciSubnetId: networkAnchorOciSubnetId,
        networkAnchorOciVcnId: networkAnchorOciVcnId,
        id: id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_network_anchors = oci.oci.get_multicloud_network_anchors(external_location=external_location,
        subscription_id=subscription_id,
        subscription_service_name=subscription_service_name,
        compartment_id=compartment_id,
        network_anchor_lifecycle_state=network_anchor_lifecycle_state,
        display_name=display_name,
        network_anchor_oci_subnet_id=network_anchor_oci_subnet_id,
        network_anchor_oci_vcn_id=network_anchor_oci_vcn_id,
        id=id)
    
    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.GetMulticloudNetworkAnchors(ctx, &oci.GetMulticloudNetworkAnchorsArgs{
    			ExternalLocation:            externalLocation,
    			SubscriptionId:              subscriptionId,
    			SubscriptionServiceName:     subscriptionServiceName,
    			CompartmentId:               pulumi.StringRef(compartmentId),
    			NetworkAnchorLifecycleState: pulumi.StringRef(networkAnchorLifecycleState),
    			DisplayName:                 pulumi.StringRef(displayName),
    			NetworkAnchorOciSubnetId:    pulumi.StringRef(networkAnchorOciSubnetId),
    			NetworkAnchorOciVcnId:       pulumi.StringRef(networkAnchorOciVcnId),
    			Id:                          pulumi.StringRef(id),
    		}, 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 testNetworkAnchors = Oci.Oci.GetMulticloudNetworkAnchors.Invoke(new()
        {
            ExternalLocation = externalLocation,
            SubscriptionId = subscriptionId,
            SubscriptionServiceName = subscriptionServiceName,
            CompartmentId = compartmentId,
            NetworkAnchorLifecycleState = networkAnchorLifecycleState,
            DisplayName = displayName,
            NetworkAnchorOciSubnetId = networkAnchorOciSubnetId,
            NetworkAnchorOciVcnId = networkAnchorOciVcnId,
            Id = id,
        });
    
    });
    
    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.GetMulticloudNetworkAnchorsArgs;
    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 testNetworkAnchors = OciFunctions.getMulticloudNetworkAnchors(GetMulticloudNetworkAnchorsArgs.builder()
                .externalLocation(externalLocation)
                .subscriptionId(subscriptionId)
                .subscriptionServiceName(subscriptionServiceName)
                .compartmentId(compartmentId)
                .networkAnchorLifecycleState(networkAnchorLifecycleState)
                .displayName(displayName)
                .networkAnchorOciSubnetId(networkAnchorOciSubnetId)
                .networkAnchorOciVcnId(networkAnchorOciVcnId)
                .id(id)
                .build());
    
        }
    }
    
    variables:
      testNetworkAnchors:
        fn::invoke:
          function: oci:oci:getMulticloudNetworkAnchors
          arguments:
            externalLocation: ${externalLocation}
            subscriptionId: ${subscriptionId}
            subscriptionServiceName: ${subscriptionServiceName}
            compartmentId: ${compartmentId}
            networkAnchorLifecycleState: ${networkAnchorLifecycleState}
            displayName: ${displayName}
            networkAnchorOciSubnetId: ${networkAnchorOciSubnetId}
            networkAnchorOciVcnId: ${networkAnchorOciVcnId}
            id: ${id}
    

    Using getMulticloudNetworkAnchors

    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 getMulticloudNetworkAnchors(args: GetMulticloudNetworkAnchorsArgs, opts?: InvokeOptions): Promise<GetMulticloudNetworkAnchorsResult>
    function getMulticloudNetworkAnchorsOutput(args: GetMulticloudNetworkAnchorsOutputArgs, opts?: InvokeOptions): Output<GetMulticloudNetworkAnchorsResult>
    def get_multicloud_network_anchors(compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       external_location: Optional[str] = None,
                                       id: Optional[str] = None,
                                       limit: Optional[int] = None,
                                       network_anchor_lifecycle_state: Optional[str] = None,
                                       network_anchor_oci_subnet_id: Optional[str] = None,
                                       network_anchor_oci_vcn_id: Optional[str] = None,
                                       subscription_id: Optional[str] = None,
                                       subscription_service_name: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetMulticloudNetworkAnchorsResult
    def get_multicloud_network_anchors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       external_location: Optional[pulumi.Input[str]] = None,
                                       id: Optional[pulumi.Input[str]] = None,
                                       limit: Optional[pulumi.Input[int]] = None,
                                       network_anchor_lifecycle_state: Optional[pulumi.Input[str]] = None,
                                       network_anchor_oci_subnet_id: Optional[pulumi.Input[str]] = None,
                                       network_anchor_oci_vcn_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[GetMulticloudNetworkAnchorsResult]
    func GetMulticloudNetworkAnchors(ctx *Context, args *GetMulticloudNetworkAnchorsArgs, opts ...InvokeOption) (*GetMulticloudNetworkAnchorsResult, error)
    func GetMulticloudNetworkAnchorsOutput(ctx *Context, args *GetMulticloudNetworkAnchorsOutputArgs, opts ...InvokeOption) GetMulticloudNetworkAnchorsResultOutput

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

    public static class GetMulticloudNetworkAnchors 
    {
        public static Task<GetMulticloudNetworkAnchorsResult> InvokeAsync(GetMulticloudNetworkAnchorsArgs args, InvokeOptions? opts = null)
        public static Output<GetMulticloudNetworkAnchorsResult> Invoke(GetMulticloudNetworkAnchorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMulticloudNetworkAnchorsResult> getMulticloudNetworkAnchors(GetMulticloudNetworkAnchorsArgs args, InvokeOptions options)
    public static Output<GetMulticloudNetworkAnchorsResult> getMulticloudNetworkAnchors(GetMulticloudNetworkAnchorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getMulticloudNetworkAnchors:getMulticloudNetworkAnchors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ExternalLocation string
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    Id string

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    Limit int
    NetworkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    NetworkAnchorOciSubnetId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    NetworkAnchorOciVcnId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
    ExternalLocation string
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    Id string

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    Limit int
    NetworkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    NetworkAnchorOciSubnetId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    NetworkAnchorOciVcnId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
    externalLocation String
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    id String

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    limit Integer
    networkAnchorLifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    networkAnchorOciSubnetId String
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    networkAnchorOciVcnId String
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
    externalLocation string
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    id string

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    limit number
    networkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    networkAnchorOciSubnetId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    networkAnchorOciVcnId string
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
    external_location str
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    id str

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    limit int
    network_anchor_lifecycle_state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    network_anchor_oci_subnet_id str
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    network_anchor_oci_vcn_id str
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
    externalLocation String
    OMHub Control Plane must know underlying CSP CP Region External Location Name.
    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.
    id String

    The OCID of the NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    limit Number
    networkAnchorLifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    networkAnchorOciSubnetId String
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
    networkAnchorOciVcnId String
    A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.

    getMulticloudNetworkAnchors Result

    The following output properties are available:

    ExternalLocation string
    NetworkAnchorCollections List<GetMulticloudNetworkAnchorsNetworkAnchorCollection>
    The list of NetworkAnchor.
    SubscriptionId string
    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.
    Id string
    The OCID of the NetworkAnchor.
    Limit int
    NetworkAnchorLifecycleState string
    The current state of the NetworkAnchor.
    NetworkAnchorOciSubnetId string
    NetworkAnchorOciVcnId string
    ExternalLocation string
    NetworkAnchorCollections []GetMulticloudNetworkAnchorsNetworkAnchorCollection
    The list of NetworkAnchor.
    SubscriptionId string
    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.
    Id string
    The OCID of the NetworkAnchor.
    Limit int
    NetworkAnchorLifecycleState string
    The current state of the NetworkAnchor.
    NetworkAnchorOciSubnetId string
    NetworkAnchorOciVcnId string
    externalLocation String
    networkAnchorCollections List<GetMulticloudNetworkAnchorsNetworkAnchorCollection>
    The list of NetworkAnchor.
    subscriptionId String
    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.
    id String
    The OCID of the NetworkAnchor.
    limit Integer
    networkAnchorLifecycleState String
    The current state of the NetworkAnchor.
    networkAnchorOciSubnetId String
    networkAnchorOciVcnId String
    externalLocation string
    networkAnchorCollections GetMulticloudNetworkAnchorsNetworkAnchorCollection[]
    The list of NetworkAnchor.
    subscriptionId string
    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.
    id string
    The OCID of the NetworkAnchor.
    limit number
    networkAnchorLifecycleState string
    The current state of the NetworkAnchor.
    networkAnchorOciSubnetId string
    networkAnchorOciVcnId string
    external_location str
    network_anchor_collections Sequence[GetMulticloudNetworkAnchorsNetworkAnchorCollection]
    The list of NetworkAnchor.
    subscription_id str
    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.
    id str
    The OCID of the NetworkAnchor.
    limit int
    network_anchor_lifecycle_state str
    The current state of the NetworkAnchor.
    network_anchor_oci_subnet_id str
    network_anchor_oci_vcn_id str
    externalLocation String
    networkAnchorCollections List<Property Map>
    The list of NetworkAnchor.
    subscriptionId String
    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.
    id String
    The OCID of the NetworkAnchor.
    limit Number
    networkAnchorLifecycleState String
    The current state of the NetworkAnchor.
    networkAnchorOciSubnetId String
    networkAnchorOciVcnId String

    Supporting Types

    GetMulticloudNetworkAnchorsNetworkAnchorCollection

    items List<Property Map>
    List of NetworkAnchorSummary

    GetMulticloudNetworkAnchorsNetworkAnchorCollectionItem

    ClusterPlacementGroupId string
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    LifecycleDetails string
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    NetworkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    ResourceAnchorId string
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VcnId string
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
    ClusterPlacementGroupId string
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    LifecycleDetails string
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    NetworkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    ResourceAnchorId string
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VcnId string
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
    clusterPlacementGroupId String
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    lifecycleDetails String
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    networkAnchorLifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    resourceAnchorId String
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vcnId String
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
    clusterPlacementGroupId string
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    lifecycleDetails string
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    networkAnchorLifecycleState string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    resourceAnchorId string
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vcnId string
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
    cluster_placement_group_id str
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    lifecycle_details str
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    network_anchor_lifecycle_state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    resource_anchor_id str
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vcn_id str
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
    clusterPlacementGroupId String
    The CPG ID in which Network Anchor will be created.
    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 NetworkAnchor.

    Note: one of the arguments compartment_id or id must be specified.

    lifecycleDetails String
    A message that describes the current state of the NetworkAnchor in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    networkAnchorLifecycleState String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    resourceAnchorId String
    Oracle Cloud Infrastructure resource anchor Id (OCID).
    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 NetworkAnchor was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vcnId String
    Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.

    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