1. Packages
  2. Packages
  3. Opentelekomcloud Provider
  4. API Docs
  5. getCcCentralNetworkPoliciesV3
Viewing docs for opentelekomcloud 1.37.3
published on Friday, Jul 31, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.37.3
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 dictionary
    data "opentelekomcloud_get_cc_central_network_policies_v3" "name" {
        # arguments
    }

    The following arguments are supported:

    CentralNetworkId string
    The ID of the central network to which the policies belong.
    Id string
    The policy ID.
    IsApplied string
    Whether the policy is applied. The value can be true or false.
    PolicyId 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.
    CentralNetworkId string
    The ID of the central network to which the policies belong.
    Id string
    The policy ID.
    IsApplied string
    Whether the policy is applied. The value can be true or false.
    PolicyId 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_id string
    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.
    centralNetworkId String
    The ID of the central network to which the policies belong.
    id String
    The policy ID.
    isApplied String
    Whether the policy is applied. The value can be true or false.
    policyId 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.
    centralNetworkId string
    The ID of the central network to which the policies belong.
    id string
    The policy ID.
    isApplied string
    Whether the policy is applied. The value can be true or false.
    policyId 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_id str
    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.
    centralNetworkId String
    The ID of the central network to which the policies belong.
    id String
    The policy ID.
    isApplied String
    Whether the policy is applied. The value can be true or false.
    policyId 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:

    CentralNetworkId string
    The ID of the central network that the policy belongs to.
    Id string
    The policy ID.
    Policies List<GetCcCentralNetworkPoliciesV3Policy>
    The list of policies that match the filter parameters. The policies structure is documented below.
    Region string
    IsApplied string
    Whether the policy is applied.
    PolicyId string
    State string
    The status of the policy.
    Versions List<double>
    The policy version.
    CentralNetworkId string
    The ID of the central network that the policy belongs to.
    Id string
    The policy ID.
    Policies []GetCcCentralNetworkPoliciesV3Policy
    The list of policies that match the filter parameters. The policies structure is documented below.
    Region string
    IsApplied string
    Whether the policy is applied.
    PolicyId string
    State string
    The status of the policy.
    Versions []float64
    The policy version.
    central_network_id string
    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.
    centralNetworkId String
    The ID of the central network that the policy belongs to.
    id String
    The policy ID.
    policies List<GetCcCentralNetworkPoliciesV3Policy>
    The list of policies that match the filter parameters. The policies structure is documented below.
    region String
    isApplied String
    Whether the policy is applied.
    policyId String
    state String
    The status of the policy.
    versions List<Double>
    The policy version.
    centralNetworkId string
    The ID of the central network that the policy belongs to.
    id string
    The policy ID.
    policies GetCcCentralNetworkPoliciesV3Policy[]
    The list of policies that match the filter parameters. The policies structure is documented below.
    region string
    isApplied string
    Whether the policy is applied.
    policyId string
    state string
    The status of the policy.
    versions number[]
    The policy version.
    central_network_id str
    The ID of the central network that the policy belongs to.
    id str
    The policy ID.
    policies Sequence[GetCcCentralNetworkPoliciesV3Policy]
    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.
    centralNetworkId String
    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
    isApplied String
    Whether the policy is applied.
    policyId String
    state String
    The status of the policy.
    versions List<Number>
    The policy version.

    Supporting Types

    GetCcCentralNetworkPoliciesV3Policy

    CentralNetworkId string
    The ID of the central network to which the policies belong.
    CreatedAt string
    The creation time of the policy.
    DocumentTemplateVersion string
    The policy document template version.
    Documents List<GetCcCentralNetworkPoliciesV3PolicyDocument>
    The policy document. The document structure is documented below.
    DomainId string
    The ID of the account that the policy belongs to.
    Id string
    The policy ID.
    IsApplied 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.
    CentralNetworkId string
    The ID of the central network to which the policies belong.
    CreatedAt string
    The creation time of the policy.
    DocumentTemplateVersion string
    The policy document template version.
    Documents []GetCcCentralNetworkPoliciesV3PolicyDocument
    The policy document. The document structure is documented below.
    DomainId string
    The ID of the account that the policy belongs to.
    Id string
    The policy ID.
    IsApplied 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_id string
    The ID of the central network to which the policies belong.
    created_at string
    The creation time of the policy.
    document_template_version string
    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.
    centralNetworkId String
    The ID of the central network to which the policies belong.
    createdAt String
    The creation time of the policy.
    documentTemplateVersion String
    The policy document template version.
    documents List<GetCcCentralNetworkPoliciesV3PolicyDocument>
    The policy document. The document structure is documented below.
    domainId String
    The ID of the account that the policy belongs to.
    id String
    The policy ID.
    isApplied 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.
    centralNetworkId string
    The ID of the central network to which the policies belong.
    createdAt string
    The creation time of the policy.
    documentTemplateVersion string
    The policy document template version.
    documents GetCcCentralNetworkPoliciesV3PolicyDocument[]
    The policy document. The document structure is documented below.
    domainId string
    The ID of the account that the policy belongs to.
    id string
    The policy ID.
    isApplied 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_id str
    The ID of the central network to which the policies belong.
    created_at str
    The creation time of the policy.
    document_template_version str
    The policy document template version.
    documents Sequence[GetCcCentralNetworkPoliciesV3PolicyDocument]
    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.
    centralNetworkId String
    The ID of the central network to which the policies belong.
    createdAt String
    The creation time of the policy.
    documentTemplateVersion String
    The policy document template version.
    documents List<Property Map>
    The policy document. The document structure is documented below.
    domainId String
    The ID of the account that the policy belongs to.
    id String
    The policy ID.
    isApplied 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

    DefaultPlane string
    The name of the default central network plane.
    ErInstances List<GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance>
    The list of enterprise routers on the central network. The er_instances structure is documented below.
    Planes List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlane>
    The list of central network planes. The planes structure is documented below.
    DefaultPlane string
    The name of the default central network plane.
    ErInstances []GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance
    The list of enterprise routers on the central network. The er_instances structure is documented below.
    Planes []GetCcCentralNetworkPoliciesV3PolicyDocumentPlane
    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.
    defaultPlane String
    The name of the default central network plane.
    erInstances List<GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance>
    The list of enterprise routers on the central network. The er_instances structure is documented below.
    planes List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlane>
    The list of central network planes. The planes structure is documented below.
    defaultPlane string
    The name of the default central network plane.
    erInstances GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance[]
    The list of enterprise routers on the central network. The er_instances structure is documented below.
    planes GetCcCentralNetworkPoliciesV3PolicyDocumentPlane[]
    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[GetCcCentralNetworkPoliciesV3PolicyDocumentErInstance]
    The list of enterprise routers on the central network. The er_instances structure is documented below.
    planes Sequence[GetCcCentralNetworkPoliciesV3PolicyDocumentPlane]
    The list of central network planes. The planes structure is documented below.
    defaultPlane String
    The name of the default central network plane.
    erInstances 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

    EnterpriseRouterId string
    The enterprise router ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    EnterpriseRouterId string
    The enterprise router ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    enterprise_router_id string
    The enterprise router ID.
    project_id string
    The project ID.
    region_id string
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    projectId String
    The project ID.
    regionId String
    The region ID.
    enterpriseRouterId string
    The enterprise router ID.
    projectId string
    The project ID.
    regionId string
    The region ID.
    enterprise_router_id str
    The enterprise router ID.
    project_id str
    The project ID.
    region_id str
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    projectId String
    The project ID.
    regionId String
    The region ID.

    GetCcCentralNetworkPoliciesV3PolicyDocumentPlane

    AssociateErTables List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable>
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    ExcludeErConnections List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection>
    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.
    AssociateErTables []GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    ExcludeErConnections []GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection
    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_tables list(object)
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    exclude_er_connections list(object)
    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.
    associateErTables List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable>
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    excludeErConnections List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection>
    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.
    associateErTables GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable[]
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    excludeErConnections GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection[]
    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_tables Sequence[GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneAssociateErTable]
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    exclude_er_connections Sequence[GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection]
    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.
    associateErTables List<Property Map>
    The enterprise router route tables associated with the central network plane. The associate_er_tables structure is documented below.
    excludeErConnections List<Property Map>
    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

    EnterpriseRouterId string
    The enterprise router ID.
    EnterpriseRouterTableId string
    The enterprise router route table ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    EnterpriseRouterId string
    The enterprise router ID.
    EnterpriseRouterTableId string
    The enterprise router route table ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    enterprise_router_id string
    The enterprise router ID.
    enterprise_router_table_id string
    The enterprise router route table ID.
    project_id string
    The project ID.
    region_id string
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    enterpriseRouterTableId String
    The enterprise router route table ID.
    projectId String
    The project ID.
    regionId String
    The region ID.
    enterpriseRouterId string
    The enterprise router ID.
    enterpriseRouterTableId string
    The enterprise router route table ID.
    projectId string
    The project ID.
    regionId string
    The region ID.
    enterprise_router_id str
    The enterprise router ID.
    enterprise_router_table_id str
    The enterprise router route table ID.
    project_id str
    The project ID.
    region_id str
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    enterpriseRouterTableId String
    The enterprise router route table ID.
    projectId String
    The project ID.
    regionId String
    The region ID.

    GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnection

    ExcludeErInstances List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance>
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    ExcludeErInstances []GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    exclude_er_instances list(object)
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    excludeErInstances List<GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance>
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    excludeErInstances GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance[]
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    exclude_er_instances Sequence[GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance]
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.
    excludeErInstances List<Property Map>
    The excluded enterprise router instances. The exclude_er_instances structure is the same as the er_instances block above.

    GetCcCentralNetworkPoliciesV3PolicyDocumentPlaneExcludeErConnectionExcludeErInstance

    EnterpriseRouterId string
    The enterprise router ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    EnterpriseRouterId string
    The enterprise router ID.
    ProjectId string
    The project ID.
    RegionId string
    The region ID.
    enterprise_router_id string
    The enterprise router ID.
    project_id string
    The project ID.
    region_id string
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    projectId String
    The project ID.
    regionId String
    The region ID.
    enterpriseRouterId string
    The enterprise router ID.
    projectId string
    The project ID.
    regionId string
    The region ID.
    enterprise_router_id str
    The enterprise router ID.
    project_id str
    The project ID.
    region_id str
    The region ID.
    enterpriseRouterId String
    The enterprise router ID.
    projectId String
    The project ID.
    regionId String
    The region ID.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    Viewing docs for opentelekomcloud 1.37.3
    published on Friday, Jul 31, 2026 by opentelekomcloud

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial