alicloud.cen.InterRegionTrafficQosPolicy
Explore with Pulumi AI
Provides a Cloud Enterprise Network (CEN) Inter Region Traffic Qos Policy resource.
For information about Cloud Enterprise Network (CEN) Inter Region Traffic Qos Policy and how to use it, see What is Inter Region Traffic Qos Policy.
NOTE: Available since v1.195.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = new alicloud.cen.Instance("default", {cenInstanceName: "tf-example"});
const defaultBandwidthPackage = new alicloud.cen.BandwidthPackage("default", {
bandwidth: 5,
geographicRegionAId: "China",
geographicRegionBId: "China",
});
const defaultBandwidthPackageAttachment = new alicloud.cen.BandwidthPackageAttachment("default", {
instanceId: _default.id,
bandwidthPackageId: defaultBandwidthPackage.id,
});
const hz = new alicloud.cen.TransitRouter("hz", {cenId: defaultBandwidthPackageAttachment.instanceId});
const bj = new alicloud.cen.TransitRouter("bj", {cenId: hz.cenId});
const defaultTransitRouterPeerAttachment = new alicloud.cen.TransitRouterPeerAttachment("default", {
cenId: _default.id,
transitRouterId: hz.transitRouterId,
peerTransitRouterRegionId: "cn-beijing",
peerTransitRouterId: bj.transitRouterId,
cenBandwidthPackageId: defaultBandwidthPackageAttachment.bandwidthPackageId,
bandwidth: 5,
});
const defaultInterRegionTrafficQosPolicy = new alicloud.cen.InterRegionTrafficQosPolicy("default", {
transitRouterId: hz.transitRouterId,
transitRouterAttachmentId: defaultTransitRouterPeerAttachment.transitRouterAttachmentId,
interRegionTrafficQosPolicyName: "tf-example-name",
interRegionTrafficQosPolicyDescription: "tf-example-description",
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.cen.Instance("default", cen_instance_name="tf-example")
default_bandwidth_package = alicloud.cen.BandwidthPackage("default",
bandwidth=5,
geographic_region_a_id="China",
geographic_region_b_id="China")
default_bandwidth_package_attachment = alicloud.cen.BandwidthPackageAttachment("default",
instance_id=default.id,
bandwidth_package_id=default_bandwidth_package.id)
hz = alicloud.cen.TransitRouter("hz", cen_id=default_bandwidth_package_attachment.instance_id)
bj = alicloud.cen.TransitRouter("bj", cen_id=hz.cen_id)
default_transit_router_peer_attachment = alicloud.cen.TransitRouterPeerAttachment("default",
cen_id=default.id,
transit_router_id=hz.transit_router_id,
peer_transit_router_region_id="cn-beijing",
peer_transit_router_id=bj.transit_router_id,
cen_bandwidth_package_id=default_bandwidth_package_attachment.bandwidth_package_id,
bandwidth=5)
default_inter_region_traffic_qos_policy = alicloud.cen.InterRegionTrafficQosPolicy("default",
transit_router_id=hz.transit_router_id,
transit_router_attachment_id=default_transit_router_peer_attachment.transit_router_attachment_id,
inter_region_traffic_qos_policy_name="tf-example-name",
inter_region_traffic_qos_policy_description="tf-example-description")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cen"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cen.NewInstance(ctx, "default", &cen.InstanceArgs{
CenInstanceName: pulumi.String("tf-example"),
})
if err != nil {
return err
}
defaultBandwidthPackage, err := cen.NewBandwidthPackage(ctx, "default", &cen.BandwidthPackageArgs{
Bandwidth: pulumi.Int(5),
GeographicRegionAId: pulumi.String("China"),
GeographicRegionBId: pulumi.String("China"),
})
if err != nil {
return err
}
defaultBandwidthPackageAttachment, err := cen.NewBandwidthPackageAttachment(ctx, "default", &cen.BandwidthPackageAttachmentArgs{
InstanceId: _default.ID(),
BandwidthPackageId: defaultBandwidthPackage.ID(),
})
if err != nil {
return err
}
hz, err := cen.NewTransitRouter(ctx, "hz", &cen.TransitRouterArgs{
CenId: defaultBandwidthPackageAttachment.InstanceId,
})
if err != nil {
return err
}
bj, err := cen.NewTransitRouter(ctx, "bj", &cen.TransitRouterArgs{
CenId: hz.CenId,
})
if err != nil {
return err
}
defaultTransitRouterPeerAttachment, err := cen.NewTransitRouterPeerAttachment(ctx, "default", &cen.TransitRouterPeerAttachmentArgs{
CenId: _default.ID(),
TransitRouterId: hz.TransitRouterId,
PeerTransitRouterRegionId: pulumi.String("cn-beijing"),
PeerTransitRouterId: bj.TransitRouterId,
CenBandwidthPackageId: defaultBandwidthPackageAttachment.BandwidthPackageId,
Bandwidth: pulumi.Int(5),
})
if err != nil {
return err
}
_, err = cen.NewInterRegionTrafficQosPolicy(ctx, "default", &cen.InterRegionTrafficQosPolicyArgs{
TransitRouterId: hz.TransitRouterId,
TransitRouterAttachmentId: defaultTransitRouterPeerAttachment.TransitRouterAttachmentId,
InterRegionTrafficQosPolicyName: pulumi.String("tf-example-name"),
InterRegionTrafficQosPolicyDescription: pulumi.String("tf-example-description"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = new AliCloud.Cen.Instance("default", new()
{
CenInstanceName = "tf-example",
});
var defaultBandwidthPackage = new AliCloud.Cen.BandwidthPackage("default", new()
{
Bandwidth = 5,
GeographicRegionAId = "China",
GeographicRegionBId = "China",
});
var defaultBandwidthPackageAttachment = new AliCloud.Cen.BandwidthPackageAttachment("default", new()
{
InstanceId = @default.Id,
BandwidthPackageId = defaultBandwidthPackage.Id,
});
var hz = new AliCloud.Cen.TransitRouter("hz", new()
{
CenId = defaultBandwidthPackageAttachment.InstanceId,
});
var bj = new AliCloud.Cen.TransitRouter("bj", new()
{
CenId = hz.CenId,
});
var defaultTransitRouterPeerAttachment = new AliCloud.Cen.TransitRouterPeerAttachment("default", new()
{
CenId = @default.Id,
TransitRouterId = hz.TransitRouterId,
PeerTransitRouterRegionId = "cn-beijing",
PeerTransitRouterId = bj.TransitRouterId,
CenBandwidthPackageId = defaultBandwidthPackageAttachment.BandwidthPackageId,
Bandwidth = 5,
});
var defaultInterRegionTrafficQosPolicy = new AliCloud.Cen.InterRegionTrafficQosPolicy("default", new()
{
TransitRouterId = hz.TransitRouterId,
TransitRouterAttachmentId = defaultTransitRouterPeerAttachment.TransitRouterAttachmentId,
InterRegionTrafficQosPolicyName = "tf-example-name",
InterRegionTrafficQosPolicyDescription = "tf-example-description",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cen.Instance;
import com.pulumi.alicloud.cen.InstanceArgs;
import com.pulumi.alicloud.cen.BandwidthPackage;
import com.pulumi.alicloud.cen.BandwidthPackageArgs;
import com.pulumi.alicloud.cen.BandwidthPackageAttachment;
import com.pulumi.alicloud.cen.BandwidthPackageAttachmentArgs;
import com.pulumi.alicloud.cen.TransitRouter;
import com.pulumi.alicloud.cen.TransitRouterArgs;
import com.pulumi.alicloud.cen.TransitRouterPeerAttachment;
import com.pulumi.alicloud.cen.TransitRouterPeerAttachmentArgs;
import com.pulumi.alicloud.cen.InterRegionTrafficQosPolicy;
import com.pulumi.alicloud.cen.InterRegionTrafficQosPolicyArgs;
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) {
var default_ = new Instance("default", InstanceArgs.builder()
.cenInstanceName("tf-example")
.build());
var defaultBandwidthPackage = new BandwidthPackage("defaultBandwidthPackage", BandwidthPackageArgs.builder()
.bandwidth(5)
.geographicRegionAId("China")
.geographicRegionBId("China")
.build());
var defaultBandwidthPackageAttachment = new BandwidthPackageAttachment("defaultBandwidthPackageAttachment", BandwidthPackageAttachmentArgs.builder()
.instanceId(default_.id())
.bandwidthPackageId(defaultBandwidthPackage.id())
.build());
var hz = new TransitRouter("hz", TransitRouterArgs.builder()
.cenId(defaultBandwidthPackageAttachment.instanceId())
.build());
var bj = new TransitRouter("bj", TransitRouterArgs.builder()
.cenId(hz.cenId())
.build());
var defaultTransitRouterPeerAttachment = new TransitRouterPeerAttachment("defaultTransitRouterPeerAttachment", TransitRouterPeerAttachmentArgs.builder()
.cenId(default_.id())
.transitRouterId(hz.transitRouterId())
.peerTransitRouterRegionId("cn-beijing")
.peerTransitRouterId(bj.transitRouterId())
.cenBandwidthPackageId(defaultBandwidthPackageAttachment.bandwidthPackageId())
.bandwidth(5)
.build());
var defaultInterRegionTrafficQosPolicy = new InterRegionTrafficQosPolicy("defaultInterRegionTrafficQosPolicy", InterRegionTrafficQosPolicyArgs.builder()
.transitRouterId(hz.transitRouterId())
.transitRouterAttachmentId(defaultTransitRouterPeerAttachment.transitRouterAttachmentId())
.interRegionTrafficQosPolicyName("tf-example-name")
.interRegionTrafficQosPolicyDescription("tf-example-description")
.build());
}
}
resources:
default:
type: alicloud:cen:Instance
properties:
cenInstanceName: tf-example
defaultBandwidthPackage:
type: alicloud:cen:BandwidthPackage
name: default
properties:
bandwidth: 5
geographicRegionAId: China
geographicRegionBId: China
defaultBandwidthPackageAttachment:
type: alicloud:cen:BandwidthPackageAttachment
name: default
properties:
instanceId: ${default.id}
bandwidthPackageId: ${defaultBandwidthPackage.id}
hz:
type: alicloud:cen:TransitRouter
properties:
cenId: ${defaultBandwidthPackageAttachment.instanceId}
bj:
type: alicloud:cen:TransitRouter
properties:
cenId: ${hz.cenId}
defaultTransitRouterPeerAttachment:
type: alicloud:cen:TransitRouterPeerAttachment
name: default
properties:
cenId: ${default.id}
transitRouterId: ${hz.transitRouterId}
peerTransitRouterRegionId: cn-beijing
peerTransitRouterId: ${bj.transitRouterId}
cenBandwidthPackageId: ${defaultBandwidthPackageAttachment.bandwidthPackageId}
bandwidth: 5
defaultInterRegionTrafficQosPolicy:
type: alicloud:cen:InterRegionTrafficQosPolicy
name: default
properties:
transitRouterId: ${hz.transitRouterId}
transitRouterAttachmentId: ${defaultTransitRouterPeerAttachment.transitRouterAttachmentId}
interRegionTrafficQosPolicyName: tf-example-name
interRegionTrafficQosPolicyDescription: tf-example-description
Create InterRegionTrafficQosPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InterRegionTrafficQosPolicy(name: string, args: InterRegionTrafficQosPolicyArgs, opts?: CustomResourceOptions);
@overload
def InterRegionTrafficQosPolicy(resource_name: str,
args: InterRegionTrafficQosPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InterRegionTrafficQosPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
transit_router_attachment_id: Optional[str] = None,
transit_router_id: Optional[str] = None,
inter_region_traffic_qos_policy_description: Optional[str] = None,
inter_region_traffic_qos_policy_name: Optional[str] = None)
func NewInterRegionTrafficQosPolicy(ctx *Context, name string, args InterRegionTrafficQosPolicyArgs, opts ...ResourceOption) (*InterRegionTrafficQosPolicy, error)
public InterRegionTrafficQosPolicy(string name, InterRegionTrafficQosPolicyArgs args, CustomResourceOptions? opts = null)
public InterRegionTrafficQosPolicy(String name, InterRegionTrafficQosPolicyArgs args)
public InterRegionTrafficQosPolicy(String name, InterRegionTrafficQosPolicyArgs args, CustomResourceOptions options)
type: alicloud:cen:InterRegionTrafficQosPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InterRegionTrafficQosPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InterRegionTrafficQosPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InterRegionTrafficQosPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InterRegionTrafficQosPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InterRegionTrafficQosPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var interRegionTrafficQosPolicyResource = new AliCloud.Cen.InterRegionTrafficQosPolicy("interRegionTrafficQosPolicyResource", new()
{
TransitRouterAttachmentId = "string",
TransitRouterId = "string",
InterRegionTrafficQosPolicyDescription = "string",
InterRegionTrafficQosPolicyName = "string",
});
example, err := cen.NewInterRegionTrafficQosPolicy(ctx, "interRegionTrafficQosPolicyResource", &cen.InterRegionTrafficQosPolicyArgs{
TransitRouterAttachmentId: pulumi.String("string"),
TransitRouterId: pulumi.String("string"),
InterRegionTrafficQosPolicyDescription: pulumi.String("string"),
InterRegionTrafficQosPolicyName: pulumi.String("string"),
})
var interRegionTrafficQosPolicyResource = new InterRegionTrafficQosPolicy("interRegionTrafficQosPolicyResource", InterRegionTrafficQosPolicyArgs.builder()
.transitRouterAttachmentId("string")
.transitRouterId("string")
.interRegionTrafficQosPolicyDescription("string")
.interRegionTrafficQosPolicyName("string")
.build());
inter_region_traffic_qos_policy_resource = alicloud.cen.InterRegionTrafficQosPolicy("interRegionTrafficQosPolicyResource",
transit_router_attachment_id="string",
transit_router_id="string",
inter_region_traffic_qos_policy_description="string",
inter_region_traffic_qos_policy_name="string")
const interRegionTrafficQosPolicyResource = new alicloud.cen.InterRegionTrafficQosPolicy("interRegionTrafficQosPolicyResource", {
transitRouterAttachmentId: "string",
transitRouterId: "string",
interRegionTrafficQosPolicyDescription: "string",
interRegionTrafficQosPolicyName: "string",
});
type: alicloud:cen:InterRegionTrafficQosPolicy
properties:
interRegionTrafficQosPolicyDescription: string
interRegionTrafficQosPolicyName: string
transitRouterAttachmentId: string
transitRouterId: string
InterRegionTrafficQosPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The InterRegionTrafficQosPolicy resource accepts the following input properties:
- Transit
Router stringAttachment Id - The ID of the inter-region connection.
- Transit
Router stringId - The ID of the transit router.
- Inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- Inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- Transit
Router stringAttachment Id - The ID of the inter-region connection.
- Transit
Router stringId - The ID of the transit router.
- Inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- Inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- transit
Router StringAttachment Id - The ID of the inter-region connection.
- transit
Router StringId - The ID of the transit router.
- inter
Region StringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region StringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- transit
Router stringAttachment Id - The ID of the inter-region connection.
- transit
Router stringId - The ID of the transit router.
- inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- transit_
router_ strattachment_ id - The ID of the inter-region connection.
- transit_
router_ strid - The ID of the transit router.
- inter_
region_ strtraffic_ qos_ policy_ description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter_
region_ strtraffic_ qos_ policy_ name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- transit
Router StringAttachment Id - The ID of the inter-region connection.
- transit
Router StringId - The ID of the transit router.
- inter
Region StringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region StringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
Outputs
All input properties are implicitly available as output properties. Additionally, the InterRegionTrafficQosPolicy resource produces the following output properties:
Look up Existing InterRegionTrafficQosPolicy Resource
Get an existing InterRegionTrafficQosPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InterRegionTrafficQosPolicyState, opts?: CustomResourceOptions): InterRegionTrafficQosPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
inter_region_traffic_qos_policy_description: Optional[str] = None,
inter_region_traffic_qos_policy_name: Optional[str] = None,
status: Optional[str] = None,
transit_router_attachment_id: Optional[str] = None,
transit_router_id: Optional[str] = None) -> InterRegionTrafficQosPolicy
func GetInterRegionTrafficQosPolicy(ctx *Context, name string, id IDInput, state *InterRegionTrafficQosPolicyState, opts ...ResourceOption) (*InterRegionTrafficQosPolicy, error)
public static InterRegionTrafficQosPolicy Get(string name, Input<string> id, InterRegionTrafficQosPolicyState? state, CustomResourceOptions? opts = null)
public static InterRegionTrafficQosPolicy get(String name, Output<String> id, InterRegionTrafficQosPolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- Inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- Status string
- The status of the Inter Region Traffic Qos Policy.
- Transit
Router stringAttachment Id - The ID of the inter-region connection.
- Transit
Router stringId - The ID of the transit router.
- Inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- Inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- Status string
- The status of the Inter Region Traffic Qos Policy.
- Transit
Router stringAttachment Id - The ID of the inter-region connection.
- Transit
Router stringId - The ID of the transit router.
- inter
Region StringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region StringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- status String
- The status of the Inter Region Traffic Qos Policy.
- transit
Router StringAttachment Id - The ID of the inter-region connection.
- transit
Router StringId - The ID of the transit router.
- inter
Region stringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region stringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- status string
- The status of the Inter Region Traffic Qos Policy.
- transit
Router stringAttachment Id - The ID of the inter-region connection.
- transit
Router stringId - The ID of the transit router.
- inter_
region_ strtraffic_ qos_ policy_ description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter_
region_ strtraffic_ qos_ policy_ name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- status str
- The status of the Inter Region Traffic Qos Policy.
- transit_
router_ strattachment_ id - The ID of the inter-region connection.
- transit_
router_ strid - The ID of the transit router.
- inter
Region StringTraffic Qos Policy Description - The description of the QoS policy. The description must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The description must start with a letter.
- inter
Region StringTraffic Qos Policy Name - The name of the QoS policy. The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter.
- status String
- The status of the Inter Region Traffic Qos Policy.
- transit
Router StringAttachment Id - The ID of the inter-region connection.
- transit
Router StringId - The ID of the transit router.
Import
Cloud Enterprise Network (CEN) Inter Region Traffic Qos Policy can be imported using the id, e.g.
$ pulumi import alicloud:cen/interRegionTrafficQosPolicy:InterRegionTrafficQosPolicy example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.