published on Thursday, Sep 3, 2026 by Volcengine
published on Thursday, Sep 3, 2026 by Volcengine
Transit router flow queue entry. The flow queue entry defines the mapping between specific DSCP sets and priorities, used to assign matched traffic to the corresponding scheduling queue for differentiated scheduling based on business importance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const example = new volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntry("example", {
transitRouterTrafficQosQueuePolicyId: "tr-qos-queue-policy-xxxxxxxx",
transitRouterTrafficQosQueueEntryName: "ccapi-qos-entry-full",
description: "traffic qos queue entry full fields",
bandwidthPercent: 30,
dscps: [
20,
21,
],
priority: "Normal",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntry("example",
transit_router_traffic_qos_queue_policy_id="tr-qos-queue-policy-xxxxxxxx",
transit_router_traffic_qos_queue_entry_name="ccapi-qos-entry-full",
description="traffic qos queue entry full fields",
bandwidth_percent=30,
dscps=[
20,
21,
],
priority="Normal")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/transitrouter"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := transitrouter.NewTransitRouterTrafficQosQueueEntry(ctx, "example", &transitrouter.TransitRouterTrafficQosQueueEntryArgs{
TransitRouterTrafficQosQueuePolicyId: pulumi.String("tr-qos-queue-policy-xxxxxxxx"),
TransitRouterTrafficQosQueueEntryName: pulumi.String("ccapi-qos-entry-full"),
Description: pulumi.String("traffic qos queue entry full fields"),
BandwidthPercent: pulumi.Int(30),
Dscps: pulumi.IntArray{
pulumi.Int(20),
pulumi.Int(21),
},
Priority: pulumi.String("Normal"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var example = new Volcenginecc.Transitrouter.TransitRouterTrafficQosQueueEntry("example", new()
{
TransitRouterTrafficQosQueuePolicyId = "tr-qos-queue-policy-xxxxxxxx",
TransitRouterTrafficQosQueueEntryName = "ccapi-qos-entry-full",
Description = "traffic qos queue entry full fields",
BandwidthPercent = 30,
Dscps = new[]
{
20,
21,
},
Priority = "Normal",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntry;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntryArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new TransitRouterTrafficQosQueueEntry("example", TransitRouterTrafficQosQueueEntryArgs.builder()
.transitRouterTrafficQosQueuePolicyId("tr-qos-queue-policy-xxxxxxxx")
.transitRouterTrafficQosQueueEntryName("ccapi-qos-entry-full")
.description("traffic qos queue entry full fields")
.bandwidthPercent(30)
.dscps(
20,
21)
.priority("Normal")
.build());
}
}
resources:
example:
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueueEntry
properties:
transitRouterTrafficQosQueuePolicyId: tr-qos-queue-policy-xxxxxxxx
transitRouterTrafficQosQueueEntryName: ccapi-qos-entry-full
description: traffic qos queue entry full fields
bandwidthPercent: 30
dscps:
- 20
- 21
priority: Normal
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_transitrouter_transitroutertrafficqosqueueentry" "example" {
transit_router_traffic_qos_queue_policy_id = "tr-qos-queue-policy-xxxxxxxx"
transit_router_traffic_qos_queue_entry_name = "ccapi-qos-entry-full"
description = "traffic qos queue entry full fields"
bandwidth_percent = 30
dscps = [20, 21]
priority = "Normal"
}
Create TransitRouterTrafficQosQueueEntry Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransitRouterTrafficQosQueueEntry(name: string, args: TransitRouterTrafficQosQueueEntryArgs, opts?: CustomResourceOptions);@overload
def TransitRouterTrafficQosQueueEntry(resource_name: str,
args: TransitRouterTrafficQosQueueEntryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransitRouterTrafficQosQueueEntry(resource_name: str,
opts: Optional[ResourceOptions] = None,
dscps: Optional[Sequence[int]] = None,
transit_router_traffic_qos_queue_entry_name: Optional[str] = None,
transit_router_traffic_qos_queue_policy_id: Optional[str] = None,
bandwidth_percent: Optional[int] = None,
description: Optional[str] = None,
priority: Optional[str] = None)func NewTransitRouterTrafficQosQueueEntry(ctx *Context, name string, args TransitRouterTrafficQosQueueEntryArgs, opts ...ResourceOption) (*TransitRouterTrafficQosQueueEntry, error)public TransitRouterTrafficQosQueueEntry(string name, TransitRouterTrafficQosQueueEntryArgs args, CustomResourceOptions? opts = null)
public TransitRouterTrafficQosQueueEntry(String name, TransitRouterTrafficQosQueueEntryArgs args)
public TransitRouterTrafficQosQueueEntry(String name, TransitRouterTrafficQosQueueEntryArgs args, CustomResourceOptions options)
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueueEntry
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_transitrouter_transit_router_traffic_qos_queue_entry" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosQueueEntryArgs
- 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 TransitRouterTrafficQosQueueEntryArgs
- 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 TransitRouterTrafficQosQueueEntryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosQueueEntryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransitRouterTrafficQosQueueEntryArgs
- 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 transitRouterTrafficQosQueueEntryResource = new Volcenginecc.Transitrouter.TransitRouterTrafficQosQueueEntry("transitRouterTrafficQosQueueEntryResource", new()
{
Dscps = new[]
{
0,
},
TransitRouterTrafficQosQueueEntryName = "string",
TransitRouterTrafficQosQueuePolicyId = "string",
BandwidthPercent = 0,
Description = "string",
Priority = "string",
});
example, err := transitrouter.NewTransitRouterTrafficQosQueueEntry(ctx, "transitRouterTrafficQosQueueEntryResource", &transitrouter.TransitRouterTrafficQosQueueEntryArgs{
Dscps: pulumi.IntArray{
pulumi.Int(0),
},
TransitRouterTrafficQosQueueEntryName: pulumi.String("string"),
TransitRouterTrafficQosQueuePolicyId: pulumi.String("string"),
BandwidthPercent: pulumi.Int(0),
Description: pulumi.String("string"),
Priority: pulumi.String("string"),
})
resource "volcenginecc_transitrouter_transit_router_traffic_qos_queue_entry" "transitRouterTrafficQosQueueEntryResource" {
lifecycle {
create_before_destroy = true
}
dscps = [0]
transit_router_traffic_qos_queue_entry_name = "string"
transit_router_traffic_qos_queue_policy_id = "string"
bandwidth_percent = 0
description = "string"
priority = "string"
}
var transitRouterTrafficQosQueueEntryResource = new TransitRouterTrafficQosQueueEntry("transitRouterTrafficQosQueueEntryResource", TransitRouterTrafficQosQueueEntryArgs.builder()
.dscps(0)
.transitRouterTrafficQosQueueEntryName("string")
.transitRouterTrafficQosQueuePolicyId("string")
.bandwidthPercent(0)
.description("string")
.priority("string")
.build());
transit_router_traffic_qos_queue_entry_resource = volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntry("transitRouterTrafficQosQueueEntryResource",
dscps=[0],
transit_router_traffic_qos_queue_entry_name="string",
transit_router_traffic_qos_queue_policy_id="string",
bandwidth_percent=0,
description="string",
priority="string")
const transitRouterTrafficQosQueueEntryResource = new volcenginecc.transitrouter.TransitRouterTrafficQosQueueEntry("transitRouterTrafficQosQueueEntryResource", {
dscps: [0],
transitRouterTrafficQosQueueEntryName: "string",
transitRouterTrafficQosQueuePolicyId: "string",
bandwidthPercent: 0,
description: "string",
priority: "string",
});
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueueEntry
properties:
bandwidthPercent: 0
description: string
dscps:
- 0
priority: string
transitRouterTrafficQosQueueEntryName: string
transitRouterTrafficQosQueuePolicyId: string
TransitRouterTrafficQosQueueEntry Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The TransitRouterTrafficQosQueueEntry resource accepts the following input properties:
- Dscps List<int>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- Transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- Transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- Bandwidth
Percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- Description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- Priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- Dscps []int
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- Transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- Transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- Bandwidth
Percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- Description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- Priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- dscps list(number)
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- transit_
router_ stringtraffic_ qos_ queue_ entry_ name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- bandwidth_
percent number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- dscps List<Integer>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- transit
Router StringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router StringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- bandwidth
Percent Integer - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- description String
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- priority String
- Priority of the flow queue entry. Normal: Normal. High: High.
- dscps number[]
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- bandwidth
Percent number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- dscps Sequence[int]
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- transit_
router_ strtraffic_ qos_ queue_ entry_ name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit_
router_ strtraffic_ qos_ queue_ policy_ id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- bandwidth_
percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- description str
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- priority str
- Priority of the flow queue entry. Normal: Normal. High: High.
- dscps List<Number>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- transit
Router StringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router StringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- bandwidth
Percent Number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- description String
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- priority String
- Priority of the flow queue entry. Normal: Normal. High: High.
Outputs
All input properties are implicitly available as output properties. Additionally, the TransitRouterTrafficQosQueueEntry resource produces the following output properties:
- Creation
Time string - Creation time of the flow queue entry.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- Status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- Transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- Update
Time string - Most recent update time of the flow queue entry.
- Creation
Time string - Creation time of the flow queue entry.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- Status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- Transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- Update
Time string - Most recent update time of the flow queue entry.
- creation_
time string - Creation time of the flow queue entry.
- id string
- The provider-assigned unique ID for this managed resource.
- is_
default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit_
router_ stringtraffic_ qos_ queue_ entry_ id - ID of the flow queue entry.
- update_
time string - Most recent update time of the flow queue entry.
- creation
Time String - Creation time of the flow queue entry.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Default Boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- status String
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router StringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- update
Time String - Most recent update time of the flow queue entry.
- creation
Time string - Creation time of the flow queue entry.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Default boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- update
Time string - Most recent update time of the flow queue entry.
- creation_
time str - Creation time of the flow queue entry.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- status str
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit_
router_ strtraffic_ qos_ queue_ entry_ id - ID of the flow queue entry.
- update_
time str - Most recent update time of the flow queue entry.
- creation
Time String - Creation time of the flow queue entry.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Default Boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- status String
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router StringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- update
Time String - Most recent update time of the flow queue entry.
Look up Existing TransitRouterTrafficQosQueueEntry Resource
Get an existing TransitRouterTrafficQosQueueEntry 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?: TransitRouterTrafficQosQueueEntryState, opts?: CustomResourceOptions): TransitRouterTrafficQosQueueEntry@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bandwidth_percent: Optional[int] = None,
creation_time: Optional[str] = None,
description: Optional[str] = None,
dscps: Optional[Sequence[int]] = None,
is_default: Optional[bool] = None,
priority: Optional[str] = None,
status: Optional[str] = None,
transit_router_traffic_qos_queue_entry_id: Optional[str] = None,
transit_router_traffic_qos_queue_entry_name: Optional[str] = None,
transit_router_traffic_qos_queue_policy_id: Optional[str] = None,
update_time: Optional[str] = None) -> TransitRouterTrafficQosQueueEntryfunc GetTransitRouterTrafficQosQueueEntry(ctx *Context, name string, id IDInput, state *TransitRouterTrafficQosQueueEntryState, opts ...ResourceOption) (*TransitRouterTrafficQosQueueEntry, error)public static TransitRouterTrafficQosQueueEntry Get(string name, Input<string> id, TransitRouterTrafficQosQueueEntryState? state, CustomResourceOptions? opts = null)public static TransitRouterTrafficQosQueueEntry get(String name, Output<String> id, TransitRouterTrafficQosQueueEntryState state, CustomResourceOptions options)resources: _: type: volcenginecc:transitrouter:TransitRouterTrafficQosQueueEntry get: id: ${id}import {
to = volcenginecc_transitrouter_transit_router_traffic_qos_queue_entry.example
id = "${id}"
}
- 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.
- Bandwidth
Percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- Creation
Time string - Creation time of the flow queue entry.
- Description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- Dscps List<int>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- Is
Default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- Priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- Status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- Transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- Transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- Transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- Update
Time string - Most recent update time of the flow queue entry.
- Bandwidth
Percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- Creation
Time string - Creation time of the flow queue entry.
- Description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- Dscps []int
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- Is
Default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- Priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- Status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- Transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- Transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- Transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- Update
Time string - Most recent update time of the flow queue entry.
- bandwidth_
percent number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- creation_
time string - Creation time of the flow queue entry.
- description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- dscps list(number)
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- is_
default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit_
router_ stringtraffic_ qos_ queue_ entry_ id - ID of the flow queue entry.
- transit_
router_ stringtraffic_ qos_ queue_ entry_ name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- update_
time string - Most recent update time of the flow queue entry.
- bandwidth
Percent Integer - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- creation
Time String - Creation time of the flow queue entry.
- description String
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- dscps List<Integer>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- is
Default Boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- priority String
- Priority of the flow queue entry. Normal: Normal. High: High.
- status String
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router StringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- transit
Router StringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router StringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- update
Time String - Most recent update time of the flow queue entry.
- bandwidth
Percent number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- creation
Time string - Creation time of the flow queue entry.
- description string
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- dscps number[]
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- is
Default boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- priority string
- Priority of the flow queue entry. Normal: Normal. High: High.
- status string
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router stringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- transit
Router stringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router stringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- update
Time string - Most recent update time of the flow queue entry.
- bandwidth_
percent int - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- creation_
time str - Creation time of the flow queue entry.
- description str
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- dscps Sequence[int]
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- is_
default bool - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- priority str
- Priority of the flow queue entry. Normal: Normal. High: High.
- status str
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit_
router_ strtraffic_ qos_ queue_ entry_ id - ID of the flow queue entry.
- transit_
router_ strtraffic_ qos_ queue_ entry_ name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit_
router_ strtraffic_ qos_ queue_ policy_ id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- update_
time str - Most recent update time of the flow queue entry.
- bandwidth
Percent Number - Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
- creation
Time String - Creation time of the flow queue entry.
- description String
- Description of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length: 0 to 255 characters.
- dscps List<Number>
- List of DSCP values matched by the flow queue entry. Each DSCP value ranges from 0 to 63.
- is
Default Boolean - Indicates whether this is the default flow queue entry. true: Yes. false: No.
- priority String
- Priority of the flow queue entry. Normal: Normal. High: High.
- status String
- Status of the flow queue entry. Creating: Creating. Deleting: Deleting. Pending: Pending. Available: Available.
- transit
Router StringTraffic Qos Queue Entry Id - ID of the flow queue entry.
- transit
Router StringTraffic Qos Queue Entry Name - Name of the flow queue entry. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length: 1 to 128 characters.
- transit
Router StringTraffic Qos Queue Policy Id - ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
- update
Time String - Most recent update time of the flow queue entry.
Import
$ pulumi import volcenginecc:transitrouter/transitRouterTrafficQosQueueEntry:TransitRouterTrafficQosQueueEntry example "transit_router_traffic_qos_queue_policy_id|transit_router_traffic_qos_queue_entry_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Sep 3, 2026 by Volcengine