published on Friday, Jul 31, 2026 by opentelekomcloud
published on Friday, Jul 31, 2026 by opentelekomcloud
Up-to-date reference of API arguments for Cloud Connect central network policies you can get at documentation portal
Use this data source to query the policies of a Cloud Connect (CC) central network within OpenTelekomCloud.
The central network APIs are account-level (domain-scoped). Make sure the credentials used by the provider have permission to query Cloud Connect resources.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const centralNetworkId = config.requireObject<any>("centralNetworkId");
const test = opentelekomcloud.getCcCentralNetworkPoliciesV3({
centralNetworkId: centralNetworkId,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
central_network_id = config.require_object("centralNetworkId")
test = opentelekomcloud.get_cc_central_network_policies_v3(central_network_id=central_network_id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
centralNetworkId := cfg.RequireObject("centralNetworkId")
_, err := opentelekomcloud.GetCcCentralNetworkPoliciesV3(ctx, &opentelekomcloud.GetCcCentralNetworkPoliciesV3Args{
CentralNetworkId: centralNetworkId,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var centralNetworkId = config.RequireObject<dynamic>("centralNetworkId");
var test = Opentelekomcloud.GetCcCentralNetworkPoliciesV3.Invoke(new()
{
CentralNetworkId = centralNetworkId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetCcCentralNetworkPoliciesV3Args;
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 config = ctx.config();
final var centralNetworkId = config.get("centralNetworkId");
final var test = OpentelekomcloudFunctions.getCcCentralNetworkPoliciesV3(GetCcCentralNetworkPoliciesV3Args.builder()
.centralNetworkId(centralNetworkId)
.build());
}
}
configuration:
centralNetworkId:
type: dynamic
variables:
test:
fn::invoke:
function: opentelekomcloud:getCcCentralNetworkPoliciesV3
arguments:
centralNetworkId: ${centralNetworkId}
Example coming soon!
Using getCcCentralNetworkPoliciesV3
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 getCcCentralNetworkPoliciesV3(args: GetCcCentralNetworkPoliciesV3Args, opts?: InvokeOptions): Promise<GetCcCentralNetworkPoliciesV3Result>
function getCcCentralNetworkPoliciesV3Output(args: GetCcCentralNetworkPoliciesV3OutputArgs, opts?: InvokeOptions): Output<GetCcCentralNetworkPoliciesV3Result>def get_cc_central_network_policies_v3(central_network_id: Optional[str] = None,
id: Optional[str] = None,
is_applied: Optional[str] = None,
policy_id: Optional[str] = None,
region: Optional[str] = None,
state: Optional[str] = None,
versions: Optional[Sequence[float]] = None,
opts: Optional[InvokeOptions] = None) -> GetCcCentralNetworkPoliciesV3Result
def get_cc_central_network_policies_v3_output(central_network_id: pulumi.Input[Optional[str]] = None,
id: pulumi.Input[Optional[str]] = None,
is_applied: pulumi.Input[Optional[str]] = None,
policy_id: pulumi.Input[Optional[str]] = None,
region: pulumi.Input[Optional[str]] = None,
state: pulumi.Input[Optional[str]] = None,
versions: pulumi.Input[Optional[Sequence[pulumi.Input[float]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCcCentralNetworkPoliciesV3Result]func GetCcCentralNetworkPoliciesV3(ctx *Context, args *GetCcCentralNetworkPoliciesV3Args, opts ...InvokeOption) (*GetCcCentralNetworkPoliciesV3Result, error)
func GetCcCentralNetworkPoliciesV3Output(ctx *Context, args *GetCcCentralNetworkPoliciesV3OutputArgs, opts ...InvokeOption) GetCcCentralNetworkPoliciesV3ResultOutput> Note: This function is named GetCcCentralNetworkPoliciesV3 in the Go SDK.
public static class GetCcCentralNetworkPoliciesV3
{
public static Task<GetCcCentralNetworkPoliciesV3Result> InvokeAsync(GetCcCentralNetworkPoliciesV3Args args, InvokeOptions? opts = null)
public static Output<GetCcCentralNetworkPoliciesV3Result> Invoke(GetCcCentralNetworkPoliciesV3InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCcCentralNetworkPoliciesV3Result> getCcCentralNetworkPoliciesV3(GetCcCentralNetworkPoliciesV3Args args, InvokeOptions options)
public static Output<GetCcCentralNetworkPoliciesV3Result> getCcCentralNetworkPoliciesV3(GetCcCentralNetworkPoliciesV3Args args, InvokeOptions options)
fn::invoke:
function: opentelekomcloud:index/getCcCentralNetworkPoliciesV3:getCcCentralNetworkPoliciesV3
arguments:
# arguments dictionarydata "opentelekomcloud_get_cc_central_network_policies_v3" "name" {
# arguments
}The following arguments are supported:
- Central
Network stringId - The ID of the central network to which the policies belong.
- Id string
- The policy ID.
- Is
Applied string - Whether the policy is applied. The value can be true or false.
- Policy
Id string - The ID of the policy used to query.
- Region string
- The region in which to query the data source. If omitted, the provider-level region will be used.
- State string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- Versions List<double>
- The policy versions used to query.
- Central
Network stringId - The ID of the central network to which the policies belong.
- Id string
- The policy ID.
- Is
Applied string - Whether the policy is applied. The value can be true or false.
- Policy
Id string - The ID of the policy used to query.
- Region string
- The region in which to query the data source. If omitted, the provider-level region will be used.
- State string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- Versions []float64
- The policy versions used to query.
- central_
network_ stringid - The ID of the central network to which the policies belong.
- id string
- The policy ID.
- is_
applied string - Whether the policy is applied. The value can be true or false.
- policy_
id string - The ID of the policy used to query.
- region string
- The region in which to query the data source. If omitted, the provider-level region will be used.
- state string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- versions list(number)
- The policy versions used to query.
- central
Network StringId - The ID of the central network to which the policies belong.
- id String
- The policy ID.
- is
Applied String - Whether the policy is applied. The value can be true or false.
- policy
Id String - The ID of the policy used to query.
- region String
- The region in which to query the data source. If omitted, the provider-level region will be used.
- state String
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- versions List<Double>
- The policy versions used to query.
- central
Network stringId - The ID of the central network to which the policies belong.
- id string
- The policy ID.
- is
Applied string - Whether the policy is applied. The value can be true or false.
- policy
Id string - The ID of the policy used to query.
- region string
- The region in which to query the data source. If omitted, the provider-level region will be used.
- state string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- versions number[]
- The policy versions used to query.
- central_
network_ strid - The ID of the central network to which the policies belong.
- id str
- The policy ID.
- is_
applied str - Whether the policy is applied. The value can be true or false.
- policy_
id str - The ID of the policy used to query.
- region str
- The region in which to query the data source. If omitted, the provider-level region will be used.
- state str
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- versions Sequence[float]
- The policy versions used to query.
- central
Network StringId - The ID of the central network to which the policies belong.
- id String
- The policy ID.
- is
Applied String - Whether the policy is applied. The value can be true or false.
- policy
Id String - The ID of the policy used to query.
- region String
- The region in which to query the data source. If omitted, the provider-level region will be used.
- state String
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- versions List<Number>
- The policy versions used to query.
getCcCentralNetworkPoliciesV3 Result
The following output properties are available:
- Central
Network stringId - The ID of the central network that the policy belongs to.
- Id string
- The policy ID.
- Policies
List<Get
Cc Central Network Policies V3Policy> - The list of policies that match the filter parameters. The policies structure is documented below.
- Region string
- Is
Applied string - Whether the policy is applied.
- Policy
Id string - State string
- The status of the policy.
- Versions List<double>
- The policy version.
- Central
Network stringId - The ID of the central network that the policy belongs to.
- Id string
- The policy ID.
- Policies
[]Get
Cc Central Network Policies V3Policy - The list of policies that match the filter parameters. The policies structure is documented below.
- Region string
- Is
Applied string - Whether the policy is applied.
- Policy
Id string - State string
- The status of the policy.
- Versions []float64
- The policy version.
- central_
network_ stringid - The ID of the central network that the policy belongs to.
- id string
- The policy ID.
- policies list(object)
- The list of policies that match the filter parameters. The policies structure is documented below.
- region string
- is_
applied string - Whether the policy is applied.
- policy_
id string - state string
- The status of the policy.
- versions list(number)
- The policy version.
- central
Network StringId - The ID of the central network that the policy belongs to.
- id String
- The policy ID.
- policies
List<Get
Cc Central Network Policies V3Policy> - The list of policies that match the filter parameters. The policies structure is documented below.
- region String
- is
Applied String - Whether the policy is applied.
- policy
Id String - state String
- The status of the policy.
- versions List<Double>
- The policy version.
- central
Network stringId - The ID of the central network that the policy belongs to.
- id string
- The policy ID.
- policies
Get
Cc Central Network Policies V3Policy[] - The list of policies that match the filter parameters. The policies structure is documented below.
- region string
- is
Applied string - Whether the policy is applied.
- policy
Id string - state string
- The status of the policy.
- versions number[]
- The policy version.
- central_
network_ strid - The ID of the central network that the policy belongs to.
- id str
- The policy ID.
- policies
Sequence[Get
Cc Central Network Policies V3Policy] - The list of policies that match the filter parameters. The policies structure is documented below.
- region str
- is_
applied str - Whether the policy is applied.
- policy_
id str - state str
- The status of the policy.
- versions Sequence[float]
- The policy version.
- central
Network StringId - The ID of the central network that the policy belongs to.
- id String
- The policy ID.
- policies List<Property Map>
- The list of policies that match the filter parameters. The policies structure is documented below.
- region String
- is
Applied String - Whether the policy is applied.
- policy
Id String - state String
- The status of the policy.
- versions List<Number>
- The policy version.
Supporting Types
GetCcCentralNetworkPoliciesV3Policy
- Central
Network stringId - The ID of the central network to which the policies belong.
- Created
At string - The creation time of the policy.
- Document
Template stringVersion - The policy document template version.
- Documents
List<Get
Cc Central Network Policies V3Policy Document> - The policy document. The document structure is documented below.
- Domain
Id string - The ID of the account that the policy belongs to.
- Id string
- The policy ID.
- Is
Applied bool - Whether the policy is applied. The value can be true or false.
- State string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- Version double
- The policy versions used to query.
- Central
Network stringId - The ID of the central network to which the policies belong.
- Created
At string - The creation time of the policy.
- Document
Template stringVersion - The policy document template version.
- Documents
[]Get
Cc Central Network Policies V3Policy Document - The policy document. The document structure is documented below.
- Domain
Id string - The ID of the account that the policy belongs to.
- Id string
- The policy ID.
- Is
Applied bool - Whether the policy is applied. The value can be true or false.
- State string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- Version float64
- The policy versions used to query.
- central_
network_ stringid - The ID of the central network to which the policies belong.
- created_
at string - The creation time of the policy.
- document_
template_ stringversion - The policy document template version.
- documents list(object)
- The policy document. The document structure is documented below.
- domain_
id string - The ID of the account that the policy belongs to.
- id string
- The policy ID.
- is_
applied bool - Whether the policy is applied. The value can be true or false.
- state string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- version number
- The policy versions used to query.
- central
Network StringId - The ID of the central network to which the policies belong.
- created
At String - The creation time of the policy.
- document
Template StringVersion - The policy document template version.
- documents
List<Get
Cc Central Network Policies V3Policy Document> - The policy document. The document structure is documented below.
- domain
Id String - The ID of the account that the policy belongs to.
- id String
- The policy ID.
- is
Applied Boolean - Whether the policy is applied. The value can be true or false.
- state String
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- version Double
- The policy versions used to query.
- central
Network stringId - The ID of the central network to which the policies belong.
- created
At string - The creation time of the policy.
- document
Template stringVersion - The policy document template version.
- documents
Get
Cc Central Network Policies V3Policy Document[] - The policy document. The document structure is documented below.
- domain
Id string - The ID of the account that the policy belongs to.
- id string
- The policy ID.
- is
Applied boolean - Whether the policy is applied. The value can be true or false.
- state string
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- version number
- The policy versions used to query.
- central_
network_ strid - The ID of the central network to which the policies belong.
- created_
at str - The creation time of the policy.
- document_
template_ strversion - The policy document template version.
- documents
Sequence[Get
Cc Central Network Policies V3Policy Document] - The policy document. The document structure is documented below.
- domain_
id str - The ID of the account that the policy belongs to.
- id str
- The policy ID.
- is_
applied bool - Whether the policy is applied. The value can be true or false.
- state str
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- version float
- The policy versions used to query.
- central
Network StringId - The ID of the central network to which the policies belong.
- created
At String - The creation time of the policy.
- document
Template StringVersion - The policy document template version.
- documents List<Property Map>
- The policy document. The document structure is documented below.
- domain
Id String - The ID of the account that the policy belongs to.
- id String
- The policy ID.
- is
Applied Boolean - Whether the policy is applied. The value can be true or false.
- state String
- The status of the policy used to query. The value can be AVAILABLE, CANCELING, APPLYING, FAILED or DELETED.
- version Number
- The policy versions used to query.
GetCcCentralNetworkPoliciesV3PolicyDocument
- Default
Plane string - The name of the default central network plane.
- Er
Instances List<GetCc Central Network Policies V3Policy Document Er Instance> - The list of enterprise routers on the central network. The er_instances structure is documented below.
- Planes
List<Get
Cc Central Network Policies V3Policy Document Plane> - The list of central network planes. The planes structure is documented below.
- Default
Plane string - The name of the default central network plane.
- Er
Instances []GetCc Central Network Policies V3Policy Document Er Instance - The list of enterprise routers on the central network. The er_instances structure is documented below.
- Planes
[]Get
Cc Central Network Policies V3Policy Document Plane - The list of central network planes. The planes structure is documented below.
- default_
plane string - The name of the default central network plane.
- er_
instances list(object) - The list of enterprise routers on the central network. The er_instances structure is documented below.
- planes list(object)
- The list of central network planes. The planes structure is documented below.
- default
Plane String - The name of the default central network plane.
- er
Instances List<GetCc Central Network Policies V3Policy Document Er Instance> - The list of enterprise routers on the central network. The er_instances structure is documented below.
- planes
List<Get
Cc Central Network Policies V3Policy Document Plane> - The list of central network planes. The planes structure is documented below.
- default
Plane string - The name of the default central network plane.
- er
Instances GetCc Central Network Policies V3Policy Document Er Instance[] - The list of enterprise routers on the central network. The er_instances structure is documented below.
- planes
Get
Cc Central Network Policies V3Policy Document Plane[] - The list of central network planes. The planes structure is documented below.
- default_
plane str - The name of the default central network plane.
- er_
instances Sequence[GetCc Central Network Policies V3Policy Document Er Instance] - The list of enterprise routers on the central network. The er_instances structure is documented below.
- planes
Sequence[Get
Cc Central Network Policies V3Policy Document Plane] - The list of central network planes. The planes structure is documented below.
- default
Plane String - The name of the default central network plane.
- er
Instances List<Property Map> - The list of enterprise routers on the central network. The er_instances structure is documented below.
- planes List<Property Map>
- The list of central network planes. The planes structure is documented below.
GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance
- Enterprise
Router stringId - The enterprise router ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- Enterprise
Router stringId - The enterprise router ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- enterprise_
router_ stringid - The enterprise router ID.
- project_
id string - The project ID.
- region_
id string - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
- enterprise
Router stringId - The enterprise router ID.
- project
Id string - The project ID.
- region
Id string - The region ID.
- enterprise_
router_ strid - The enterprise router ID.
- project_
id str - The project ID.
- region_
id str - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
GetCcCentralNetworkPoliciesV3PolicyDocumentPlane
- Associate
Er List<GetTables Cc Central Network Policies V3Policy Document Plane Associate Er Table> - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- Exclude
Er List<GetConnections Cc Central Network Policies V3Policy Document Plane Exclude Er Connection> - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- Name string
- The name of the central network plane.
- Associate
Er []GetTables Cc Central Network Policies V3Policy Document Plane Associate Er Table - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- Exclude
Er []GetConnections Cc Central Network Policies V3Policy Document Plane Exclude Er Connection - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- Name string
- The name of the central network plane.
- associate_
er_ list(object)tables - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- exclude_
er_ list(object)connections - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- name string
- The name of the central network plane.
- associate
Er List<GetTables Cc Central Network Policies V3Policy Document Plane Associate Er Table> - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- exclude
Er List<GetConnections Cc Central Network Policies V3Policy Document Plane Exclude Er Connection> - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- name String
- The name of the central network plane.
- associate
Er GetTables Cc Central Network Policies V3Policy Document Plane Associate Er Table[] - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- exclude
Er GetConnections Cc Central Network Policies V3Policy Document Plane Exclude Er Connection[] - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- name string
- The name of the central network plane.
- associate_
er_ Sequence[Gettables Cc Central Network Policies V3Policy Document Plane Associate Er Table] - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- exclude_
er_ Sequence[Getconnections Cc Central Network Policies V3Policy Document Plane Exclude Er Connection] - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- name str
- The name of the central network plane.
- associate
Er List<Property Map>Tables - The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
- exclude
Er List<Property Map>Connections - The connections between enterprise routers excluded from the central network plane. The exclude_er_connections structure is documented below.
- name String
- The name of the central network plane.
GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable
- Enterprise
Router stringId - The enterprise router ID.
- Enterprise
Router stringTable Id - The enterprise router route table ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- Enterprise
Router stringId - The enterprise router ID.
- Enterprise
Router stringTable Id - The enterprise router route table ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- enterprise_
router_ stringid - The enterprise router ID.
- enterprise_
router_ stringtable_ id - The enterprise router route table ID.
- project_
id string - The project ID.
- region_
id string - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- enterprise
Router StringTable Id - The enterprise router route table ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
- enterprise
Router stringId - The enterprise router ID.
- enterprise
Router stringTable Id - The enterprise router route table ID.
- project
Id string - The project ID.
- region
Id string - The region ID.
- enterprise_
router_ strid - The enterprise router ID.
- enterprise_
router_ strtable_ id - The enterprise router route table ID.
- project_
id str - The project ID.
- region_
id str - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- enterprise
Router StringTable Id - The enterprise router route table ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection
- Exclude
Er List<GetInstances Cc Central Network Policies V3Policy Document Plane Exclude Er Connection Exclude Er Instance> - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- Exclude
Er []GetInstances Cc Central Network Policies V3Policy Document Plane Exclude Er Connection Exclude Er Instance - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- exclude_
er_ list(object)instances - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- exclude
Er List<GetInstances Cc Central Network Policies V3Policy Document Plane Exclude Er Connection Exclude Er Instance> - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- exclude
Er GetInstances Cc Central Network Policies V3Policy Document Plane Exclude Er Connection Exclude Er Instance[] - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- exclude_
er_ Sequence[Getinstances Cc Central Network Policies V3Policy Document Plane Exclude Er Connection Exclude Er Instance] - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
- exclude
Er List<Property Map>Instances - The excluded enterprise router instances.
The exclude_er_instances structure is the same as the
er_instancesblock above.
GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance
- Enterprise
Router stringId - The enterprise router ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- Enterprise
Router stringId - The enterprise router ID.
- Project
Id string - The project ID.
- Region
Id string - The region ID.
- enterprise_
router_ stringid - The enterprise router ID.
- project_
id string - The project ID.
- region_
id string - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
- enterprise
Router stringId - The enterprise router ID.
- project
Id string - The project ID.
- region
Id string - The region ID.
- enterprise_
router_ strid - The enterprise router ID.
- project_
id str - The project ID.
- region_
id str - The region ID.
- enterprise
Router StringId - The enterprise router ID.
- project
Id String - The project ID.
- region
Id String - The region ID.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloudTerraform Provider.
published on Friday, Jul 31, 2026 by opentelekomcloud