InterRegionTrafficQosQueueArgs

data class InterRegionTrafficQosQueueArgs(val dscps: Output<List<String>>? = null, val interRegionTrafficQosQueueDescription: Output<String>? = null, val interRegionTrafficQosQueueName: Output<String>? = null, val remainBandwidthPercent: Output<Int>? = null, val trafficQosPolicyId: Output<String>? = null) : ConvertibleToJava<InterRegionTrafficQosQueueArgs>

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>

Constructors

Link copied to clipboard
fun InterRegionTrafficQosQueueArgs(dscps: Output<List<String>>? = null, interRegionTrafficQosQueueDescription: Output<String>? = null, interRegionTrafficQosQueueName: Output<String>? = null, remainBandwidthPercent: Output<Int>? = null, trafficQosPolicyId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): InterRegionTrafficQosQueueArgs

Properties

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

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

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
val remainBandwidthPercent: Output<Int>? = null

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

Link copied to clipboard
val trafficQosPolicyId: Output<String>? = null

The ID of the traffic scheduling policy.