tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
Use this data source to query detailed information of AntiDDoS bgp instances
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getAntiddosBgpInstances({
filterRegion: "ap-guangzhou",
filterInstanceIdLists: [
"bgp-00000fv1",
"bgp-00000fwx",
"bgp-00000fwy",
],
filterTags: [{
tagKey: "createBy",
tagValue: "Terraform",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_antiddos_bgp_instances(filter_region="ap-guangzhou",
filter_instance_id_lists=[
"bgp-00000fv1",
"bgp-00000fwx",
"bgp-00000fwy",
],
filter_tags=[{
"tag_key": "createBy",
"tag_value": "Terraform",
}])
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.GetAntiddosBgpInstances(ctx, &tencentcloud.GetAntiddosBgpInstancesArgs{
FilterRegion: "ap-guangzhou",
FilterInstanceIdLists: []string{
"bgp-00000fv1",
"bgp-00000fwx",
"bgp-00000fwy",
},
FilterTags: []tencentcloud.GetAntiddosBgpInstancesFilterTag{
{
TagKey: "createBy",
TagValue: "Terraform",
},
},
}, 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 example = Tencentcloud.GetAntiddosBgpInstances.Invoke(new()
{
FilterRegion = "ap-guangzhou",
FilterInstanceIdLists = new[]
{
"bgp-00000fv1",
"bgp-00000fwx",
"bgp-00000fwy",
},
FilterTags = new[]
{
new Tencentcloud.Inputs.GetAntiddosBgpInstancesFilterTagInputArgs
{
TagKey = "createBy",
TagValue = "Terraform",
},
},
});
});
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.GetAntiddosBgpInstancesArgs;
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.getAntiddosBgpInstances(GetAntiddosBgpInstancesArgs.builder()
.filterRegion("ap-guangzhou")
.filterInstanceIdLists(
"bgp-00000fv1",
"bgp-00000fwx",
"bgp-00000fwy")
.filterTags(GetAntiddosBgpInstancesFilterTagArgs.builder()
.tagKey("createBy")
.tagValue("Terraform")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getAntiddosBgpInstances
arguments:
filterRegion: ap-guangzhou
filterInstanceIdLists:
- bgp-00000fv1
- bgp-00000fwx
- bgp-00000fwy
filterTags:
- tagKey: createBy
tagValue: Terraform
Using getAntiddosBgpInstances
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 getAntiddosBgpInstances(args: GetAntiddosBgpInstancesArgs, opts?: InvokeOptions): Promise<GetAntiddosBgpInstancesResult>
function getAntiddosBgpInstancesOutput(args: GetAntiddosBgpInstancesOutputArgs, opts?: InvokeOptions): Output<GetAntiddosBgpInstancesResult>def get_antiddos_bgp_instances(filter_instance_id_lists: Optional[Sequence[str]] = None,
filter_region: Optional[str] = None,
filter_tags: Optional[Sequence[GetAntiddosBgpInstancesFilterTag]] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAntiddosBgpInstancesResult
def get_antiddos_bgp_instances_output(filter_instance_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filter_region: Optional[pulumi.Input[str]] = None,
filter_tags: Optional[pulumi.Input[Sequence[pulumi.Input[GetAntiddosBgpInstancesFilterTagArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAntiddosBgpInstancesResult]func GetAntiddosBgpInstances(ctx *Context, args *GetAntiddosBgpInstancesArgs, opts ...InvokeOption) (*GetAntiddosBgpInstancesResult, error)
func GetAntiddosBgpInstancesOutput(ctx *Context, args *GetAntiddosBgpInstancesOutputArgs, opts ...InvokeOption) GetAntiddosBgpInstancesResultOutput> Note: This function is named GetAntiddosBgpInstances in the Go SDK.
public static class GetAntiddosBgpInstances
{
public static Task<GetAntiddosBgpInstancesResult> InvokeAsync(GetAntiddosBgpInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetAntiddosBgpInstancesResult> Invoke(GetAntiddosBgpInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAntiddosBgpInstancesResult> getAntiddosBgpInstances(GetAntiddosBgpInstancesArgs args, InvokeOptions options)
public static Output<GetAntiddosBgpInstancesResult> getAntiddosBgpInstances(GetAntiddosBgpInstancesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getAntiddosBgpInstances:getAntiddosBgpInstances
arguments:
# arguments dictionaryThe following arguments are supported:
- Filter
Region string - Region.
- Filter
Instance List<string>Id Lists - Instance ID list.
-
List<Get
Antiddos Bgp Instances Filter Tag> - Filter by tag key and value.
- Id string
- Result
Output stringFile - Used to save results.
- Filter
Region string - Region.
- Filter
Instance []stringId Lists - Instance ID list.
-
[]Get
Antiddos Bgp Instances Filter Tag - Filter by tag key and value.
- Id string
- Result
Output stringFile - Used to save results.
- filter
Region String - Region.
- filter
Instance List<String>Id Lists - Instance ID list.
-
List<Get
Antiddos Bgp Instances Filter Tag> - Filter by tag key and value.
- id String
- result
Output StringFile - Used to save results.
- filter
Region string - Region.
- filter
Instance string[]Id Lists - Instance ID list.
-
Get
Antiddos Bgp Instances Filter Tag[] - Filter by tag key and value.
- id string
- result
Output stringFile - Used to save results.
- filter_
region str - Region.
- filter_
instance_ Sequence[str]id_ lists - Instance ID list.
-
Sequence[Get
Antiddos Bgp Instances Filter Tag] - Filter by tag key and value.
- id str
- result_
output_ strfile - Used to save results.
- filter
Region String - Region.
- filter
Instance List<String>Id Lists - Instance ID list.
- List<Property Map>
- Filter by tag key and value.
- id String
- result
Output StringFile - Used to save results.
getAntiddosBgpInstances Result
The following output properties are available:
- Bgp
Instance List<GetLists Antiddos Bgp Instances Bgp Instance List> - Returns purchased Anti-DDoS package information.
- Filter
Region string - Id string
- Filter
Instance List<string>Id Lists -
List<Get
Antiddos Bgp Instances Filter Tag> - Result
Output stringFile
- Bgp
Instance []GetLists Antiddos Bgp Instances Bgp Instance List - Returns purchased Anti-DDoS package information.
- Filter
Region string - Id string
- Filter
Instance []stringId Lists -
[]Get
Antiddos Bgp Instances Filter Tag - Result
Output stringFile
- bgp
Instance List<GetLists Antiddos Bgp Instances Bgp Instance List> - Returns purchased Anti-DDoS package information.
- filter
Region String - id String
- filter
Instance List<String>Id Lists -
List<Get
Antiddos Bgp Instances Filter Tag> - result
Output StringFile
- bgp
Instance GetLists Antiddos Bgp Instances Bgp Instance List[] - Returns purchased Anti-DDoS package information.
- filter
Region string - id string
- filter
Instance string[]Id Lists -
Get
Antiddos Bgp Instances Filter Tag[] - result
Output stringFile
- bgp_
instance_ Sequence[Getlists Antiddos Bgp Instances Bgp Instance List] - Returns purchased Anti-DDoS package information.
- filter_
region str - id str
- filter_
instance_ Sequence[str]id_ lists -
Sequence[Get
Antiddos Bgp Instances Filter Tag] - result_
output_ strfile
- bgp
Instance List<Property Map>Lists - Returns purchased Anti-DDoS package information.
- filter
Region String - id String
- filter
Instance List<String>Id Lists - List<Property Map>
- result
Output StringFile
Supporting Types
GetAntiddosBgpInstancesBgpInstanceList
- Enterprise
Package List<GetConfigs Antiddos Bgp Instances Bgp Instance List Enterprise Package Config> - Enterprise edition Anti-DDoS package configuration.
- Instance
Charge List<GetPrepaids Antiddos Bgp Instances Bgp Instance List Instance Charge Prepaid> - Renewal period related.
- Instance
Charge stringType - Payment method.
- Instance
Id string - Instance ID.
- Package
Type string - Anti-DDoS package type.
- Standard
Package List<GetConfigs Antiddos Bgp Instances Bgp Instance List Standard Package Config> - Standard edition Anti-DDoS package configuration.
- Standard
Plus List<GetPackage Configs Antiddos Bgp Instances Bgp Instance List Standard Plus Package Config> - Standard edition 2.0 Anti-DDoS package configuration.
- Tag
Info List<GetLists Antiddos Bgp Instances Bgp Instance List Tag Info List> - Tag information.
- Enterprise
Package []GetConfigs Antiddos Bgp Instances Bgp Instance List Enterprise Package Config - Enterprise edition Anti-DDoS package configuration.
- Instance
Charge []GetPrepaids Antiddos Bgp Instances Bgp Instance List Instance Charge Prepaid - Renewal period related.
- Instance
Charge stringType - Payment method.
- Instance
Id string - Instance ID.
- Package
Type string - Anti-DDoS package type.
- Standard
Package []GetConfigs Antiddos Bgp Instances Bgp Instance List Standard Package Config - Standard edition Anti-DDoS package configuration.
- Standard
Plus []GetPackage Configs Antiddos Bgp Instances Bgp Instance List Standard Plus Package Config - Standard edition 2.0 Anti-DDoS package configuration.
- Tag
Info []GetLists Antiddos Bgp Instances Bgp Instance List Tag Info List - Tag information.
- enterprise
Package List<GetConfigs Antiddos Bgp Instances Bgp Instance List Enterprise Package Config> - Enterprise edition Anti-DDoS package configuration.
- instance
Charge List<GetPrepaids Antiddos Bgp Instances Bgp Instance List Instance Charge Prepaid> - Renewal period related.
- instance
Charge StringType - Payment method.
- instance
Id String - Instance ID.
- package
Type String - Anti-DDoS package type.
- standard
Package List<GetConfigs Antiddos Bgp Instances Bgp Instance List Standard Package Config> - Standard edition Anti-DDoS package configuration.
- standard
Plus List<GetPackage Configs Antiddos Bgp Instances Bgp Instance List Standard Plus Package Config> - Standard edition 2.0 Anti-DDoS package configuration.
- tag
Info List<GetLists Antiddos Bgp Instances Bgp Instance List Tag Info List> - Tag information.
- enterprise
Package GetConfigs Antiddos Bgp Instances Bgp Instance List Enterprise Package Config[] - Enterprise edition Anti-DDoS package configuration.
- instance
Charge GetPrepaids Antiddos Bgp Instances Bgp Instance List Instance Charge Prepaid[] - Renewal period related.
- instance
Charge stringType - Payment method.
- instance
Id string - Instance ID.
- package
Type string - Anti-DDoS package type.
- standard
Package GetConfigs Antiddos Bgp Instances Bgp Instance List Standard Package Config[] - Standard edition Anti-DDoS package configuration.
- standard
Plus GetPackage Configs Antiddos Bgp Instances Bgp Instance List Standard Plus Package Config[] - Standard edition 2.0 Anti-DDoS package configuration.
- tag
Info GetLists Antiddos Bgp Instances Bgp Instance List Tag Info List[] - Tag information.
- enterprise_
package_ Sequence[Getconfigs Antiddos Bgp Instances Bgp Instance List Enterprise Package Config] - Enterprise edition Anti-DDoS package configuration.
- instance_
charge_ Sequence[Getprepaids Antiddos Bgp Instances Bgp Instance List Instance Charge Prepaid] - Renewal period related.
- instance_
charge_ strtype - Payment method.
- instance_
id str - Instance ID.
- package_
type str - Anti-DDoS package type.
- standard_
package_ Sequence[Getconfigs Antiddos Bgp Instances Bgp Instance List Standard Package Config] - Standard edition Anti-DDoS package configuration.
- standard_
plus_ Sequence[Getpackage_ configs Antiddos Bgp Instances Bgp Instance List Standard Plus Package Config] - Standard edition 2.0 Anti-DDoS package configuration.
- tag_
info_ Sequence[Getlists Antiddos Bgp Instances Bgp Instance List Tag Info List] - Tag information.
- enterprise
Package List<Property Map>Configs - Enterprise edition Anti-DDoS package configuration.
- instance
Charge List<Property Map>Prepaids - Renewal period related.
- instance
Charge StringType - Payment method.
- instance
Id String - Instance ID.
- package
Type String - Anti-DDoS package type.
- standard
Package List<Property Map>Configs - Standard edition Anti-DDoS package configuration.
- standard
Plus List<Property Map>Package Configs - Standard edition 2.0 Anti-DDoS package configuration.
- tag
Info List<Property Map>Lists - Tag information.
GetAntiddosBgpInstancesBgpInstanceListEnterprisePackageConfig
- Bandwidth double
- Protection bandwidth 50Mbps.
- Basic
Protect doubleBandwidth - Basic protection bandwidth.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Elastic
Protect doubleBandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- Protect
Ip doubleCount - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- Bandwidth float64
- Protection bandwidth 50Mbps.
- Basic
Protect float64Bandwidth - Basic protection bandwidth.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Elastic
Protect float64Bandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- Protect
Ip float64Count - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- bandwidth Double
- Protection bandwidth 50Mbps.
- basic
Protect DoubleBandwidth - Basic protection bandwidth.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- elastic
Protect DoubleBandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- protect
Ip DoubleCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
- bandwidth number
- Protection bandwidth 50Mbps.
- basic
Protect numberBandwidth - Basic protection bandwidth.
- elastic
Bandwidth booleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- elastic
Protect numberBandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- protect
Ip numberCount - Number of protected IPs.
- region string
- Region where the Anti-DDoS package is purchased.
- bandwidth float
- Protection bandwidth 50Mbps.
- basic_
protect_ floatbandwidth - Basic protection bandwidth.
- elastic_
bandwidth_ boolflag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- elastic_
protect_ floatbandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- protect_
ip_ floatcount - Number of protected IPs.
- region str
- Region where the Anti-DDoS package is purchased.
- bandwidth Number
- Protection bandwidth 50Mbps.
- basic
Protect NumberBandwidth - Basic protection bandwidth.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- elastic
Protect NumberBandwidth - Elastic bandwidth in Gbps, selectable elastic bandwidth [0,400,500,600,800,1000]. Default is 0.
- protect
Ip NumberCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
GetAntiddosBgpInstancesBgpInstanceListInstanceChargePrepaid
- Period double
- Purchase duration: unit in months.
- Renew
Flag string - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
- Period float64
- Purchase duration: unit in months.
- Renew
Flag string - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
- period Double
- Purchase duration: unit in months.
- renew
Flag String - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
- period number
- Purchase duration: unit in months.
- renew
Flag string - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
- period float
- Purchase duration: unit in months.
- renew_
flag str - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
- period Number
- Purchase duration: unit in months.
- renew
Flag String - NOTIFY_AND_MANUAL_RENEW: Notify expiration without automatic renewal. NOTIFY_AND_AUTO_RENEW: Notify expiration and automatically renew. DISABLE_NOTIFY_AND_MANUAL_RENEW: No notification and no automatic renewal. Default: Notify expiration without automatic renewal.
GetAntiddosBgpInstancesBgpInstanceListStandardPackageConfig
- Bandwidth double
- Protection bandwidth 50Mbps.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Protect
Ip doubleCount - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- Bandwidth float64
- Protection bandwidth 50Mbps.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Protect
Ip float64Count - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- bandwidth Double
- Protection bandwidth 50Mbps.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Ip DoubleCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
- bandwidth number
- Protection bandwidth 50Mbps.
- elastic
Bandwidth booleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Ip numberCount - Number of protected IPs.
- region string
- Region where the Anti-DDoS package is purchased.
- bandwidth float
- Protection bandwidth 50Mbps.
- elastic_
bandwidth_ boolflag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect_
ip_ floatcount - Number of protected IPs.
- region str
- Region where the Anti-DDoS package is purchased.
- bandwidth Number
- Protection bandwidth 50Mbps.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Ip NumberCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
GetAntiddosBgpInstancesBgpInstanceListStandardPlusPackageConfig
- Bandwidth double
- Protection bandwidth 50Mbps.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Protect
Count string - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- Protect
Ip doubleCount - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- Bandwidth float64
- Protection bandwidth 50Mbps.
- Elastic
Bandwidth boolFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- Protect
Count string - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- Protect
Ip float64Count - Number of protected IPs.
- Region string
- Region where the Anti-DDoS package is purchased.
- bandwidth Double
- Protection bandwidth 50Mbps.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Count String - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- protect
Ip DoubleCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
- bandwidth number
- Protection bandwidth 50Mbps.
- elastic
Bandwidth booleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Count string - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- protect
Ip numberCount - Number of protected IPs.
- region string
- Region where the Anti-DDoS package is purchased.
- bandwidth float
- Protection bandwidth 50Mbps.
- elastic_
bandwidth_ boolflag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect_
count str - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- protect_
ip_ floatcount - Number of protected IPs.
- region str
- Region where the Anti-DDoS package is purchased.
- bandwidth Number
- Protection bandwidth 50Mbps.
- elastic
Bandwidth BooleanFlag - Whether to enable elastic business bandwidth. true: enable false: disable Default is disable.
- protect
Count String - Protection count: TWO_TIMES: two full protections, UNLIMITED: unlimited protections.
- protect
Ip NumberCount - Number of protected IPs.
- region String
- Region where the Anti-DDoS package is purchased.
GetAntiddosBgpInstancesBgpInstanceListTagInfoList
GetAntiddosBgpInstancesFilterTag
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
