published on Friday, Mar 20, 2026 by Pulumi
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Supercomputer
Name string - The name of the Supercomputer
- Location string
- The geo-location where the resource lives
- Node
Pool stringName - The name of the NodePool
- Properties
Pulumi.
Azure Native. Discovery. Inputs. Node Pool Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Supercomputer
Name string - The name of the Supercomputer
- Location string
- The geo-location where the resource lives
- Node
Pool stringName - The name of the NodePool
- Properties
Node
Pool Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- supercomputer
Name String - The name of the Supercomputer
- location String
- The geo-location where the resource lives
- node
Pool StringName - The name of the NodePool
- properties
Node
Pool Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- supercomputer
Name string - The name of the Supercomputer
- location string
- The geo-location where the resource lives
- node
Pool stringName - The name of the NodePool
- properties
Node
Pool Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - 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_ strname - The name of the NodePool
- properties
Node
Pool Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- supercomputer
Name String - The name of the Supercomputer
- location String
- The geo-location where the resource lives
- node
Pool StringName - The name of the NodePool
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the NodePool resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Discovery. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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- Max
Node intCount - The maximum number of nodes.
- Subnet
Id string - The node pool subnet.
- Vm
Size string | Pulumi.Azure Native. Discovery. Vm Size - The size of the underlying Azure VM.
- Min
Node intCount - The minimum number of nodes.
- Scale
Set string | Pulumi.Priority Azure Native. Discovery. Scale Set Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- Max
Node intCount - The maximum number of nodes.
- Subnet
Id string - The node pool subnet.
- Vm
Size string | VmSize - The size of the underlying Azure VM.
- Min
Node intCount - The minimum number of nodes.
- Scale
Set string | ScalePriority Set Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node IntegerCount - The maximum number of nodes.
- subnet
Id String - The node pool subnet.
- vm
Size String | VmSize - The size of the underlying Azure VM.
- min
Node IntegerCount - The minimum number of nodes.
- scale
Set String | ScalePriority Set Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node numberCount - The maximum number of nodes.
- subnet
Id string - The node pool subnet.
- vm
Size string | VmSize - The size of the underlying Azure VM.
- min
Node numberCount - The minimum number of nodes.
- scale
Set string | ScalePriority Set Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max_
node_ intcount - 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_ intcount - The minimum number of nodes.
- scale_
set_ str | Scalepriority Set Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node NumberCount - The maximum number of nodes.
- subnet
Id String - The node pool subnet.
- vm
Size String | "Standard_NC24ads_A100_v4" | "Standard_NC48ads_A100_ v4" | "Standard_NC96ads_A100_ v4" | "Standard_NC4as_T4_ v3" | "Standard_NC8as_T4_ v3" | "Standard_NC16as_T4_ v3" | "Standard_NC64as_T4_ v3" | "Standard_NV6ads_A10_ v5" | "Standard_NV12ads_A10_ v5" | "Standard_NV24ads_A10_ v5" | "Standard_NV36ads_A10_ v5" | "Standard_NV36adms_A10_ v5" | "Standard_NV72ads_A10_ v5" | "Standard_ND40rs_ v2" - The size of the underlying Azure VM.
- min
Node NumberCount - The minimum number of nodes.
- scale
Set String | "Regular" | "Spot"Priority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
NodePoolPropertiesResponse, NodePoolPropertiesResponseArgs
NodePool properties- Max
Node intCount - The maximum number of nodes.
- Provisioning
State string - The status of the last operation.
- Subnet
Id string - The node pool subnet.
- Vm
Size string - The size of the underlying Azure VM.
- Min
Node intCount - The minimum number of nodes.
- Scale
Set stringPriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- Max
Node intCount - The maximum number of nodes.
- Provisioning
State string - The status of the last operation.
- Subnet
Id string - The node pool subnet.
- Vm
Size string - The size of the underlying Azure VM.
- Min
Node intCount - The minimum number of nodes.
- Scale
Set stringPriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node IntegerCount - The maximum number of nodes.
- provisioning
State String - The status of the last operation.
- subnet
Id String - The node pool subnet.
- vm
Size String - The size of the underlying Azure VM.
- min
Node IntegerCount - The minimum number of nodes.
- scale
Set StringPriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node numberCount - The maximum number of nodes.
- provisioning
State string - The status of the last operation.
- subnet
Id string - The node pool subnet.
- vm
Size string - The size of the underlying Azure VM.
- min
Node numberCount - The minimum number of nodes.
- scale
Set stringPriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max_
node_ intcount - 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_ intcount - The minimum number of nodes.
- scale_
set_ strpriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
- max
Node NumberCount - The maximum number of nodes.
- provisioning
State String - The status of the last operation.
- subnet
Id String - The node pool subnet.
- vm
Size String - The size of the underlying Azure VM.
- min
Node NumberCount - The minimum number of nodes.
- scale
Set StringPriority - The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
ScaleSetPriority, ScaleSetPriorityArgs
- Regular
RegularRegular priority Virtual Machine Scale Set.- Spot
SpotSpot priority Virtual Machine Scale Set.
- Scale
Set Priority Regular RegularRegular priority Virtual Machine Scale Set.- Scale
Set Priority Spot SpotSpot priority Virtual Machine Scale Set.
- Regular
RegularRegular priority Virtual Machine Scale Set.- Spot
SpotSpot priority Virtual Machine Scale Set.
- Regular
RegularRegular priority Virtual Machine Scale Set.- Spot
SpotSpot priority Virtual Machine Scale Set.
- REGULAR
RegularRegular priority Virtual Machine Scale Set.- SPOT
SpotSpot priority Virtual Machine Scale Set.
- "Regular"
RegularRegular priority Virtual Machine Scale Set.- "Spot"
SpotSpot priority Virtual Machine Scale Set.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
VmSize, VmSizeArgs
- Standard_NC24ads_A100_
v4 Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC48ads_A100_
v4 Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC96ads_A100_
v4 Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC4as_T4_
v3 Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- Standard_NC8as_T4_
v3 Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- Standard_NC16as_T4_
v3 Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- Standard_NC64as_T4_
v3 Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- Standard_NV6ads_A10_
v5 Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV12ads_A10_
v5 Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV24ads_A10_
v5 Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36ads_A10_
v5 Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36adms_A10_
v5 Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV72ads_A10_
v5 Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_ND40rs_
v2 Standard_ND40rs_v2Standard_ND40rs_v2 GPU-optimized Azure VM Size
- Vm
Size_Standard_NC24ads_A100_ v4 Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- Vm
Size_Standard_NC48ads_A100_ v4 Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- Vm
Size_Standard_NC96ads_A100_ v4 Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- Vm
Size_Standard_NC4as_T4_ v3 Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- Vm
Size_Standard_NC8as_T4_ v3 Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- Vm
Size_Standard_NC16as_T4_ v3 Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- Vm
Size_Standard_NC64as_T4_ v3 Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- Vm
Size_Standard_NV6ads_A10_ v5 Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_NV12ads_A10_ v5 Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_NV24ads_A10_ v5 Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_NV36ads_A10_ v5 Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_NV36adms_A10_ v5 Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_NV72ads_A10_ v5 Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Vm
Size_Standard_ND40rs_ v2 Standard_ND40rs_v2Standard_ND40rs_v2 GPU-optimized Azure VM Size
- Standard_NC24ads_A100_
v4 Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC48ads_A100_
v4 Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC96ads_A100_
v4 Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC4as_T4_
v3 Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- Standard_NC8as_T4_
v3 Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- Standard_NC16as_T4_
v3 Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- Standard_NC64as_T4_
v3 Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- Standard_NV6ads_A10_
v5 Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV12ads_A10_
v5 Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV24ads_A10_
v5 Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36ads_A10_
v5 Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36adms_A10_
v5 Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV72ads_A10_
v5 Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_ND40rs_
v2 Standard_ND40rs_v2Standard_ND40rs_v2 GPU-optimized Azure VM Size
- Standard_NC24ads_A100_
v4 Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC48ads_A100_
v4 Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC96ads_A100_
v4 Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- Standard_NC4as_T4_
v3 Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- Standard_NC8as_T4_
v3 Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- Standard_NC16as_T4_
v3 Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- Standard_NC64as_T4_
v3 Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- Standard_NV6ads_A10_
v5 Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV12ads_A10_
v5 Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV24ads_A10_
v5 Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36ads_A10_
v5 Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV36adms_A10_
v5 Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_NV72ads_A10_
v5 Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- Standard_ND40rs_
v2 Standard_ND40rs_v2Standard_ND40rs_v2 GPU-optimized Azure VM Size
- STANDARD_NC24ADS_A100_V4
Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- STANDARD_NC48ADS_A100_V4
Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- STANDARD_NC96ADS_A100_V4
Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- STANDARD_NC4AS_T4_V3
Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- STANDARD_NC8AS_T4_V3
Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- STANDARD_NC16AS_T4_V3
Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- STANDARD_NC64AS_T4_V3
Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- STANDARD_NV6ADS_A10_V5
Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_NV12ADS_A10_V5
Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_NV24ADS_A10_V5
Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_NV36ADS_A10_V5
Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_NV36ADMS_A10_V5
Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_NV72ADS_A10_V5
Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- STANDARD_ND40RS_V2
Standard_ND40rs_v2Standard_ND40rs_v2 GPU-optimized Azure VM Size
- "Standard_NC24ads_A100_
v4" Standard_NC24ads_A100_v4Standard_NC24ads_A100_v4 GPU-optimized Azure VM Size- "Standard_NC48ads_A100_
v4" Standard_NC48ads_A100_v4Standard_NC48ads_A100_v4 GPU-optimized Azure VM Size- "Standard_NC96ads_A100_
v4" Standard_NC96ads_A100_v4Standard_NC96ads_A100_v4 GPU-optimized Azure VM Size- "Standard_NC4as_T4_
v3" Standard_NC4as_T4_v3Standard_NC4as_T4_v3 GPU-optimized Azure VM Size- "Standard_NC8as_T4_
v3" Standard_NC8as_T4_v3Standard_NC8as_T4_v3 GPU-optimized Azure VM Size- "Standard_NC16as_T4_
v3" Standard_NC16as_T4_v3Standard_NC16as_T4_v3 GPU-optimized Azure VM Size- "Standard_NC64as_T4_
v3" Standard_NC64as_T4_v3Standard_NC64as_T4_v3 GPU-optimized Azure VM Size- "Standard_NV6ads_A10_
v5" Standard_NV6ads_A10_v5Standard_NV6ads_A10_v5 GPU-optimized Azure VM Size- "Standard_NV12ads_A10_
v5" Standard_NV12ads_A10_v5Standard_NV12ads_A10_v5 GPU-optimized Azure VM Size- "Standard_NV24ads_A10_
v5" Standard_NV24ads_A10_v5Standard_NV24ads_A10_v5 GPU-optimized Azure VM Size- "Standard_NV36ads_A10_
v5" Standard_NV36ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- "Standard_NV36adms_A10_
v5" Standard_NV36adms_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- "Standard_NV72ads_A10_
v5" Standard_NV72ads_A10_v5Standard_NV36ads_A10_v5 GPU-optimized Azure VM Size- "Standard_ND40rs_
v2" Standard_ND40rs_v2Standard_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
published on Friday, Mar 20, 2026 by Pulumi
