tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
tencentcloud.getTsfCluster
Start a Neo task
Explain and create a tencentcloud.getTsfCluster resource
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
Use this data source to query detailed information of tsf cluster
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const cluster = tencentcloud.getTsfCluster({
clusterIdLists: ["cluster-vwgj5e6y"],
clusterType: "V",
disableProgramAuthCheck: true,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
cluster = tencentcloud.get_tsf_cluster(cluster_id_lists=["cluster-vwgj5e6y"],
cluster_type="V",
disable_program_auth_check=True)
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.LookupTsfCluster(ctx, &tencentcloud.LookupTsfClusterArgs{
ClusterIdLists: []string{
"cluster-vwgj5e6y",
},
ClusterType: pulumi.StringRef("V"),
DisableProgramAuthCheck: pulumi.BoolRef(true),
}, 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 cluster = Tencentcloud.GetTsfCluster.Invoke(new()
{
ClusterIdLists = new[]
{
"cluster-vwgj5e6y",
},
ClusterType = "V",
DisableProgramAuthCheck = true,
});
});
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.GetTsfClusterArgs;
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 cluster = TencentcloudFunctions.getTsfCluster(GetTsfClusterArgs.builder()
.clusterIdLists("cluster-vwgj5e6y")
.clusterType("V")
.disableProgramAuthCheck(true)
.build());
}
}
variables:
cluster:
fn::invoke:
function: tencentcloud:getTsfCluster
arguments:
clusterIdLists:
- cluster-vwgj5e6y
clusterType: V
disableProgramAuthCheck: true
Using getTsfCluster
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 getTsfCluster(args: GetTsfClusterArgs, opts?: InvokeOptions): Promise<GetTsfClusterResult>
function getTsfClusterOutput(args: GetTsfClusterOutputArgs, opts?: InvokeOptions): Output<GetTsfClusterResult>def get_tsf_cluster(cluster_id_lists: Optional[Sequence[str]] = None,
cluster_type: Optional[str] = None,
disable_program_auth_check: Optional[bool] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
search_word: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTsfClusterResult
def get_tsf_cluster_output(cluster_id_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
cluster_type: Optional[pulumi.Input[str]] = None,
disable_program_auth_check: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
search_word: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTsfClusterResult]func LookupTsfCluster(ctx *Context, args *LookupTsfClusterArgs, opts ...InvokeOption) (*LookupTsfClusterResult, error)
func LookupTsfClusterOutput(ctx *Context, args *LookupTsfClusterOutputArgs, opts ...InvokeOption) LookupTsfClusterResultOutput> Note: This function is named LookupTsfCluster in the Go SDK.
public static class GetTsfCluster
{
public static Task<GetTsfClusterResult> InvokeAsync(GetTsfClusterArgs args, InvokeOptions? opts = null)
public static Output<GetTsfClusterResult> Invoke(GetTsfClusterInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTsfClusterResult> getTsfCluster(GetTsfClusterArgs args, InvokeOptions options)
public static Output<GetTsfClusterResult> getTsfCluster(GetTsfClusterArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getTsfCluster:getTsfCluster
arguments:
# arguments dictionaryThe following arguments are supported:
- Cluster
Id List<string>Lists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- Cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- Disable
Program boolAuth Check - Whether to disable dataset authentication.
- Id string
- Result
Output stringFile - Used to save results.
- Search
Word string - Filter by keywords for Cluster Id or name.
- Cluster
Id []stringLists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- Cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- Disable
Program boolAuth Check - Whether to disable dataset authentication.
- Id string
- Result
Output stringFile - Used to save results.
- Search
Word string - Filter by keywords for Cluster Id or name.
- cluster
Id List<String>Lists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- cluster
Type String - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- disable
Program BooleanAuth Check - Whether to disable dataset authentication.
- id String
- result
Output StringFile - Used to save results.
- search
Word String - Filter by keywords for Cluster Id or name.
- cluster
Id string[]Lists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- disable
Program booleanAuth Check - Whether to disable dataset authentication.
- id string
- result
Output stringFile - Used to save results.
- search
Word string - Filter by keywords for Cluster Id or name.
- cluster_
id_ Sequence[str]lists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- cluster_
type str - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- disable_
program_ boolauth_ check - Whether to disable dataset authentication.
- id str
- result_
output_ strfile - Used to save results.
- search_
word str - Filter by keywords for Cluster Id or name.
- cluster
Id List<String>Lists - Cluster ID list to be queried, if not filled in or passed, all content will be queried.
- cluster
Type String - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- disable
Program BooleanAuth Check - Whether to disable dataset authentication.
- id String
- result
Output StringFile - Used to save results.
- search
Word String - Filter by keywords for Cluster Id or name.
getTsfCluster Result
The following output properties are available:
- Id string
- Results
List<Get
Tsf Cluster Result> - TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- Cluster
Id List<string>Lists - Cluster
Type string - Cluster type. Note: This field may return null, indicating no valid value.
- Disable
Program boolAuth Check - Result
Output stringFile - Search
Word string
- Id string
- Results
[]Get
Tsf Cluster Result - TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- Cluster
Id []stringLists - Cluster
Type string - Cluster type. Note: This field may return null, indicating no valid value.
- Disable
Program boolAuth Check - Result
Output stringFile - Search
Word string
- id String
- results
List<Get
Tsf Cluster Result> - TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- cluster
Id List<String>Lists - cluster
Type String - Cluster type. Note: This field may return null, indicating no valid value.
- disable
Program BooleanAuth Check - result
Output StringFile - search
Word String
- id string
- results
Get
Tsf Cluster Result[] - TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- cluster
Id string[]Lists - cluster
Type string - Cluster type. Note: This field may return null, indicating no valid value.
- disable
Program booleanAuth Check - result
Output stringFile - search
Word string
- id str
- results
Sequence[Get
Tsf Cluster Result] - TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- cluster_
id_ Sequence[str]lists - cluster_
type str - Cluster type. Note: This field may return null, indicating no valid value.
- disable_
program_ boolauth_ check - result_
output_ strfile - search_
word str
- id String
- results List<Property Map>
- TSF cluster pagination object. Note: This field may return null, indicating no valid value.
- cluster
Id List<String>Lists - cluster
Type String - Cluster type. Note: This field may return null, indicating no valid value.
- disable
Program BooleanAuth Check - result
Output StringFile - search
Word String
Supporting Types
GetTsfClusterResult
- Contents
List<Get
Tsf Cluster Result Content> - Cluster list. Note: This field may return null, indicating no valid values.
- Total
Count double - Total number of items. Note: This field may return null, indicating that no valid value was found.
- Contents
[]Get
Tsf Cluster Result Content - Cluster list. Note: This field may return null, indicating no valid values.
- Total
Count float64 - Total number of items. Note: This field may return null, indicating that no valid value was found.
- contents
List<Get
Tsf Cluster Result Content> - Cluster list. Note: This field may return null, indicating no valid values.
- total
Count Double - Total number of items. Note: This field may return null, indicating that no valid value was found.
- contents
Get
Tsf Cluster Result Content[] - Cluster list. Note: This field may return null, indicating no valid values.
- total
Count number - Total number of items. Note: This field may return null, indicating that no valid value was found.
- contents
Sequence[Get
Tsf Cluster Result Content] - Cluster list. Note: This field may return null, indicating no valid values.
- total_
count float - Total number of items. Note: This field may return null, indicating that no valid value was found.
- contents List<Property Map>
- Cluster list. Note: This field may return null, indicating no valid values.
- total
Count Number - Total number of items. Note: This field may return null, indicating that no valid value was found.
GetTsfClusterResultContent
- Cluster
Cidr string - cluster CIDR. Note: This field may return null, indicating no valid value.
- Cluster
Desc string - Cluster description. Note: This field may return null, indicating no valid value.
- Cluster
Id string - Cluster ID. Note: This field may return null, indicating no valid value.
- Cluster
Limit doubleCpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- Cluster
Limit doubleMem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- Cluster
Name string - Cluster name. Note: This field may return null, indicating no valid value.
- Cluster
Status string - cluster status. Note: This field may return null, indicating no valid value.
- Cluster
Total doubleCpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- Cluster
Total doubleMem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- Cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- Cluster
Used doubleCpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- Cluster
Used doubleMem - Cluster used memory in GB. This field may return null, indicating no valid value.
- Cluster
Version string - The cluster version, may return null if not applicable.
- Create
Time string - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- Delete
Flag bool - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- Delete
Flag stringReason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- Instance
Count double - Cluster instance number. This field may return null, indicating no valid value.
- Normal
Instance doubleCount - Cluster normal instance number. This field may return null, indicating no valid value.
- Operation
Infos List<GetTsf Cluster Result Content Operation Info> - Control information returned to the frontend. This field may return null, indicating no valid value.
- Run
Instance doubleCount - Cluster running instance number. This field may return null, indicating no valid value.
- Run
Service doubleInstance Count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- Subnet
Id string - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- Tsf
Region stringId - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Region stringName - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Zone stringId - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Zone stringName - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Update
Time string - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- Vpc
Id string - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
- Cluster
Cidr string - cluster CIDR. Note: This field may return null, indicating no valid value.
- Cluster
Desc string - Cluster description. Note: This field may return null, indicating no valid value.
- Cluster
Id string - Cluster ID. Note: This field may return null, indicating no valid value.
- Cluster
Limit float64Cpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- Cluster
Limit float64Mem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- Cluster
Name string - Cluster name. Note: This field may return null, indicating no valid value.
- Cluster
Status string - cluster status. Note: This field may return null, indicating no valid value.
- Cluster
Total float64Cpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- Cluster
Total float64Mem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- Cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- Cluster
Used float64Cpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- Cluster
Used float64Mem - Cluster used memory in GB. This field may return null, indicating no valid value.
- Cluster
Version string - The cluster version, may return null if not applicable.
- Create
Time string - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- Delete
Flag bool - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- Delete
Flag stringReason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- Instance
Count float64 - Cluster instance number. This field may return null, indicating no valid value.
- Normal
Instance float64Count - Cluster normal instance number. This field may return null, indicating no valid value.
- Operation
Infos []GetTsf Cluster Result Content Operation Info - Control information returned to the frontend. This field may return null, indicating no valid value.
- Run
Instance float64Count - Cluster running instance number. This field may return null, indicating no valid value.
- Run
Service float64Instance Count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- Subnet
Id string - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- Tsf
Region stringId - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Region stringName - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Zone stringId - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Tsf
Zone stringName - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- Update
Time string - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- Vpc
Id string - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
- cluster
Cidr String - cluster CIDR. Note: This field may return null, indicating no valid value.
- cluster
Desc String - Cluster description. Note: This field may return null, indicating no valid value.
- cluster
Id String - Cluster ID. Note: This field may return null, indicating no valid value.
- cluster
Limit DoubleCpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- cluster
Limit DoubleMem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- cluster
Name String - Cluster name. Note: This field may return null, indicating no valid value.
- cluster
Status String - cluster status. Note: This field may return null, indicating no valid value.
- cluster
Total DoubleCpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- cluster
Total DoubleMem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- cluster
Type String - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- cluster
Used DoubleCpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- cluster
Used DoubleMem - Cluster used memory in GB. This field may return null, indicating no valid value.
- cluster
Version String - The cluster version, may return null if not applicable.
- create
Time String - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- delete
Flag Boolean - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- delete
Flag StringReason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- instance
Count Double - Cluster instance number. This field may return null, indicating no valid value.
- normal
Instance DoubleCount - Cluster normal instance number. This field may return null, indicating no valid value.
- operation
Infos List<GetTsf Cluster Result Content Operation Info> - Control information returned to the frontend. This field may return null, indicating no valid value.
- run
Instance DoubleCount - Cluster running instance number. This field may return null, indicating no valid value.
- run
Service DoubleInstance Count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- subnet
Id String - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- tsf
Region StringId - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Region StringName - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone StringId - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone StringName - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- update
Time String - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- vpc
Id String - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
- cluster
Cidr string - cluster CIDR. Note: This field may return null, indicating no valid value.
- cluster
Desc string - Cluster description. Note: This field may return null, indicating no valid value.
- cluster
Id string - Cluster ID. Note: This field may return null, indicating no valid value.
- cluster
Limit numberCpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- cluster
Limit numberMem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- cluster
Name string - Cluster name. Note: This field may return null, indicating no valid value.
- cluster
Status string - cluster status. Note: This field may return null, indicating no valid value.
- cluster
Total numberCpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- cluster
Total numberMem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- cluster
Type string - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- cluster
Used numberCpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- cluster
Used numberMem - Cluster used memory in GB. This field may return null, indicating no valid value.
- cluster
Version string - The cluster version, may return null if not applicable.
- create
Time string - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- delete
Flag boolean - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- delete
Flag stringReason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- instance
Count number - Cluster instance number. This field may return null, indicating no valid value.
- normal
Instance numberCount - Cluster normal instance number. This field may return null, indicating no valid value.
- operation
Infos GetTsf Cluster Result Content Operation Info[] - Control information returned to the frontend. This field may return null, indicating no valid value.
- run
Instance numberCount - Cluster running instance number. This field may return null, indicating no valid value.
- run
Service numberInstance Count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- subnet
Id string - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- tsf
Region stringId - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Region stringName - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone stringId - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone stringName - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- update
Time string - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- vpc
Id string - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
- cluster_
cidr str - cluster CIDR. Note: This field may return null, indicating no valid value.
- cluster_
desc str - Cluster description. Note: This field may return null, indicating no valid value.
- cluster_
id str - Cluster ID. Note: This field may return null, indicating no valid value.
- cluster_
limit_ floatcpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- cluster_
limit_ floatmem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- cluster_
name str - Cluster name. Note: This field may return null, indicating no valid value.
- cluster_
status str - cluster status. Note: This field may return null, indicating no valid value.
- cluster_
total_ floatcpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- cluster_
total_ floatmem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- cluster_
type str - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- cluster_
used_ floatcpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- cluster_
used_ floatmem - Cluster used memory in GB. This field may return null, indicating no valid value.
- cluster_
version str - The cluster version, may return null if not applicable.
- create_
time str - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- delete_
flag bool - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- delete_
flag_ strreason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- instance_
count float - Cluster instance number. This field may return null, indicating no valid value.
- normal_
instance_ floatcount - Cluster normal instance number. This field may return null, indicating no valid value.
- operation_
infos Sequence[GetTsf Cluster Result Content Operation Info] - Control information returned to the frontend. This field may return null, indicating no valid value.
- run_
instance_ floatcount - Cluster running instance number. This field may return null, indicating no valid value.
- run_
service_ floatinstance_ count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- subnet_
id str - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- tsf_
region_ strid - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf_
region_ strname - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf_
zone_ strid - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf_
zone_ strname - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- update_
time str - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- vpc_
id str - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
- cluster
Cidr String - cluster CIDR. Note: This field may return null, indicating no valid value.
- cluster
Desc String - Cluster description. Note: This field may return null, indicating no valid value.
- cluster
Id String - Cluster ID. Note: This field may return null, indicating no valid value.
- cluster
Limit NumberCpu - Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
- cluster
Limit NumberMem - Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
- cluster
Name String - Cluster name. Note: This field may return null, indicating no valid value.
- cluster
Status String - cluster status. Note: This field may return null, indicating no valid value.
- cluster
Total NumberCpu - Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
- cluster
Total NumberMem - Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
- cluster
Type String - The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
- cluster
Used NumberCpu - Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
- cluster
Used NumberMem - Cluster used memory in GB. This field may return null, indicating no valid value.
- cluster
Version String - The cluster version, may return null if not applicable.
- create
Time String - CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
- delete
Flag Boolean - Deletion tag: true means it can be deleted, false means it cannot be deleted. Note: This field may return null, indicating no valid value.
- delete
Flag StringReason - Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
- instance
Count Number - Cluster instance number. This field may return null, indicating no valid value.
- normal
Instance NumberCount - Cluster normal instance number. This field may return null, indicating no valid value.
- operation
Infos List<Property Map> - Control information returned to the frontend. This field may return null, indicating no valid value.
- run
Instance NumberCount - Cluster running instance number. This field may return null, indicating no valid value.
- run
Service NumberInstance Count - Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
- subnet
Id String - Cluster subnet ID. Note: This field may return null, indicating no valid values.
- tsf
Region StringId - region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Region StringName - region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone StringId - Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- tsf
Zone StringName - Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
- update
Time String - last update time. Note: This field may return null, indicating that no valid values can be obtained.
- vpc
Id String - Private network ID of the cluster. Note: This field may return null, indicating no valid value.
GetTsfClusterResultContentOperationInfo
- Add
Instances List<GetTsf Cluster Result Content Operation Info Add Instance> - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- Destroys
List<Get
Tsf Cluster Result Content Operation Info Destroy> - Control information for destroying machine, may return null if no valid value is obtained.
- Inits
List<Get
Tsf Cluster Result Content Operation Info Init> - Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
- Add
Instances []GetTsf Cluster Result Content Operation Info Add Instance - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- Destroys
[]Get
Tsf Cluster Result Content Operation Info Destroy - Control information for destroying machine, may return null if no valid value is obtained.
- Inits
[]Get
Tsf Cluster Result Content Operation Info Init - Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
- add
Instances List<GetTsf Cluster Result Content Operation Info Add Instance> - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- destroys
List<Get
Tsf Cluster Result Content Operation Info Destroy> - Control information for destroying machine, may return null if no valid value is obtained.
- inits
List<Get
Tsf Cluster Result Content Operation Info Init> - Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
- add
Instances GetTsf Cluster Result Content Operation Info Add Instance[] - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- destroys
Get
Tsf Cluster Result Content Operation Info Destroy[] - Control information for destroying machine, may return null if no valid value is obtained.
- inits
Get
Tsf Cluster Result Content Operation Info Init[] - Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
- add_
instances Sequence[GetTsf Cluster Result Content Operation Info Add Instance] - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- destroys
Sequence[Get
Tsf Cluster Result Content Operation Info Destroy] - Control information for destroying machine, may return null if no valid value is obtained.
- inits
Sequence[Get
Tsf Cluster Result Content Operation Info Init] - Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
- add
Instances List<Property Map> - Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
- destroys List<Property Map>
- Control information for destroying machine, may return null if no valid value is obtained.
- inits List<Property Map>
- Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
GetTsfClusterResultContentOperationInfoAddInstance
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled_
reason str - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
GetTsfClusterResultContentOperationInfoDestroy
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled_
reason str - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
GetTsfClusterResultContentOperationInfoInit
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- Disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- Enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- Supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason string - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled_
reason str - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled bool
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported bool
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
- disabled
Reason String - Reason for not displaying. Note: This field may return null, indicating no valid value.
- enabled Boolean
- The availability of the button (whether it is clickable) may return null indicating that the information is not available.
- supported Boolean
- Whether to display the button. Note: This field may return null, indicating that no valid value was found.
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
