1. Registry
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. getCatProbeTasks
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack

    Use this data source to query the list of probe tasks of CAT (云拨测).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getCatProbeTasks({});
    export const taskSet = example.then(example => example.taskSets);
    export const total = example.then(example => example.total);
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_cat_probe_tasks()
    pulumi.export("taskSet", example.task_sets)
    pulumi.export("total", example.total)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := tencentcloud.GetCatProbeTasks(ctx, &tencentcloud.GetCatProbeTasksArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("taskSet", example.TaskSets)
    		ctx.Export("total", example.Total)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetCatProbeTasks.Invoke();
    
        return new Dictionary<string, object?>
        {
            ["taskSet"] = example.Apply(getCatProbeTasksResult => getCatProbeTasksResult.TaskSets),
            ["total"] = example.Apply(getCatProbeTasksResult => getCatProbeTasksResult.Total),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetCatProbeTasksArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            final var example = TencentcloudFunctions.getCatProbeTasks(GetCatProbeTasksArgs.builder()
                .build());
    
            ctx.export("taskSet", example.taskSets());
            ctx.export("total", example.total());
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getCatProbeTasks
          arguments: {}
    outputs:
      taskSet: ${example.taskSets}
      total: ${example.total}
    
    Example coming soon!
    

    Query probe tasks by name and target address

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const byName = tencentcloud.getCatProbeTasks({
        taskName: "my-probe-task",
        targetAddress: "http://www.example.com",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    by_name = tencentcloud.get_cat_probe_tasks(task_name="my-probe-task",
        target_address="http://www.example.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetCatProbeTasks(ctx, &tencentcloud.GetCatProbeTasksArgs{
    			TaskName:      pulumi.StringRef("my-probe-task"),
    			TargetAddress: pulumi.StringRef("http://www.example.com"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var byName = Tencentcloud.GetCatProbeTasks.Invoke(new()
        {
            TaskName = "my-probe-task",
            TargetAddress = "http://www.example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetCatProbeTasksArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            final var byName = TencentcloudFunctions.getCatProbeTasks(GetCatProbeTasksArgs.builder()
                .taskName("my-probe-task")
                .targetAddress("http://www.example.com")
                .build());
    
        }
    }
    
    variables:
      byName:
        fn::invoke:
          function: tencentcloud:getCatProbeTasks
          arguments:
            taskName: my-probe-task
            targetAddress: http://www.example.com
    
    Example coming soon!
    

    Query probe tasks by tag filters

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const byTags = tencentcloud.getCatProbeTasks({
        tagFilters: [{
            key: "Environment",
            value: "Production",
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    by_tags = tencentcloud.get_cat_probe_tasks(tag_filters=[{
        "key": "Environment",
        "value": "Production",
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.GetCatProbeTasks(ctx, &tencentcloud.GetCatProbeTasksArgs{
    			TagFilters: []tencentcloud.GetCatProbeTasksTagFilter{
    				{
    					Key:   "Environment",
    					Value: "Production",
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var byTags = Tencentcloud.GetCatProbeTasks.Invoke(new()
        {
            TagFilters = new[]
            {
                new Tencentcloud.Inputs.GetCatProbeTasksTagFilterInputArgs
                {
                    Key = "Environment",
                    Value = "Production",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetCatProbeTasksArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            final var byTags = TencentcloudFunctions.getCatProbeTasks(GetCatProbeTasksArgs.builder()
                .tagFilters(GetCatProbeTasksTagFilterArgs.builder()
                    .key("Environment")
                    .value("Production")
                    .build())
                .build());
    
        }
    }
    
    variables:
      byTags:
        fn::invoke:
          function: tencentcloud:getCatProbeTasks
          arguments:
            tagFilters:
              - key: Environment
                value: Production
    
    Example coming soon!
    

    Using getCatProbeTasks

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCatProbeTasks(args: GetCatProbeTasksArgs, opts?: InvokeOptions): Promise<GetCatProbeTasksResult>
    function getCatProbeTasksOutput(args: GetCatProbeTasksOutputArgs, opts?: InvokeOutputOptions): Output<GetCatProbeTasksResult>
    def get_cat_probe_tasks(ascend: Optional[bool] = None,
                            id: Optional[str] = None,
                            order_by: Optional[str] = None,
                            order_state: Optional[float] = None,
                            pay_mode: Optional[float] = None,
                            result_output_file: Optional[str] = None,
                            tag_filters: Optional[Sequence[GetCatProbeTasksTagFilter]] = None,
                            target_address: Optional[str] = None,
                            task_categories: Optional[Sequence[float]] = None,
                            task_ids: Optional[Sequence[str]] = None,
                            task_name: Optional[str] = None,
                            task_statuses: Optional[Sequence[float]] = None,
                            task_types: Optional[Sequence[float]] = None,
                            opts: Optional[InvokeOptions] = None) -> GetCatProbeTasksResult
    def get_cat_probe_tasks_output(ascend: pulumi.Input[Optional[bool]] = None,
                            id: pulumi.Input[Optional[str]] = None,
                            order_by: pulumi.Input[Optional[str]] = None,
                            order_state: pulumi.Input[Optional[float]] = None,
                            pay_mode: pulumi.Input[Optional[float]] = None,
                            result_output_file: pulumi.Input[Optional[str]] = None,
                            tag_filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetCatProbeTasksTagFilterArgs]]]] = None,
                            target_address: pulumi.Input[Optional[str]] = None,
                            task_categories: pulumi.Input[Optional[Sequence[pulumi.Input[float]]]] = None,
                            task_ids: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                            task_name: pulumi.Input[Optional[str]] = None,
                            task_statuses: pulumi.Input[Optional[Sequence[pulumi.Input[float]]]] = None,
                            task_types: pulumi.Input[Optional[Sequence[pulumi.Input[float]]]] = None,
                            opts: Optional[InvokeOutputOptions] = None) -> Output[GetCatProbeTasksResult]
    func GetCatProbeTasks(ctx *Context, args *GetCatProbeTasksArgs, opts ...InvokeOption) (*GetCatProbeTasksResult, error)
    func GetCatProbeTasksOutput(ctx *Context, args *GetCatProbeTasksOutputArgs, opts ...InvokeOption) GetCatProbeTasksResultOutput

    > Note: This function is named GetCatProbeTasks in the Go SDK.

    public static class GetCatProbeTasks 
    {
        public static Task<GetCatProbeTasksResult> InvokeAsync(GetCatProbeTasksArgs args, InvokeOptions? opts = null)
        public static Output<GetCatProbeTasksResult> Invoke(GetCatProbeTasksInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCatProbeTasksResult> Invoke(GetCatProbeTasksInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCatProbeTasksResult> getCatProbeTasks(GetCatProbeTasksArgs args, InvokeOptions options)
    public static Output<GetCatProbeTasksResult> getCatProbeTasks(GetCatProbeTasksArgs args, InvokeOptions options)
    public static Output<GetCatProbeTasksResult> getCatProbeTasks(GetCatProbeTasksArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getCatProbeTasks:getCatProbeTasks
      arguments:
        # arguments dictionary
    data "tencentcloud_get_cat_probe_tasks" "name" {
        # arguments
    }

    The following arguments are supported:

    Ascend bool
    Whether to sort in ascending order.
    Id string
    OrderBy string
    Order by column.
    OrderState double
    Order state.
    PayMode double
    Pay mode.
    ResultOutputFile string
    Used to save results.
    TagFilters List<GetCatProbeTasksTagFilter>
    Tag filters.
    TargetAddress string
    Target address.
    TaskCategories List<double>
    Task category list.
    TaskIds List<string>
    Task ID list.
    TaskName string
    Task name.
    TaskStatuses List<double>
    Task status list.
    TaskTypes List<double>
    Task type list.
    Ascend bool
    Whether to sort in ascending order.
    Id string
    OrderBy string
    Order by column.
    OrderState float64
    Order state.
    PayMode float64
    Pay mode.
    ResultOutputFile string
    Used to save results.
    TagFilters []GetCatProbeTasksTagFilter
    Tag filters.
    TargetAddress string
    Target address.
    TaskCategories []float64
    Task category list.
    TaskIds []string
    Task ID list.
    TaskName string
    Task name.
    TaskStatuses []float64
    Task status list.
    TaskTypes []float64
    Task type list.
    ascend bool
    Whether to sort in ascending order.
    id string
    order_by string
    Order by column.
    order_state number
    Order state.
    pay_mode number
    Pay mode.
    result_output_file string
    Used to save results.
    tag_filters list(object)
    Tag filters.
    target_address string
    Target address.
    task_categories list(number)
    Task category list.
    task_ids list(string)
    Task ID list.
    task_name string
    Task name.
    task_statuses list(number)
    Task status list.
    task_types list(number)
    Task type list.
    ascend Boolean
    Whether to sort in ascending order.
    id String
    orderBy String
    Order by column.
    orderState Double
    Order state.
    payMode Double
    Pay mode.
    resultOutputFile String
    Used to save results.
    tagFilters List<GetCatProbeTasksTagFilter>
    Tag filters.
    targetAddress String
    Target address.
    taskCategories List<Double>
    Task category list.
    taskIds List<String>
    Task ID list.
    taskName String
    Task name.
    taskStatuses List<Double>
    Task status list.
    taskTypes List<Double>
    Task type list.
    ascend boolean
    Whether to sort in ascending order.
    id string
    orderBy string
    Order by column.
    orderState number
    Order state.
    payMode number
    Pay mode.
    resultOutputFile string
    Used to save results.
    tagFilters GetCatProbeTasksTagFilter[]
    Tag filters.
    targetAddress string
    Target address.
    taskCategories number[]
    Task category list.
    taskIds string[]
    Task ID list.
    taskName string
    Task name.
    taskStatuses number[]
    Task status list.
    taskTypes number[]
    Task type list.
    ascend bool
    Whether to sort in ascending order.
    id str
    order_by str
    Order by column.
    order_state float
    Order state.
    pay_mode float
    Pay mode.
    result_output_file str
    Used to save results.
    tag_filters Sequence[GetCatProbeTasksTagFilter]
    Tag filters.
    target_address str
    Target address.
    task_categories Sequence[float]
    Task category list.
    task_ids Sequence[str]
    Task ID list.
    task_name str
    Task name.
    task_statuses Sequence[float]
    Task status list.
    task_types Sequence[float]
    Task type list.
    ascend Boolean
    Whether to sort in ascending order.
    id String
    orderBy String
    Order by column.
    orderState Number
    Order state.
    payMode Number
    Pay mode.
    resultOutputFile String
    Used to save results.
    tagFilters List<Property Map>
    Tag filters.
    targetAddress String
    Target address.
    taskCategories List<Number>
    Task category list.
    taskIds List<String>
    Task ID list.
    taskName String
    Task name.
    taskStatuses List<Number>
    Task status list.
    taskTypes List<Number>
    Task type list.

    getCatProbeTasks Result

    The following output properties are available:

    Id string
    TaskSets List<GetCatProbeTasksTaskSet>
    Probe task list.
    Total double
    Total number of probe tasks.
    Ascend bool
    OrderBy string
    OrderState double
    Order state.
    PayMode double
    Pay mode.
    ResultOutputFile string
    TagFilters List<GetCatProbeTasksTagFilter>
    TargetAddress string
    Target address.
    TaskCategories List<double>
    Task category.
    TaskIds List<string>
    TaskName string
    TaskStatuses List<double>
    TaskTypes List<double>
    Task type.
    Id string
    TaskSets []GetCatProbeTasksTaskSet
    Probe task list.
    Total float64
    Total number of probe tasks.
    Ascend bool
    OrderBy string
    OrderState float64
    Order state.
    PayMode float64
    Pay mode.
    ResultOutputFile string
    TagFilters []GetCatProbeTasksTagFilter
    TargetAddress string
    Target address.
    TaskCategories []float64
    Task category.
    TaskIds []string
    TaskName string
    TaskStatuses []float64
    TaskTypes []float64
    Task type.
    id string
    task_sets list(object)
    Probe task list.
    total number
    Total number of probe tasks.
    ascend bool
    order_by string
    order_state number
    Order state.
    pay_mode number
    Pay mode.
    result_output_file string
    tag_filters list(object)
    target_address string
    Target address.
    task_categories list(number)
    Task category.
    task_ids list(string)
    task_name string
    task_statuses list(number)
    task_types list(number)
    Task type.
    id String
    taskSets List<GetCatProbeTasksTaskSet>
    Probe task list.
    total Double
    Total number of probe tasks.
    ascend Boolean
    orderBy String
    orderState Double
    Order state.
    payMode Double
    Pay mode.
    resultOutputFile String
    tagFilters List<GetCatProbeTasksTagFilter>
    targetAddress String
    Target address.
    taskCategories List<Double>
    Task category.
    taskIds List<String>
    taskName String
    taskStatuses List<Double>
    taskTypes List<Double>
    Task type.
    id string
    taskSets GetCatProbeTasksTaskSet[]
    Probe task list.
    total number
    Total number of probe tasks.
    ascend boolean
    orderBy string
    orderState number
    Order state.
    payMode number
    Pay mode.
    resultOutputFile string
    tagFilters GetCatProbeTasksTagFilter[]
    targetAddress string
    Target address.
    taskCategories number[]
    Task category.
    taskIds string[]
    taskName string
    taskStatuses number[]
    taskTypes number[]
    Task type.
    id str
    task_sets Sequence[GetCatProbeTasksTaskSet]
    Probe task list.
    total float
    Total number of probe tasks.
    ascend bool
    order_by str
    order_state float
    Order state.
    pay_mode float
    Pay mode.
    result_output_file str
    tag_filters Sequence[GetCatProbeTasksTagFilter]
    target_address str
    Target address.
    task_categories Sequence[float]
    Task category.
    task_ids Sequence[str]
    task_name str
    task_statuses Sequence[float]
    task_types Sequence[float]
    Task type.
    id String
    taskSets List<Property Map>
    Probe task list.
    total Number
    Total number of probe tasks.
    ascend Boolean
    orderBy String
    orderState Number
    Order state.
    payMode Number
    Pay mode.
    resultOutputFile String
    tagFilters List<Property Map>
    targetAddress String
    Target address.
    taskCategories List<Number>
    Task category.
    taskIds List<String>
    taskName String
    taskStatuses List<Number>
    taskTypes List<Number>
    Task type.

    Supporting Types

    GetCatProbeTasksTagFilter

    Key string
    Tag key.
    Value string
    Tag value.
    Key string
    Tag key.
    Value string
    Tag value.
    key string
    Tag key.
    value string
    Tag value.
    key String
    Tag key.
    value String
    Tag value.
    key string
    Tag key.
    value string
    Tag value.
    key str
    Tag key.
    value str
    Tag value.
    key String
    Tag key.
    value String
    Tag value.

    GetCatProbeTasksTaskSet

    CreatedAt string
    Created time.
    Cron string
    Cron expression for scheduled task.
    CronState double
    Scheduled task start status.
    Interval double
    Probe interval in minutes.
    Name string
    Task name.
    NodeIpType double
    Probe node IP type.
    Nodes List<string>
    Probe node list.
    OrderState double
    Order state.
    Parameters string
    Probe parameters.
    PayMode double
    Pay mode.
    Status double
    Task status.
    SubSyncFlag double
    Whether it is a sync account.
    TagInfoLists List<GetCatProbeTasksTaskSetTagInfoList>
    Tag info list.
    TargetAddress string
    Target address.
    TaskCategory double
    Task category list.
    TaskId string
    Task ID.
    TaskType double
    Task type list.
    CreatedAt string
    Created time.
    Cron string
    Cron expression for scheduled task.
    CronState float64
    Scheduled task start status.
    Interval float64
    Probe interval in minutes.
    Name string
    Task name.
    NodeIpType float64
    Probe node IP type.
    Nodes []string
    Probe node list.
    OrderState float64
    Order state.
    Parameters string
    Probe parameters.
    PayMode float64
    Pay mode.
    Status float64
    Task status.
    SubSyncFlag float64
    Whether it is a sync account.
    TagInfoLists []GetCatProbeTasksTaskSetTagInfoList
    Tag info list.
    TargetAddress string
    Target address.
    TaskCategory float64
    Task category list.
    TaskId string
    Task ID.
    TaskType float64
    Task type list.
    created_at string
    Created time.
    cron string
    Cron expression for scheduled task.
    cron_state number
    Scheduled task start status.
    interval number
    Probe interval in minutes.
    name string
    Task name.
    node_ip_type number
    Probe node IP type.
    nodes list(string)
    Probe node list.
    order_state number
    Order state.
    parameters string
    Probe parameters.
    pay_mode number
    Pay mode.
    status number
    Task status.
    sub_sync_flag number
    Whether it is a sync account.
    tag_info_lists list(object)
    Tag info list.
    target_address string
    Target address.
    task_category number
    Task category list.
    task_id string
    Task ID.
    task_type number
    Task type list.
    createdAt String
    Created time.
    cron String
    Cron expression for scheduled task.
    cronState Double
    Scheduled task start status.
    interval Double
    Probe interval in minutes.
    name String
    Task name.
    nodeIpType Double
    Probe node IP type.
    nodes List<String>
    Probe node list.
    orderState Double
    Order state.
    parameters String
    Probe parameters.
    payMode Double
    Pay mode.
    status Double
    Task status.
    subSyncFlag Double
    Whether it is a sync account.
    tagInfoLists List<GetCatProbeTasksTaskSetTagInfoList>
    Tag info list.
    targetAddress String
    Target address.
    taskCategory Double
    Task category list.
    taskId String
    Task ID.
    taskType Double
    Task type list.
    createdAt string
    Created time.
    cron string
    Cron expression for scheduled task.
    cronState number
    Scheduled task start status.
    interval number
    Probe interval in minutes.
    name string
    Task name.
    nodeIpType number
    Probe node IP type.
    nodes string[]
    Probe node list.
    orderState number
    Order state.
    parameters string
    Probe parameters.
    payMode number
    Pay mode.
    status number
    Task status.
    subSyncFlag number
    Whether it is a sync account.
    tagInfoLists GetCatProbeTasksTaskSetTagInfoList[]
    Tag info list.
    targetAddress string
    Target address.
    taskCategory number
    Task category list.
    taskId string
    Task ID.
    taskType number
    Task type list.
    created_at str
    Created time.
    cron str
    Cron expression for scheduled task.
    cron_state float
    Scheduled task start status.
    interval float
    Probe interval in minutes.
    name str
    Task name.
    node_ip_type float
    Probe node IP type.
    nodes Sequence[str]
    Probe node list.
    order_state float
    Order state.
    parameters str
    Probe parameters.
    pay_mode float
    Pay mode.
    status float
    Task status.
    sub_sync_flag float
    Whether it is a sync account.
    tag_info_lists Sequence[GetCatProbeTasksTaskSetTagInfoList]
    Tag info list.
    target_address str
    Target address.
    task_category float
    Task category list.
    task_id str
    Task ID.
    task_type float
    Task type list.
    createdAt String
    Created time.
    cron String
    Cron expression for scheduled task.
    cronState Number
    Scheduled task start status.
    interval Number
    Probe interval in minutes.
    name String
    Task name.
    nodeIpType Number
    Probe node IP type.
    nodes List<String>
    Probe node list.
    orderState Number
    Order state.
    parameters String
    Probe parameters.
    payMode Number
    Pay mode.
    status Number
    Task status.
    subSyncFlag Number
    Whether it is a sync account.
    tagInfoLists List<Property Map>
    Tag info list.
    targetAddress String
    Target address.
    taskCategory Number
    Task category list.
    taskId String
    Task ID.
    taskType Number
    Task type list.

    GetCatProbeTasksTaskSetTagInfoList

    Key string
    Tag key.
    Value string
    Tag value.
    Key string
    Tag key.
    Value string
    Tag value.
    key string
    Tag key.
    value string
    Tag value.
    key String
    Tag key.
    value String
    Tag value.
    key string
    Tag key.
    value string
    Tag value.
    key str
    Tag key.
    value str
    Tag value.
    key String
    Tag key.
    value String
    Tag value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.33
    published on Monday, Sep 21, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial