published on Thursday, Sep 3, 2026 by Volcengine
published on Thursday, Sep 3, 2026 by Volcengine
Transit router flow marking policy. The flow marking policy is used to match traffic forwarded by the transit router to specified scheduling queues, enabling 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.TransitRouterTrafficQosMarkingPolicy("example", {
transitRouterId: "tr-xxxxxxxx",
transitRouterTrafficQosMarkingPolicyName: "ccapi-qos-marking-policy-full",
description: "traffic qos marking policy full fields",
});
import pulumi
import pulumi_volcenginecc as volcenginecc
example = volcenginecc.transitrouter.TransitRouterTrafficQosMarkingPolicy("example",
transit_router_id="tr-xxxxxxxx",
transit_router_traffic_qos_marking_policy_name="ccapi-qos-marking-policy-full",
description="traffic qos marking 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.NewTransitRouterTrafficQosMarkingPolicy(ctx, "example", &transitrouter.TransitRouterTrafficQosMarkingPolicyArgs{
TransitRouterId: pulumi.String("tr-xxxxxxxx"),
TransitRouterTrafficQosMarkingPolicyName: pulumi.String("ccapi-qos-marking-policy-full"),
Description: pulumi.String("traffic qos marking 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.TransitRouterTrafficQosMarkingPolicy("example", new()
{
TransitRouterId = "tr-xxxxxxxx",
TransitRouterTrafficQosMarkingPolicyName = "ccapi-qos-marking-policy-full",
Description = "traffic qos marking policy full fields",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosMarkingPolicy;
import com.volcengine.volcenginecc.transitrouter.TransitRouterTrafficQosMarkingPolicyArgs;
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 TransitRouterTrafficQosMarkingPolicy("example", TransitRouterTrafficQosMarkingPolicyArgs.builder()
.transitRouterId("tr-xxxxxxxx")
.transitRouterTrafficQosMarkingPolicyName("ccapi-qos-marking-policy-full")
.description("traffic qos marking policy full fields")
.build());
}
}
resources:
example:
type: volcenginecc:transitrouter:TransitRouterTrafficQosMarkingPolicy
properties:
transitRouterId: tr-xxxxxxxx
transitRouterTrafficQosMarkingPolicyName: ccapi-qos-marking-policy-full
description: traffic qos marking policy full fields
pulumi {
required_providers {
volcenginecc = {
source = "pulumi/volcenginecc"
}
}
}
resource "volcenginecc_transitrouter_transitroutertrafficqosmarkingpolicy" "example" {
transit_router_id = "tr-xxxxxxxx"
transit_router_traffic_qos_marking_policy_name = "ccapi-qos-marking-policy-full"
description = "traffic qos marking policy full fields"
}
Create TransitRouterTrafficQosMarkingPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransitRouterTrafficQosMarkingPolicy(name: string, args: TransitRouterTrafficQosMarkingPolicyArgs, opts?: CustomResourceOptions);@overload
def TransitRouterTrafficQosMarkingPolicy(resource_name: str,
args: TransitRouterTrafficQosMarkingPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransitRouterTrafficQosMarkingPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
transit_router_id: Optional[str] = None,
description: Optional[str] = None,
transit_router_traffic_qos_marking_policy_name: Optional[str] = None)func NewTransitRouterTrafficQosMarkingPolicy(ctx *Context, name string, args TransitRouterTrafficQosMarkingPolicyArgs, opts ...ResourceOption) (*TransitRouterTrafficQosMarkingPolicy, error)public TransitRouterTrafficQosMarkingPolicy(string name, TransitRouterTrafficQosMarkingPolicyArgs args, CustomResourceOptions? opts = null)
public TransitRouterTrafficQosMarkingPolicy(String name, TransitRouterTrafficQosMarkingPolicyArgs args)
public TransitRouterTrafficQosMarkingPolicy(String name, TransitRouterTrafficQosMarkingPolicyArgs args, CustomResourceOptions options)
type: volcenginecc:transitrouter:TransitRouterTrafficQosMarkingPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "volcenginecc_transitrouter_transit_router_traffic_qos_marking_policy" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosMarkingPolicyArgs
- 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 TransitRouterTrafficQosMarkingPolicyArgs
- 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 TransitRouterTrafficQosMarkingPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransitRouterTrafficQosMarkingPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransitRouterTrafficQosMarkingPolicyArgs
- 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 transitRouterTrafficQosMarkingPolicyResource = new Volcenginecc.Transitrouter.TransitRouterTrafficQosMarkingPolicy("transitRouterTrafficQosMarkingPolicyResource", new()
{
TransitRouterId = "string",
Description = "string",
TransitRouterTrafficQosMarkingPolicyName = "string",
});
example, err := transitrouter.NewTransitRouterTrafficQosMarkingPolicy(ctx, "transitRouterTrafficQosMarkingPolicyResource", &transitrouter.TransitRouterTrafficQosMarkingPolicyArgs{
TransitRouterId: pulumi.String("string"),
Description: pulumi.String("string"),
TransitRouterTrafficQosMarkingPolicyName: pulumi.String("string"),
})
resource "volcenginecc_transitrouter_transit_router_traffic_qos_marking_policy" "transitRouterTrafficQosMarkingPolicyResource" {
lifecycle {
create_before_destroy = true
}
transit_router_id = "string"
description = "string"
transit_router_traffic_qos_marking_policy_name = "string"
}
var transitRouterTrafficQosMarkingPolicyResource = new TransitRouterTrafficQosMarkingPolicy("transitRouterTrafficQosMarkingPolicyResource", TransitRouterTrafficQosMarkingPolicyArgs.builder()
.transitRouterId("string")
.description("string")
.transitRouterTrafficQosMarkingPolicyName("string")
.build());
transit_router_traffic_qos_marking_policy_resource = volcenginecc.transitrouter.TransitRouterTrafficQosMarkingPolicy("transitRouterTrafficQosMarkingPolicyResource",
transit_router_id="string",
description="string",
transit_router_traffic_qos_marking_policy_name="string")
const transitRouterTrafficQosMarkingPolicyResource = new volcenginecc.transitrouter.TransitRouterTrafficQosMarkingPolicy("transitRouterTrafficQosMarkingPolicyResource", {
transitRouterId: "string",
description: "string",
transitRouterTrafficQosMarkingPolicyName: "string",
});
type: volcenginecc:transitrouter:TransitRouterTrafficQosMarkingPolicy
properties:
description: string
transitRouterId: string
transitRouterTrafficQosMarkingPolicyName: string
TransitRouterTrafficQosMarkingPolicy 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 TransitRouterTrafficQosMarkingPolicy resource accepts the following input properties:
- Transit
Router stringId - Transit router instance ID.
- Description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- Transit
Router stringId - Transit router instance ID.
- Description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- transit_
router_ stringid - Transit router instance ID.
- description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- transit_
router_ stringtraffic_ qos_ marking_ policy_ name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- transit
Router StringId - Transit router instance ID.
- description String
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- transit
Router StringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- transit
Router stringId - Transit router instance ID.
- description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- transit_
router_ strid - Transit router instance ID.
- description str
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- transit_
router_ strtraffic_ qos_ marking_ policy_ name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- transit
Router StringId - Transit router instance ID.
- description String
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- transit
Router StringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the TransitRouterTrafficQosMarkingPolicy resource produces the following output properties:
- Creation
Time string - Creation time of the flow marking policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- Update
Time string - Last update time of the flow marking policy.
- Creation
Time string - Creation time of the flow marking policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- Update
Time string - Last update time of the flow marking policy.
- creation_
time string - Creation time of the flow marking policy.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ stringtraffic_ qos_ marking_ policy_ id - Flow marking policy ID.
- update_
time string - Last update time of the flow marking policy.
- creation
Time String - Creation time of the flow marking policy.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringTraffic Qos Marking Policy Id - Flow marking policy ID.
- update
Time String - Last update time of the flow marking policy.
- creation
Time string - Creation time of the flow marking policy.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- update
Time string - Last update time of the flow marking policy.
- creation_
time str - Creation time of the flow marking policy.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ strtraffic_ qos_ marking_ policy_ id - Flow marking policy ID.
- update_
time str - Last update time of the flow marking policy.
- creation
Time String - Creation time of the flow marking policy.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringTraffic Qos Marking Policy Id - Flow marking policy ID.
- update
Time String - Last update time of the flow marking policy.
Look up Existing TransitRouterTrafficQosMarkingPolicy Resource
Get an existing TransitRouterTrafficQosMarkingPolicy 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?: TransitRouterTrafficQosMarkingPolicyState, opts?: CustomResourceOptions): TransitRouterTrafficQosMarkingPolicy@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_marking_policy_id: Optional[str] = None,
transit_router_traffic_qos_marking_policy_name: Optional[str] = None,
update_time: Optional[str] = None) -> TransitRouterTrafficQosMarkingPolicyfunc GetTransitRouterTrafficQosMarkingPolicy(ctx *Context, name string, id IDInput, state *TransitRouterTrafficQosMarkingPolicyState, opts ...ResourceOption) (*TransitRouterTrafficQosMarkingPolicy, error)public static TransitRouterTrafficQosMarkingPolicy Get(string name, Input<string> id, TransitRouterTrafficQosMarkingPolicyState? state, CustomResourceOptions? opts = null)public static TransitRouterTrafficQosMarkingPolicy get(String name, Output<String> id, TransitRouterTrafficQosMarkingPolicyState state, CustomResourceOptions options)resources: _: type: volcenginecc:transitrouter:TransitRouterTrafficQosMarkingPolicy get: id: ${id}import {
to = volcenginecc_transitrouter_transit_router_traffic_qos_marking_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 marking policy.
- Description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringId - Transit router instance ID.
- Transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- Transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- Update
Time string - Last update time of the flow marking policy.
- Creation
Time string - Creation time of the flow marking policy.
- Description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- Status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- Transit
Router stringId - Transit router instance ID.
- Transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- Transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- Update
Time string - Last update time of the flow marking policy.
- creation_
time string - Creation time of the flow marking policy.
- description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ stringid - Transit router instance ID.
- transit_
router_ stringtraffic_ qos_ marking_ policy_ id - Flow marking policy ID.
- transit_
router_ stringtraffic_ qos_ marking_ policy_ name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- update_
time string - Last update time of the flow marking policy.
- creation
Time String - Creation time of the flow marking policy.
- description String
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- status String
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringId - Transit router instance ID.
- transit
Router StringTraffic Qos Marking Policy Id - Flow marking policy ID.
- transit
Router StringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- update
Time String - Last update time of the flow marking policy.
- creation
Time string - Creation time of the flow marking policy.
- description string
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- status string
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router stringId - Transit router instance ID.
- transit
Router stringTraffic Qos Marking Policy Id - Flow marking policy ID.
- transit
Router stringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- update
Time string - Last update time of the flow marking policy.
- creation_
time str - Creation time of the flow marking policy.
- description str
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- status str
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit_
router_ strid - Transit router instance ID.
- transit_
router_ strtraffic_ qos_ marking_ policy_ id - Flow marking policy ID.
- transit_
router_ strtraffic_ qos_ marking_ policy_ name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- update_
time str - Last update time of the flow marking policy.
- creation
Time String - Creation time of the flow marking policy.
- description String
- Description of the flow marking policy. Must start with a letter, number, or Chinese character. Can contain letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters.
- status String
- Status of the flow marking policy. Creating: being created. Deleting: being deleted. Pending: being configured. Available: available.
- transit
Router StringId - Transit router instance ID.
- transit
Router StringTraffic Qos Marking Policy Id - Flow marking policy ID.
- transit
Router StringTraffic Qos Marking Policy Name - Name of the flow marking 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 limit: 1–128 characters. If this parameter is not provided or no value is passed, the default is the flow marking policy ID.
- update
Time String - Last update time of the flow marking policy.
Import
$ pulumi import volcenginecc:transitrouter/transitRouterTrafficQosMarkingPolicy:TransitRouterTrafficQosMarkingPolicy example "transit_router_id|transit_router_traffic_qos_marking_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