1. Registry
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. transitrouter
  6. TransitRouterTrafficQosQueueEntry
Viewing docs for volcenginecc v0.0.60
published on Thursday, Sep 3, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.60
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.
    TransitRouterTrafficQosQueueEntryName string
    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.
    TransitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    BandwidthPercent 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.
    TransitRouterTrafficQosQueueEntryName string
    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.
    TransitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    BandwidthPercent 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_traffic_qos_queue_entry_name string
    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_traffic_qos_queue_policy_id string
    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.
    transitRouterTrafficQosQueueEntryName String
    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.
    transitRouterTrafficQosQueuePolicyId String
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    bandwidthPercent 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.
    transitRouterTrafficQosQueueEntryName string
    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.
    transitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    bandwidthPercent 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_traffic_qos_queue_entry_name str
    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_traffic_qos_queue_policy_id str
    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.
    transitRouterTrafficQosQueueEntryName String
    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.
    transitRouterTrafficQosQueuePolicyId String
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    bandwidthPercent 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:

    CreationTime string
    Creation time of the flow queue entry.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault 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.
    TransitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    UpdateTime string
    Most recent update time of the flow queue entry.
    CreationTime string
    Creation time of the flow queue entry.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault 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.
    TransitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    UpdateTime 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_traffic_qos_queue_entry_id string
    ID of the flow queue entry.
    update_time string
    Most recent update time of the flow queue entry.
    creationTime String
    Creation time of the flow queue entry.
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId String
    ID of the flow queue entry.
    updateTime String
    Most recent update time of the flow queue entry.
    creationTime string
    Creation time of the flow queue entry.
    id string
    The provider-assigned unique ID for this managed resource.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    updateTime 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_traffic_qos_queue_entry_id str
    ID of the flow queue entry.
    update_time str
    Most recent update time of the flow queue entry.
    creationTime String
    Creation time of the flow queue entry.
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId String
    ID of the flow queue entry.
    updateTime 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) -> TransitRouterTrafficQosQueueEntry
    func 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.
    The following state arguments are supported:
    BandwidthPercent int
    Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
    CreationTime 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.
    IsDefault 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.
    TransitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    TransitRouterTrafficQosQueueEntryName string
    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.
    TransitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    UpdateTime string
    Most recent update time of the flow queue entry.
    BandwidthPercent int
    Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
    CreationTime 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.
    IsDefault 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.
    TransitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    TransitRouterTrafficQosQueueEntryName string
    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.
    TransitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    UpdateTime 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_traffic_qos_queue_entry_id string
    ID of the flow queue entry.
    transit_router_traffic_qos_queue_entry_name string
    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_traffic_qos_queue_policy_id string
    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.
    bandwidthPercent Integer
    Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
    creationTime 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.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId String
    ID of the flow queue entry.
    transitRouterTrafficQosQueueEntryName String
    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.
    transitRouterTrafficQosQueuePolicyId String
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    updateTime String
    Most recent update time of the flow queue entry.
    bandwidthPercent number
    Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
    creationTime 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.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId string
    ID of the flow queue entry.
    transitRouterTrafficQosQueueEntryName string
    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.
    transitRouterTrafficQosQueuePolicyId string
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    updateTime 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_traffic_qos_queue_entry_id str
    ID of the flow queue entry.
    transit_router_traffic_qos_queue_entry_name str
    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_traffic_qos_queue_policy_id str
    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.
    bandwidthPercent Number
    Bandwidth percentage allocated to the flow queue entry. Value range: 0 to 100.
    creationTime 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.
    isDefault 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.
    transitRouterTrafficQosQueueEntryId String
    ID of the flow queue entry.
    transitRouterTrafficQosQueueEntryName String
    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.
    transitRouterTrafficQosQueuePolicyId String
    ID of the flow queue policy, identifying the flow queue policy to which this entry belongs.
    updateTime 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 volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.60
    published on Thursday, Sep 3, 2026 by Volcengine

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial