1. Packages
  2. Azure Native
  3. API Docs
  4. discovery
  5. NodePool
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi

    NodePool tracked resource

    Uses Azure REST API version 2026-02-01-preview.

    Example Usage

    NodePools_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var nodePool = new AzureNative.Discovery.NodePool("nodePool", new()
        {
            Location = "uksouth",
            NodePoolName = "5a88c24ec4e7091650",
            Properties = new AzureNative.Discovery.Inputs.NodePoolPropertiesArgs
            {
                MaxNodeCount = 4,
                MinNodeCount = 0,
                ScaleSetPriority = AzureNative.Discovery.ScaleSetPriority.Regular,
                SubnetId = "/subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1",
                VmSize = AzureNative.Discovery.VmSize.Standard_NC24ads_A100_v4,
            },
            ResourceGroupName = "rgdiscovery",
            SupercomputerName = "8074da5c77f95509a8",
            Tags = 
            {
                { "key6074", "qlnvwgazrqmwauqqvxntjtoye" },
            },
        });
    
    });
    
    package main
    
    import (
    	discovery "github.com/pulumi/pulumi-azure-native-sdk/discovery/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := discovery.NewNodePool(ctx, "nodePool", &discovery.NodePoolArgs{
    			Location:     pulumi.String("uksouth"),
    			NodePoolName: pulumi.String("5a88c24ec4e7091650"),
    			Properties: &discovery.NodePoolPropertiesArgs{
    				MaxNodeCount:     pulumi.Int(4),
    				MinNodeCount:     pulumi.Int(0),
    				ScaleSetPriority: pulumi.String(discovery.ScaleSetPriorityRegular),
    				SubnetId:         pulumi.String("/subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1"),
    				VmSize:           pulumi.String(discovery.VmSize_Standard_NC24ads_A100_v4),
    			},
    			ResourceGroupName: pulumi.String("rgdiscovery"),
    			SupercomputerName: pulumi.String("8074da5c77f95509a8"),
    			Tags: pulumi.StringMap{
    				"key6074": pulumi.String("qlnvwgazrqmwauqqvxntjtoye"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.discovery.NodePool;
    import com.pulumi.azurenative.discovery.NodePoolArgs;
    import com.pulumi.azurenative.discovery.inputs.NodePoolPropertiesArgs;
    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 nodePool = new NodePool("nodePool", NodePoolArgs.builder()
                .location("uksouth")
                .nodePoolName("5a88c24ec4e7091650")
                .properties(NodePoolPropertiesArgs.builder()
                    .maxNodeCount(4)
                    .minNodeCount(0)
                    .scaleSetPriority("Regular")
                    .subnetId("/subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1")
                    .vmSize("Standard_NC24ads_A100_v4")
                    .build())
                .resourceGroupName("rgdiscovery")
                .supercomputerName("8074da5c77f95509a8")
                .tags(Map.of("key6074", "qlnvwgazrqmwauqqvxntjtoye"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const nodePool = new azure_native.discovery.NodePool("nodePool", {
        location: "uksouth",
        nodePoolName: "5a88c24ec4e7091650",
        properties: {
            maxNodeCount: 4,
            minNodeCount: 0,
            scaleSetPriority: azure_native.discovery.ScaleSetPriority.Regular,
            subnetId: "/subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1",
            vmSize: azure_native.discovery.VmSize.Standard_NC24ads_A100_v4,
        },
        resourceGroupName: "rgdiscovery",
        supercomputerName: "8074da5c77f95509a8",
        tags: {
            key6074: "qlnvwgazrqmwauqqvxntjtoye",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    node_pool = azure_native.discovery.NodePool("nodePool",
        location="uksouth",
        node_pool_name="5a88c24ec4e7091650",
        properties={
            "max_node_count": 4,
            "min_node_count": 0,
            "scale_set_priority": azure_native.discovery.ScaleSetPriority.REGULAR,
            "subnet_id": "/subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1",
            "vm_size": azure_native.discovery.VmSize.STANDARD_NC24ADS_A100_V4,
        },
        resource_group_name="rgdiscovery",
        supercomputer_name="8074da5c77f95509a8",
        tags={
            "key6074": "qlnvwgazrqmwauqqvxntjtoye",
        })
    
    resources:
      nodePool:
        type: azure-native:discovery:NodePool
        properties:
          location: uksouth
          nodePoolName: 5a88c24ec4e7091650
          properties:
            maxNodeCount: 4
            minNodeCount: 0
            scaleSetPriority: Regular
            subnetId: /subscriptions/31735C59-6307-4464-8B80-3675223F23D2/providers/Microsoft.Network/virtualNetworks/virtualnetwork1/subnets/subnet1
            vmSize: Standard_NC24ads_A100_v4
          resourceGroupName: rgdiscovery
          supercomputerName: 8074da5c77f95509a8
          tags:
            key6074: qlnvwgazrqmwauqqvxntjtoye
    

    Create NodePool Resource

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

    Constructor syntax

    new NodePool(name: string, args: NodePoolArgs, opts?: CustomResourceOptions);
    @overload
    def NodePool(resource_name: str,
                 args: NodePoolArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def NodePool(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 resource_group_name: Optional[str] = None,
                 supercomputer_name: Optional[str] = None,
                 location: Optional[str] = None,
                 node_pool_name: Optional[str] = None,
                 properties: Optional[NodePoolPropertiesArgs] = None,
                 tags: Optional[Mapping[str, str]] = None)
    func NewNodePool(ctx *Context, name string, args NodePoolArgs, opts ...ResourceOption) (*NodePool, error)
    public NodePool(string name, NodePoolArgs args, CustomResourceOptions? opts = null)
    public NodePool(String name, NodePoolArgs args)
    public NodePool(String name, NodePoolArgs args, CustomResourceOptions options)
    
    type: azure-native:discovery:NodePool
    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 NodePoolArgs
    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 NodePoolArgs
    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 NodePoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NodePoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NodePoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var nodePoolResource = new AzureNative.Discovery.NodePool("nodePoolResource", new()
    {
        ResourceGroupName = "string",
        SupercomputerName = "string",
        Location = "string",
        NodePoolName = "string",
        Properties = new AzureNative.Discovery.Inputs.NodePoolPropertiesArgs
        {
            MaxNodeCount = 0,
            SubnetId = "string",
            VmSize = "string",
            MinNodeCount = 0,
            ScaleSetPriority = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := discovery.NewNodePool(ctx, "nodePoolResource", &discovery.NodePoolArgs{
    	ResourceGroupName: pulumi.String("string"),
    	SupercomputerName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	NodePoolName:      pulumi.String("string"),
    	Properties: &discovery.NodePoolPropertiesArgs{
    		MaxNodeCount:     pulumi.Int(0),
    		SubnetId:         pulumi.String("string"),
    		VmSize:           pulumi.String("string"),
    		MinNodeCount:     pulumi.Int(0),
    		ScaleSetPriority: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var nodePoolResource = new NodePool("nodePoolResource", NodePoolArgs.builder()
        .resourceGroupName("string")
        .supercomputerName("string")
        .location("string")
        .nodePoolName("string")
        .properties(NodePoolPropertiesArgs.builder()
            .maxNodeCount(0)
            .subnetId("string")
            .vmSize("string")
            .minNodeCount(0)
            .scaleSetPriority("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    node_pool_resource = azure_native.discovery.NodePool("nodePoolResource",
        resource_group_name="string",
        supercomputer_name="string",
        location="string",
        node_pool_name="string",
        properties={
            "max_node_count": 0,
            "subnet_id": "string",
            "vm_size": "string",
            "min_node_count": 0,
            "scale_set_priority": "string",
        },
        tags={
            "string": "string",
        })
    
    const nodePoolResource = new azure_native.discovery.NodePool("nodePoolResource", {
        resourceGroupName: "string",
        supercomputerName: "string",
        location: "string",
        nodePoolName: "string",
        properties: {
            maxNodeCount: 0,
            subnetId: "string",
            vmSize: "string",
            minNodeCount: 0,
            scaleSetPriority: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:discovery:NodePool
    properties:
        location: string
        nodePoolName: string
        properties:
            maxNodeCount: 0
            minNodeCount: 0
            scaleSetPriority: string
            subnetId: string
            vmSize: string
        resourceGroupName: string
        supercomputerName: string
        tags:
            string: string
    

    NodePool 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 NodePool resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SupercomputerName string
    The name of the Supercomputer
    Location string
    The geo-location where the resource lives
    NodePoolName string
    The name of the NodePool
    Properties Pulumi.AzureNative.Discovery.Inputs.NodePoolProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SupercomputerName string
    The name of the Supercomputer
    Location string
    The geo-location where the resource lives
    NodePoolName string
    The name of the NodePool
    Properties NodePoolPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    supercomputerName String
    The name of the Supercomputer
    location String
    The geo-location where the resource lives
    nodePoolName String
    The name of the NodePool
    properties NodePoolProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    supercomputerName string
    The name of the Supercomputer
    location string
    The geo-location where the resource lives
    nodePoolName string
    The name of the NodePool
    properties NodePoolProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    supercomputer_name str
    The name of the Supercomputer
    location str
    The geo-location where the resource lives
    node_pool_name str
    The name of the NodePool
    properties NodePoolPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    supercomputerName String
    The name of the Supercomputer
    location String
    The geo-location where the resource lives
    nodePoolName String
    The name of the NodePool
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Discovery.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    NodePoolProperties, NodePoolPropertiesArgs

    NodePool properties
    MaxNodeCount int
    The maximum number of nodes.
    SubnetId string
    The node pool subnet.
    VmSize string | Pulumi.AzureNative.Discovery.VmSize
    The size of the underlying Azure VM.
    MinNodeCount int
    The minimum number of nodes.
    ScaleSetPriority string | Pulumi.AzureNative.Discovery.ScaleSetPriority
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    MaxNodeCount int
    The maximum number of nodes.
    SubnetId string
    The node pool subnet.
    VmSize string | VmSize
    The size of the underlying Azure VM.
    MinNodeCount int
    The minimum number of nodes.
    ScaleSetPriority string | ScaleSetPriority
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    maxNodeCount Integer
    The maximum number of nodes.
    subnetId String
    The node pool subnet.
    vmSize String | VmSize
    The size of the underlying Azure VM.
    minNodeCount Integer
    The minimum number of nodes.
    scaleSetPriority String | ScaleSetPriority
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    maxNodeCount number
    The maximum number of nodes.
    subnetId string
    The node pool subnet.
    vmSize string | VmSize
    The size of the underlying Azure VM.
    minNodeCount number
    The minimum number of nodes.
    scaleSetPriority string | ScaleSetPriority
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    max_node_count int
    The maximum number of nodes.
    subnet_id str
    The node pool subnet.
    vm_size str | VmSize
    The size of the underlying Azure VM.
    min_node_count int
    The minimum number of nodes.
    scale_set_priority str | ScaleSetPriority
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.

    NodePoolPropertiesResponse, NodePoolPropertiesResponseArgs

    NodePool properties
    MaxNodeCount int
    The maximum number of nodes.
    ProvisioningState string
    The status of the last operation.
    SubnetId string
    The node pool subnet.
    VmSize string
    The size of the underlying Azure VM.
    MinNodeCount int
    The minimum number of nodes.
    ScaleSetPriority string
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    MaxNodeCount int
    The maximum number of nodes.
    ProvisioningState string
    The status of the last operation.
    SubnetId string
    The node pool subnet.
    VmSize string
    The size of the underlying Azure VM.
    MinNodeCount int
    The minimum number of nodes.
    ScaleSetPriority string
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    maxNodeCount Integer
    The maximum number of nodes.
    provisioningState String
    The status of the last operation.
    subnetId String
    The node pool subnet.
    vmSize String
    The size of the underlying Azure VM.
    minNodeCount Integer
    The minimum number of nodes.
    scaleSetPriority String
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    maxNodeCount number
    The maximum number of nodes.
    provisioningState string
    The status of the last operation.
    subnetId string
    The node pool subnet.
    vmSize string
    The size of the underlying Azure VM.
    minNodeCount number
    The minimum number of nodes.
    scaleSetPriority string
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    max_node_count int
    The maximum number of nodes.
    provisioning_state str
    The status of the last operation.
    subnet_id str
    The node pool subnet.
    vm_size str
    The size of the underlying Azure VM.
    min_node_count int
    The minimum number of nodes.
    scale_set_priority str
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
    maxNodeCount Number
    The maximum number of nodes.
    provisioningState String
    The status of the last operation.
    subnetId String
    The node pool subnet.
    vmSize String
    The size of the underlying Azure VM.
    minNodeCount Number
    The minimum number of nodes.
    scaleSetPriority String
    The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.

    ScaleSetPriority, ScaleSetPriorityArgs

    Regular
    Regular Regular priority Virtual Machine Scale Set.
    Spot
    Spot Spot priority Virtual Machine Scale Set.
    ScaleSetPriorityRegular
    Regular Regular priority Virtual Machine Scale Set.
    ScaleSetPrioritySpot
    Spot Spot priority Virtual Machine Scale Set.
    Regular
    Regular Regular priority Virtual Machine Scale Set.
    Spot
    Spot Spot priority Virtual Machine Scale Set.
    Regular
    Regular Regular priority Virtual Machine Scale Set.
    Spot
    Spot Spot priority Virtual Machine Scale Set.
    REGULAR
    Regular Regular priority Virtual Machine Scale Set.
    SPOT
    Spot Spot priority Virtual Machine Scale Set.
    "Regular"
    Regular Regular priority Virtual Machine Scale Set.
    "Spot"
    Spot Spot priority Virtual Machine Scale Set.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    VmSize, VmSizeArgs

    Standard_NC24ads_A100_v4
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC48ads_A100_v4
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC96ads_A100_v4
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC4as_T4_v3
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC8as_T4_v3
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC16as_T4_v3
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC64as_T4_v3
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    Standard_NV6ads_A10_v5
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV12ads_A10_v5
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV24ads_A10_v5
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36ads_A10_v5
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36adms_A10_v5
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV72ads_A10_v5
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_ND40rs_v2
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size
    VmSize_Standard_NC24ads_A100_v4
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    VmSize_Standard_NC48ads_A100_v4
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    VmSize_Standard_NC96ads_A100_v4
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    VmSize_Standard_NC4as_T4_v3
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    VmSize_Standard_NC8as_T4_v3
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    VmSize_Standard_NC16as_T4_v3
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    VmSize_Standard_NC64as_T4_v3
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    VmSize_Standard_NV6ads_A10_v5
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_NV12ads_A10_v5
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_NV24ads_A10_v5
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_NV36ads_A10_v5
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_NV36adms_A10_v5
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_NV72ads_A10_v5
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    VmSize_Standard_ND40rs_v2
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size
    Standard_NC24ads_A100_v4
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC48ads_A100_v4
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC96ads_A100_v4
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC4as_T4_v3
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC8as_T4_v3
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC16as_T4_v3
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC64as_T4_v3
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    Standard_NV6ads_A10_v5
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV12ads_A10_v5
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV24ads_A10_v5
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36ads_A10_v5
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36adms_A10_v5
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV72ads_A10_v5
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_ND40rs_v2
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size
    Standard_NC24ads_A100_v4
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC48ads_A100_v4
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC96ads_A100_v4
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    Standard_NC4as_T4_v3
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC8as_T4_v3
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC16as_T4_v3
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    Standard_NC64as_T4_v3
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    Standard_NV6ads_A10_v5
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV12ads_A10_v5
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV24ads_A10_v5
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36ads_A10_v5
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV36adms_A10_v5
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_NV72ads_A10_v5
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    Standard_ND40rs_v2
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size
    STANDARD_NC24ADS_A100_V4
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    STANDARD_NC48ADS_A100_V4
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    STANDARD_NC96ADS_A100_V4
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    STANDARD_NC4AS_T4_V3
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    STANDARD_NC8AS_T4_V3
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    STANDARD_NC16AS_T4_V3
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    STANDARD_NC64AS_T4_V3
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    STANDARD_NV6ADS_A10_V5
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_NV12ADS_A10_V5
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_NV24ADS_A10_V5
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_NV36ADS_A10_V5
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_NV36ADMS_A10_V5
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_NV72ADS_A10_V5
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    STANDARD_ND40RS_V2
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size
    "Standard_NC24ads_A100_v4"
    Standard_NC24ads_A100_v4 Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size
    "Standard_NC48ads_A100_v4"
    Standard_NC48ads_A100_v4 Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size
    "Standard_NC96ads_A100_v4"
    Standard_NC96ads_A100_v4 Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size
    "Standard_NC4as_T4_v3"
    Standard_NC4as_T4_v3 Standard_NC4as_T4_v3 GPU-optimized Azure VM Size
    "Standard_NC8as_T4_v3"
    Standard_NC8as_T4_v3 Standard_NC8as_T4_v3 GPU-optimized Azure VM Size
    "Standard_NC16as_T4_v3"
    Standard_NC16as_T4_v3 Standard_NC16as_T4_v3 GPU-optimized Azure VM Size
    "Standard_NC64as_T4_v3"
    Standard_NC64as_T4_v3 Standard_NC64as_T4_v3 GPU-optimized Azure VM Size
    "Standard_NV6ads_A10_v5"
    Standard_NV6ads_A10_v5 Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_NV12ads_A10_v5"
    Standard_NV12ads_A10_v5 Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_NV24ads_A10_v5"
    Standard_NV24ads_A10_v5 Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_NV36ads_A10_v5"
    Standard_NV36ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_NV36adms_A10_v5"
    Standard_NV36adms_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_NV72ads_A10_v5"
    Standard_NV72ads_A10_v5 Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size
    "Standard_ND40rs_v2"
    Standard_ND40rs_v2 Standard_ND40rs_v2 GPU-optimized Azure VM Size

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:discovery:NodePool 5a88c24ec4e7091650 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Discovery/supercomputers/{supercomputerName}/nodePools/{nodePoolName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.