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 dictionaryThe following arguments are supported:
- External
Location string - OMHub Control Plane must know underlying CSP CP Region External Location Name.
- Subscription
Id string - The OCID of the subscription in which to list resources.
- Subscription
Service stringName - The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name 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_idoridmust be specified.- Limit int
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Network
Anchor stringOci Subnet Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- Network
Anchor stringOci Vcn Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
- External
Location string - OMHub Control Plane must know underlying CSP CP Region External Location Name.
- Subscription
Id string - The OCID of the subscription in which to list resources.
- Subscription
Service stringName - The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Display
Name 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_idoridmust be specified.- Limit int
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Network
Anchor stringOci Subnet Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- Network
Anchor stringOci Vcn Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
- external
Location String - OMHub Control Plane must know underlying CSP CP Region External Location Name.
- subscription
Id String - The OCID of the subscription in which to list resources.
- subscription
Service StringName - The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name 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_idoridmust be specified.- limit Integer
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor StringOci Subnet Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- network
Anchor StringOci Vcn Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
- external
Location string - OMHub Control Plane must know underlying CSP CP Region External Location Name.
- subscription
Id string - The OCID of the subscription in which to list resources.
- subscription
Service stringName - The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
- compartment
Id string - The OCID of the compartment in which to list resources.
- display
Name 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_idoridmust be specified.- limit number
- network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor stringOci Subnet Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- network
Anchor stringOci Vcn Id - 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_ strname - 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_idoridmust be specified.- limit int
- network_
anchor_ strlifecycle_ state - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network_
anchor_ stroci_ subnet_ id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- network_
anchor_ stroci_ vcn_ id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
- external
Location String - OMHub Control Plane must know underlying CSP CP Region External Location Name.
- subscription
Id String - The OCID of the subscription in which to list resources.
- subscription
Service StringName - The subscription service name values from [ORACLEDBATAZURE, ORACLEDBATGOOGLE, ORACLEDBATAWS]
- compartment
Id String - The OCID of the compartment in which to list resources.
- display
Name 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_idoridmust be specified.- limit Number
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor StringOci Subnet Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure subnet Id.
- network
Anchor StringOci Vcn Id - A filter to return only NetworkAnchor resources that match the given Oracle Cloud Infrastructure Vcn Id.
getMulticloudNetworkAnchors Result
The following output properties are available:
- External
Location string - Network
Anchor List<GetCollections Multicloud Network Anchors Network Anchor Collection> - The list of NetworkAnchor.
- Subscription
Id string - Subscription
Service stringName - Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- Id string
- The OCID of the NetworkAnchor.
- Limit int
- Network
Anchor stringLifecycle State - The current state of the NetworkAnchor.
- Network
Anchor stringOci Subnet Id - Network
Anchor stringOci Vcn Id
- External
Location string - Network
Anchor []GetCollections Multicloud Network Anchors Network Anchor Collection - The list of NetworkAnchor.
- Subscription
Id string - Subscription
Service stringName - Compartment
Id string - The OCID of the compartment.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- Id string
- The OCID of the NetworkAnchor.
- Limit int
- Network
Anchor stringLifecycle State - The current state of the NetworkAnchor.
- Network
Anchor stringOci Subnet Id - Network
Anchor stringOci Vcn Id
- external
Location String - network
Anchor List<GetCollections Multicloud Network Anchors Network Anchor Collection> - The list of NetworkAnchor.
- subscription
Id String - subscription
Service StringName - compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- id String
- The OCID of the NetworkAnchor.
- limit Integer
- network
Anchor StringLifecycle State - The current state of the NetworkAnchor.
- network
Anchor StringOci Subnet Id - network
Anchor StringOci Vcn Id
- external
Location string - network
Anchor GetCollections Multicloud Network Anchors Network Anchor Collection[] - The list of NetworkAnchor.
- subscription
Id string - subscription
Service stringName - compartment
Id string - The OCID of the compartment.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- id string
- The OCID of the NetworkAnchor.
- limit number
- network
Anchor stringLifecycle State - The current state of the NetworkAnchor.
- network
Anchor stringOci Subnet Id - network
Anchor stringOci Vcn Id
- external_
location str - network_
anchor_ Sequence[Getcollections Multicloud Network Anchors Network Anchor Collection] - The list of NetworkAnchor.
- subscription_
id str - subscription_
service_ strname - 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_ strlifecycle_ state - The current state of the NetworkAnchor.
- network_
anchor_ stroci_ subnet_ id - network_
anchor_ stroci_ vcn_ id
- external
Location String - network
Anchor List<Property Map>Collections - The list of NetworkAnchor.
- subscription
Id String - subscription
Service StringName - compartment
Id String - The OCID of the compartment.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- id String
- The OCID of the NetworkAnchor.
- limit Number
- network
Anchor StringLifecycle State - The current state of the NetworkAnchor.
- network
Anchor StringOci Subnet Id - network
Anchor StringOci Vcn Id
Supporting Types
GetMulticloudNetworkAnchorsNetworkAnchorCollection
- Items
List<Get
Multicloud Network Anchors Network Anchor Collection Item> - List of NetworkAnchorSummary
- Items
[]Get
Multicloud Network Anchors Network Anchor Collection Item - List of NetworkAnchorSummary
- items
List<Get
Multicloud Network Anchors Network Anchor Collection Item> - List of NetworkAnchorSummary
- items
Get
Multicloud Network Anchors Network Anchor Collection Item[] - List of NetworkAnchorSummary
- items
Sequence[Get
Multicloud Network Anchors Network Anchor Collection Item] - List of NetworkAnchorSummary
- items List<Property Map>
- List of NetworkAnchorSummary
GetMulticloudNetworkAnchorsNetworkAnchorCollectionItem
- Cluster
Placement stringGroup Id - The CPG ID in which Network Anchor will be created.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- 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_idoridmust be specified.- Lifecycle
Details 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.
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- 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 NetworkAnchor was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Vcn
Id string - Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
- Cluster
Placement stringGroup Id - The CPG ID in which Network Anchor will be created.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return only resources that match the given display name exactly.
- 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_idoridmust be specified.- Lifecycle
Details 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.
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- 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 NetworkAnchor was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Vcn
Id string - Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
- cluster
Placement StringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- 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_idoridmust be specified.- lifecycle
Details 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.
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- resource
Anchor StringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- 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 NetworkAnchor was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - vcn
Id String - Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
- cluster
Placement stringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - A filter to return only resources that match the given display name exactly.
- {[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_idoridmust be specified.- lifecycle
Details 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.
- network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- {[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 NetworkAnchor was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - vcn
Id string - Oracle Cloud Infrastructure VCN OCID. CSP can not set this property.
- cluster_
placement_ strgroup_ id - The CPG ID in which Network Anchor will be created.
- compartment_
id str - The OCID of the compartment in which to list resources.
- 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.
- 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_idoridmust 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_ strlifecycle_ state - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- resource_
anchor_ strid - Oracle Cloud Infrastructure resource anchor Id (OCID).
- 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.
- cluster
Placement StringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return only resources that match the given display name exactly.
- 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_idoridmust be specified.- lifecycle
Details 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.
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- resource
Anchor StringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- 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 NetworkAnchor was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the NetworkAnchor was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - vcn
Id 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
ociTerraform Provider.
