Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
Use this data source to query APM (Application Performance Management) instances. It returns all fields from the DescribeApmInstances API, including instance basic info, billing, log configuration, security detection settings, and more.
Example Usage
Query all APM instances
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const all = tencentcloud.getApmInstances({});
export const instances = all.then(all => all.instanceLists);
import pulumi
import pulumi_tencentcloud as tencentcloud
all = tencentcloud.get_apm_instances()
pulumi.export("instances", all.instance_lists)
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 {
all, err := tencentcloud.GetApmInstances(ctx, &tencentcloud.GetApmInstancesArgs{}, nil)
if err != nil {
return err
}
ctx.Export("instances", all.InstanceLists)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var all = Tencentcloud.GetApmInstances.Invoke();
return new Dictionary<string, object?>
{
["instances"] = all.Apply(getApmInstancesResult => getApmInstancesResult.InstanceLists),
};
});
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.GetApmInstancesArgs;
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 all = TencentcloudFunctions.getApmInstances(GetApmInstancesArgs.builder()
.build());
ctx.export("instances", all.instanceLists());
}
}
variables:
all:
fn::invoke:
function: tencentcloud:getApmInstances
arguments: {}
outputs:
instances: ${all.instanceLists}
Query APM instances by IDs
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const byIds = tencentcloud.getApmInstances({
instanceIds: [
"apm-xxxxxxxx",
"apm-yyyyyyyy",
],
});
export const instances = byIds.then(byIds => byIds.instanceLists);
import pulumi
import pulumi_tencentcloud as tencentcloud
by_ids = tencentcloud.get_apm_instances(instance_ids=[
"apm-xxxxxxxx",
"apm-yyyyyyyy",
])
pulumi.export("instances", by_ids.instance_lists)
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 {
byIds, err := tencentcloud.GetApmInstances(ctx, &tencentcloud.GetApmInstancesArgs{
InstanceIds: []string{
"apm-xxxxxxxx",
"apm-yyyyyyyy",
},
}, nil)
if err != nil {
return err
}
ctx.Export("instances", byIds.InstanceLists)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var byIds = Tencentcloud.GetApmInstances.Invoke(new()
{
InstanceIds = new[]
{
"apm-xxxxxxxx",
"apm-yyyyyyyy",
},
});
return new Dictionary<string, object?>
{
["instances"] = byIds.Apply(getApmInstancesResult => getApmInstancesResult.InstanceLists),
};
});
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.GetApmInstancesArgs;
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 byIds = TencentcloudFunctions.getApmInstances(GetApmInstancesArgs.builder()
.instanceIds(
"apm-xxxxxxxx",
"apm-yyyyyyyy")
.build());
ctx.export("instances", byIds.instanceLists());
}
}
variables:
byIds:
fn::invoke:
function: tencentcloud:getApmInstances
arguments:
instanceIds:
- apm-xxxxxxxx
- apm-yyyyyyyy
outputs:
instances: ${byIds.instanceLists}
Query APM instances by name
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const byName = tencentcloud.getApmInstances({
instanceName: "test",
});
export const instances = byName.then(byName => byName.instanceLists);
import pulumi
import pulumi_tencentcloud as tencentcloud
by_name = tencentcloud.get_apm_instances(instance_name="test")
pulumi.export("instances", by_name.instance_lists)
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 {
byName, err := tencentcloud.GetApmInstances(ctx, &tencentcloud.GetApmInstancesArgs{
InstanceName: pulumi.StringRef("test"),
}, nil)
if err != nil {
return err
}
ctx.Export("instances", byName.InstanceLists)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var byName = Tencentcloud.GetApmInstances.Invoke(new()
{
InstanceName = "test",
});
return new Dictionary<string, object?>
{
["instances"] = byName.Apply(getApmInstancesResult => getApmInstancesResult.InstanceLists),
};
});
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.GetApmInstancesArgs;
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.getApmInstances(GetApmInstancesArgs.builder()
.instanceName("test")
.build());
ctx.export("instances", byName.instanceLists());
}
}
variables:
byName:
fn::invoke:
function: tencentcloud:getApmInstances
arguments:
instanceName: test
outputs:
instances: ${byName.instanceLists}
Query APM instances by tags
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const byTags = tencentcloud.getApmInstances({
tags: {
Environment: "Production",
Team: "DevOps",
},
});
export const instances = byTags.then(byTags => byTags.instanceLists);
import pulumi
import pulumi_tencentcloud as tencentcloud
by_tags = tencentcloud.get_apm_instances(tags={
"Environment": "Production",
"Team": "DevOps",
})
pulumi.export("instances", by_tags.instance_lists)
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 {
byTags, err := tencentcloud.GetApmInstances(ctx, &tencentcloud.GetApmInstancesArgs{
Tags: map[string]interface{}{
"Environment": "Production",
"Team": "DevOps",
},
}, nil)
if err != nil {
return err
}
ctx.Export("instances", byTags.InstanceLists)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var byTags = Tencentcloud.GetApmInstances.Invoke(new()
{
Tags =
{
{ "Environment", "Production" },
{ "Team", "DevOps" },
},
});
return new Dictionary<string, object?>
{
["instances"] = byTags.Apply(getApmInstancesResult => getApmInstancesResult.InstanceLists),
};
});
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.GetApmInstancesArgs;
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.getApmInstances(GetApmInstancesArgs.builder()
.tags(Map.ofEntries(
Map.entry("Environment", "Production"),
Map.entry("Team", "DevOps")
))
.build());
ctx.export("instances", byTags.instanceLists());
}
}
variables:
byTags:
fn::invoke:
function: tencentcloud:getApmInstances
arguments:
tags:
Environment: Production
Team: DevOps
outputs:
instances: ${byTags.instanceLists}
Using getApmInstances
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 getApmInstances(args: GetApmInstancesArgs, opts?: InvokeOptions): Promise<GetApmInstancesResult>
function getApmInstancesOutput(args: GetApmInstancesOutputArgs, opts?: InvokeOptions): Output<GetApmInstancesResult>def get_apm_instances(all_regions_flag: Optional[float] = None,
demo_instance_flag: Optional[float] = None,
id: Optional[str] = None,
instance_id: Optional[str] = None,
instance_ids: Optional[Sequence[str]] = None,
instance_name: Optional[str] = None,
result_output_file: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
opts: Optional[InvokeOptions] = None) -> GetApmInstancesResult
def get_apm_instances_output(all_regions_flag: Optional[pulumi.Input[float]] = None,
demo_instance_flag: Optional[pulumi.Input[float]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
instance_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
instance_name: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetApmInstancesResult]func GetApmInstances(ctx *Context, args *GetApmInstancesArgs, opts ...InvokeOption) (*GetApmInstancesResult, error)
func GetApmInstancesOutput(ctx *Context, args *GetApmInstancesOutputArgs, opts ...InvokeOption) GetApmInstancesResultOutput> Note: This function is named GetApmInstances in the Go SDK.
public static class GetApmInstances
{
public static Task<GetApmInstancesResult> InvokeAsync(GetApmInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetApmInstancesResult> Invoke(GetApmInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetApmInstancesResult> getApmInstances(GetApmInstancesArgs args, InvokeOptions options)
public static Output<GetApmInstancesResult> getApmInstances(GetApmInstancesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getApmInstances:getApmInstances
arguments:
# arguments dictionaryThe following arguments are supported:
- All
Regions doubleFlag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- Demo
Instance doubleFlag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- Id string
- Instance
Id string - Filter by instance ID (fuzzy match).
- Instance
Ids List<string> - Filter by instance ID list (exact match).
- Instance
Name string - Filter by instance name (fuzzy match).
- Result
Output stringFile - Used to save results.
- Dictionary<string, string>
- Filter by tags.
- All
Regions float64Flag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- Demo
Instance float64Flag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- Id string
- Instance
Id string - Filter by instance ID (fuzzy match).
- Instance
Ids []string - Filter by instance ID list (exact match).
- Instance
Name string - Filter by instance name (fuzzy match).
- Result
Output stringFile - Used to save results.
- map[string]string
- Filter by tags.
- all
Regions DoubleFlag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- demo
Instance DoubleFlag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- id String
- instance
Id String - Filter by instance ID (fuzzy match).
- instance
Ids List<String> - Filter by instance ID list (exact match).
- instance
Name String - Filter by instance name (fuzzy match).
- result
Output StringFile - Used to save results.
- Map<String,String>
- Filter by tags.
- all
Regions numberFlag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- demo
Instance numberFlag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- id string
- instance
Id string - Filter by instance ID (fuzzy match).
- instance
Ids string[] - Filter by instance ID list (exact match).
- instance
Name string - Filter by instance name (fuzzy match).
- result
Output stringFile - Used to save results.
- {[key: string]: string}
- Filter by tags.
- all_
regions_ floatflag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- demo_
instance_ floatflag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- id str
- instance_
id str - Filter by instance ID (fuzzy match).
- instance_
ids Sequence[str] - Filter by instance ID list (exact match).
- instance_
name str - Filter by instance name (fuzzy match).
- result_
output_ strfile - Used to save results.
- Mapping[str, str]
- Filter by tags.
- all
Regions NumberFlag - Whether to query instances in all regions. 0: no, 1: yes. Default is 0.
- demo
Instance NumberFlag - Whether to query official demo instances. 0: non-demo, 1: demo. Default is 0.
- id String
- instance
Id String - Filter by instance ID (fuzzy match).
- instance
Ids List<String> - Filter by instance ID list (exact match).
- instance
Name String - Filter by instance name (fuzzy match).
- result
Output StringFile - Used to save results.
- Map<String>
- Filter by tags.
getApmInstances Result
The following output properties are available:
- Id string
- Instance
Lists List<GetApm Instances Instance List> - APM instance list.
- All
Regions doubleFlag - Demo
Instance doubleFlag - Instance
Id string - Instance ID.
- Instance
Ids List<string> - Instance
Name string - Result
Output stringFile - Dictionary<string, string>
- Tag list.
- Id string
- Instance
Lists []GetApm Instances Instance List - APM instance list.
- All
Regions float64Flag - Demo
Instance float64Flag - Instance
Id string - Instance ID.
- Instance
Ids []string - Instance
Name string - Result
Output stringFile - map[string]string
- Tag list.
- id String
- instance
Lists List<GetApm Instances Instance List> - APM instance list.
- all
Regions DoubleFlag - demo
Instance DoubleFlag - instance
Id String - Instance ID.
- instance
Ids List<String> - instance
Name String - result
Output StringFile - Map<String,String>
- Tag list.
- id string
- instance
Lists GetApm Instances Instance List[] - APM instance list.
- all
Regions numberFlag - demo
Instance numberFlag - instance
Id string - Instance ID.
- instance
Ids string[] - instance
Name string - result
Output stringFile - {[key: string]: string}
- Tag list.
- id str
- instance_
lists Sequence[GetApm Instances Instance List] - APM instance list.
- all_
regions_ floatflag - demo_
instance_ floatflag - instance_
id str - Instance ID.
- instance_
ids Sequence[str] - instance_
name str - result_
output_ strfile - Mapping[str, str]
- Tag list.
- id String
- instance
Lists List<Property Map> - APM instance list.
- all
Regions NumberFlag - demo
Instance NumberFlag - instance
Id String - Instance ID.
- instance
Ids List<String> - instance
Name String - result
Output StringFile - Map<String>
- Tag list.
Supporting Types
GetApmInstancesInstanceList
- Amount
Of doubleUsed Storage - Storage usage in MB.
- App
Id double - App ID.
- Billing
Instance double - Whether billing is enabled. 0: not enabled, 1: enabled.
- Client
Count double - Client application count.
- Count
Of doubleReport Span Per Day - Daily reported span count.
- Create
Uin string - Creator UIN.
- List<string>
- Custom display tag list.
- Dashboard
Topic stringId - Associated dashboard ID.
- Default
Tsf double - Whether it is the default TSF instance. 0: no, 1: yes.
- Description string
- Instance description.
- Err
Rate doubleThreshold - Error rate threshold.
- Error
Sample double - Error sampling switch.
- Free double
- Whether it is free edition.
- Instance
Id string - Filter by instance ID (fuzzy match).
- Is
Delete doubleAny File Analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- Is
Deserialization doubleAnalysis - Whether deserialization detection is enabled. 0: off, 1: on.
- Is
Directory doubleTraversal Analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- Is
Expression doubleInjection Analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- Is
Include doubleAny File Analysis - Whether include any file detection is enabled. 0: off, 1: on.
- Is
Instrumentation doubleVulnerability Scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- Is
Jndi doubleInjection Analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- Is
Jni doubleInjection Analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- Is
Memory doubleHijacking Analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- Is
Read doubleAny File Analysis - Whether read any file detection is enabled. 0: off, 1: on.
- double
- Whether dashboard is associated. 0: off, 1: on.
- double
- Log feature switch. 0: off, 1: on.
- Is
Remote doubleCommand Execution Analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- Is
Script doubleEngine Injection Analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- Is
Sql doubleInjection Analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- Is
Template doubleEngine Injection Analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- Is
Upload doubleAny File Analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- Is
Webshell doubleBackdoor Analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- Log
Index doubleType - CLS index type. 0: full-text index, 1: key-value index.
- Log
Region string - CLS log region.
- Log
Set string - CLS log set.
- Log
Source string - Log source.
- Log
Topic stringId - Log topic ID.
- Log
Trace stringId Key - TraceId index key, effective when CLS index type is key-value.
- Metric
Duration double - Metric data retention duration in days.
- Name string
- Instance name.
- Pay
Mode double - Billing mode.
- Pay
Mode boolEffective - Whether pay mode is effective.
- Region string
- Region.
- Response
Duration doubleWarning Threshold - Response duration warning threshold in ms.
- Sample
Rate double - Sampling rate.
- Service
Count double - Service count.
- Slow
Request doubleSaved Threshold - Slow request saved threshold in ms.
- Span
Daily doubleCounters - Daily span count quota.
- Status double
- Instance status.
- Stop
Reason double - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
-
List<Get
Apm Instances Instance List Tag> - Filter by tags.
- Token string
- Instance authentication token.
- Total
Count double - Active application count in recent 2 days.
- Trace
Duration double - Trace data retention duration.
- Url
Long doubleSegment Threshold - URL long segment convergence threshold.
- Url
Number doubleSegment Threshold - URL number segment convergence threshold.
- Amount
Of float64Used Storage - Storage usage in MB.
- App
Id float64 - App ID.
- Billing
Instance float64 - Whether billing is enabled. 0: not enabled, 1: enabled.
- Client
Count float64 - Client application count.
- Count
Of float64Report Span Per Day - Daily reported span count.
- Create
Uin string - Creator UIN.
- []string
- Custom display tag list.
- Dashboard
Topic stringId - Associated dashboard ID.
- Default
Tsf float64 - Whether it is the default TSF instance. 0: no, 1: yes.
- Description string
- Instance description.
- Err
Rate float64Threshold - Error rate threshold.
- Error
Sample float64 - Error sampling switch.
- Free float64
- Whether it is free edition.
- Instance
Id string - Filter by instance ID (fuzzy match).
- Is
Delete float64Any File Analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- Is
Deserialization float64Analysis - Whether deserialization detection is enabled. 0: off, 1: on.
- Is
Directory float64Traversal Analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- Is
Expression float64Injection Analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- Is
Include float64Any File Analysis - Whether include any file detection is enabled. 0: off, 1: on.
- Is
Instrumentation float64Vulnerability Scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- Is
Jndi float64Injection Analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- Is
Jni float64Injection Analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- Is
Memory float64Hijacking Analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- Is
Read float64Any File Analysis - Whether read any file detection is enabled. 0: off, 1: on.
- float64
- Whether dashboard is associated. 0: off, 1: on.
- float64
- Log feature switch. 0: off, 1: on.
- Is
Remote float64Command Execution Analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- Is
Script float64Engine Injection Analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- Is
Sql float64Injection Analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- Is
Template float64Engine Injection Analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- Is
Upload float64Any File Analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- Is
Webshell float64Backdoor Analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- Log
Index float64Type - CLS index type. 0: full-text index, 1: key-value index.
- Log
Region string - CLS log region.
- Log
Set string - CLS log set.
- Log
Source string - Log source.
- Log
Topic stringId - Log topic ID.
- Log
Trace stringId Key - TraceId index key, effective when CLS index type is key-value.
- Metric
Duration float64 - Metric data retention duration in days.
- Name string
- Instance name.
- Pay
Mode float64 - Billing mode.
- Pay
Mode boolEffective - Whether pay mode is effective.
- Region string
- Region.
- Response
Duration float64Warning Threshold - Response duration warning threshold in ms.
- Sample
Rate float64 - Sampling rate.
- Service
Count float64 - Service count.
- Slow
Request float64Saved Threshold - Slow request saved threshold in ms.
- Span
Daily float64Counters - Daily span count quota.
- Status float64
- Instance status.
- Stop
Reason float64 - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
-
[]Get
Apm Instances Instance List Tag - Filter by tags.
- Token string
- Instance authentication token.
- Total
Count float64 - Active application count in recent 2 days.
- Trace
Duration float64 - Trace data retention duration.
- Url
Long float64Segment Threshold - URL long segment convergence threshold.
- Url
Number float64Segment Threshold - URL number segment convergence threshold.
- amount
Of DoubleUsed Storage - Storage usage in MB.
- app
Id Double - App ID.
- billing
Instance Double - Whether billing is enabled. 0: not enabled, 1: enabled.
- client
Count Double - Client application count.
- count
Of DoubleReport Span Per Day - Daily reported span count.
- create
Uin String - Creator UIN.
- List<String>
- Custom display tag list.
- dashboard
Topic StringId - Associated dashboard ID.
- default
Tsf Double - Whether it is the default TSF instance. 0: no, 1: yes.
- description String
- Instance description.
- err
Rate DoubleThreshold - Error rate threshold.
- error
Sample Double - Error sampling switch.
- free Double
- Whether it is free edition.
- instance
Id String - Filter by instance ID (fuzzy match).
- is
Delete DoubleAny File Analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- is
Deserialization DoubleAnalysis - Whether deserialization detection is enabled. 0: off, 1: on.
- is
Directory DoubleTraversal Analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- is
Expression DoubleInjection Analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- is
Include DoubleAny File Analysis - Whether include any file detection is enabled. 0: off, 1: on.
- is
Instrumentation DoubleVulnerability Scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- is
Jndi DoubleInjection Analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- is
Jni DoubleInjection Analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- is
Memory DoubleHijacking Analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- is
Read DoubleAny File Analysis - Whether read any file detection is enabled. 0: off, 1: on.
- Double
- Whether dashboard is associated. 0: off, 1: on.
- Double
- Log feature switch. 0: off, 1: on.
- is
Remote DoubleCommand Execution Analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- is
Script DoubleEngine Injection Analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- is
Sql DoubleInjection Analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- is
Template DoubleEngine Injection Analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- is
Upload DoubleAny File Analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- is
Webshell DoubleBackdoor Analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- log
Index DoubleType - CLS index type. 0: full-text index, 1: key-value index.
- log
Region String - CLS log region.
- log
Set String - CLS log set.
- log
Source String - Log source.
- log
Topic StringId - Log topic ID.
- log
Trace StringId Key - TraceId index key, effective when CLS index type is key-value.
- metric
Duration Double - Metric data retention duration in days.
- name String
- Instance name.
- pay
Mode Double - Billing mode.
- pay
Mode BooleanEffective - Whether pay mode is effective.
- region String
- Region.
- response
Duration DoubleWarning Threshold - Response duration warning threshold in ms.
- sample
Rate Double - Sampling rate.
- service
Count Double - Service count.
- slow
Request DoubleSaved Threshold - Slow request saved threshold in ms.
- span
Daily DoubleCounters - Daily span count quota.
- status Double
- Instance status.
- stop
Reason Double - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
-
List<Get
Apm Instances Instance List Tag> - Filter by tags.
- token String
- Instance authentication token.
- total
Count Double - Active application count in recent 2 days.
- trace
Duration Double - Trace data retention duration.
- url
Long DoubleSegment Threshold - URL long segment convergence threshold.
- url
Number DoubleSegment Threshold - URL number segment convergence threshold.
- amount
Of numberUsed Storage - Storage usage in MB.
- app
Id number - App ID.
- billing
Instance number - Whether billing is enabled. 0: not enabled, 1: enabled.
- client
Count number - Client application count.
- count
Of numberReport Span Per Day - Daily reported span count.
- create
Uin string - Creator UIN.
- string[]
- Custom display tag list.
- dashboard
Topic stringId - Associated dashboard ID.
- default
Tsf number - Whether it is the default TSF instance. 0: no, 1: yes.
- description string
- Instance description.
- err
Rate numberThreshold - Error rate threshold.
- error
Sample number - Error sampling switch.
- free number
- Whether it is free edition.
- instance
Id string - Filter by instance ID (fuzzy match).
- is
Delete numberAny File Analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- is
Deserialization numberAnalysis - Whether deserialization detection is enabled. 0: off, 1: on.
- is
Directory numberTraversal Analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- is
Expression numberInjection Analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- is
Include numberAny File Analysis - Whether include any file detection is enabled. 0: off, 1: on.
- is
Instrumentation numberVulnerability Scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- is
Jndi numberInjection Analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- is
Jni numberInjection Analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- is
Memory numberHijacking Analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- is
Read numberAny File Analysis - Whether read any file detection is enabled. 0: off, 1: on.
- number
- Whether dashboard is associated. 0: off, 1: on.
- number
- Log feature switch. 0: off, 1: on.
- is
Remote numberCommand Execution Analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- is
Script numberEngine Injection Analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- is
Sql numberInjection Analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- is
Template numberEngine Injection Analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- is
Upload numberAny File Analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- is
Webshell numberBackdoor Analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- log
Index numberType - CLS index type. 0: full-text index, 1: key-value index.
- log
Region string - CLS log region.
- log
Set string - CLS log set.
- log
Source string - Log source.
- log
Topic stringId - Log topic ID.
- log
Trace stringId Key - TraceId index key, effective when CLS index type is key-value.
- metric
Duration number - Metric data retention duration in days.
- name string
- Instance name.
- pay
Mode number - Billing mode.
- pay
Mode booleanEffective - Whether pay mode is effective.
- region string
- Region.
- response
Duration numberWarning Threshold - Response duration warning threshold in ms.
- sample
Rate number - Sampling rate.
- service
Count number - Service count.
- slow
Request numberSaved Threshold - Slow request saved threshold in ms.
- span
Daily numberCounters - Daily span count quota.
- status number
- Instance status.
- stop
Reason number - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
-
Get
Apm Instances Instance List Tag[] - Filter by tags.
- token string
- Instance authentication token.
- total
Count number - Active application count in recent 2 days.
- trace
Duration number - Trace data retention duration.
- url
Long numberSegment Threshold - URL long segment convergence threshold.
- url
Number numberSegment Threshold - URL number segment convergence threshold.
- amount_
of_ floatused_ storage - Storage usage in MB.
- app_
id float - App ID.
- billing_
instance float - Whether billing is enabled. 0: not enabled, 1: enabled.
- client_
count float - Client application count.
- count_
of_ floatreport_ span_ per_ day - Daily reported span count.
- create_
uin str - Creator UIN.
- Sequence[str]
- Custom display tag list.
- dashboard_
topic_ strid - Associated dashboard ID.
- default_
tsf float - Whether it is the default TSF instance. 0: no, 1: yes.
- description str
- Instance description.
- err_
rate_ floatthreshold - Error rate threshold.
- error_
sample float - Error sampling switch.
- free float
- Whether it is free edition.
- instance_
id str - Filter by instance ID (fuzzy match).
- is_
delete_ floatany_ file_ analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- is_
deserialization_ floatanalysis - Whether deserialization detection is enabled. 0: off, 1: on.
- is_
directory_ floattraversal_ analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- is_
expression_ floatinjection_ analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- is_
include_ floatany_ file_ analysis - Whether include any file detection is enabled. 0: off, 1: on.
- is_
instrumentation_ floatvulnerability_ scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- is_
jndi_ floatinjection_ analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- is_
jni_ floatinjection_ analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- is_
memory_ floathijacking_ analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- is_
read_ floatany_ file_ analysis - Whether read any file detection is enabled. 0: off, 1: on.
- float
- Whether dashboard is associated. 0: off, 1: on.
- float
- Log feature switch. 0: off, 1: on.
- is_
remote_ floatcommand_ execution_ analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- is_
script_ floatengine_ injection_ analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- is_
sql_ floatinjection_ analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- is_
template_ floatengine_ injection_ analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- is_
upload_ floatany_ file_ analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- is_
webshell_ floatbackdoor_ analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- log_
index_ floattype - CLS index type. 0: full-text index, 1: key-value index.
- log_
region str - CLS log region.
- log_
set str - CLS log set.
- log_
source str - Log source.
- log_
topic_ strid - Log topic ID.
- log_
trace_ strid_ key - TraceId index key, effective when CLS index type is key-value.
- metric_
duration float - Metric data retention duration in days.
- name str
- Instance name.
- pay_
mode float - Billing mode.
- pay_
mode_ booleffective - Whether pay mode is effective.
- region str
- Region.
- response_
duration_ floatwarning_ threshold - Response duration warning threshold in ms.
- sample_
rate float - Sampling rate.
- service_
count float - Service count.
- slow_
request_ floatsaved_ threshold - Slow request saved threshold in ms.
- span_
daily_ floatcounters - Daily span count quota.
- status float
- Instance status.
- stop_
reason float - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
-
Sequence[Get
Apm Instances Instance List Tag] - Filter by tags.
- token str
- Instance authentication token.
- total_
count float - Active application count in recent 2 days.
- trace_
duration float - Trace data retention duration.
- url_
long_ floatsegment_ threshold - URL long segment convergence threshold.
- url_
number_ floatsegment_ threshold - URL number segment convergence threshold.
- amount
Of NumberUsed Storage - Storage usage in MB.
- app
Id Number - App ID.
- billing
Instance Number - Whether billing is enabled. 0: not enabled, 1: enabled.
- client
Count Number - Client application count.
- count
Of NumberReport Span Per Day - Daily reported span count.
- create
Uin String - Creator UIN.
- List<String>
- Custom display tag list.
- dashboard
Topic StringId - Associated dashboard ID.
- default
Tsf Number - Whether it is the default TSF instance. 0: no, 1: yes.
- description String
- Instance description.
- err
Rate NumberThreshold - Error rate threshold.
- error
Sample Number - Error sampling switch.
- free Number
- Whether it is free edition.
- instance
Id String - Filter by instance ID (fuzzy match).
- is
Delete NumberAny File Analysis - Whether delete any file detection is enabled. 0: off, 1: on.
- is
Deserialization NumberAnalysis - Whether deserialization detection is enabled. 0: off, 1: on.
- is
Directory NumberTraversal Analysis - Whether directory traversal detection is enabled. 0: off, 1: on.
- is
Expression NumberInjection Analysis - Whether expression injection detection is enabled. 0: off, 1: on.
- is
Include NumberAny File Analysis - Whether include any file detection is enabled. 0: off, 1: on.
- is
Instrumentation NumberVulnerability Scan - Whether instrumentation vulnerability scan is enabled. 0: off, 1: on.
- is
Jndi NumberInjection Analysis - Whether JNDI injection detection is enabled. 0: off, 1: on.
- is
Jni NumberInjection Analysis - Whether JNI injection detection is enabled. 0: off, 1: on.
- is
Memory NumberHijacking Analysis - Whether memory hijacking detection is enabled. 0: off, 1: on.
- is
Read NumberAny File Analysis - Whether read any file detection is enabled. 0: off, 1: on.
- Number
- Whether dashboard is associated. 0: off, 1: on.
- Number
- Log feature switch. 0: off, 1: on.
- is
Remote NumberCommand Execution Analysis - Whether remote command execution detection is enabled. 0: off, 1: on.
- is
Script NumberEngine Injection Analysis - Whether script engine injection detection is enabled. 0: off, 1: on.
- is
Sql NumberInjection Analysis - Whether SQL injection analysis is enabled. 0: off, 1: on.
- is
Template NumberEngine Injection Analysis - Whether template engine injection detection is enabled. 0: off, 1: on.
- is
Upload NumberAny File Analysis - Whether upload any file detection is enabled. 0: off, 1: on.
- is
Webshell NumberBackdoor Analysis - Whether webshell backdoor detection is enabled. 0: off, 1: on.
- log
Index NumberType - CLS index type. 0: full-text index, 1: key-value index.
- log
Region String - CLS log region.
- log
Set String - CLS log set.
- log
Source String - Log source.
- log
Topic StringId - Log topic ID.
- log
Trace StringId Key - TraceId index key, effective when CLS index type is key-value.
- metric
Duration Number - Metric data retention duration in days.
- name String
- Instance name.
- pay
Mode Number - Billing mode.
- pay
Mode BooleanEffective - Whether pay mode is effective.
- region String
- Region.
- response
Duration NumberWarning Threshold - Response duration warning threshold in ms.
- sample
Rate Number - Sampling rate.
- service
Count Number - Service count.
- slow
Request NumberSaved Threshold - Slow request saved threshold in ms.
- span
Daily NumberCounters - Daily span count quota.
- status Number
- Instance status.
- stop
Reason Number - Throttling reason. 1: official version quota, 2: trial version quota, 4: trial expired, 8: account overdue.
- List<Property Map>
- Filter by tags.
- token String
- Instance authentication token.
- total
Count Number - Active application count in recent 2 days.
- trace
Duration Number - Trace data retention duration.
- url
Long NumberSegment Threshold - URL long segment convergence threshold.
- url
Number NumberSegment Threshold - URL number segment convergence threshold.
GetApmInstancesInstanceListTag
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
published on Friday, Mar 27, 2026 by tencentcloudstack
