1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getTsfGroupInstances
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getTsfGroupInstances

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of tsf group_instances

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const groupInstances = tencentcloud.getTsfGroupInstances({
        groupId: "group-yrjkln9v",
        orderBy: "ASC",
        orderType: 0,
        searchWord: "testing",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    group_instances = tencentcloud.get_tsf_group_instances(group_id="group-yrjkln9v",
        order_by="ASC",
        order_type=0,
        search_word="testing")
    
    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.LookupTsfGroupInstances(ctx, &tencentcloud.LookupTsfGroupInstancesArgs{
    			GroupId:    "group-yrjkln9v",
    			OrderBy:    pulumi.StringRef("ASC"),
    			OrderType:  pulumi.Float64Ref(0),
    			SearchWord: pulumi.StringRef("testing"),
    		}, 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 groupInstances = Tencentcloud.GetTsfGroupInstances.Invoke(new()
        {
            GroupId = "group-yrjkln9v",
            OrderBy = "ASC",
            OrderType = 0,
            SearchWord = "testing",
        });
    
    });
    
    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.GetTsfGroupInstancesArgs;
    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 groupInstances = TencentcloudFunctions.getTsfGroupInstances(GetTsfGroupInstancesArgs.builder()
                .groupId("group-yrjkln9v")
                .orderBy("ASC")
                .orderType(0)
                .searchWord("testing")
                .build());
    
        }
    }
    
    variables:
      groupInstances:
        fn::invoke:
          function: tencentcloud:getTsfGroupInstances
          arguments:
            groupId: group-yrjkln9v
            orderBy: ASC
            orderType: 0
            searchWord: testing
    

    Using getTsfGroupInstances

    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 getTsfGroupInstances(args: GetTsfGroupInstancesArgs, opts?: InvokeOptions): Promise<GetTsfGroupInstancesResult>
    function getTsfGroupInstancesOutput(args: GetTsfGroupInstancesOutputArgs, opts?: InvokeOptions): Output<GetTsfGroupInstancesResult>
    def get_tsf_group_instances(group_id: Optional[str] = None,
                                id: Optional[str] = None,
                                order_by: Optional[str] = None,
                                order_type: Optional[float] = None,
                                result_output_file: Optional[str] = None,
                                search_word: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetTsfGroupInstancesResult
    def get_tsf_group_instances_output(group_id: Optional[pulumi.Input[str]] = None,
                                id: Optional[pulumi.Input[str]] = None,
                                order_by: Optional[pulumi.Input[str]] = None,
                                order_type: Optional[pulumi.Input[float]] = None,
                                result_output_file: Optional[pulumi.Input[str]] = None,
                                search_word: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetTsfGroupInstancesResult]
    func LookupTsfGroupInstances(ctx *Context, args *LookupTsfGroupInstancesArgs, opts ...InvokeOption) (*LookupTsfGroupInstancesResult, error)
    func LookupTsfGroupInstancesOutput(ctx *Context, args *LookupTsfGroupInstancesOutputArgs, opts ...InvokeOption) LookupTsfGroupInstancesResultOutput

    > Note: This function is named LookupTsfGroupInstances in the Go SDK.

    public static class GetTsfGroupInstances 
    {
        public static Task<GetTsfGroupInstancesResult> InvokeAsync(GetTsfGroupInstancesArgs args, InvokeOptions? opts = null)
        public static Output<GetTsfGroupInstancesResult> Invoke(GetTsfGroupInstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTsfGroupInstancesResult> getTsfGroupInstances(GetTsfGroupInstancesArgs args, InvokeOptions options)
    public static Output<GetTsfGroupInstancesResult> getTsfGroupInstances(GetTsfGroupInstancesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getTsfGroupInstances:getTsfGroupInstances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    GroupId string
    group id.
    Id string
    OrderBy string
    order term.
    OrderType double
    order type.
    ResultOutputFile string
    Used to save results.
    SearchWord string
    search word.
    GroupId string
    group id.
    Id string
    OrderBy string
    order term.
    OrderType float64
    order type.
    ResultOutputFile string
    Used to save results.
    SearchWord string
    search word.
    groupId String
    group id.
    id String
    orderBy String
    order term.
    orderType Double
    order type.
    resultOutputFile String
    Used to save results.
    searchWord String
    search word.
    groupId string
    group id.
    id string
    orderBy string
    order term.
    orderType number
    order type.
    resultOutputFile string
    Used to save results.
    searchWord string
    search word.
    group_id str
    group id.
    id str
    order_by str
    order term.
    order_type float
    order type.
    result_output_file str
    Used to save results.
    search_word str
    search word.
    groupId String
    group id.
    id String
    orderBy String
    order term.
    orderType Number
    order type.
    resultOutputFile String
    Used to save results.
    searchWord String
    search word.

    getTsfGroupInstances Result

    The following output properties are available:

    GroupId string
    Group id.Note: This field may return null, which means no valid value was found.
    Id string
    Results List<GetTsfGroupInstancesResult>
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    OrderBy string
    OrderType double
    ResultOutputFile string
    SearchWord string
    GroupId string
    Group id.Note: This field may return null, which means no valid value was found.
    Id string
    Results []GetTsfGroupInstancesResult
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    OrderBy string
    OrderType float64
    ResultOutputFile string
    SearchWord string
    groupId String
    Group id.Note: This field may return null, which means no valid value was found.
    id String
    results List<GetTsfGroupInstancesResult>
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    orderBy String
    orderType Double
    resultOutputFile String
    searchWord String
    groupId string
    Group id.Note: This field may return null, which means no valid value was found.
    id string
    results GetTsfGroupInstancesResult[]
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    orderBy string
    orderType number
    resultOutputFile string
    searchWord string
    group_id str
    Group id.Note: This field may return null, which means no valid value was found.
    id str
    results Sequence[GetTsfGroupInstancesResult]
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    order_by str
    order_type float
    result_output_file str
    search_word str
    groupId String
    Group id.Note: This field may return null, which means no valid value was found.
    id String
    results List<Property Map>
    Machine information of the deployment group.Note: This field may return null, which means no valid value was found.
    orderBy String
    orderType Number
    resultOutputFile String
    searchWord String

    Supporting Types

    GetTsfGroupInstancesResult

    Contents List<GetTsfGroupInstancesResultContent>
    List of machine instances.Note: This field may return null, which means no valid value was found.
    TotalCount double
    Total number of machine instances.Note: This field may return null, which means no valid value was found.
    Contents []GetTsfGroupInstancesResultContent
    List of machine instances.Note: This field may return null, which means no valid value was found.
    TotalCount float64
    Total number of machine instances.Note: This field may return null, which means no valid value was found.
    contents List<GetTsfGroupInstancesResultContent>
    List of machine instances.Note: This field may return null, which means no valid value was found.
    totalCount Double
    Total number of machine instances.Note: This field may return null, which means no valid value was found.
    contents GetTsfGroupInstancesResultContent[]
    List of machine instances.Note: This field may return null, which means no valid value was found.
    totalCount number
    Total number of machine instances.Note: This field may return null, which means no valid value was found.
    contents Sequence[GetTsfGroupInstancesResultContent]
    List of machine instances.Note: This field may return null, which means no valid value was found.
    total_count float
    Total number of machine instances.Note: This field may return null, which means no valid value was found.
    contents List<Property Map>
    List of machine instances.Note: This field may return null, which means no valid value was found.
    totalCount Number
    Total number of machine instances.Note: This field may return null, which means no valid value was found.

    GetTsfGroupInstancesResultContent

    AgentVersion string
    Agent version.Note: This field may return null, which means no valid value was found.
    ApplicationId string
    Application id.Note: This field may return null, which means no valid value was found.
    ApplicationName string
    Application name. Note: This field may return null, which means no valid value was found.
    ApplicationResourceType string
    application resource id.Note: This field may return null, which means no valid value was found.
    ApplicationType string
    Application id.Note: This field may return null, which means no valid value was found.
    ClusterId string
    Cluster id.Note: This field may return null, which means no valid value was found.
    ClusterName string
    Cluster name. Note: This field may return null, which means no valid value was found.
    ClusterType string
    Cluster type.Note: This field may return null, which means no valid value was found.
    CountInTsf double
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    GroupId string
    group id.
    GroupName string
    Group name.Note: This field may return null, which means no valid value was found.
    InstanceAvailableStatus string
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    InstanceChargeType string
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    InstanceCreatedTime string
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    InstanceDesc string
    Description.Note: This field may return null, which means no valid value was found.
    InstanceExpiredTime string
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    InstanceId string
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    InstanceImportMode string
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    InstanceLimitCpu double
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceLimitMem double
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceName string
    Machine name.Note: This field may return null, which means no valid value was found.
    InstancePkgVersion string
    instance pkg version.Note: This field may return null, which means no valid value was found.
    InstanceStatus string
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    InstanceTotalCpu double
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceTotalMem double
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceUsedCpu double
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceUsedMem double
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceZoneId string
    Instance zone id.Note: This field may return null, which means no valid value was found.
    LanIp string
    Private IP address.Note: This field may return null, which means no valid value was found.
    NamespaceId string
    Namespace id.Note: This field may return null, which means no valid value was found.
    NamespaceName string
    Namespace name.Note: This field may return null, which means no valid value was found.
    NodeInstanceId string
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    OperationState double
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    Reason string
    Health checking reason.Note: This field may return null, which means no valid value was found.
    RestrictState string
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    ServiceInstanceStatus string
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    ServiceSidecarStatus string
    Sidecar status.Note: This field may return null, which means no valid value was found.
    UpdateTime string
    Update time.Note: This field may return null, which means no valid value was found.
    WanIp string
    Public IP address.Note: This field may return null, which means no valid value was found.
    AgentVersion string
    Agent version.Note: This field may return null, which means no valid value was found.
    ApplicationId string
    Application id.Note: This field may return null, which means no valid value was found.
    ApplicationName string
    Application name. Note: This field may return null, which means no valid value was found.
    ApplicationResourceType string
    application resource id.Note: This field may return null, which means no valid value was found.
    ApplicationType string
    Application id.Note: This field may return null, which means no valid value was found.
    ClusterId string
    Cluster id.Note: This field may return null, which means no valid value was found.
    ClusterName string
    Cluster name. Note: This field may return null, which means no valid value was found.
    ClusterType string
    Cluster type.Note: This field may return null, which means no valid value was found.
    CountInTsf float64
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    GroupId string
    group id.
    GroupName string
    Group name.Note: This field may return null, which means no valid value was found.
    InstanceAvailableStatus string
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    InstanceChargeType string
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    InstanceCreatedTime string
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    InstanceDesc string
    Description.Note: This field may return null, which means no valid value was found.
    InstanceExpiredTime string
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    InstanceId string
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    InstanceImportMode string
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    InstanceLimitCpu float64
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceLimitMem float64
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceName string
    Machine name.Note: This field may return null, which means no valid value was found.
    InstancePkgVersion string
    instance pkg version.Note: This field may return null, which means no valid value was found.
    InstanceStatus string
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    InstanceTotalCpu float64
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceTotalMem float64
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceUsedCpu float64
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceUsedMem float64
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    InstanceZoneId string
    Instance zone id.Note: This field may return null, which means no valid value was found.
    LanIp string
    Private IP address.Note: This field may return null, which means no valid value was found.
    NamespaceId string
    Namespace id.Note: This field may return null, which means no valid value was found.
    NamespaceName string
    Namespace name.Note: This field may return null, which means no valid value was found.
    NodeInstanceId string
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    OperationState float64
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    Reason string
    Health checking reason.Note: This field may return null, which means no valid value was found.
    RestrictState string
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    ServiceInstanceStatus string
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    ServiceSidecarStatus string
    Sidecar status.Note: This field may return null, which means no valid value was found.
    UpdateTime string
    Update time.Note: This field may return null, which means no valid value was found.
    WanIp string
    Public IP address.Note: This field may return null, which means no valid value was found.
    agentVersion String
    Agent version.Note: This field may return null, which means no valid value was found.
    applicationId String
    Application id.Note: This field may return null, which means no valid value was found.
    applicationName String
    Application name. Note: This field may return null, which means no valid value was found.
    applicationResourceType String
    application resource id.Note: This field may return null, which means no valid value was found.
    applicationType String
    Application id.Note: This field may return null, which means no valid value was found.
    clusterId String
    Cluster id.Note: This field may return null, which means no valid value was found.
    clusterName String
    Cluster name. Note: This field may return null, which means no valid value was found.
    clusterType String
    Cluster type.Note: This field may return null, which means no valid value was found.
    countInTsf Double
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    groupId String
    group id.
    groupName String
    Group name.Note: This field may return null, which means no valid value was found.
    instanceAvailableStatus String
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    instanceChargeType String
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    instanceCreatedTime String
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceDesc String
    Description.Note: This field may return null, which means no valid value was found.
    instanceExpiredTime String
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceId String
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    instanceImportMode String
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    instanceLimitCpu Double
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceLimitMem Double
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceName String
    Machine name.Note: This field may return null, which means no valid value was found.
    instancePkgVersion String
    instance pkg version.Note: This field may return null, which means no valid value was found.
    instanceStatus String
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    instanceTotalCpu Double
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceTotalMem Double
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedCpu Double
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedMem Double
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceZoneId String
    Instance zone id.Note: This field may return null, which means no valid value was found.
    lanIp String
    Private IP address.Note: This field may return null, which means no valid value was found.
    namespaceId String
    Namespace id.Note: This field may return null, which means no valid value was found.
    namespaceName String
    Namespace name.Note: This field may return null, which means no valid value was found.
    nodeInstanceId String
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    operationState Double
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    reason String
    Health checking reason.Note: This field may return null, which means no valid value was found.
    restrictState String
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    serviceInstanceStatus String
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    serviceSidecarStatus String
    Sidecar status.Note: This field may return null, which means no valid value was found.
    updateTime String
    Update time.Note: This field may return null, which means no valid value was found.
    wanIp String
    Public IP address.Note: This field may return null, which means no valid value was found.
    agentVersion string
    Agent version.Note: This field may return null, which means no valid value was found.
    applicationId string
    Application id.Note: This field may return null, which means no valid value was found.
    applicationName string
    Application name. Note: This field may return null, which means no valid value was found.
    applicationResourceType string
    application resource id.Note: This field may return null, which means no valid value was found.
    applicationType string
    Application id.Note: This field may return null, which means no valid value was found.
    clusterId string
    Cluster id.Note: This field may return null, which means no valid value was found.
    clusterName string
    Cluster name. Note: This field may return null, which means no valid value was found.
    clusterType string
    Cluster type.Note: This field may return null, which means no valid value was found.
    countInTsf number
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    groupId string
    group id.
    groupName string
    Group name.Note: This field may return null, which means no valid value was found.
    instanceAvailableStatus string
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    instanceChargeType string
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    instanceCreatedTime string
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceDesc string
    Description.Note: This field may return null, which means no valid value was found.
    instanceExpiredTime string
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceId string
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    instanceImportMode string
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    instanceLimitCpu number
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceLimitMem number
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceName string
    Machine name.Note: This field may return null, which means no valid value was found.
    instancePkgVersion string
    instance pkg version.Note: This field may return null, which means no valid value was found.
    instanceStatus string
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    instanceTotalCpu number
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceTotalMem number
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedCpu number
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedMem number
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceZoneId string
    Instance zone id.Note: This field may return null, which means no valid value was found.
    lanIp string
    Private IP address.Note: This field may return null, which means no valid value was found.
    namespaceId string
    Namespace id.Note: This field may return null, which means no valid value was found.
    namespaceName string
    Namespace name.Note: This field may return null, which means no valid value was found.
    nodeInstanceId string
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    operationState number
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    reason string
    Health checking reason.Note: This field may return null, which means no valid value was found.
    restrictState string
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    serviceInstanceStatus string
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    serviceSidecarStatus string
    Sidecar status.Note: This field may return null, which means no valid value was found.
    updateTime string
    Update time.Note: This field may return null, which means no valid value was found.
    wanIp string
    Public IP address.Note: This field may return null, which means no valid value was found.
    agent_version str
    Agent version.Note: This field may return null, which means no valid value was found.
    application_id str
    Application id.Note: This field may return null, which means no valid value was found.
    application_name str
    Application name. Note: This field may return null, which means no valid value was found.
    application_resource_type str
    application resource id.Note: This field may return null, which means no valid value was found.
    application_type str
    Application id.Note: This field may return null, which means no valid value was found.
    cluster_id str
    Cluster id.Note: This field may return null, which means no valid value was found.
    cluster_name str
    Cluster name. Note: This field may return null, which means no valid value was found.
    cluster_type str
    Cluster type.Note: This field may return null, which means no valid value was found.
    count_in_tsf float
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    group_id str
    group id.
    group_name str
    Group name.Note: This field may return null, which means no valid value was found.
    instance_available_status str
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    instance_charge_type str
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    instance_created_time str
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instance_desc str
    Description.Note: This field may return null, which means no valid value was found.
    instance_expired_time str
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instance_id str
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    instance_import_mode str
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    instance_limit_cpu float
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instance_limit_mem float
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instance_name str
    Machine name.Note: This field may return null, which means no valid value was found.
    instance_pkg_version str
    instance pkg version.Note: This field may return null, which means no valid value was found.
    instance_status str
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    instance_total_cpu float
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instance_total_mem float
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instance_used_cpu float
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instance_used_mem float
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instance_zone_id str
    Instance zone id.Note: This field may return null, which means no valid value was found.
    lan_ip str
    Private IP address.Note: This field may return null, which means no valid value was found.
    namespace_id str
    Namespace id.Note: This field may return null, which means no valid value was found.
    namespace_name str
    Namespace name.Note: This field may return null, which means no valid value was found.
    node_instance_id str
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    operation_state float
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    reason str
    Health checking reason.Note: This field may return null, which means no valid value was found.
    restrict_state str
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    service_instance_status str
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    service_sidecar_status str
    Sidecar status.Note: This field may return null, which means no valid value was found.
    update_time str
    Update time.Note: This field may return null, which means no valid value was found.
    wan_ip str
    Public IP address.Note: This field may return null, which means no valid value was found.
    agentVersion String
    Agent version.Note: This field may return null, which means no valid value was found.
    applicationId String
    Application id.Note: This field may return null, which means no valid value was found.
    applicationName String
    Application name. Note: This field may return null, which means no valid value was found.
    applicationResourceType String
    application resource id.Note: This field may return null, which means no valid value was found.
    applicationType String
    Application id.Note: This field may return null, which means no valid value was found.
    clusterId String
    Cluster id.Note: This field may return null, which means no valid value was found.
    clusterName String
    Cluster name. Note: This field may return null, which means no valid value was found.
    clusterType String
    Cluster type.Note: This field may return null, which means no valid value was found.
    countInTsf Number
    Indicates whether this instance has been added to the TSF.Note: This field may return null, which means no valid value was found.
    groupId String
    group id.
    groupName String
    Group name.Note: This field may return null, which means no valid value was found.
    instanceAvailableStatus String
    VM availability status. For virtual machines, it indicates whether the virtual machine can be used as a resource. For containers, it indicates whether the virtual machine can be used to deploy pods.Note: This field may return null, which means no valid value was found.
    instanceChargeType String
    machine instance charge type.Note: This field may return null, which means no valid value was found.
    instanceCreatedTime String
    Creation time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceDesc String
    Description.Note: This field may return null, which means no valid value was found.
    instanceExpiredTime String
    Expire time of the machine instance in CVM.Note: This field may return null, which means no valid value was found.
    instanceId String
    Machine instance ID.Note: This field may return null, which means no valid value was found.
    instanceImportMode String
    InstanceImportMode import mode.Note: This field may return null, which means no valid value was found.
    instanceLimitCpu Number
    Limit CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceLimitMem Number
    Limit memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceName String
    Machine name.Note: This field may return null, which means no valid value was found.
    instancePkgVersion String
    instance pkg version.Note: This field may return null, which means no valid value was found.
    instanceStatus String
    VM status. For virtual machines, it indicates the status of the virtual machine. For containers, it indicates the status of the virtual machine where the pod is located.Note: This field may return null, which means no valid value was found.
    instanceTotalCpu Number
    Total CPU information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceTotalMem Number
    Total memory information of the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedCpu Number
    CPU information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceUsedMem Number
    Memory information used by the machine instance.Note: This field may return null, which means no valid value was found.
    instanceZoneId String
    Instance zone id.Note: This field may return null, which means no valid value was found.
    lanIp String
    Private IP address.Note: This field may return null, which means no valid value was found.
    namespaceId String
    Namespace id.Note: This field may return null, which means no valid value was found.
    namespaceName String
    Namespace name.Note: This field may return null, which means no valid value was found.
    nodeInstanceId String
    Container host instance ID.Note: This field may return null, which means no valid value was found.
    operationState Number
    Execution status of the instance.Note: This field may return null, which means no valid value was found.
    reason String
    Health checking reason.Note: This field may return null, which means no valid value was found.
    restrictState String
    Business status of the machine instance.Note: This field may return null, which means no valid value was found.
    serviceInstanceStatus String
    Status of service instances under the service. For virtual machines, it indicates whether the application is available and the agent status. For containers, it indicates the status of the pod.Note: This field may return null, which means no valid value was found.
    serviceSidecarStatus String
    Sidecar status.Note: This field may return null, which means no valid value was found.
    updateTime String
    Update time.Note: This field may return null, which means no valid value was found.
    wanIp String
    Public IP address.Note: This field may return null, which means 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 logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack