published on Thursday, Sep 3, 2026 by Volcengine
published on Thursday, Sep 3, 2026 by Volcengine
Transit router flow queue policy. The flow queue policy allocates matched traffic to specified scheduling queues, enabling differentiated scheduling of different traffic based on business importance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const example = new volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicy("example", {
transitRouterId: "tr-xxxxxx",
transitRouterTrafficQosQueuePolicyName: "ccapi-qos-policy-full",
description: "traffic qos queue policy full fields",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicy("example",
transit_router_id="tr-xxxxxx",
transit_router_traffic_qos_queue_policy_name="ccapi-qos-policy-full",
description="traffic qos queue policy full fields")
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.NewTransitRouterTrafficQosQueuePolicy(ctx, "example", &transitrouter.TransitRouterTrafficQosQueuePolicyArgs{
TransitRouterId: pulumi.String("tr-xxxxxx"),
TransitRouterTrafficQosQueuePolicyName: pulumi.String("ccapi-qos-policy-full"),
Description: pulumi.String("traffic qos queue policy full fields"),
})
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.TransitRouterTrafficQosQueuePolicy("example", new()
{
TransitRouterId = "tr-xxxxxx",
TransitRouterTrafficQosQueuePolicyName = "ccapi-qos-policy-full",
Description = "traffic qos queue policy full fields",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicy;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicyArgs;
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 TransitRouterTrafficQosQueuePolicy("example", TransitRouterTrafficQosQueuePolicyArgs.builder()
.transitRouterId("tr-xxxxxx")
.transitRouterTrafficQosQueuePolicyName("ccapi-qos-policy-full")
.description("traffic qos queue policy full fields")
.build());
}
}
resources:
example:
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueuePolicy
properties:
transitRouterId: tr-xxxxxx
transitRouterTrafficQosQueuePolicyName: ccapi-qos-policy-full
description: traffic qos queue policy full fields
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_transitrouter_transitroutertrafficqosqueuepolicy" "example" {
transit_router_id = "tr-xxxxxx"
transit_router_traffic_qos_queue_policy_name = "ccapi-qos-policy-full"
description = "traffic qos queue policy full fields"
}
Create TransitRouterTrafficQosQueuePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransitRouterTrafficQosQueuePolicy(name: string, args: TransitRouterTrafficQosQueuePolicyArgs, opts?: CustomResourceOptions);@overload
def TransitRouterTrafficQosQueuePolicy(resource_name: str,
args: TransitRouterTrafficQosQueuePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransitRouterTrafficQosQueuePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
transit_router_id: Optional[str] = None,
description: Optional[str] = None,
transit_router_traffic_qos_queue_policy_name: Optional[str] = None)func NewTransitRouterTrafficQosQueuePolicy(ctx *Context, name string, args TransitRouterTrafficQosQueuePolicyArgs, opts ...ResourceOption) (*TransitRouterTrafficQosQueuePolicy, error)public TransitRouterTrafficQosQueuePolicy(string name, TransitRouterTrafficQosQueuePolicyArgs args, CustomResourceOptions? opts = null)
public TransitRouterTrafficQosQueuePolicy(String name, TransitRouterTrafficQosQueuePolicyArgs args)
public TransitRouterTrafficQosQueuePolicy(String name, TransitRouterTrafficQosQueuePolicyArgs args, CustomResourceOptions options)
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueuePolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_transitrouter_transit_router_traffic_qos_queue_policy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosQueuePolicyArgs
- 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 TransitRouterTrafficQosQueuePolicyArgs
- 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 TransitRouterTrafficQosQueuePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosQueuePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransitRouterTrafficQosQueuePolicyArgs
- 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 transitRouterTrafficQosQueuePolicyResource = new Volcenginecc.Transitrouter.TransitRouterTrafficQosQueuePolicy("transitRouterTrafficQosQueuePolicyResource", new()
{
TransitRouterId = "string",
Description = "string",
TransitRouterTrafficQosQueuePolicyName = "string",
});
example, err := transitrouter.NewTransitRouterTrafficQosQueuePolicy(ctx, "transitRouterTrafficQosQueuePolicyResource", &transitrouter.TransitRouterTrafficQosQueuePolicyArgs{
TransitRouterId: pulumi.String("string"),
Description: pulumi.String("string"),
TransitRouterTrafficQosQueuePolicyName: pulumi.String("string"),
})
resource "volcenginecc_transitrouter_transit_router_traffic_qos_queue_policy" "transitRouterTrafficQosQueuePolicyResource" {
lifecycle {
create_before_destroy = true
}
transit_router_id = "string"
description = "string"
transit_router_traffic_qos_queue_policy_name = "string"
}
var transitRouterTrafficQosQueuePolicyResource = new TransitRouterTrafficQosQueuePolicy("transitRouterTrafficQosQueuePolicyResource", TransitRouterTrafficQosQueuePolicyArgs.builder()
.transitRouterId("string")
.description("string")
.transitRouterTrafficQosQueuePolicyName("string")
.build());
transit_router_traffic_qos_queue_policy_resource = volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicy("transitRouterTrafficQosQueuePolicyResource",
transit_router_id="string",
description="string",
transit_router_traffic_qos_queue_policy_name="string")
const transitRouterTrafficQosQueuePolicyResource = new volcenginecc.transitrouter.TransitRouterTrafficQosQueuePolicy("transitRouterTrafficQosQueuePolicyResource", {
transitRouterId: "string",
description: "string",
transitRouterTrafficQosQueuePolicyName: "string",
});
type: volcenginecc:transitrouter:TransitRouterTrafficQosQueuePolicy
properties:
description: string
transitRouterId: string
transitRouterTrafficQosQueuePolicyName: string
TransitRouterTrafficQosQueuePolicy 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 TransitRouterTrafficQosQueuePolicy resource accepts the following input properties:
- Transit
Router stringId - Transit router instance ID.
- Description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- Transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- Transit
Router stringId - Transit router instance ID.
- Description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- Transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- transit_
router_ stringid - Transit router instance ID.
- description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- transit
Router StringId - Transit router instance ID.
- description String
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- transit
Router StringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- transit
Router stringId - Transit router instance ID.
- description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- transit_
router_ strid - Transit router instance ID.
- description str
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- transit_
router_ strtraffic_ qos_ queue_ policy_ name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- transit
Router StringId - Transit router instance ID.
- description String
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- transit
Router StringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the TransitRouterTrafficQosQueuePolicy resource produces the following output properties:
- Creation
Time string - Creation time of the flow queue policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- Update
Time string - Last update time of the flow queue policy.
- Creation
Time string - Creation time of the flow queue policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- Update
Time string - Last update time of the flow queue policy.
- creation_
time string - Creation time of the flow queue policy.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ id - Flow queue policy ID.
- update_
time string - Last update time of the flow queue policy.
- creation
Time String - Creation time of the flow queue policy.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringTraffic Qos Queue Policy Id - Flow queue policy ID.
- update
Time String - Last update time of the flow queue policy.
- creation
Time string - Creation time of the flow queue policy.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- update
Time string - Last update time of the flow queue policy.
- creation_
time str - Creation time of the flow queue policy.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ strtraffic_ qos_ queue_ policy_ id - Flow queue policy ID.
- update_
time str - Last update time of the flow queue policy.
- creation
Time String - Creation time of the flow queue policy.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringTraffic Qos Queue Policy Id - Flow queue policy ID.
- update
Time String - Last update time of the flow queue policy.
Look up Existing TransitRouterTrafficQosQueuePolicy Resource
Get an existing TransitRouterTrafficQosQueuePolicy 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?: TransitRouterTrafficQosQueuePolicyState, opts?: CustomResourceOptions): TransitRouterTrafficQosQueuePolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
creation_time: Optional[str] = None,
description: Optional[str] = None,
status: Optional[str] = None,
transit_router_id: Optional[str] = None,
transit_router_traffic_qos_queue_policy_id: Optional[str] = None,
transit_router_traffic_qos_queue_policy_name: Optional[str] = None,
update_time: Optional[str] = None) -> TransitRouterTrafficQosQueuePolicyfunc GetTransitRouterTrafficQosQueuePolicy(ctx *Context, name string, id IDInput, state *TransitRouterTrafficQosQueuePolicyState, opts ...ResourceOption) (*TransitRouterTrafficQosQueuePolicy, error)public static TransitRouterTrafficQosQueuePolicy Get(string name, Input<string> id, TransitRouterTrafficQosQueuePolicyState? state, CustomResourceOptions? opts = null)public static TransitRouterTrafficQosQueuePolicy get(String name, Output<String> id, TransitRouterTrafficQosQueuePolicyState state, CustomResourceOptions options)resources: _: type: volcenginecc:transitrouter:TransitRouterTrafficQosQueuePolicy get: id: ${id}import {
to = volcenginecc_transitrouter_transit_router_traffic_qos_queue_policy.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.
- Creation
Time string - Creation time of the flow queue policy.
- Description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- Status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringId - Transit router instance ID.
- Transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- Transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- Update
Time string - Last update time of the flow queue policy.
- Creation
Time string - Creation time of the flow queue policy.
- Description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- Status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringId - Transit router instance ID.
- Transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- Transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- Update
Time string - Last update time of the flow queue policy.
- creation_
time string - Creation time of the flow queue policy.
- description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ stringid - Transit router instance ID.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ id - Flow queue policy ID.
- transit_
router_ stringtraffic_ qos_ queue_ policy_ name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- update_
time string - Last update time of the flow queue policy.
- creation
Time String - Creation time of the flow queue policy.
- description String
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- status String
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringId - Transit router instance ID.
- transit
Router StringTraffic Qos Queue Policy Id - Flow queue policy ID.
- transit
Router StringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- update
Time String - Last update time of the flow queue policy.
- creation
Time string - Creation time of the flow queue policy.
- description string
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- status string
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router stringId - Transit router instance ID.
- transit
Router stringTraffic Qos Queue Policy Id - Flow queue policy ID.
- transit
Router stringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- update
Time string - Last update time of the flow queue policy.
- creation_
time str - Creation time of the flow queue policy.
- description str
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- status str
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ strid - Transit router instance ID.
- transit_
router_ strtraffic_ qos_ queue_ policy_ id - Flow queue policy ID.
- transit_
router_ strtraffic_ qos_ queue_ policy_ name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- update_
time str - Last update time of the flow queue policy.
- creation
Time String - Creation time of the flow queue policy.
- description String
- Description of the flow queue policy. 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 must be from 0 to 255 characters.
- status String
- Status of the flow queue policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringId - Transit router instance ID.
- transit
Router StringTraffic Qos Queue Policy Id - Flow queue policy ID.
- transit
Router StringTraffic Qos Queue Policy Name - Name of the flow queue policy. 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 must be from 1 to 128 characters. If this parameter is not provided or no value is specified, the default is the flow queue policy ID.
- update
Time String - Last update time of the flow queue policy.
Import
$ pulumi import volcenginecc:transitrouter/transitRouterTrafficQosQueuePolicy:TransitRouterTrafficQosQueuePolicy example "transit_router_id|transit_router_traffic_qos_queue_policy_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