1. Registry
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. getCatProbeMetricTagValues
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 detailed information of cat probe_metric_tag_values

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getCatProbeMetricTagValues({
        analyzeTaskType: "AnalyzeTaskType_Network",
        key: "host",
        filter: "www.qq.com",
        timeRange: "1h",
    });
    export const tagValues = example.then(example => example.tagValueSet);
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_cat_probe_metric_tag_values(analyze_task_type="AnalyzeTaskType_Network",
        key="host",
        filter="www.qq.com",
        time_range="1h")
    pulumi.export("tagValues", example.tag_value_set)
    
    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.GetCatProbeMetricTagValues(ctx, &tencentcloud.GetCatProbeMetricTagValuesArgs{
    			AnalyzeTaskType: pulumi.StringRef("AnalyzeTaskType_Network"),
    			Key:             pulumi.StringRef("host"),
    			Filter:          pulumi.StringRef("www.qq.com"),
    			TimeRange:       pulumi.StringRef("1h"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("tagValues", example.TagValueSet)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Tencentcloud.GetCatProbeMetricTagValues.Invoke(new()
        {
            AnalyzeTaskType = "AnalyzeTaskType_Network",
            Key = "host",
            Filter = "www.qq.com",
            TimeRange = "1h",
        });
    
        return new Dictionary<string, object?>
        {
            ["tagValues"] = example.Apply(getCatProbeMetricTagValuesResult => getCatProbeMetricTagValuesResult.TagValueSet),
        };
    });
    
    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.GetCatProbeMetricTagValuesArgs;
    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.getCatProbeMetricTagValues(GetCatProbeMetricTagValuesArgs.builder()
                .analyzeTaskType("AnalyzeTaskType_Network")
                .key("host")
                .filter("www.qq.com")
                .timeRange("1h")
                .build());
    
            ctx.export("tagValues", example.tagValueSet());
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getCatProbeMetricTagValues
          arguments:
            analyzeTaskType: AnalyzeTaskType_Network
            key: host
            filter: www.qq.com
            timeRange: 1h
    outputs:
      tagValues: ${example.tagValueSet}
    
    Example coming soon!
    

    Using getCatProbeMetricTagValues

    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 getCatProbeMetricTagValues(args: GetCatProbeMetricTagValuesArgs, opts?: InvokeOptions): Promise<GetCatProbeMetricTagValuesResult>
    function getCatProbeMetricTagValuesOutput(args: GetCatProbeMetricTagValuesOutputArgs, opts?: InvokeOutputOptions): Output<GetCatProbeMetricTagValuesResult>
    def get_cat_probe_metric_tag_values(analyze_task_type: Optional[str] = None,
                                        filter: Optional[str] = None,
                                        filters: Optional[Sequence[str]] = None,
                                        id: Optional[str] = None,
                                        key: Optional[str] = None,
                                        result_output_file: Optional[str] = None,
                                        time_range: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetCatProbeMetricTagValuesResult
    def get_cat_probe_metric_tag_values_output(analyze_task_type: pulumi.Input[Optional[str]] = None,
                                        filter: pulumi.Input[Optional[str]] = None,
                                        filters: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
                                        id: pulumi.Input[Optional[str]] = None,
                                        key: pulumi.Input[Optional[str]] = None,
                                        result_output_file: pulumi.Input[Optional[str]] = None,
                                        time_range: pulumi.Input[Optional[str]] = None,
                                        opts: Optional[InvokeOutputOptions] = None) -> Output[GetCatProbeMetricTagValuesResult]
    func GetCatProbeMetricTagValues(ctx *Context, args *GetCatProbeMetricTagValuesArgs, opts ...InvokeOption) (*GetCatProbeMetricTagValuesResult, error)
    func GetCatProbeMetricTagValuesOutput(ctx *Context, args *GetCatProbeMetricTagValuesOutputArgs, opts ...InvokeOption) GetCatProbeMetricTagValuesResultOutput

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

    public static class GetCatProbeMetricTagValues 
    {
        public static Task<GetCatProbeMetricTagValuesResult> InvokeAsync(GetCatProbeMetricTagValuesArgs args, InvokeOptions? opts = null)
        public static Output<GetCatProbeMetricTagValuesResult> Invoke(GetCatProbeMetricTagValuesInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCatProbeMetricTagValuesResult> Invoke(GetCatProbeMetricTagValuesInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCatProbeMetricTagValuesResult> getCatProbeMetricTagValues(GetCatProbeMetricTagValuesArgs args, InvokeOptions options)
    public static Output<GetCatProbeMetricTagValuesResult> getCatProbeMetricTagValues(GetCatProbeMetricTagValuesArgs args, InvokeOptions options)
    public static Output<GetCatProbeMetricTagValuesResult> getCatProbeMetricTagValues(GetCatProbeMetricTagValuesArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getCatProbeMetricTagValues:getCatProbeMetricTagValues
      arguments:
        # arguments dictionary
    data "tencentcloud_get_cat_probe_metric_tag_values" "name" {
        # arguments
    }

    The following arguments are supported:

    AnalyzeTaskType string
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    Filter string
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    Filters List<string>
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    Id string
    Key string
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    ResultOutputFile string
    Used to save results.
    TimeRange string
    Time range.
    AnalyzeTaskType string
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    Filter string
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    Filters []string
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    Id string
    Key string
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    ResultOutputFile string
    Used to save results.
    TimeRange string
    Time range.
    analyze_task_type string
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    filter string
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    filters list(string)
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    id string
    key string
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    result_output_file string
    Used to save results.
    time_range string
    Time range.
    analyzeTaskType String
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    filter String
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    filters List<String>
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    id String
    key String
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    resultOutputFile String
    Used to save results.
    timeRange String
    Time range.
    analyzeTaskType string
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    filter string
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    filters string[]
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    id string
    key string
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    resultOutputFile string
    Used to save results.
    timeRange string
    Time range.
    analyze_task_type str
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    filter str
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    filters Sequence[str]
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    id str
    key str
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    result_output_file str
    Used to save results.
    time_range str
    Time range.
    analyzeTaskType String
    Analysis of task type, supported types: AnalyzeTaskType_Network: network quality, AnalyzeTaskType_Browse: page performance, AnalyzeTaskType_Transport: port performance, AnalyzeTaskType_UploadDownload: file transport, AnalyzeTaskType_MediaStream: audiovisual experience.
    filter String
    Filter conditions can be passed as a single filter or multiple parameters concatenated together, support regular matching.
    filters List<String>
    Multiple condition filtering, supports combining multiple filtering conditions for query.
    id String
    key String
    Dimension tag value, reference: host: task domain, errorInfo: status type, area: probe point area, operator: probe point operator, taskId: task ID.
    resultOutputFile String
    Used to save results.
    timeRange String
    Time range.

    getCatProbeMetricTagValues Result

    The following output properties are available:

    Id string
    TagValueSet string
    Tag value serialized string.
    AnalyzeTaskType string
    Filter string
    Filters List<string>
    Key string
    ResultOutputFile string
    TimeRange string
    Id string
    TagValueSet string
    Tag value serialized string.
    AnalyzeTaskType string
    Filter string
    Filters []string
    Key string
    ResultOutputFile string
    TimeRange string
    id string
    tag_value_set string
    Tag value serialized string.
    analyze_task_type string
    filter string
    filters list(string)
    key string
    result_output_file string
    time_range string
    id String
    tagValueSet String
    Tag value serialized string.
    analyzeTaskType String
    filter String
    filters List<String>
    key String
    resultOutputFile String
    timeRange String
    id string
    tagValueSet string
    Tag value serialized string.
    analyzeTaskType string
    filter string
    filters string[]
    key string
    resultOutputFile string
    timeRange string
    id str
    tag_value_set str
    Tag value serialized string.
    analyze_task_type str
    filter str
    filters Sequence[str]
    key str
    result_output_file str
    time_range str
    id String
    tagValueSet String
    Tag value serialized string.
    analyzeTaskType String
    filter String
    filters List<String>
    key String
    resultOutputFile String
    timeRange String

    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