tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
tencentcloud.getClbExclusiveClusters
Start a Neo task
Explain and create a tencentcloud.getClbExclusiveClusters resource
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
Use this data source to query detailed information of clb exclusive_clusters
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const exclusiveClusters = tencentcloud.getClbExclusiveClusters({
filters: [{
name: "zone",
values: ["ap-guangzhou-1"],
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
exclusive_clusters = tencentcloud.get_clb_exclusive_clusters(filters=[{
"name": "zone",
"values": ["ap-guangzhou-1"],
}])
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.GetClbExclusiveClusters(ctx, &tencentcloud.GetClbExclusiveClustersArgs{
Filters: []tencentcloud.GetClbExclusiveClustersFilter{
{
Name: "zone",
Values: []string{
"ap-guangzhou-1",
},
},
},
}, 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 exclusiveClusters = Tencentcloud.GetClbExclusiveClusters.Invoke(new()
{
Filters = new[]
{
new Tencentcloud.Inputs.GetClbExclusiveClustersFilterInputArgs
{
Name = "zone",
Values = new[]
{
"ap-guangzhou-1",
},
},
},
});
});
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.GetClbExclusiveClustersArgs;
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 exclusiveClusters = TencentcloudFunctions.getClbExclusiveClusters(GetClbExclusiveClustersArgs.builder()
.filters(GetClbExclusiveClustersFilterArgs.builder()
.name("zone")
.values("ap-guangzhou-1")
.build())
.build());
}
}
variables:
exclusiveClusters:
fn::invoke:
function: tencentcloud:getClbExclusiveClusters
arguments:
filters:
- name: zone
values:
- ap-guangzhou-1
Using getClbExclusiveClusters
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 getClbExclusiveClusters(args: GetClbExclusiveClustersArgs, opts?: InvokeOptions): Promise<GetClbExclusiveClustersResult>
function getClbExclusiveClustersOutput(args: GetClbExclusiveClustersOutputArgs, opts?: InvokeOptions): Output<GetClbExclusiveClustersResult>def get_clb_exclusive_clusters(filters: Optional[Sequence[GetClbExclusiveClustersFilter]] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetClbExclusiveClustersResult
def get_clb_exclusive_clusters_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetClbExclusiveClustersFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClbExclusiveClustersResult]func GetClbExclusiveClusters(ctx *Context, args *GetClbExclusiveClustersArgs, opts ...InvokeOption) (*GetClbExclusiveClustersResult, error)
func GetClbExclusiveClustersOutput(ctx *Context, args *GetClbExclusiveClustersOutputArgs, opts ...InvokeOption) GetClbExclusiveClustersResultOutput> Note: This function is named GetClbExclusiveClusters in the Go SDK.
public static class GetClbExclusiveClusters
{
public static Task<GetClbExclusiveClustersResult> InvokeAsync(GetClbExclusiveClustersArgs args, InvokeOptions? opts = null)
public static Output<GetClbExclusiveClustersResult> Invoke(GetClbExclusiveClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetClbExclusiveClustersResult> getClbExclusiveClusters(GetClbExclusiveClustersArgs args, InvokeOptions options)
public static Output<GetClbExclusiveClustersResult> getClbExclusiveClusters(GetClbExclusiveClustersArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getClbExclusiveClusters:getClbExclusiveClusters
arguments:
# arguments dictionaryThe following arguments are supported:
- Filters
List<Get
Clb Exclusive Clusters Filter> - Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- Id string
- Result
Output stringFile - Used to save results.
- Filters
[]Get
Clb Exclusive Clusters Filter - Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- Id string
- Result
Output stringFile - Used to save results.
- filters
List<Get
Clb Exclusive Clusters Filter> - Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- id String
- result
Output StringFile - Used to save results.
- filters
Get
Clb Exclusive Clusters Filter[] - Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- id string
- result
Output stringFile - Used to save results.
- filters
Sequence[Get
Clb Exclusive Clusters Filter] - Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- id str
- result_
output_ strfile - Used to save results.
- filters List<Property Map>
- Filter to query the list of AZ resources as detailed below: cluster-type - String - Required: No - (Filter condition) Filter by cluster type, such as TGW. cluster-id - String - Required: No - (Filter condition) Filter by cluster ID, such as tgw-xxxxxxxx. cluster-name - String - Required: No - (Filter condition) Filter by cluster name, such as test-xxxxxx. cluster-tag - String - Required: No - (Filter condition) Filter by cluster tag, such as TAG-xxxxx. vip - String - Required: No - (Filter condition) Filter by vip in the cluster, such as x.x.x.x. network - String - Required: No - (Filter condition) Filter by cluster network type, such as Public or Private. zone - String - Required: No - (Filter condition) Filter by cluster zone, such as ap-guangzhou-1. isp - String - Required: No - (Filter condition) Filter by TGW cluster isp type, such as BGP. loadblancer-id - String - Required: No - (Filter condition) Filter by loadblancer-id in the cluste, such as lb-xxxxxxxx.
- id String
- result
Output StringFile - Used to save results.
getClbExclusiveClusters Result
The following output properties are available:
- Cluster
Sets List<GetClb Exclusive Clusters Cluster Set> - cluster list.
- Id string
- Filters
List<Get
Clb Exclusive Clusters Filter> - Result
Output stringFile
- Cluster
Sets []GetClb Exclusive Clusters Cluster Set - cluster list.
- Id string
- Filters
[]Get
Clb Exclusive Clusters Filter - Result
Output stringFile
- cluster
Sets List<GetClb Exclusive Clusters Cluster Set> - cluster list.
- id String
- filters
List<Get
Clb Exclusive Clusters Filter> - result
Output StringFile
- cluster
Sets GetClb Exclusive Clusters Cluster Set[] - cluster list.
- id string
- filters
Get
Clb Exclusive Clusters Filter[] - result
Output stringFile
- cluster
Sets List<Property Map> - cluster list.
- id String
- filters List<Property Map>
- result
Output StringFile
Supporting Types
GetClbExclusiveClustersClusterSet
- Cluster
Id string - cluster ID.
- Cluster
Name string - cluster name.
- Cluster
Tag string - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- Cluster
Type string - cluster type: TGW, STGW, VPCGW.
- Clusters
Version string - clusters version.
- Clusters
Zones List<GetClb Exclusive Clusters Cluster Set Clusters Zone> - Availability zone where the cluster is located.
- Disaster
Recovery stringType - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- Http
Max doubleNew Conn - Maximum number of new http connections.
- Http
Qps double - Http Qps.
- Https
Max doubleNew Conn - Maximum number of new https connections.
- Https
Qps double - Https Qps.
- Idle
Resource doubleCount - The total number of free resources in the cluster.
- Isp string
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- Load
Balance doubleDirector Count - Total number of forwarders in the cluster.
- Max
Conn double - Maximum number of connections.
- Max
In doubleFlow - Maximum incoming Bandwidth.
- Max
In doublePkg - Maximum incoming packet.
- Max
New doubleConn - Maximum number of new connections.
- Max
Out doubleFlow - Maximum output bandwidth.
- Max
Out doublePkg - Maximum output packet.
- Network string
- cluster network type.
- Resource
Count double - The total number of resources in the cluster.
- Zone string
- .
- Cluster
Id string - cluster ID.
- Cluster
Name string - cluster name.
- Cluster
Tag string - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- Cluster
Type string - cluster type: TGW, STGW, VPCGW.
- Clusters
Version string - clusters version.
- Clusters
Zones []GetClb Exclusive Clusters Cluster Set Clusters Zone - Availability zone where the cluster is located.
- Disaster
Recovery stringType - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- Http
Max float64New Conn - Maximum number of new http connections.
- Http
Qps float64 - Http Qps.
- Https
Max float64New Conn - Maximum number of new https connections.
- Https
Qps float64 - Https Qps.
- Idle
Resource float64Count - The total number of free resources in the cluster.
- Isp string
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- Load
Balance float64Director Count - Total number of forwarders in the cluster.
- Max
Conn float64 - Maximum number of connections.
- Max
In float64Flow - Maximum incoming Bandwidth.
- Max
In float64Pkg - Maximum incoming packet.
- Max
New float64Conn - Maximum number of new connections.
- Max
Out float64Flow - Maximum output bandwidth.
- Max
Out float64Pkg - Maximum output packet.
- Network string
- cluster network type.
- Resource
Count float64 - The total number of resources in the cluster.
- Zone string
- .
- cluster
Id String - cluster ID.
- cluster
Name String - cluster name.
- cluster
Tag String - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- cluster
Type String - cluster type: TGW, STGW, VPCGW.
- clusters
Version String - clusters version.
- clusters
Zones List<GetClb Exclusive Clusters Cluster Set Clusters Zone> - Availability zone where the cluster is located.
- disaster
Recovery StringType - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- http
Max DoubleNew Conn - Maximum number of new http connections.
- http
Qps Double - Http Qps.
- https
Max DoubleNew Conn - Maximum number of new https connections.
- https
Qps Double - Https Qps.
- idle
Resource DoubleCount - The total number of free resources in the cluster.
- isp String
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- load
Balance DoubleDirector Count - Total number of forwarders in the cluster.
- max
Conn Double - Maximum number of connections.
- max
In DoubleFlow - Maximum incoming Bandwidth.
- max
In DoublePkg - Maximum incoming packet.
- max
New DoubleConn - Maximum number of new connections.
- max
Out DoubleFlow - Maximum output bandwidth.
- max
Out DoublePkg - Maximum output packet.
- network String
- cluster network type.
- resource
Count Double - The total number of resources in the cluster.
- zone String
- .
- cluster
Id string - cluster ID.
- cluster
Name string - cluster name.
- cluster
Tag string - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- cluster
Type string - cluster type: TGW, STGW, VPCGW.
- clusters
Version string - clusters version.
- clusters
Zones GetClb Exclusive Clusters Cluster Set Clusters Zone[] - Availability zone where the cluster is located.
- disaster
Recovery stringType - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- http
Max numberNew Conn - Maximum number of new http connections.
- http
Qps number - Http Qps.
- https
Max numberNew Conn - Maximum number of new https connections.
- https
Qps number - Https Qps.
- idle
Resource numberCount - The total number of free resources in the cluster.
- isp string
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- load
Balance numberDirector Count - Total number of forwarders in the cluster.
- max
Conn number - Maximum number of connections.
- max
In numberFlow - Maximum incoming Bandwidth.
- max
In numberPkg - Maximum incoming packet.
- max
New numberConn - Maximum number of new connections.
- max
Out numberFlow - Maximum output bandwidth.
- max
Out numberPkg - Maximum output packet.
- network string
- cluster network type.
- resource
Count number - The total number of resources in the cluster.
- zone string
- .
- cluster_
id str - cluster ID.
- cluster_
name str - cluster name.
- cluster_
tag str - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- cluster_
type str - cluster type: TGW, STGW, VPCGW.
- clusters_
version str - clusters version.
- clusters_
zones Sequence[GetClb Exclusive Clusters Cluster Set Clusters Zone] - Availability zone where the cluster is located.
- disaster_
recovery_ strtype - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- http_
max_ floatnew_ conn - Maximum number of new http connections.
- http_
qps float - Http Qps.
- https_
max_ floatnew_ conn - Maximum number of new https connections.
- https_
qps float - Https Qps.
- idle_
resource_ floatcount - The total number of free resources in the cluster.
- isp str
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- load_
balance_ floatdirector_ count - Total number of forwarders in the cluster.
- max_
conn float - Maximum number of connections.
- max_
in_ floatflow - Maximum incoming Bandwidth.
- max_
in_ floatpkg - Maximum incoming packet.
- max_
new_ floatconn - Maximum number of new connections.
- max_
out_ floatflow - Maximum output bandwidth.
- max_
out_ floatpkg - Maximum output packet.
- network str
- cluster network type.
- resource_
count float - The total number of resources in the cluster.
- zone str
- .
- cluster
Id String - cluster ID.
- cluster
Name String - cluster name.
- cluster
Tag String - Dedicated layer-7 tag. Note: this field may return null, indicating that no valid values can be obtained.
- cluster
Type String - cluster type: TGW, STGW, VPCGW.
- clusters
Version String - clusters version.
- clusters
Zones List<Property Map> - Availability zone where the cluster is located.
- disaster
Recovery StringType - Cluster disaster recovery type:SINGLE-ZONE, DISASTER-RECOVERY, MUTUAL-DISASTER-RECOVERY.
- http
Max NumberNew Conn - Maximum number of new http connections.
- http
Qps Number - Http Qps.
- https
Max NumberNew Conn - Maximum number of new https connections.
- https
Qps Number - Https Qps.
- idle
Resource NumberCount - The total number of free resources in the cluster.
- isp String
- Isp: BGP, CMCC,CUCC,CTCC,INTERNAL.
- load
Balance NumberDirector Count - Total number of forwarders in the cluster.
- max
Conn Number - Maximum number of connections.
- max
In NumberFlow - Maximum incoming Bandwidth.
- max
In NumberPkg - Maximum incoming packet.
- max
New NumberConn - Maximum number of new connections.
- max
Out NumberFlow - Maximum output bandwidth.
- max
Out NumberPkg - Maximum output packet.
- network String
- cluster network type.
- resource
Count Number - The total number of resources in the cluster.
- zone String
- .
GetClbExclusiveClustersClusterSetClustersZone
- Master
Zones List<string> - Availability master zone where the cluster is located.
- Slave
Zones List<string> - Availability slave zone where the cluster is located.
- Master
Zones []string - Availability master zone where the cluster is located.
- Slave
Zones []string - Availability slave zone where the cluster is located.
- master
Zones List<String> - Availability master zone where the cluster is located.
- slave
Zones List<String> - Availability slave zone where the cluster is located.
- master
Zones string[] - Availability master zone where the cluster is located.
- slave
Zones string[] - Availability slave zone where the cluster is located.
- master_
zones Sequence[str] - Availability master zone where the cluster is located.
- slave_
zones Sequence[str] - Availability slave zone where the cluster is located.
- master
Zones List<String> - Availability master zone where the cluster is located.
- slave
Zones List<String> - Availability slave zone where the cluster is located.
GetClbExclusiveClustersFilter
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
