tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
tencentcloud.getKubernetesClusterNodePools
Start a Neo task
Explain and create a tencentcloud.getKubernetesClusterNodePools resource
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
Use this data source to query detailed information of kubernetes cluster_node_pools
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const clusterNodePools = tencentcloud.getKubernetesClusterNodePools({
clusterId: "cls-kzilgv5m",
filters: [
{
name: "NodePoolsName",
values: ["mynodepool_xxxx"],
},
{
name: "NodePoolsId",
values: ["np-ngjwhdv4"],
},
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
cluster_node_pools = tencentcloud.get_kubernetes_cluster_node_pools(cluster_id="cls-kzilgv5m",
filters=[
{
"name": "NodePoolsName",
"values": ["mynodepool_xxxx"],
},
{
"name": "NodePoolsId",
"values": ["np-ngjwhdv4"],
},
])
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.GetKubernetesClusterNodePools(ctx, &tencentcloud.GetKubernetesClusterNodePoolsArgs{
ClusterId: "cls-kzilgv5m",
Filters: []tencentcloud.GetKubernetesClusterNodePoolsFilter{
{
Name: "NodePoolsName",
Values: []string{
"mynodepool_xxxx",
},
},
{
Name: "NodePoolsId",
Values: []string{
"np-ngjwhdv4",
},
},
},
}, 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 clusterNodePools = Tencentcloud.GetKubernetesClusterNodePools.Invoke(new()
{
ClusterId = "cls-kzilgv5m",
Filters = new[]
{
new Tencentcloud.Inputs.GetKubernetesClusterNodePoolsFilterInputArgs
{
Name = "NodePoolsName",
Values = new[]
{
"mynodepool_xxxx",
},
},
new Tencentcloud.Inputs.GetKubernetesClusterNodePoolsFilterInputArgs
{
Name = "NodePoolsId",
Values = new[]
{
"np-ngjwhdv4",
},
},
},
});
});
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.GetKubernetesClusterNodePoolsArgs;
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 clusterNodePools = TencentcloudFunctions.getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs.builder()
.clusterId("cls-kzilgv5m")
.filters(
GetKubernetesClusterNodePoolsFilterArgs.builder()
.name("NodePoolsName")
.values("mynodepool_xxxx")
.build(),
GetKubernetesClusterNodePoolsFilterArgs.builder()
.name("NodePoolsId")
.values("np-ngjwhdv4")
.build())
.build());
}
}
variables:
clusterNodePools:
fn::invoke:
function: tencentcloud:getKubernetesClusterNodePools
arguments:
clusterId: cls-kzilgv5m
filters:
- name: NodePoolsName
values:
- mynodepool_xxxx
- name: NodePoolsId
values:
- np-ngjwhdv4
Using getKubernetesClusterNodePools
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 getKubernetesClusterNodePools(args: GetKubernetesClusterNodePoolsArgs, opts?: InvokeOptions): Promise<GetKubernetesClusterNodePoolsResult>
function getKubernetesClusterNodePoolsOutput(args: GetKubernetesClusterNodePoolsOutputArgs, opts?: InvokeOptions): Output<GetKubernetesClusterNodePoolsResult>def get_kubernetes_cluster_node_pools(cluster_id: Optional[str] = None,
filters: Optional[Sequence[GetKubernetesClusterNodePoolsFilter]] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetKubernetesClusterNodePoolsResult
def get_kubernetes_cluster_node_pools_output(cluster_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetKubernetesClusterNodePoolsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetKubernetesClusterNodePoolsResult]func GetKubernetesClusterNodePools(ctx *Context, args *GetKubernetesClusterNodePoolsArgs, opts ...InvokeOption) (*GetKubernetesClusterNodePoolsResult, error)
func GetKubernetesClusterNodePoolsOutput(ctx *Context, args *GetKubernetesClusterNodePoolsOutputArgs, opts ...InvokeOption) GetKubernetesClusterNodePoolsResultOutput> Note: This function is named GetKubernetesClusterNodePools in the Go SDK.
public static class GetKubernetesClusterNodePools
{
public static Task<GetKubernetesClusterNodePoolsResult> InvokeAsync(GetKubernetesClusterNodePoolsArgs args, InvokeOptions? opts = null)
public static Output<GetKubernetesClusterNodePoolsResult> Invoke(GetKubernetesClusterNodePoolsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetKubernetesClusterNodePoolsResult> getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs args, InvokeOptions options)
public static Output<GetKubernetesClusterNodePoolsResult> getKubernetesClusterNodePools(GetKubernetesClusterNodePoolsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getKubernetesClusterNodePools:getKubernetesClusterNodePools
arguments:
# arguments dictionaryThe following arguments are supported:
- Cluster
Id string - ID of the cluster.
- Filters
List<Get
Kubernetes Cluster Node Pools Filter> - NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- Id string
- Result
Output stringFile - Used to save results.
- Cluster
Id string - ID of the cluster.
- Filters
[]Get
Kubernetes Cluster Node Pools Filter - NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- Id string
- Result
Output stringFile - Used to save results.
- cluster
Id String - ID of the cluster.
- filters
List<Get
Kubernetes Cluster Node Pools Filter> - NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id String
- result
Output StringFile - Used to save results.
- cluster
Id string - ID of the cluster.
- filters
Get
Kubernetes Cluster Node Pools Filter[] - NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id string
- result
Output stringFile - Used to save results.
- cluster_
id str - ID of the cluster.
- filters
Sequence[Get
Kubernetes Cluster Node Pools Filter] - NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id str
- result_
output_ strfile - Used to save results.
- cluster
Id String - ID of the cluster.
- filters List<Property Map>
- NodePoolsName, Filter according to the node pool name, type: String, required: no. NodePoolsId, Filter according to the node pool ID, type: String, required: no. tags, Filter according to the label key value pairs, type: String, required: no. tag:tag-key, Filter according to the label key value pairs, type: String, required: no.
- id String
- result
Output StringFile - Used to save results.
getKubernetesClusterNodePools Result
The following output properties are available:
- Cluster
Id string - Id string
- Node
Pool List<GetSets Kubernetes Cluster Node Pools Node Pool Set> - Node Pool List.
- Filters
List<Get
Kubernetes Cluster Node Pools Filter> - Result
Output stringFile
- Cluster
Id string - Id string
- Node
Pool []GetSets Kubernetes Cluster Node Pools Node Pool Set - Node Pool List.
- Filters
[]Get
Kubernetes Cluster Node Pools Filter - Result
Output stringFile
- cluster
Id String - id String
- node
Pool List<GetSets Kubernetes Cluster Node Pools Node Pool Set> - Node Pool List.
- filters
List<Get
Kubernetes Cluster Node Pools Filter> - result
Output StringFile
- cluster
Id string - id string
- node
Pool GetSets Kubernetes Cluster Node Pools Node Pool Set[] - Node Pool List.
- filters
Get
Kubernetes Cluster Node Pools Filter[] - result
Output stringFile
- cluster
Id String - id String
- node
Pool List<Property Map>Sets - Node Pool List.
- filters List<Property Map>
- result
Output StringFile
Supporting Types
GetKubernetesClusterNodePoolsFilter
GetKubernetesClusterNodePoolsNodePoolSet
- Autoscaling
Group stringId - ID of autoscaling group.
- Autoscaling
Group stringStatus - Status information.
- Cluster
Instance stringId - ID of the cluster.
- Data
Disks List<GetKubernetes Cluster Node Pools Node Pool Set Data Disk> - Multi disk data disk mounting information.
- Deletion
Protection bool - Remove protection switch.
- Desired
Nodes doubleNum - Expected number of nodes.
- Desired
Pod doubleNum - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- Docker
Graph stringPath - Dockerd --graph specified value, default to /var/lib/docker.
- Extra
Args List<GetKubernetes Cluster Node Pools Node Pool Set Extra Arg> - Node configuration.
- Gpu
Args List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg> - GPU driver related parameters.
- Image
Id string - ID of image.
- Labels
List<Get
Kubernetes Cluster Node Pools Node Pool Set Label> - Labels of the node pool.
- Launch
Configuration stringId - ID of launch configuration.
- Life
State string - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- Max
Nodes doubleNum - Maximum number of nodes.
- Min
Nodes doubleNum - Minimum number of nodes.
- Name string
- Name of the node pool.
- Node
Count List<GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary> - Node List.
- Node
Pool stringId - ID of the node pool.
- Node
Pool stringOs - Node Pool OS Name.
- Os
Customize stringType - Mirror version of container.
- Pre
Start stringUser Script - User defined script, executed before User Script.
-
List<Get
Kubernetes Cluster Node Pools Node Pool Set Tag> - Resource tags.
- Taints
List<Get
Kubernetes Cluster Node Pools Node Pool Set Taint> - Labels of the node pool.
- Unschedulable double
- Is it not schedulable.
- User
Script string - User defined scripts.
- Autoscaling
Group stringId - ID of autoscaling group.
- Autoscaling
Group stringStatus - Status information.
- Cluster
Instance stringId - ID of the cluster.
- Data
Disks []GetKubernetes Cluster Node Pools Node Pool Set Data Disk - Multi disk data disk mounting information.
- Deletion
Protection bool - Remove protection switch.
- Desired
Nodes float64Num - Expected number of nodes.
- Desired
Pod float64Num - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- Docker
Graph stringPath - Dockerd --graph specified value, default to /var/lib/docker.
- Extra
Args []GetKubernetes Cluster Node Pools Node Pool Set Extra Arg - Node configuration.
- Gpu
Args []GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg - GPU driver related parameters.
- Image
Id string - ID of image.
- Labels
[]Get
Kubernetes Cluster Node Pools Node Pool Set Label - Labels of the node pool.
- Launch
Configuration stringId - ID of launch configuration.
- Life
State string - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- Max
Nodes float64Num - Maximum number of nodes.
- Min
Nodes float64Num - Minimum number of nodes.
- Name string
- Name of the node pool.
- Node
Count []GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary - Node List.
- Node
Pool stringId - ID of the node pool.
- Node
Pool stringOs - Node Pool OS Name.
- Os
Customize stringType - Mirror version of container.
- Pre
Start stringUser Script - User defined script, executed before User Script.
-
[]Get
Kubernetes Cluster Node Pools Node Pool Set Tag - Resource tags.
- Taints
[]Get
Kubernetes Cluster Node Pools Node Pool Set Taint - Labels of the node pool.
- Unschedulable float64
- Is it not schedulable.
- User
Script string - User defined scripts.
- autoscaling
Group StringId - ID of autoscaling group.
- autoscaling
Group StringStatus - Status information.
- cluster
Instance StringId - ID of the cluster.
- data
Disks List<GetKubernetes Cluster Node Pools Node Pool Set Data Disk> - Multi disk data disk mounting information.
- deletion
Protection Boolean - Remove protection switch.
- desired
Nodes DoubleNum - Expected number of nodes.
- desired
Pod DoubleNum - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- docker
Graph StringPath - Dockerd --graph specified value, default to /var/lib/docker.
- extra
Args List<GetKubernetes Cluster Node Pools Node Pool Set Extra Arg> - Node configuration.
- gpu
Args List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg> - GPU driver related parameters.
- image
Id String - ID of image.
- labels
List<Get
Kubernetes Cluster Node Pools Node Pool Set Label> - Labels of the node pool.
- launch
Configuration StringId - ID of launch configuration.
- life
State String - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- max
Nodes DoubleNum - Maximum number of nodes.
- min
Nodes DoubleNum - Minimum number of nodes.
- name String
- Name of the node pool.
- node
Count List<GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary> - Node List.
- node
Pool StringId - ID of the node pool.
- node
Pool StringOs - Node Pool OS Name.
- os
Customize StringType - Mirror version of container.
- pre
Start StringUser Script - User defined script, executed before User Script.
-
List<Get
Kubernetes Cluster Node Pools Node Pool Set Tag> - Resource tags.
- taints
List<Get
Kubernetes Cluster Node Pools Node Pool Set Taint> - Labels of the node pool.
- unschedulable Double
- Is it not schedulable.
- user
Script String - User defined scripts.
- autoscaling
Group stringId - ID of autoscaling group.
- autoscaling
Group stringStatus - Status information.
- cluster
Instance stringId - ID of the cluster.
- data
Disks GetKubernetes Cluster Node Pools Node Pool Set Data Disk[] - Multi disk data disk mounting information.
- deletion
Protection boolean - Remove protection switch.
- desired
Nodes numberNum - Expected number of nodes.
- desired
Pod numberNum - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- docker
Graph stringPath - Dockerd --graph specified value, default to /var/lib/docker.
- extra
Args GetKubernetes Cluster Node Pools Node Pool Set Extra Arg[] - Node configuration.
- gpu
Args GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg[] - GPU driver related parameters.
- image
Id string - ID of image.
- labels
Get
Kubernetes Cluster Node Pools Node Pool Set Label[] - Labels of the node pool.
- launch
Configuration stringId - ID of launch configuration.
- life
State string - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- max
Nodes numberNum - Maximum number of nodes.
- min
Nodes numberNum - Minimum number of nodes.
- name string
- Name of the node pool.
- node
Count GetSummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary[] - Node List.
- node
Pool stringId - ID of the node pool.
- node
Pool stringOs - Node Pool OS Name.
- os
Customize stringType - Mirror version of container.
- pre
Start stringUser Script - User defined script, executed before User Script.
-
Get
Kubernetes Cluster Node Pools Node Pool Set Tag[] - Resource tags.
- taints
Get
Kubernetes Cluster Node Pools Node Pool Set Taint[] - Labels of the node pool.
- unschedulable number
- Is it not schedulable.
- user
Script string - User defined scripts.
- autoscaling_
group_ strid - ID of autoscaling group.
- autoscaling_
group_ strstatus - Status information.
- cluster_
instance_ strid - ID of the cluster.
- data_
disks Sequence[GetKubernetes Cluster Node Pools Node Pool Set Data Disk] - Multi disk data disk mounting information.
- deletion_
protection bool - Remove protection switch.
- desired_
nodes_ floatnum - Expected number of nodes.
- desired_
pod_ floatnum - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- docker_
graph_ strpath - Dockerd --graph specified value, default to /var/lib/docker.
- extra_
args Sequence[GetKubernetes Cluster Node Pools Node Pool Set Extra Arg] - Node configuration.
- gpu_
args Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg] - GPU driver related parameters.
- image_
id str - ID of image.
- labels
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Label] - Labels of the node pool.
- launch_
configuration_ strid - ID of launch configuration.
- life_
state str - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- max_
nodes_ floatnum - Maximum number of nodes.
- min_
nodes_ floatnum - Minimum number of nodes.
- name str
- Name of the node pool.
- node_
count_ Sequence[Getsummaries Kubernetes Cluster Node Pools Node Pool Set Node Count Summary] - Node List.
- node_
pool_ strid - ID of the node pool.
- node_
pool_ stros - Node Pool OS Name.
- os_
customize_ strtype - Mirror version of container.
- pre_
start_ struser_ script - User defined script, executed before User Script.
-
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Tag] - Resource tags.
- taints
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Taint] - Labels of the node pool.
- unschedulable float
- Is it not schedulable.
- user_
script str - User defined scripts.
- autoscaling
Group StringId - ID of autoscaling group.
- autoscaling
Group StringStatus - Status information.
- cluster
Instance StringId - ID of the cluster.
- data
Disks List<Property Map> - Multi disk data disk mounting information.
- deletion
Protection Boolean - Remove protection switch.
- desired
Nodes NumberNum - Expected number of nodes.
- desired
Pod NumberNum - When the cluster belongs to the node podCIDR size customization mode, the node pool needs to have the pod number attribute.
- docker
Graph StringPath - Dockerd --graph specified value, default to /var/lib/docker.
- extra
Args List<Property Map> - Node configuration.
- gpu
Args List<Property Map> - GPU driver related parameters.
- image
Id String - ID of image.
- labels List<Property Map>
- Labels of the node pool.
- launch
Configuration StringId - ID of launch configuration.
- life
State String - Life cycle state of the node pool, include: creating, normal, updating, deleting, deleted.
- max
Nodes NumberNum - Maximum number of nodes.
- min
Nodes NumberNum - Minimum number of nodes.
- name String
- Name of the node pool.
- node
Count List<Property Map>Summaries - Node List.
- node
Pool StringId - ID of the node pool.
- node
Pool StringOs - Node Pool OS Name.
- os
Customize StringType - Mirror version of container.
- pre
Start StringUser Script - User defined script, executed before User Script.
- List<Property Map>
- Resource tags.
- taints List<Property Map>
- Labels of the node pool.
- unschedulable Number
- Is it not schedulable.
- user
Script String - User defined scripts.
GetKubernetesClusterNodePoolsNodePoolSetDataDisk
- Auto
Format boolAnd Mount - Whether to automate the format disk and mount it.
- Disk
Partition string - Mount device name or partition name.
- Disk
Size double - Cloud disk size(G).
- Disk
Type string - Cloud disk type.
- File
System string - File system(ext3/ext4/xfs).
- Mount
Target string - Mount directory.
- Auto
Format boolAnd Mount - Whether to automate the format disk and mount it.
- Disk
Partition string - Mount device name or partition name.
- Disk
Size float64 - Cloud disk size(G).
- Disk
Type string - Cloud disk type.
- File
System string - File system(ext3/ext4/xfs).
- Mount
Target string - Mount directory.
- auto
Format BooleanAnd Mount - Whether to automate the format disk and mount it.
- disk
Partition String - Mount device name or partition name.
- disk
Size Double - Cloud disk size(G).
- disk
Type String - Cloud disk type.
- file
System String - File system(ext3/ext4/xfs).
- mount
Target String - Mount directory.
- auto
Format booleanAnd Mount - Whether to automate the format disk and mount it.
- disk
Partition string - Mount device name or partition name.
- disk
Size number - Cloud disk size(G).
- disk
Type string - Cloud disk type.
- file
System string - File system(ext3/ext4/xfs).
- mount
Target string - Mount directory.
- auto_
format_ booland_ mount - Whether to automate the format disk and mount it.
- disk_
partition str - Mount device name or partition name.
- disk_
size float - Cloud disk size(G).
- disk_
type str - Cloud disk type.
- file_
system str - File system(ext3/ext4/xfs).
- mount_
target str - Mount directory.
- auto
Format BooleanAnd Mount - Whether to automate the format disk and mount it.
- disk
Partition String - Mount device name or partition name.
- disk
Size Number - Cloud disk size(G).
- disk
Type String - Cloud disk type.
- file
System String - File system(ext3/ext4/xfs).
- mount
Target String - Mount directory.
GetKubernetesClusterNodePoolsNodePoolSetExtraArg
- Kubelets List<string>
- Kubelet custom parameters.
- Kubelets []string
- Kubelet custom parameters.
- kubelets List<String>
- Kubelet custom parameters.
- kubelets string[]
- Kubelet custom parameters.
- kubelets Sequence[str]
- Kubelet custom parameters.
- kubelets List<String>
- Kubelet custom parameters.
GetKubernetesClusterNodePoolsNodePoolSetGpuArg
- Cudas
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda> - CUDA version information.
- Cudnns
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn> - CuDNN version information.
- Custom
Drivers List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver> - Custom GPU driver information.
- Drivers
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver> - GPU driver version information.
- Mig
Enable bool - Is the MIG feature enabled.
- Cudas
[]Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda - CUDA version information.
- Cudnns
[]Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn - CuDNN version information.
- Custom
Drivers []GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver - Custom GPU driver information.
- Drivers
[]Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver - GPU driver version information.
- Mig
Enable bool - Is the MIG feature enabled.
- cudas
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda> - CUDA version information.
- cudnns
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn> - CuDNN version information.
- custom
Drivers List<GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver> - Custom GPU driver information.
- drivers
List<Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver> - GPU driver version information.
- mig
Enable Boolean - Is the MIG feature enabled.
- cudas
Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda[] - CUDA version information.
- cudnns
Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn[] - CuDNN version information.
- custom
Drivers GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver[] - Custom GPU driver information.
- drivers
Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver[] - GPU driver version information.
- mig
Enable boolean - Is the MIG feature enabled.
- cudas
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cuda] - CUDA version information.
- cudnns
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Cudnn] - CuDNN version information.
- custom_
drivers Sequence[GetKubernetes Cluster Node Pools Node Pool Set Gpu Arg Custom Driver] - Custom GPU driver information.
- drivers
Sequence[Get
Kubernetes Cluster Node Pools Node Pool Set Gpu Arg Driver] - GPU driver version information.
- mig_
enable bool - Is the MIG feature enabled.
- cudas List<Property Map>
- CUDA version information.
- cudnns List<Property Map>
- CuDNN version information.
- custom
Drivers List<Property Map> - Custom GPU driver information.
- drivers List<Property Map>
- GPU driver version information.
- mig
Enable Boolean - Is the MIG feature enabled.
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCuda
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCudnn
GetKubernetesClusterNodePoolsNodePoolSetGpuArgCustomDriver
- Address string
- Custom GPU driver address link.
- Address string
- Custom GPU driver address link.
- address String
- Custom GPU driver address link.
- address string
- Custom GPU driver address link.
- address str
- Custom GPU driver address link.
- address String
- Custom GPU driver address link.
GetKubernetesClusterNodePoolsNodePoolSetGpuArgDriver
GetKubernetesClusterNodePoolsNodePoolSetLabel
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummary
- Autoscaling
Addeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added> - Automatically managed nodes.
- Manually
Addeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added> - Manually managed nodes.
- Autoscaling
Addeds []GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added - Automatically managed nodes.
- Manually
Addeds []GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added - Manually managed nodes.
- autoscaling
Addeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added> - Automatically managed nodes.
- manually
Addeds List<GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added> - Manually managed nodes.
- autoscaling
Addeds GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added[] - Automatically managed nodes.
- manually
Addeds GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added[] - Manually managed nodes.
- autoscaling_
addeds Sequence[GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Autoscaling Added] - Automatically managed nodes.
- manually_
addeds Sequence[GetKubernetes Cluster Node Pools Node Pool Set Node Count Summary Manually Added] - Manually managed nodes.
- autoscaling
Addeds List<Property Map> - Automatically managed nodes.
- manually
Addeds List<Property Map> - Manually managed nodes.
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummaryAutoscalingAdded
- Initializing double
- Number of nodes in initialization.
- Joining double
- Number of nodes joining.
- Normal double
- Normal number of nodes.
- Total double
- Total number of nodes.
- Initializing float64
- Number of nodes in initialization.
- Joining float64
- Number of nodes joining.
- Normal float64
- Normal number of nodes.
- Total float64
- Total number of nodes.
- initializing Double
- Number of nodes in initialization.
- joining Double
- Number of nodes joining.
- normal Double
- Normal number of nodes.
- total Double
- Total number of nodes.
- initializing number
- Number of nodes in initialization.
- joining number
- Number of nodes joining.
- normal number
- Normal number of nodes.
- total number
- Total number of nodes.
- initializing float
- Number of nodes in initialization.
- joining float
- Number of nodes joining.
- normal float
- Normal number of nodes.
- total float
- Total number of nodes.
- initializing Number
- Number of nodes in initialization.
- joining Number
- Number of nodes joining.
- normal Number
- Normal number of nodes.
- total Number
- Total number of nodes.
GetKubernetesClusterNodePoolsNodePoolSetNodeCountSummaryManuallyAdded
- Initializing double
- Number of nodes in initialization.
- Joining double
- Number of nodes joining.
- Normal double
- Normal number of nodes.
- Total double
- Total number of nodes.
- Initializing float64
- Number of nodes in initialization.
- Joining float64
- Number of nodes joining.
- Normal float64
- Normal number of nodes.
- Total float64
- Total number of nodes.
- initializing Double
- Number of nodes in initialization.
- joining Double
- Number of nodes joining.
- normal Double
- Normal number of nodes.
- total Double
- Total number of nodes.
- initializing number
- Number of nodes in initialization.
- joining number
- Number of nodes joining.
- normal number
- Normal number of nodes.
- total number
- Total number of nodes.
- initializing float
- Number of nodes in initialization.
- joining float
- Number of nodes joining.
- normal float
- Normal number of nodes.
- total float
- Total number of nodes.
- initializing Number
- Number of nodes in initialization.
- joining Number
- Number of nodes joining.
- normal Number
- Normal number of nodes.
- total Number
- Total number of nodes.
GetKubernetesClusterNodePoolsNodePoolSetTag
GetKubernetesClusterNodePoolsNodePoolSetTaint
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
