1. Packages
  2. Volcengine
  3. API Docs
  4. ecs
  5. Command
Volcengine v0.0.35 published on Friday, Aug 29, 2025 by Volcengine

volcengine.ecs.Command

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.35 published on Friday, Aug 29, 2025 by Volcengine

    Provides a resource to manage ecs command

    Import

    EcsCommand can be imported using the id, e.g.

    $ pulumi import volcengine:ecs/command:Command default cmd-ychkepkhtim0tr3bcsw1
    

    Create Command Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Command(name: string, args: CommandArgs, opts?: CustomResourceOptions);
    @overload
    def Command(resource_name: str,
                args: CommandArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Command(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                command_content: Optional[str] = None,
                description: Optional[str] = None,
                enable_parameter: Optional[bool] = None,
                name: Optional[str] = None,
                parameter_definitions: Optional[Sequence[CommandParameterDefinitionArgs]] = None,
                project_name: Optional[str] = None,
                tags: Optional[Sequence[CommandTagArgs]] = None,
                timeout: Optional[int] = None,
                type: Optional[str] = None,
                username: Optional[str] = None,
                working_dir: Optional[str] = None)
    func NewCommand(ctx *Context, name string, args CommandArgs, opts ...ResourceOption) (*Command, error)
    public Command(string name, CommandArgs args, CustomResourceOptions? opts = null)
    public Command(String name, CommandArgs args)
    public Command(String name, CommandArgs args, CustomResourceOptions options)
    
    type: volcengine:ecs:Command
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CommandArgs
    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 CommandArgs
    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 CommandArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CommandArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CommandArgs
    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 commandResource = new Volcengine.Ecs.Command("commandResource", new()
    {
        CommandContent = "string",
        Description = "string",
        EnableParameter = false,
        Name = "string",
        ParameterDefinitions = new[]
        {
            new Volcengine.Ecs.Inputs.CommandParameterDefinitionArgs
            {
                Name = "string",
                Type = "string",
                DecimalPrecision = 0,
                DefaultValue = "string",
                MaxLength = 0,
                MaxValue = "string",
                MinLength = 0,
                MinValue = "string",
                Required = false,
            },
        },
        ProjectName = "string",
        Tags = new[]
        {
            new Volcengine.Ecs.Inputs.CommandTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        Timeout = 0,
        Type = "string",
        Username = "string",
        WorkingDir = "string",
    });
    
    example, err := ecs.NewCommand(ctx, "commandResource", &ecs.CommandArgs{
    	CommandContent:  pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	EnableParameter: pulumi.Bool(false),
    	Name:            pulumi.String("string"),
    	ParameterDefinitions: ecs.CommandParameterDefinitionArray{
    		&ecs.CommandParameterDefinitionArgs{
    			Name:             pulumi.String("string"),
    			Type:             pulumi.String("string"),
    			DecimalPrecision: pulumi.Int(0),
    			DefaultValue:     pulumi.String("string"),
    			MaxLength:        pulumi.Int(0),
    			MaxValue:         pulumi.String("string"),
    			MinLength:        pulumi.Int(0),
    			MinValue:         pulumi.String("string"),
    			Required:         pulumi.Bool(false),
    		},
    	},
    	ProjectName: pulumi.String("string"),
    	Tags: ecs.CommandTagArray{
    		&ecs.CommandTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Timeout:    pulumi.Int(0),
    	Type:       pulumi.String("string"),
    	Username:   pulumi.String("string"),
    	WorkingDir: pulumi.String("string"),
    })
    
    var commandResource = new Command("commandResource", CommandArgs.builder()
        .commandContent("string")
        .description("string")
        .enableParameter(false)
        .name("string")
        .parameterDefinitions(CommandParameterDefinitionArgs.builder()
            .name("string")
            .type("string")
            .decimalPrecision(0)
            .defaultValue("string")
            .maxLength(0)
            .maxValue("string")
            .minLength(0)
            .minValue("string")
            .required(false)
            .build())
        .projectName("string")
        .tags(CommandTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .timeout(0)
        .type("string")
        .username("string")
        .workingDir("string")
        .build());
    
    command_resource = volcengine.ecs.Command("commandResource",
        command_content="string",
        description="string",
        enable_parameter=False,
        name="string",
        parameter_definitions=[{
            "name": "string",
            "type": "string",
            "decimal_precision": 0,
            "default_value": "string",
            "max_length": 0,
            "max_value": "string",
            "min_length": 0,
            "min_value": "string",
            "required": False,
        }],
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }],
        timeout=0,
        type="string",
        username="string",
        working_dir="string")
    
    const commandResource = new volcengine.ecs.Command("commandResource", {
        commandContent: "string",
        description: "string",
        enableParameter: false,
        name: "string",
        parameterDefinitions: [{
            name: "string",
            type: "string",
            decimalPrecision: 0,
            defaultValue: "string",
            maxLength: 0,
            maxValue: "string",
            minLength: 0,
            minValue: "string",
            required: false,
        }],
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
        timeout: 0,
        type: "string",
        username: "string",
        workingDir: "string",
    });
    
    type: volcengine:ecs:Command
    properties:
        commandContent: string
        description: string
        enableParameter: false
        name: string
        parameterDefinitions:
            - decimalPrecision: 0
              defaultValue: string
              maxLength: 0
              maxValue: string
              minLength: 0
              minValue: string
              name: string
              required: false
              type: string
        projectName: string
        tags:
            - key: string
              value: string
        timeout: 0
        type: string
        username: string
        workingDir: string
    

    Command 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 Command resource accepts the following input properties:

    CommandContent string
    The base64 encoded content of the ecs command.
    Description string
    The description of the ecs command.
    EnableParameter bool
    Whether to enable custom parameter. Default is false.
    Name string
    The name of the ecs command.
    ParameterDefinitions List<CommandParameterDefinition>
    The custom parameter definitions of the ecs command.
    ProjectName string
    The project name of the ecs command.
    Tags List<CommandTag>
    Tags.
    Timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    Type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    Username string
    The username of the ecs command.
    WorkingDir string
    The working directory of the ecs command.
    CommandContent string
    The base64 encoded content of the ecs command.
    Description string
    The description of the ecs command.
    EnableParameter bool
    Whether to enable custom parameter. Default is false.
    Name string
    The name of the ecs command.
    ParameterDefinitions []CommandParameterDefinitionArgs
    The custom parameter definitions of the ecs command.
    ProjectName string
    The project name of the ecs command.
    Tags []CommandTagArgs
    Tags.
    Timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    Type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    Username string
    The username of the ecs command.
    WorkingDir string
    The working directory of the ecs command.
    commandContent String
    The base64 encoded content of the ecs command.
    description String
    The description of the ecs command.
    enableParameter Boolean
    Whether to enable custom parameter. Default is false.
    name String
    The name of the ecs command.
    parameterDefinitions List<CommandParameterDefinition>
    The custom parameter definitions of the ecs command.
    projectName String
    The project name of the ecs command.
    tags List<CommandTag>
    Tags.
    timeout Integer
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type String
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    username String
    The username of the ecs command.
    workingDir String
    The working directory of the ecs command.
    commandContent string
    The base64 encoded content of the ecs command.
    description string
    The description of the ecs command.
    enableParameter boolean
    Whether to enable custom parameter. Default is false.
    name string
    The name of the ecs command.
    parameterDefinitions CommandParameterDefinition[]
    The custom parameter definitions of the ecs command.
    projectName string
    The project name of the ecs command.
    tags CommandTag[]
    Tags.
    timeout number
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    username string
    The username of the ecs command.
    workingDir string
    The working directory of the ecs command.
    command_content str
    The base64 encoded content of the ecs command.
    description str
    The description of the ecs command.
    enable_parameter bool
    Whether to enable custom parameter. Default is false.
    name str
    The name of the ecs command.
    parameter_definitions Sequence[CommandParameterDefinitionArgs]
    The custom parameter definitions of the ecs command.
    project_name str
    The project name of the ecs command.
    tags Sequence[CommandTagArgs]
    Tags.
    timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type str
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    username str
    The username of the ecs command.
    working_dir str
    The working directory of the ecs command.
    commandContent String
    The base64 encoded content of the ecs command.
    description String
    The description of the ecs command.
    enableParameter Boolean
    Whether to enable custom parameter. Default is false.
    name String
    The name of the ecs command.
    parameterDefinitions List<Property Map>
    The custom parameter definitions of the ecs command.
    projectName String
    The project name of the ecs command.
    tags List<Property Map>
    Tags.
    timeout Number
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type String
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    username String
    The username of the ecs command.
    workingDir String
    The working directory of the ecs command.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Command resource produces the following output properties:

    CreatedAt string
    The create time of the ecs command.
    Id string
    The provider-assigned unique ID for this managed resource.
    InvocationTimes int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    UpdatedAt string
    The update time of the ecs command.
    CreatedAt string
    The create time of the ecs command.
    Id string
    The provider-assigned unique ID for this managed resource.
    InvocationTimes int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    UpdatedAt string
    The update time of the ecs command.
    createdAt String
    The create time of the ecs command.
    id String
    The provider-assigned unique ID for this managed resource.
    invocationTimes Integer
    The invocation times of the ecs command. Public commands do not display the invocation times.
    updatedAt String
    The update time of the ecs command.
    createdAt string
    The create time of the ecs command.
    id string
    The provider-assigned unique ID for this managed resource.
    invocationTimes number
    The invocation times of the ecs command. Public commands do not display the invocation times.
    updatedAt string
    The update time of the ecs command.
    created_at str
    The create time of the ecs command.
    id str
    The provider-assigned unique ID for this managed resource.
    invocation_times int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    updated_at str
    The update time of the ecs command.
    createdAt String
    The create time of the ecs command.
    id String
    The provider-assigned unique ID for this managed resource.
    invocationTimes Number
    The invocation times of the ecs command. Public commands do not display the invocation times.
    updatedAt String
    The update time of the ecs command.

    Look up Existing Command Resource

    Get an existing Command 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?: CommandState, opts?: CustomResourceOptions): Command
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            command_content: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            enable_parameter: Optional[bool] = None,
            invocation_times: Optional[int] = None,
            name: Optional[str] = None,
            parameter_definitions: Optional[Sequence[CommandParameterDefinitionArgs]] = None,
            project_name: Optional[str] = None,
            tags: Optional[Sequence[CommandTagArgs]] = None,
            timeout: Optional[int] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None,
            username: Optional[str] = None,
            working_dir: Optional[str] = None) -> Command
    func GetCommand(ctx *Context, name string, id IDInput, state *CommandState, opts ...ResourceOption) (*Command, error)
    public static Command Get(string name, Input<string> id, CommandState? state, CustomResourceOptions? opts = null)
    public static Command get(String name, Output<String> id, CommandState state, CustomResourceOptions options)
    resources:  _:    type: volcengine:ecs:Command    get:      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:
    CommandContent string
    The base64 encoded content of the ecs command.
    CreatedAt string
    The create time of the ecs command.
    Description string
    The description of the ecs command.
    EnableParameter bool
    Whether to enable custom parameter. Default is false.
    InvocationTimes int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    Name string
    The name of the ecs command.
    ParameterDefinitions List<CommandParameterDefinition>
    The custom parameter definitions of the ecs command.
    ProjectName string
    The project name of the ecs command.
    Tags List<CommandTag>
    Tags.
    Timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    Type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    UpdatedAt string
    The update time of the ecs command.
    Username string
    The username of the ecs command.
    WorkingDir string
    The working directory of the ecs command.
    CommandContent string
    The base64 encoded content of the ecs command.
    CreatedAt string
    The create time of the ecs command.
    Description string
    The description of the ecs command.
    EnableParameter bool
    Whether to enable custom parameter. Default is false.
    InvocationTimes int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    Name string
    The name of the ecs command.
    ParameterDefinitions []CommandParameterDefinitionArgs
    The custom parameter definitions of the ecs command.
    ProjectName string
    The project name of the ecs command.
    Tags []CommandTagArgs
    Tags.
    Timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    Type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    UpdatedAt string
    The update time of the ecs command.
    Username string
    The username of the ecs command.
    WorkingDir string
    The working directory of the ecs command.
    commandContent String
    The base64 encoded content of the ecs command.
    createdAt String
    The create time of the ecs command.
    description String
    The description of the ecs command.
    enableParameter Boolean
    Whether to enable custom parameter. Default is false.
    invocationTimes Integer
    The invocation times of the ecs command. Public commands do not display the invocation times.
    name String
    The name of the ecs command.
    parameterDefinitions List<CommandParameterDefinition>
    The custom parameter definitions of the ecs command.
    projectName String
    The project name of the ecs command.
    tags List<CommandTag>
    Tags.
    timeout Integer
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type String
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    updatedAt String
    The update time of the ecs command.
    username String
    The username of the ecs command.
    workingDir String
    The working directory of the ecs command.
    commandContent string
    The base64 encoded content of the ecs command.
    createdAt string
    The create time of the ecs command.
    description string
    The description of the ecs command.
    enableParameter boolean
    Whether to enable custom parameter. Default is false.
    invocationTimes number
    The invocation times of the ecs command. Public commands do not display the invocation times.
    name string
    The name of the ecs command.
    parameterDefinitions CommandParameterDefinition[]
    The custom parameter definitions of the ecs command.
    projectName string
    The project name of the ecs command.
    tags CommandTag[]
    Tags.
    timeout number
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type string
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    updatedAt string
    The update time of the ecs command.
    username string
    The username of the ecs command.
    workingDir string
    The working directory of the ecs command.
    command_content str
    The base64 encoded content of the ecs command.
    created_at str
    The create time of the ecs command.
    description str
    The description of the ecs command.
    enable_parameter bool
    Whether to enable custom parameter. Default is false.
    invocation_times int
    The invocation times of the ecs command. Public commands do not display the invocation times.
    name str
    The name of the ecs command.
    parameter_definitions Sequence[CommandParameterDefinitionArgs]
    The custom parameter definitions of the ecs command.
    project_name str
    The project name of the ecs command.
    tags Sequence[CommandTagArgs]
    Tags.
    timeout int
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type str
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    updated_at str
    The update time of the ecs command.
    username str
    The username of the ecs command.
    working_dir str
    The working directory of the ecs command.
    commandContent String
    The base64 encoded content of the ecs command.
    createdAt String
    The create time of the ecs command.
    description String
    The description of the ecs command.
    enableParameter Boolean
    Whether to enable custom parameter. Default is false.
    invocationTimes Number
    The invocation times of the ecs command. Public commands do not display the invocation times.
    name String
    The name of the ecs command.
    parameterDefinitions List<Property Map>
    The custom parameter definitions of the ecs command.
    projectName String
    The project name of the ecs command.
    tags List<Property Map>
    Tags.
    timeout Number
    The timeout of the ecs command. Unit: seconds. Valid value range: 30~86400. Default is 300.
    type String
    The type of the ecs command. Valid values: Shell, Python, PowerShell, Bat. Default is Shell.
    updatedAt String
    The update time of the ecs command.
    username String
    The username of the ecs command.
    workingDir String
    The working directory of the ecs command.

    Supporting Types

    CommandParameterDefinition, CommandParameterDefinitionArgs

    Name string
    The name of the custom parameter.
    Type string
    The type of the custom parameter. Valid values: String, Digit.
    DecimalPrecision int
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    DefaultValue string
    The default value of the custom parameter.
    MaxLength int
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    MaxValue string
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    MinLength int
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    MinValue string
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    Required bool
    Whether the custom parameter is required.
    Name string
    The name of the custom parameter.
    Type string
    The type of the custom parameter. Valid values: String, Digit.
    DecimalPrecision int
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    DefaultValue string
    The default value of the custom parameter.
    MaxLength int
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    MaxValue string
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    MinLength int
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    MinValue string
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    Required bool
    Whether the custom parameter is required.
    name String
    The name of the custom parameter.
    type String
    The type of the custom parameter. Valid values: String, Digit.
    decimalPrecision Integer
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    defaultValue String
    The default value of the custom parameter.
    maxLength Integer
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    maxValue String
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    minLength Integer
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    minValue String
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    required Boolean
    Whether the custom parameter is required.
    name string
    The name of the custom parameter.
    type string
    The type of the custom parameter. Valid values: String, Digit.
    decimalPrecision number
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    defaultValue string
    The default value of the custom parameter.
    maxLength number
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    maxValue string
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    minLength number
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    minValue string
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    required boolean
    Whether the custom parameter is required.
    name str
    The name of the custom parameter.
    type str
    The type of the custom parameter. Valid values: String, Digit.
    decimal_precision int
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    default_value str
    The default value of the custom parameter.
    max_length int
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    max_value str
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    min_length int
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    min_value str
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    required bool
    Whether the custom parameter is required.
    name String
    The name of the custom parameter.
    type String
    The type of the custom parameter. Valid values: String, Digit.
    decimalPrecision Number
    The decimal precision of the custom parameter. This field is required when the parameter type is Digit.
    defaultValue String
    The default value of the custom parameter.
    maxLength Number
    The maximum length of the custom parameter. This field is required when the parameter type is String.
    maxValue String
    The maximum value of the custom parameter. This field is required when the parameter type is Digit.
    minLength Number
    The minimum length of the custom parameter. This field is required when the parameter type is String.
    minValue String
    The minimum value of the custom parameter. This field is required when the parameter type is Digit.
    required Boolean
    Whether the custom parameter is required.

    CommandTag, CommandTagArgs

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.35 published on Friday, Aug 29, 2025 by Volcengine