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({
compartmentId: compartmentId,
subscriptionId: subscriptionId,
subscriptionServiceName: subscriptionServiceName,
networkAnchorLifecycleState: networkAnchorLifecycleState,
displayName: displayName,
externalLocation: externalLocation,
networkAnchorOciSubnetId: networkAnchorOciSubnetId,
compartmentIdInSubtree: compartmentIdInSubtree,
networkAnchorOciVcnId: networkAnchorOciVcnId,
id: id,
shouldFetchVcnName: shouldFetchVcnName,
});
import pulumi
import pulumi_oci as oci
test_network_anchors = oci.oci.get_multicloud_network_anchors(compartment_id=compartment_id,
subscription_id=subscription_id,
subscription_service_name=subscription_service_name,
network_anchor_lifecycle_state=network_anchor_lifecycle_state,
display_name=display_name,
external_location=external_location,
network_anchor_oci_subnet_id=network_anchor_oci_subnet_id,
compartment_id_in_subtree=compartment_id_in_subtree,
network_anchor_oci_vcn_id=network_anchor_oci_vcn_id,
id=id,
should_fetch_vcn_name=should_fetch_vcn_name)
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{
CompartmentId: pulumi.StringRef(compartmentId),
SubscriptionId: pulumi.StringRef(subscriptionId),
SubscriptionServiceName: pulumi.StringRef(subscriptionServiceName),
NetworkAnchorLifecycleState: pulumi.StringRef(networkAnchorLifecycleState),
DisplayName: pulumi.StringRef(displayName),
ExternalLocation: pulumi.StringRef(externalLocation),
NetworkAnchorOciSubnetId: pulumi.StringRef(networkAnchorOciSubnetId),
CompartmentIdInSubtree: pulumi.BoolRef(compartmentIdInSubtree),
NetworkAnchorOciVcnId: pulumi.StringRef(networkAnchorOciVcnId),
Id: pulumi.StringRef(id),
ShouldFetchVcnName: pulumi.BoolRef(shouldFetchVcnName),
}, 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()
{
CompartmentId = compartmentId,
SubscriptionId = subscriptionId,
SubscriptionServiceName = subscriptionServiceName,
NetworkAnchorLifecycleState = networkAnchorLifecycleState,
DisplayName = displayName,
ExternalLocation = externalLocation,
NetworkAnchorOciSubnetId = networkAnchorOciSubnetId,
CompartmentIdInSubtree = compartmentIdInSubtree,
NetworkAnchorOciVcnId = networkAnchorOciVcnId,
Id = id,
ShouldFetchVcnName = shouldFetchVcnName,
});
});
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()
.compartmentId(compartmentId)
.subscriptionId(subscriptionId)
.subscriptionServiceName(subscriptionServiceName)
.networkAnchorLifecycleState(networkAnchorLifecycleState)
.displayName(displayName)
.externalLocation(externalLocation)
.networkAnchorOciSubnetId(networkAnchorOciSubnetId)
.compartmentIdInSubtree(compartmentIdInSubtree)
.networkAnchorOciVcnId(networkAnchorOciVcnId)
.id(id)
.shouldFetchVcnName(shouldFetchVcnName)
.build());
}
}
variables:
testNetworkAnchors:
fn::invoke:
function: oci:oci:getMulticloudNetworkAnchors
arguments:
compartmentId: ${compartmentId}
subscriptionId: ${subscriptionId}
subscriptionServiceName: ${subscriptionServiceName}
networkAnchorLifecycleState: ${networkAnchorLifecycleState}
displayName: ${displayName}
externalLocation: ${externalLocation}
networkAnchorOciSubnetId: ${networkAnchorOciSubnetId}
compartmentIdInSubtree: ${compartmentIdInSubtree}
networkAnchorOciVcnId: ${networkAnchorOciVcnId}
id: ${id}
shouldFetchVcnName: ${shouldFetchVcnName}
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,
compartment_id_in_subtree: Optional[bool] = 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,
should_fetch_vcn_name: Optional[bool] = 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,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = 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,
should_fetch_vcn_name: Optional[pulumi.Input[bool]] = 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:
- Compartment
Id string - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- Compartment
Id boolIn Subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- External
Location string - The Cloud Service Provider region.
- Id string
- The OCID of the NetworkAnchor.
- 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.
- Should
Fetch boolVcn Name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The subscription service name of the Cloud Service Provider.
- Compartment
Id string - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- Compartment
Id boolIn Subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- External
Location string - The Cloud Service Provider region.
- Id string
- The OCID of the NetworkAnchor.
- 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.
- Should
Fetch boolVcn Name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The subscription service name of the Cloud Service Provider.
- compartment
Id String - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- compartment
Id BooleanIn Subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- display
Name String - A filter to return only resources that match the given display name exactly.
- external
Location String - The Cloud Service Provider region.
- id String
- The OCID of the NetworkAnchor.
- 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.
- should
Fetch BooleanVcn Name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The subscription service name of the Cloud Service Provider.
- compartment
Id string - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- compartment
Id booleanIn Subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- display
Name string - A filter to return only resources that match the given display name exactly.
- external
Location string - The Cloud Service Provider region.
- id string
- The OCID of the NetworkAnchor.
- 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.
- should
Fetch booleanVcn Name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service stringName - The subscription service name of the Cloud Service Provider.
- compartment_
id str - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- compartment_
id_ boolin_ subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- display_
name str - A filter to return only resources that match the given display name exactly.
- external_
location str - The Cloud Service Provider region.
- id str
- The OCID of the NetworkAnchor.
- 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.
- should_
fetch_ boolvcn_ name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- subscription_
id str - The OCID of the Multicloud subscription in which to list resources.
- subscription_
service_ strname - The subscription service name of the Cloud Service Provider.
- compartment
Id String - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- compartment
Id BooleanIn Subtree - If set to true, a list operation will return NetworkAnchors from all child compartments in the provided compartmentId parameter.
- display
Name String - A filter to return only resources that match the given display name exactly.
- external
Location String - The Cloud Service Provider region.
- id String
- The OCID of the NetworkAnchor.
- 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.
- should
Fetch BooleanVcn Name Whether to fetch and include the vcn display name, which may introduce additional latency.
Note: one of the arguments
compartment_idoridmust be specified.- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The subscription service name of the Cloud Service Provider.
getMulticloudNetworkAnchors Result
The following output properties are available:
- Network
Anchor List<GetCollections Multicloud Network Anchors Network Anchor Collection> - The list of NetworkAnchor.
- Compartment
Id string - The OCID of the compartment.
- Compartment
Id boolIn Subtree - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- External
Location string - 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 - Should
Fetch boolVcn Name - Subscription
Id string - Subscription
Service stringName
- Network
Anchor []GetCollections Multicloud Network Anchors Network Anchor Collection - The list of NetworkAnchor.
- Compartment
Id string - The OCID of the compartment.
- Compartment
Id boolIn Subtree - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- External
Location string - 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 - Should
Fetch boolVcn Name - Subscription
Id string - Subscription
Service stringName
- network
Anchor List<GetCollections Multicloud Network Anchors Network Anchor Collection> - The list of NetworkAnchor.
- compartment
Id String - The OCID of the compartment.
- compartment
Id BooleanIn Subtree - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- external
Location String - 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 - should
Fetch BooleanVcn Name - subscription
Id String - subscription
Service StringName
- network
Anchor GetCollections Multicloud Network Anchors Network Anchor Collection[] - The list of NetworkAnchor.
- compartment
Id string - The OCID of the compartment.
- compartment
Id booleanIn Subtree - display
Name string - A user-friendly name. Does not have to be unique, and it's changeable.
- external
Location string - 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 - should
Fetch booleanVcn Name - subscription
Id string - subscription
Service stringName
- network_
anchor_ Sequence[Getcollections Multicloud Network Anchors Network Anchor Collection] - The list of NetworkAnchor.
- compartment_
id str - The OCID of the compartment.
- compartment_
id_ boolin_ subtree - display_
name str - A user-friendly name. Does not have to be unique, and it's changeable.
- external_
location str - 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 - should_
fetch_ boolvcn_ name - subscription_
id str - subscription_
service_ strname
- network
Anchor List<Property Map>Collections - The list of NetworkAnchor.
- compartment
Id String - The OCID of the compartment.
- compartment
Id BooleanIn Subtree - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable.
- external
Location String - 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 - should
Fetch BooleanVcn Name - subscription
Id String - subscription
Service StringName
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 Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- Csp
Additional Dictionary<string, string>Properties - CSP Specific Additional Properties, AzureSubnetId for Azure
- Csp
Network stringAnchor Id - Network Anchor Id in the Cloud Service Provider.
- 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.
- 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 stringConnection Status - Defines status of the Network Anchor.
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Network
Anchor stringUri - CSP network anchor Uri
- Resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- Subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- 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.
- Vcn
Name string - Name of the VCN associated to the Network Anchor.
- Cluster
Placement stringGroup Id - The CPG ID in which Network Anchor will be created.
- Compartment
Id string - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- Csp
Additional map[string]stringProperties - CSP Specific Additional Properties, AzureSubnetId for Azure
- Csp
Network stringAnchor Id - Network Anchor Id in the Cloud Service Provider.
- 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.
- 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 stringConnection Status - Defines status of the Network Anchor.
- Network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Network
Anchor stringUri - CSP network anchor Uri
- Resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- Subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- 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.
- Vcn
Name string - Name of the VCN associated to the Network Anchor.
- cluster
Placement StringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id String - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- csp
Additional Map<String,String>Properties - CSP Specific Additional Properties, AzureSubnetId for Azure
- csp
Network StringAnchor Id - Network Anchor Id in the Cloud Service Provider.
- 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.
- 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 StringConnection Status - Defines status of the Network Anchor.
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor StringUri - CSP network anchor Uri
- resource
Anchor StringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- subscription
Type String - Oracle Cloud Infrastructure Subscription Type.
- 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.
- vcn
Name String - Name of the VCN associated to the Network Anchor.
- cluster
Placement stringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id string - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- csp
Additional {[key: string]: string}Properties - CSP Specific Additional Properties, AzureSubnetId for Azure
- csp
Network stringAnchor Id - Network Anchor Id in the Cloud Service Provider.
- {[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.
- 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 stringConnection Status - Defines status of the Network Anchor.
- network
Anchor stringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor stringUri - CSP network anchor Uri
- resource
Anchor stringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- {[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.
- vcn
Name string - Name of the VCN associated to the Network Anchor.
- cluster_
placement_ strgroup_ id - The CPG ID in which Network Anchor will be created.
- compartment_
id str - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- csp_
additional_ Mapping[str, str]properties - CSP Specific Additional Properties, AzureSubnetId for Azure
- csp_
network_ stranchor_ id - Network Anchor Id in the Cloud Service Provider.
- 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.
- 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_ strconnection_ status - Defines status of the Network Anchor.
- network_
anchor_ strlifecycle_ state - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network_
anchor_ struri - CSP network anchor Uri
- resource_
anchor_ strid - Oracle Cloud Infrastructure resource anchor Id (OCID).
- subscription_
type str - Oracle Cloud Infrastructure Subscription Type.
- 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.
- vcn_
name str - Name of the VCN associated to the Network Anchor.
- cluster
Placement StringGroup Id - The CPG ID in which Network Anchor will be created.
- compartment
Id String - The OCID of the Multicloud base compartment or sub-compartment in which to list resources. A Multicloud base compartment is an Oracle Cloud Infrastructure compartment that maps to a subscription in a Cloud Service Provider (such as Azure, AWS, or Google Cloud).
- csp
Additional Map<String>Properties - CSP Specific Additional Properties, AzureSubnetId for Azure
- csp
Network StringAnchor Id - Network Anchor Id in the Cloud Service Provider.
- 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.
- 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 StringConnection Status - Defines status of the Network Anchor.
- network
Anchor StringLifecycle State - A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- network
Anchor StringUri - CSP network anchor Uri
- resource
Anchor StringId - Oracle Cloud Infrastructure resource anchor Id (OCID).
- subscription
Type String - Oracle Cloud Infrastructure Subscription Type.
- 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.
- vcn
Name String - Name of the VCN associated to the Network Anchor.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
