InterRegionTrafficQosQueue

Provides a Cen Inter Region Traffic Qos Queue resource. For information about Cen Inter Region Traffic Qos Queue and how to use it, see What is Inter Region Traffic Qos Queue.

NOTE: Available in v1.195.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cen.InterRegionTrafficQosQueue;
import com.pulumi.alicloud.cen.InterRegionTrafficQosQueueArgs;
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 InterRegionTrafficQosQueue("default", InterRegionTrafficQosQueueArgs.builder()
.dscps(
1,
2)
.interRegionTrafficQosQueueDescription("test")
.remainBandwidthPercent(20)
.trafficQosPolicyId("qos-xxxxxx")
.build());
}
}

Import

Cen Inter Region Traffic Qos Queue can be imported using the id, e.g.

$ pulumi import alicloud:cen/interRegionTrafficQosQueue:InterRegionTrafficQosQueue example <id>

Properties

Link copied to clipboard
val dscps: Output<List<String>>

The DSCP value of the traffic packet to be matched in the current queue, ranging from 0 to 63.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The description information of the traffic scheduling policy.

Link copied to clipboard

The name of the traffic scheduling policy.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The percentage of cross-region bandwidth that the current queue can use.

Link copied to clipboard
val status: Output<String>

The status of the traffic scheduling policy. -Creating: The function is being created.-Active: available.-Modifying: is being modified.-Deleting: Deleted.-Deleted: Deleted.

Link copied to clipboard

The ID of the traffic scheduling policy.

Link copied to clipboard
val urn: Output<String>