1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getTsfCluster
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack

tencentcloud.getTsfCluster

Explore with Pulumi AI

tencentcloud 1.81.183 published on Wednesday, Apr 16, 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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
variables:
  cluster:
    fn::invoke:
      function: tencentcloud:getTsfCluster
      arguments:
        clusterIdLists:
          - cluster-vwgj5e6y
        clusterType: V
        disableProgramAuthCheck: true
Copy

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>
Copy
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]
Copy
func LookupTsfCluster(ctx *Context, args *LookupTsfClusterArgs, opts ...InvokeOption) (*LookupTsfClusterResult, error)
func LookupTsfClusterOutput(ctx *Context, args *LookupTsfClusterOutputArgs, opts ...InvokeOption) LookupTsfClusterResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetTsfClusterResult> getTsfCluster(GetTsfClusterArgs args, InvokeOptions options)
public static Output<GetTsfClusterResult> getTsfCluster(GetTsfClusterArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: tencentcloud:index/getTsfCluster:getTsfCluster
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ClusterIdLists List<string>
Cluster ID list to be queried, if not filled in or passed, all content will be queried.
ClusterType string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
DisableProgramAuthCheck bool
Whether to disable dataset authentication.
Id string
ResultOutputFile string
Used to save results.
SearchWord string
Filter by keywords for Cluster Id or name.
ClusterIdLists []string
Cluster ID list to be queried, if not filled in or passed, all content will be queried.
ClusterType string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
DisableProgramAuthCheck bool
Whether to disable dataset authentication.
Id string
ResultOutputFile string
Used to save results.
SearchWord string
Filter by keywords for Cluster Id or name.
clusterIdLists List<String>
Cluster ID list to be queried, if not filled in or passed, all content will be queried.
clusterType String
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
disableProgramAuthCheck Boolean
Whether to disable dataset authentication.
id String
resultOutputFile String
Used to save results.
searchWord String
Filter by keywords for Cluster Id or name.
clusterIdLists string[]
Cluster ID list to be queried, if not filled in or passed, all content will be queried.
clusterType string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
disableProgramAuthCheck boolean
Whether to disable dataset authentication.
id string
resultOutputFile string
Used to save results.
searchWord string
Filter by keywords for Cluster Id or name.
cluster_id_lists Sequence[str]
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_auth_check bool
Whether to disable dataset authentication.
id str
result_output_file str
Used to save results.
search_word str
Filter by keywords for Cluster Id or name.
clusterIdLists List<String>
Cluster ID list to be queried, if not filled in or passed, all content will be queried.
clusterType String
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
disableProgramAuthCheck Boolean
Whether to disable dataset authentication.
id String
resultOutputFile String
Used to save results.
searchWord String
Filter by keywords for Cluster Id or name.

getTsfCluster Result

The following output properties are available:

Id string
Results List<GetTsfClusterResult>
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
ClusterIdLists List<string>
ClusterType string
Cluster type. Note: This field may return null, indicating no valid value.
DisableProgramAuthCheck bool
ResultOutputFile string
SearchWord string
Id string
Results []GetTsfClusterResult
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
ClusterIdLists []string
ClusterType string
Cluster type. Note: This field may return null, indicating no valid value.
DisableProgramAuthCheck bool
ResultOutputFile string
SearchWord string
id String
results List<GetTsfClusterResult>
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
clusterIdLists List<String>
clusterType String
Cluster type. Note: This field may return null, indicating no valid value.
disableProgramAuthCheck Boolean
resultOutputFile String
searchWord String
id string
results GetTsfClusterResult[]
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
clusterIdLists string[]
clusterType string
Cluster type. Note: This field may return null, indicating no valid value.
disableProgramAuthCheck boolean
resultOutputFile string
searchWord string
id str
results Sequence[GetTsfClusterResult]
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
cluster_id_lists Sequence[str]
cluster_type str
Cluster type. Note: This field may return null, indicating no valid value.
disable_program_auth_check bool
result_output_file str
search_word str
id String
results List<Property Map>
TSF cluster pagination object. Note: This field may return null, indicating no valid value.
clusterIdLists List<String>
clusterType String
Cluster type. Note: This field may return null, indicating no valid value.
disableProgramAuthCheck Boolean
resultOutputFile String
searchWord String

Supporting Types

GetTsfClusterResult

Contents This property is required. List<GetTsfClusterResultContent>
Cluster list. Note: This field may return null, indicating no valid values.
TotalCount This property is required. double
Total number of items. Note: This field may return null, indicating that no valid value was found.
Contents This property is required. []GetTsfClusterResultContent
Cluster list. Note: This field may return null, indicating no valid values.
TotalCount This property is required. float64
Total number of items. Note: This field may return null, indicating that no valid value was found.
contents This property is required. List<GetTsfClusterResultContent>
Cluster list. Note: This field may return null, indicating no valid values.
totalCount This property is required. Double
Total number of items. Note: This field may return null, indicating that no valid value was found.
contents This property is required. GetTsfClusterResultContent[]
Cluster list. Note: This field may return null, indicating no valid values.
totalCount This property is required. number
Total number of items. Note: This field may return null, indicating that no valid value was found.
contents This property is required. Sequence[GetTsfClusterResultContent]
Cluster list. Note: This field may return null, indicating no valid values.
total_count This property is required. float
Total number of items. Note: This field may return null, indicating that no valid value was found.
contents This property is required. List<Property Map>
Cluster list. Note: This field may return null, indicating no valid values.
totalCount This property is required. Number
Total number of items. Note: This field may return null, indicating that no valid value was found.

GetTsfClusterResultContent

ClusterCidr This property is required. string
cluster CIDR. Note: This field may return null, indicating no valid value.
ClusterDesc This property is required. string
Cluster description. Note: This field may return null, indicating no valid value.
ClusterId This property is required. string
Cluster ID. Note: This field may return null, indicating no valid value.
ClusterLimitCpu This property is required. double
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
ClusterLimitMem This property is required. double
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
ClusterName This property is required. string
Cluster name. Note: This field may return null, indicating no valid value.
ClusterStatus This property is required. string
cluster status. Note: This field may return null, indicating no valid value.
ClusterTotalCpu This property is required. double
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
ClusterTotalMem This property is required. double
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
ClusterType This property is required. string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
ClusterUsedCpu This property is required. double
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
ClusterUsedMem This property is required. double
Cluster used memory in GB. This field may return null, indicating no valid value.
ClusterVersion This property is required. string
The cluster version, may return null if not applicable.
CreateTime This property is required. string
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
DeleteFlag This property is required. 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.
DeleteFlagReason This property is required. string
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
InstanceCount This property is required. double
Cluster instance number. This field may return null, indicating no valid value.
NormalInstanceCount This property is required. double
Cluster normal instance number. This field may return null, indicating no valid value.
OperationInfos This property is required. List<GetTsfClusterResultContentOperationInfo>
Control information returned to the frontend. This field may return null, indicating no valid value.
RunInstanceCount This property is required. double
Cluster running instance number. This field may return null, indicating no valid value.
RunServiceInstanceCount This property is required. double
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
SubnetId This property is required. string
Cluster subnet ID. Note: This field may return null, indicating no valid values.
TsfRegionId This property is required. string
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfRegionName This property is required. string
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfZoneId This property is required. string
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfZoneName This property is required. string
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
UpdateTime This property is required. string
last update time. Note: This field may return null, indicating that no valid values can be obtained.
VpcId This property is required. string
Private network ID of the cluster. Note: This field may return null, indicating no valid value.
ClusterCidr This property is required. string
cluster CIDR. Note: This field may return null, indicating no valid value.
ClusterDesc This property is required. string
Cluster description. Note: This field may return null, indicating no valid value.
ClusterId This property is required. string
Cluster ID. Note: This field may return null, indicating no valid value.
ClusterLimitCpu This property is required. float64
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
ClusterLimitMem This property is required. float64
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
ClusterName This property is required. string
Cluster name. Note: This field may return null, indicating no valid value.
ClusterStatus This property is required. string
cluster status. Note: This field may return null, indicating no valid value.
ClusterTotalCpu This property is required. float64
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
ClusterTotalMem This property is required. float64
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
ClusterType This property is required. string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
ClusterUsedCpu This property is required. float64
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
ClusterUsedMem This property is required. float64
Cluster used memory in GB. This field may return null, indicating no valid value.
ClusterVersion This property is required. string
The cluster version, may return null if not applicable.
CreateTime This property is required. string
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
DeleteFlag This property is required. 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.
DeleteFlagReason This property is required. string
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
InstanceCount This property is required. float64
Cluster instance number. This field may return null, indicating no valid value.
NormalInstanceCount This property is required. float64
Cluster normal instance number. This field may return null, indicating no valid value.
OperationInfos This property is required. []GetTsfClusterResultContentOperationInfo
Control information returned to the frontend. This field may return null, indicating no valid value.
RunInstanceCount This property is required. float64
Cluster running instance number. This field may return null, indicating no valid value.
RunServiceInstanceCount This property is required. float64
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
SubnetId This property is required. string
Cluster subnet ID. Note: This field may return null, indicating no valid values.
TsfRegionId This property is required. string
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfRegionName This property is required. string
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfZoneId This property is required. string
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
TsfZoneName This property is required. string
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
UpdateTime This property is required. string
last update time. Note: This field may return null, indicating that no valid values can be obtained.
VpcId This property is required. string
Private network ID of the cluster. Note: This field may return null, indicating no valid value.
clusterCidr This property is required. String
cluster CIDR. Note: This field may return null, indicating no valid value.
clusterDesc This property is required. String
Cluster description. Note: This field may return null, indicating no valid value.
clusterId This property is required. String
Cluster ID. Note: This field may return null, indicating no valid value.
clusterLimitCpu This property is required. Double
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
clusterLimitMem This property is required. Double
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
clusterName This property is required. String
Cluster name. Note: This field may return null, indicating no valid value.
clusterStatus This property is required. String
cluster status. Note: This field may return null, indicating no valid value.
clusterTotalCpu This property is required. Double
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
clusterTotalMem This property is required. Double
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
clusterType This property is required. String
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
clusterUsedCpu This property is required. Double
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
clusterUsedMem This property is required. Double
Cluster used memory in GB. This field may return null, indicating no valid value.
clusterVersion This property is required. String
The cluster version, may return null if not applicable.
createTime This property is required. String
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
deleteFlag This property is required. 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.
deleteFlagReason This property is required. String
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
instanceCount This property is required. Double
Cluster instance number. This field may return null, indicating no valid value.
normalInstanceCount This property is required. Double
Cluster normal instance number. This field may return null, indicating no valid value.
operationInfos This property is required. List<GetTsfClusterResultContentOperationInfo>
Control information returned to the frontend. This field may return null, indicating no valid value.
runInstanceCount This property is required. Double
Cluster running instance number. This field may return null, indicating no valid value.
runServiceInstanceCount This property is required. Double
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
subnetId This property is required. String
Cluster subnet ID. Note: This field may return null, indicating no valid values.
tsfRegionId This property is required. String
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfRegionName This property is required. String
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneId This property is required. String
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneName This property is required. String
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
updateTime This property is required. String
last update time. Note: This field may return null, indicating that no valid values can be obtained.
vpcId This property is required. String
Private network ID of the cluster. Note: This field may return null, indicating no valid value.
clusterCidr This property is required. string
cluster CIDR. Note: This field may return null, indicating no valid value.
clusterDesc This property is required. string
Cluster description. Note: This field may return null, indicating no valid value.
clusterId This property is required. string
Cluster ID. Note: This field may return null, indicating no valid value.
clusterLimitCpu This property is required. number
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
clusterLimitMem This property is required. number
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
clusterName This property is required. string
Cluster name. Note: This field may return null, indicating no valid value.
clusterStatus This property is required. string
cluster status. Note: This field may return null, indicating no valid value.
clusterTotalCpu This property is required. number
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
clusterTotalMem This property is required. number
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
clusterType This property is required. string
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
clusterUsedCpu This property is required. number
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
clusterUsedMem This property is required. number
Cluster used memory in GB. This field may return null, indicating no valid value.
clusterVersion This property is required. string
The cluster version, may return null if not applicable.
createTime This property is required. string
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
deleteFlag This property is required. 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.
deleteFlagReason This property is required. string
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
instanceCount This property is required. number
Cluster instance number. This field may return null, indicating no valid value.
normalInstanceCount This property is required. number
Cluster normal instance number. This field may return null, indicating no valid value.
operationInfos This property is required. GetTsfClusterResultContentOperationInfo[]
Control information returned to the frontend. This field may return null, indicating no valid value.
runInstanceCount This property is required. number
Cluster running instance number. This field may return null, indicating no valid value.
runServiceInstanceCount This property is required. number
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
subnetId This property is required. string
Cluster subnet ID. Note: This field may return null, indicating no valid values.
tsfRegionId This property is required. string
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfRegionName This property is required. string
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneId This property is required. string
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneName This property is required. string
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
updateTime This property is required. string
last update time. Note: This field may return null, indicating that no valid values can be obtained.
vpcId This property is required. string
Private network ID of the cluster. Note: This field may return null, indicating no valid value.
cluster_cidr This property is required. str
cluster CIDR. Note: This field may return null, indicating no valid value.
cluster_desc This property is required. str
Cluster description. Note: This field may return null, indicating no valid value.
cluster_id This property is required. str
Cluster ID. Note: This field may return null, indicating no valid value.
cluster_limit_cpu This property is required. float
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
cluster_limit_mem This property is required. float
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
cluster_name This property is required. str
Cluster name. Note: This field may return null, indicating no valid value.
cluster_status This property is required. str
cluster status. Note: This field may return null, indicating no valid value.
cluster_total_cpu This property is required. float
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
cluster_total_mem This property is required. float
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
cluster_type This property is required. 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_cpu This property is required. float
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
cluster_used_mem This property is required. float
Cluster used memory in GB. This field may return null, indicating no valid value.
cluster_version This property is required. str
The cluster version, may return null if not applicable.
create_time This property is required. str
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
delete_flag This property is required. 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_reason This property is required. str
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
instance_count This property is required. float
Cluster instance number. This field may return null, indicating no valid value.
normal_instance_count This property is required. float
Cluster normal instance number. This field may return null, indicating no valid value.
operation_infos This property is required. Sequence[GetTsfClusterResultContentOperationInfo]
Control information returned to the frontend. This field may return null, indicating no valid value.
run_instance_count This property is required. float
Cluster running instance number. This field may return null, indicating no valid value.
run_service_instance_count This property is required. float
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
subnet_id This property is required. str
Cluster subnet ID. Note: This field may return null, indicating no valid values.
tsf_region_id This property is required. str
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsf_region_name This property is required. str
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsf_zone_id This property is required. str
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsf_zone_name This property is required. str
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
update_time This property is required. str
last update time. Note: This field may return null, indicating that no valid values can be obtained.
vpc_id This property is required. str
Private network ID of the cluster. Note: This field may return null, indicating no valid value.
clusterCidr This property is required. String
cluster CIDR. Note: This field may return null, indicating no valid value.
clusterDesc This property is required. String
Cluster description. Note: This field may return null, indicating no valid value.
clusterId This property is required. String
Cluster ID. Note: This field may return null, indicating no valid value.
clusterLimitCpu This property is required. Number
Maximum CPU limit of the cluster, in cores. This field may return null, indicating that no valid value was found.
clusterLimitMem This property is required. Number
Cluster maximum memory limit in GB. This field may return null, indicating that no valid value was found.
clusterName This property is required. String
Cluster name. Note: This field may return null, indicating no valid value.
clusterStatus This property is required. String
cluster status. Note: This field may return null, indicating no valid value.
clusterTotalCpu This property is required. Number
Total CPU of the cluster, unit: cores. Note: This field may return null, indicating that no valid value was found.
clusterTotalMem This property is required. Number
Total memory of the cluster, unit: G. Note: This field may return null, indicating that no valid value is obtained.
clusterType This property is required. String
The type of cluster to be queried, if left blank or not passed, all content will be queried. C: container, V: virtual machine.
clusterUsedCpu This property is required. Number
Used CPU of the cluster, in cores. This field may return null, indicating no valid value.
clusterUsedMem This property is required. Number
Cluster used memory in GB. This field may return null, indicating no valid value.
clusterVersion This property is required. String
The cluster version, may return null if not applicable.
createTime This property is required. String
CreationTime. Note: This field may return null, indicating that no valid values can be obtained.
deleteFlag This property is required. 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.
deleteFlagReason This property is required. String
Reason why the cluster cannot be deleted. Note: This field may return null, indicating that no valid values can be obtained.
instanceCount This property is required. Number
Cluster instance number. This field may return null, indicating no valid value.
normalInstanceCount This property is required. Number
Cluster normal instance number. This field may return null, indicating no valid value.
operationInfos This property is required. List<Property Map>
Control information returned to the frontend. This field may return null, indicating no valid value.
runInstanceCount This property is required. Number
Cluster running instance number. This field may return null, indicating no valid value.
runServiceInstanceCount This property is required. Number
Number of available service instances in the cluster. Note: This field may return null, indicating no valid value.
subnetId This property is required. String
Cluster subnet ID. Note: This field may return null, indicating no valid values.
tsfRegionId This property is required. String
region ID of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfRegionName This property is required. String
region name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneId This property is required. String
Zone Id of TSF. Note: This field may return null, indicating that no valid values can be obtained.
tsfZoneName This property is required. String
Zone name of TSF. Note: This field may return null, indicating that no valid values can be obtained.
updateTime This property is required. String
last update time. Note: This field may return null, indicating that no valid values can be obtained.
vpcId This property is required. String
Private network ID of the cluster. Note: This field may return null, indicating no valid value.

GetTsfClusterResultContentOperationInfo

AddInstances This property is required. List<GetTsfClusterResultContentOperationInfoAddInstance>
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
Destroys This property is required. List<GetTsfClusterResultContentOperationInfoDestroy>
Control information for destroying machine, may return null if no valid value is obtained.
Inits This property is required. List<GetTsfClusterResultContentOperationInfoInit>
Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
AddInstances This property is required. []GetTsfClusterResultContentOperationInfoAddInstance
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
Destroys This property is required. []GetTsfClusterResultContentOperationInfoDestroy
Control information for destroying machine, may return null if no valid value is obtained.
Inits This property is required. []GetTsfClusterResultContentOperationInfoInit
Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
addInstances This property is required. List<GetTsfClusterResultContentOperationInfoAddInstance>
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
destroys This property is required. List<GetTsfClusterResultContentOperationInfoDestroy>
Control information for destroying machine, may return null if no valid value is obtained.
inits This property is required. List<GetTsfClusterResultContentOperationInfoInit>
Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
addInstances This property is required. GetTsfClusterResultContentOperationInfoAddInstance[]
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
destroys This property is required. GetTsfClusterResultContentOperationInfoDestroy[]
Control information for destroying machine, may return null if no valid value is obtained.
inits This property is required. GetTsfClusterResultContentOperationInfoInit[]
Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
add_instances This property is required. Sequence[GetTsfClusterResultContentOperationInfoAddInstance]
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
destroys This property is required. Sequence[GetTsfClusterResultContentOperationInfoDestroy]
Control information for destroying machine, may return null if no valid value is obtained.
inits This property is required. Sequence[GetTsfClusterResultContentOperationInfoInit]
Control information of the initialization button returned to the front end. Note: This field may return null, indicating no valid value.
addInstances This property is required. List<Property Map>
Add instance button control information, Note: This field may return null, indicating that no valid value is obtained.
destroys This property is required. List<Property Map>
Control information for destroying machine, may return null if no valid value is obtained.
inits This property is required. 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

DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. Boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabled_reason This property is required. str
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. Boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.

GetTsfClusterResultContentOperationInfoDestroy

DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. Boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabled_reason This property is required. str
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. Boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.

GetTsfClusterResultContentOperationInfoInit

DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
DisabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
Enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
Supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. Boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. string
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. boolean
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabled_reason This property is required. str
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. bool
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. bool
Whether to display the button. Note: This field may return null, indicating that no valid value was found.
disabledReason This property is required. String
Reason for not displaying. Note: This field may return null, indicating no valid value.
enabled This property is required. Boolean
The availability of the button (whether it is clickable) may return null indicating that the information is not available.
supported This property is required. 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 tencentcloud Terraform Provider.
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack