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

tencentcloud.ContainerClusterInstance

Explore with Pulumi AI

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

    Provides a TencentCloud Container Cluster Instance resource.

    NOTE: It has been deprecated and replaced by tencentcloud_kubernetes_scale_worker.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const barInstance = new tencentcloud.ContainerClusterInstance("barInstance", {
        bandwidth: 1,
        bandwidthType: "PayByHour",
        clusterId: "cls-abcdef",
        cpu: 1,
        cvmType: "PayByMonth",
        dockerGraphPath: "",
        instanceType: "CVM.S2",
        isVpcGateway: 0,
        mem: 1,
        mountTarget: "/data",
        password: "Admin12345678",
        period: 1,
        requireWanIp: 1,
        rootSize: 50,
        storageSize: 10,
        subnetId: "subnet-abcdedf",
        zoneId: "100004",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    bar_instance = tencentcloud.ContainerClusterInstance("barInstance",
        bandwidth=1,
        bandwidth_type="PayByHour",
        cluster_id="cls-abcdef",
        cpu=1,
        cvm_type="PayByMonth",
        docker_graph_path="",
        instance_type="CVM.S2",
        is_vpc_gateway=0,
        mem=1,
        mount_target="/data",
        password="Admin12345678",
        period=1,
        require_wan_ip=1,
        root_size=50,
        storage_size=10,
        subnet_id="subnet-abcdedf",
        zone_id="100004")
    
    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.NewContainerClusterInstance(ctx, "barInstance", &tencentcloud.ContainerClusterInstanceArgs{
    			Bandwidth:       pulumi.Float64(1),
    			BandwidthType:   pulumi.String("PayByHour"),
    			ClusterId:       pulumi.String("cls-abcdef"),
    			Cpu:             pulumi.Float64(1),
    			CvmType:         pulumi.String("PayByMonth"),
    			DockerGraphPath: pulumi.String(""),
    			InstanceType:    pulumi.String("CVM.S2"),
    			IsVpcGateway:    pulumi.Float64(0),
    			Mem:             pulumi.Float64(1),
    			MountTarget:     pulumi.String("/data"),
    			Password:        pulumi.String("Admin12345678"),
    			Period:          pulumi.Float64(1),
    			RequireWanIp:    pulumi.Float64(1),
    			RootSize:        pulumi.Float64(50),
    			StorageSize:     pulumi.Float64(10),
    			SubnetId:        pulumi.String("subnet-abcdedf"),
    			ZoneId:          pulumi.String("100004"),
    		})
    		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 barInstance = new Tencentcloud.ContainerClusterInstance("barInstance", new()
        {
            Bandwidth = 1,
            BandwidthType = "PayByHour",
            ClusterId = "cls-abcdef",
            Cpu = 1,
            CvmType = "PayByMonth",
            DockerGraphPath = "",
            InstanceType = "CVM.S2",
            IsVpcGateway = 0,
            Mem = 1,
            MountTarget = "/data",
            Password = "Admin12345678",
            Period = 1,
            RequireWanIp = 1,
            RootSize = 50,
            StorageSize = 10,
            SubnetId = "subnet-abcdedf",
            ZoneId = "100004",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.ContainerClusterInstance;
    import com.pulumi.tencentcloud.ContainerClusterInstanceArgs;
    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) {
            var barInstance = new ContainerClusterInstance("barInstance", ContainerClusterInstanceArgs.builder()
                .bandwidth(1)
                .bandwidthType("PayByHour")
                .clusterId("cls-abcdef")
                .cpu(1)
                .cvmType("PayByMonth")
                .dockerGraphPath("")
                .instanceType("CVM.S2")
                .isVpcGateway(0)
                .mem(1)
                .mountTarget("/data")
                .password("Admin12345678")
                .period(1)
                .requireWanIp(1)
                .rootSize(50)
                .storageSize(10)
                .subnetId("subnet-abcdedf")
                .zoneId(100004)
                .build());
    
        }
    }
    
    resources:
      barInstance:
        type: tencentcloud:ContainerClusterInstance
        properties:
          bandwidth: 1
          bandwidthType: PayByHour
          clusterId: cls-abcdef
          cpu: 1
          cvmType: PayByMonth
          dockerGraphPath: ""
          instanceType: CVM.S2
          isVpcGateway: 0
          mem: 1
          mountTarget: /data
          password: Admin12345678
          period: 1
          requireWanIp: 1
          rootSize: 50
          storageSize: 10
          subnetId: subnet-abcdedf
          zoneId: 100004
    

    Create ContainerClusterInstance Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ContainerClusterInstance(name: string, args: ContainerClusterInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def ContainerClusterInstance(resource_name: str,
                                 args: ContainerClusterInstanceArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ContainerClusterInstance(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 is_vpc_gateway: Optional[float] = None,
                                 bandwidth_type: Optional[str] = None,
                                 cluster_id: Optional[str] = None,
                                 zone_id: Optional[str] = None,
                                 subnet_id: Optional[str] = None,
                                 storage_size: Optional[float] = None,
                                 root_size: Optional[float] = None,
                                 bandwidth: Optional[float] = None,
                                 mount_target: Optional[str] = None,
                                 root_type: Optional[str] = None,
                                 key_id: Optional[str] = None,
                                 mem: Optional[float] = None,
                                 instance_name: Optional[str] = None,
                                 password: Optional[str] = None,
                                 period: Optional[float] = None,
                                 require_wan_ip: Optional[float] = None,
                                 docker_graph_path: Optional[str] = None,
                                 instance_type: Optional[str] = None,
                                 sg_id: Optional[str] = None,
                                 cvm_type: Optional[str] = None,
                                 storage_type: Optional[str] = None,
                                 cpu: Optional[float] = None,
                                 unschedulable: Optional[float] = None,
                                 user_script: Optional[str] = None,
                                 container_cluster_instance_id: Optional[str] = None)
    func NewContainerClusterInstance(ctx *Context, name string, args ContainerClusterInstanceArgs, opts ...ResourceOption) (*ContainerClusterInstance, error)
    public ContainerClusterInstance(string name, ContainerClusterInstanceArgs args, CustomResourceOptions? opts = null)
    public ContainerClusterInstance(String name, ContainerClusterInstanceArgs args)
    public ContainerClusterInstance(String name, ContainerClusterInstanceArgs args, CustomResourceOptions options)
    
    type: tencentcloud:ContainerClusterInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ContainerClusterInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ContainerClusterInstanceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ContainerClusterInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContainerClusterInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContainerClusterInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ContainerClusterInstance Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ContainerClusterInstance resource accepts the following input properties:

    Bandwidth double
    The network bandwidth of the node.
    BandwidthType string
    The network type of the node.
    ClusterId string
    The id of the cluster.
    IsVpcGateway double
    Describe whether the node enable the gateway capability.
    RootSize double
    The size of the root volume.
    StorageSize double
    The size of the data volume.
    SubnetId string
    The subnet id which the node stays in.
    ZoneId string
    The zone which the node stays in.
    ContainerClusterInstanceId string
    ID of the resource.
    Cpu double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    CvmType string
    The type of node needed by cvm.
    DockerGraphPath string
    The docker graph path is going to mounted.
    InstanceName string
    The name ot node.
    InstanceType string
    The instance type of the node needed by cvm.
    KeyId string
    The key_id of each node(if using key pair to access).
    Mem double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    MountTarget string
    The path which volume is going to be mounted.
    Password string
    The password of each node.
    Period double
    The puchase duration of the node needed by cvm.
    RequireWanIp double
    Indicate whether wan ip is needed.
    RootType string
    The type of the root volume. see more from CVM.
    SgId string
    The security group id.
    StorageType string
    The type of the data volume. see more from CVM.
    Unschedulable double
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    UserScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    Bandwidth float64
    The network bandwidth of the node.
    BandwidthType string
    The network type of the node.
    ClusterId string
    The id of the cluster.
    IsVpcGateway float64
    Describe whether the node enable the gateway capability.
    RootSize float64
    The size of the root volume.
    StorageSize float64
    The size of the data volume.
    SubnetId string
    The subnet id which the node stays in.
    ZoneId string
    The zone which the node stays in.
    ContainerClusterInstanceId string
    ID of the resource.
    Cpu float64
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    CvmType string
    The type of node needed by cvm.
    DockerGraphPath string
    The docker graph path is going to mounted.
    InstanceName string
    The name ot node.
    InstanceType string
    The instance type of the node needed by cvm.
    KeyId string
    The key_id of each node(if using key pair to access).
    Mem float64
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    MountTarget string
    The path which volume is going to be mounted.
    Password string
    The password of each node.
    Period float64
    The puchase duration of the node needed by cvm.
    RequireWanIp float64
    Indicate whether wan ip is needed.
    RootType string
    The type of the root volume. see more from CVM.
    SgId string
    The security group id.
    StorageType string
    The type of the data volume. see more from CVM.
    Unschedulable float64
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    UserScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    bandwidth Double
    The network bandwidth of the node.
    bandwidthType String
    The network type of the node.
    clusterId String
    The id of the cluster.
    isVpcGateway Double
    Describe whether the node enable the gateway capability.
    rootSize Double
    The size of the root volume.
    storageSize Double
    The size of the data volume.
    subnetId String
    The subnet id which the node stays in.
    zoneId String
    The zone which the node stays in.
    containerClusterInstanceId String
    ID of the resource.
    cpu Double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType String
    The type of node needed by cvm.
    dockerGraphPath String
    The docker graph path is going to mounted.
    instanceName String
    The name ot node.
    instanceType String
    The instance type of the node needed by cvm.
    keyId String
    The key_id of each node(if using key pair to access).
    mem Double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget String
    The path which volume is going to be mounted.
    password String
    The password of each node.
    period Double
    The puchase duration of the node needed by cvm.
    requireWanIp Double
    Indicate whether wan ip is needed.
    rootType String
    The type of the root volume. see more from CVM.
    sgId String
    The security group id.
    storageType String
    The type of the data volume. see more from CVM.
    unschedulable Double
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript String
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    bandwidth number
    The network bandwidth of the node.
    bandwidthType string
    The network type of the node.
    clusterId string
    The id of the cluster.
    isVpcGateway number
    Describe whether the node enable the gateway capability.
    rootSize number
    The size of the root volume.
    storageSize number
    The size of the data volume.
    subnetId string
    The subnet id which the node stays in.
    zoneId string
    The zone which the node stays in.
    containerClusterInstanceId string
    ID of the resource.
    cpu number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType string
    The type of node needed by cvm.
    dockerGraphPath string
    The docker graph path is going to mounted.
    instanceName string
    The name ot node.
    instanceType string
    The instance type of the node needed by cvm.
    keyId string
    The key_id of each node(if using key pair to access).
    mem number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget string
    The path which volume is going to be mounted.
    password string
    The password of each node.
    period number
    The puchase duration of the node needed by cvm.
    requireWanIp number
    Indicate whether wan ip is needed.
    rootType string
    The type of the root volume. see more from CVM.
    sgId string
    The security group id.
    storageType string
    The type of the data volume. see more from CVM.
    unschedulable number
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    bandwidth float
    The network bandwidth of the node.
    bandwidth_type str
    The network type of the node.
    cluster_id str
    The id of the cluster.
    is_vpc_gateway float
    Describe whether the node enable the gateway capability.
    root_size float
    The size of the root volume.
    storage_size float
    The size of the data volume.
    subnet_id str
    The subnet id which the node stays in.
    zone_id str
    The zone which the node stays in.
    container_cluster_instance_id str
    ID of the resource.
    cpu float
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvm_type str
    The type of node needed by cvm.
    docker_graph_path str
    The docker graph path is going to mounted.
    instance_name str
    The name ot node.
    instance_type str
    The instance type of the node needed by cvm.
    key_id str
    The key_id of each node(if using key pair to access).
    mem float
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mount_target str
    The path which volume is going to be mounted.
    password str
    The password of each node.
    period float
    The puchase duration of the node needed by cvm.
    require_wan_ip float
    Indicate whether wan ip is needed.
    root_type str
    The type of the root volume. see more from CVM.
    sg_id str
    The security group id.
    storage_type str
    The type of the data volume. see more from CVM.
    unschedulable float
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    user_script str
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    bandwidth Number
    The network bandwidth of the node.
    bandwidthType String
    The network type of the node.
    clusterId String
    The id of the cluster.
    isVpcGateway Number
    Describe whether the node enable the gateway capability.
    rootSize Number
    The size of the root volume.
    storageSize Number
    The size of the data volume.
    subnetId String
    The subnet id which the node stays in.
    zoneId String
    The zone which the node stays in.
    containerClusterInstanceId String
    ID of the resource.
    cpu Number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType String
    The type of node needed by cvm.
    dockerGraphPath String
    The docker graph path is going to mounted.
    instanceName String
    The name ot node.
    instanceType String
    The instance type of the node needed by cvm.
    keyId String
    The key_id of each node(if using key pair to access).
    mem Number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget String
    The path which volume is going to be mounted.
    password String
    The password of each node.
    period Number
    The puchase duration of the node needed by cvm.
    requireWanIp Number
    Indicate whether wan ip is needed.
    rootType String
    The type of the root volume. see more from CVM.
    sgId String
    The security group id.
    storageType String
    The type of the data volume. see more from CVM.
    unschedulable Number
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript String
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ContainerClusterInstance resource produces the following output properties:

    AbnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    An id identify the node, provided by cvm.
    IsNormal double
    Describe whether the node is normal.
    LanIp string
    Describe the lan ip of the node.
    WanIp string
    Describe the wan ip of the node.
    AbnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    An id identify the node, provided by cvm.
    IsNormal float64
    Describe whether the node is normal.
    LanIp string
    Describe the lan ip of the node.
    WanIp string
    Describe the wan ip of the node.
    abnormalReason String
    Describe the reason when node is in abnormal state(if it was).
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    An id identify the node, provided by cvm.
    isNormal Double
    Describe whether the node is normal.
    lanIp String
    Describe the lan ip of the node.
    wanIp String
    Describe the wan ip of the node.
    abnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    An id identify the node, provided by cvm.
    isNormal number
    Describe whether the node is normal.
    lanIp string
    Describe the lan ip of the node.
    wanIp string
    Describe the wan ip of the node.
    abnormal_reason str
    Describe the reason when node is in abnormal state(if it was).
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    An id identify the node, provided by cvm.
    is_normal float
    Describe whether the node is normal.
    lan_ip str
    Describe the lan ip of the node.
    wan_ip str
    Describe the wan ip of the node.
    abnormalReason String
    Describe the reason when node is in abnormal state(if it was).
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    An id identify the node, provided by cvm.
    isNormal Number
    Describe whether the node is normal.
    lanIp String
    Describe the lan ip of the node.
    wanIp String
    Describe the wan ip of the node.

    Look up Existing ContainerClusterInstance Resource

    Get an existing ContainerClusterInstance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ContainerClusterInstanceState, opts?: CustomResourceOptions): ContainerClusterInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            abnormal_reason: Optional[str] = None,
            bandwidth: Optional[float] = None,
            bandwidth_type: Optional[str] = None,
            cluster_id: Optional[str] = None,
            container_cluster_instance_id: Optional[str] = None,
            cpu: Optional[float] = None,
            cvm_type: Optional[str] = None,
            docker_graph_path: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            instance_type: Optional[str] = None,
            is_normal: Optional[float] = None,
            is_vpc_gateway: Optional[float] = None,
            key_id: Optional[str] = None,
            lan_ip: Optional[str] = None,
            mem: Optional[float] = None,
            mount_target: Optional[str] = None,
            password: Optional[str] = None,
            period: Optional[float] = None,
            require_wan_ip: Optional[float] = None,
            root_size: Optional[float] = None,
            root_type: Optional[str] = None,
            sg_id: Optional[str] = None,
            storage_size: Optional[float] = None,
            storage_type: Optional[str] = None,
            subnet_id: Optional[str] = None,
            unschedulable: Optional[float] = None,
            user_script: Optional[str] = None,
            wan_ip: Optional[str] = None,
            zone_id: Optional[str] = None) -> ContainerClusterInstance
    func GetContainerClusterInstance(ctx *Context, name string, id IDInput, state *ContainerClusterInstanceState, opts ...ResourceOption) (*ContainerClusterInstance, error)
    public static ContainerClusterInstance Get(string name, Input<string> id, ContainerClusterInstanceState? state, CustomResourceOptions? opts = null)
    public static ContainerClusterInstance get(String name, Output<String> id, ContainerClusterInstanceState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:ContainerClusterInstance    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AbnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    Bandwidth double
    The network bandwidth of the node.
    BandwidthType string
    The network type of the node.
    ClusterId string
    The id of the cluster.
    ContainerClusterInstanceId string
    ID of the resource.
    Cpu double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    CvmType string
    The type of node needed by cvm.
    DockerGraphPath string
    The docker graph path is going to mounted.
    InstanceId string
    An id identify the node, provided by cvm.
    InstanceName string
    The name ot node.
    InstanceType string
    The instance type of the node needed by cvm.
    IsNormal double
    Describe whether the node is normal.
    IsVpcGateway double
    Describe whether the node enable the gateway capability.
    KeyId string
    The key_id of each node(if using key pair to access).
    LanIp string
    Describe the lan ip of the node.
    Mem double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    MountTarget string
    The path which volume is going to be mounted.
    Password string
    The password of each node.
    Period double
    The puchase duration of the node needed by cvm.
    RequireWanIp double
    Indicate whether wan ip is needed.
    RootSize double
    The size of the root volume.
    RootType string
    The type of the root volume. see more from CVM.
    SgId string
    The security group id.
    StorageSize double
    The size of the data volume.
    StorageType string
    The type of the data volume. see more from CVM.
    SubnetId string
    The subnet id which the node stays in.
    Unschedulable double
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    UserScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    WanIp string
    Describe the wan ip of the node.
    ZoneId string
    The zone which the node stays in.
    AbnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    Bandwidth float64
    The network bandwidth of the node.
    BandwidthType string
    The network type of the node.
    ClusterId string
    The id of the cluster.
    ContainerClusterInstanceId string
    ID of the resource.
    Cpu float64
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    CvmType string
    The type of node needed by cvm.
    DockerGraphPath string
    The docker graph path is going to mounted.
    InstanceId string
    An id identify the node, provided by cvm.
    InstanceName string
    The name ot node.
    InstanceType string
    The instance type of the node needed by cvm.
    IsNormal float64
    Describe whether the node is normal.
    IsVpcGateway float64
    Describe whether the node enable the gateway capability.
    KeyId string
    The key_id of each node(if using key pair to access).
    LanIp string
    Describe the lan ip of the node.
    Mem float64
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    MountTarget string
    The path which volume is going to be mounted.
    Password string
    The password of each node.
    Period float64
    The puchase duration of the node needed by cvm.
    RequireWanIp float64
    Indicate whether wan ip is needed.
    RootSize float64
    The size of the root volume.
    RootType string
    The type of the root volume. see more from CVM.
    SgId string
    The security group id.
    StorageSize float64
    The size of the data volume.
    StorageType string
    The type of the data volume. see more from CVM.
    SubnetId string
    The subnet id which the node stays in.
    Unschedulable float64
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    UserScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    WanIp string
    Describe the wan ip of the node.
    ZoneId string
    The zone which the node stays in.
    abnormalReason String
    Describe the reason when node is in abnormal state(if it was).
    bandwidth Double
    The network bandwidth of the node.
    bandwidthType String
    The network type of the node.
    clusterId String
    The id of the cluster.
    containerClusterInstanceId String
    ID of the resource.
    cpu Double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType String
    The type of node needed by cvm.
    dockerGraphPath String
    The docker graph path is going to mounted.
    instanceId String
    An id identify the node, provided by cvm.
    instanceName String
    The name ot node.
    instanceType String
    The instance type of the node needed by cvm.
    isNormal Double
    Describe whether the node is normal.
    isVpcGateway Double
    Describe whether the node enable the gateway capability.
    keyId String
    The key_id of each node(if using key pair to access).
    lanIp String
    Describe the lan ip of the node.
    mem Double
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget String
    The path which volume is going to be mounted.
    password String
    The password of each node.
    period Double
    The puchase duration of the node needed by cvm.
    requireWanIp Double
    Indicate whether wan ip is needed.
    rootSize Double
    The size of the root volume.
    rootType String
    The type of the root volume. see more from CVM.
    sgId String
    The security group id.
    storageSize Double
    The size of the data volume.
    storageType String
    The type of the data volume. see more from CVM.
    subnetId String
    The subnet id which the node stays in.
    unschedulable Double
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript String
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    wanIp String
    Describe the wan ip of the node.
    zoneId String
    The zone which the node stays in.
    abnormalReason string
    Describe the reason when node is in abnormal state(if it was).
    bandwidth number
    The network bandwidth of the node.
    bandwidthType string
    The network type of the node.
    clusterId string
    The id of the cluster.
    containerClusterInstanceId string
    ID of the resource.
    cpu number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType string
    The type of node needed by cvm.
    dockerGraphPath string
    The docker graph path is going to mounted.
    instanceId string
    An id identify the node, provided by cvm.
    instanceName string
    The name ot node.
    instanceType string
    The instance type of the node needed by cvm.
    isNormal number
    Describe whether the node is normal.
    isVpcGateway number
    Describe whether the node enable the gateway capability.
    keyId string
    The key_id of each node(if using key pair to access).
    lanIp string
    Describe the lan ip of the node.
    mem number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget string
    The path which volume is going to be mounted.
    password string
    The password of each node.
    period number
    The puchase duration of the node needed by cvm.
    requireWanIp number
    Indicate whether wan ip is needed.
    rootSize number
    The size of the root volume.
    rootType string
    The type of the root volume. see more from CVM.
    sgId string
    The security group id.
    storageSize number
    The size of the data volume.
    storageType string
    The type of the data volume. see more from CVM.
    subnetId string
    The subnet id which the node stays in.
    unschedulable number
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript string
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    wanIp string
    Describe the wan ip of the node.
    zoneId string
    The zone which the node stays in.
    abnormal_reason str
    Describe the reason when node is in abnormal state(if it was).
    bandwidth float
    The network bandwidth of the node.
    bandwidth_type str
    The network type of the node.
    cluster_id str
    The id of the cluster.
    container_cluster_instance_id str
    ID of the resource.
    cpu float
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvm_type str
    The type of node needed by cvm.
    docker_graph_path str
    The docker graph path is going to mounted.
    instance_id str
    An id identify the node, provided by cvm.
    instance_name str
    The name ot node.
    instance_type str
    The instance type of the node needed by cvm.
    is_normal float
    Describe whether the node is normal.
    is_vpc_gateway float
    Describe whether the node enable the gateway capability.
    key_id str
    The key_id of each node(if using key pair to access).
    lan_ip str
    Describe the lan ip of the node.
    mem float
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mount_target str
    The path which volume is going to be mounted.
    password str
    The password of each node.
    period float
    The puchase duration of the node needed by cvm.
    require_wan_ip float
    Indicate whether wan ip is needed.
    root_size float
    The size of the root volume.
    root_type str
    The type of the root volume. see more from CVM.
    sg_id str
    The security group id.
    storage_size float
    The size of the data volume.
    storage_type str
    The type of the data volume. see more from CVM.
    subnet_id str
    The subnet id which the node stays in.
    unschedulable float
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    user_script str
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    wan_ip str
    Describe the wan ip of the node.
    zone_id str
    The zone which the node stays in.
    abnormalReason String
    Describe the reason when node is in abnormal state(if it was).
    bandwidth Number
    The network bandwidth of the node.
    bandwidthType String
    The network type of the node.
    clusterId String
    The id of the cluster.
    containerClusterInstanceId String
    ID of the resource.
    cpu Number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The cpu of the node.

    Deprecated: Deprecated

    cvmType String
    The type of node needed by cvm.
    dockerGraphPath String
    The docker graph path is going to mounted.
    instanceId String
    An id identify the node, provided by cvm.
    instanceName String
    The name ot node.
    instanceType String
    The instance type of the node needed by cvm.
    isNormal Number
    Describe whether the node is normal.
    isVpcGateway Number
    Describe whether the node enable the gateway capability.
    keyId String
    The key_id of each node(if using key pair to access).
    lanIp String
    Describe the lan ip of the node.
    mem Number
    It has been deprecated from version 1.16.0. Set 'instance_type' instead. The memory of the node.

    Deprecated: Deprecated

    mountTarget String
    The path which volume is going to be mounted.
    password String
    The password of each node.
    period Number
    The puchase duration of the node needed by cvm.
    requireWanIp Number
    Indicate whether wan ip is needed.
    rootSize Number
    The size of the root volume.
    rootType String
    The type of the root volume. see more from CVM.
    sgId String
    The security group id.
    storageSize Number
    The size of the data volume.
    storageType String
    The type of the data volume. see more from CVM.
    subnetId String
    The subnet id which the node stays in.
    unschedulable Number
    Determine whether the node will be schedulable. 0 is the default meaning node will be schedulable. 1 for unschedulable.
    userScript String
    User defined script in a base64-format. The script runs after the kubernetes component is ready on node. see more from CCS api documents.
    wanIp String
    Describe the wan ip of the node.
    zoneId String
    The zone which the node stays in.

    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