1. Packages
  2. Azure Native
  3. API Docs
  4. azurelargeinstance
  5. AzureLargeInstance
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.62.0 published on Wednesday, Sep 18, 2024 by Pulumi

azure-native.azurelargeinstance.AzureLargeInstance

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.62.0 published on Wednesday, Sep 18, 2024 by Pulumi

    Azure Large Instance info on Azure (ARM properties and AzureLargeInstance properties) Azure REST API version: 2024-08-01-preview.

    Example Usage

    AzureLargeInstance_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var azureLargeInstance = new AzureNative.AzureLargeInstance.AzureLargeInstance("azureLargeInstance", new()
        {
            AzureLargeInstanceId = "23415635-4d7e-41dc-9598-8194f22c24e1",
            AzureLargeInstanceName = "myALInstance",
            HardwareProfile = new AzureNative.AzureLargeInstance.Inputs.HardwareProfileArgs
            {
                AzureLargeInstanceSize = AzureNative.AzureLargeInstance.AzureLargeInstanceSizeNamesEnum.S72,
                HardwareType = AzureNative.AzureLargeInstance.AzureLargeInstanceHardwareTypeNamesEnum.Cisco_UCS,
            },
            HwRevision = "Rev 3",
            Location = "westus",
            NetworkProfile = new AzureNative.AzureLargeInstance.Inputs.NetworkProfileArgs
            {
                CircuitId = "/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit",
                NetworkInterfaces = new[]
                {
                    new AzureNative.AzureLargeInstance.Inputs.IpAddressArgs
                    {
                        IpAddress = "100.100.100.100",
                    },
                },
            },
            OsProfile = new AzureNative.AzureLargeInstance.Inputs.OsProfileArgs
            {
                ComputerName = "myComputerName",
                OsType = "SUSE",
                SshPublicKey = "{ssh-rsa public key}",
                Version = "12 SP1",
            },
            PowerState = AzureNative.AzureLargeInstance.AzureLargeInstancePowerStateEnum.Started,
            ProximityPlacementGroup = "/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup",
            ResourceGroupName = "myResourceGroup",
            StorageProfile = new AzureNative.AzureLargeInstance.Inputs.StorageProfileArgs
            {
                NfsIpAddress = "200.200.200.200",
            },
            Tags = 
            {
                { "testkey", "testvalue" },
            },
        });
    
    });
    
    package main
    
    import (
    	azurelargeinstance "github.com/pulumi/pulumi-azure-native-sdk/azurelargeinstance/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurelargeinstance.NewAzureLargeInstance(ctx, "azureLargeInstance", &azurelargeinstance.AzureLargeInstanceArgs{
    			AzureLargeInstanceId:   pulumi.String("23415635-4d7e-41dc-9598-8194f22c24e1"),
    			AzureLargeInstanceName: pulumi.String("myALInstance"),
    			HardwareProfile: &azurelargeinstance.HardwareProfileArgs{
    				AzureLargeInstanceSize: pulumi.String(azurelargeinstance.AzureLargeInstanceSizeNamesEnumS72),
    				HardwareType:           pulumi.String(azurelargeinstance.AzureLargeInstanceHardwareTypeNamesEnum_Cisco_UCS),
    			},
    			HwRevision: pulumi.String("Rev 3"),
    			Location:   pulumi.String("westus"),
    			NetworkProfile: &azurelargeinstance.NetworkProfileArgs{
    				CircuitId: pulumi.String("/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit"),
    				NetworkInterfaces: azurelargeinstance.IpAddressArray{
    					&azurelargeinstance.IpAddressArgs{
    						IpAddress: pulumi.String("100.100.100.100"),
    					},
    				},
    			},
    			OsProfile: &azurelargeinstance.OsProfileArgs{
    				ComputerName: pulumi.String("myComputerName"),
    				OsType:       pulumi.String("SUSE"),
    				SshPublicKey: pulumi.String("{ssh-rsa public key}"),
    				Version:      pulumi.String("12 SP1"),
    			},
    			PowerState:              pulumi.String(azurelargeinstance.AzureLargeInstancePowerStateEnumStarted),
    			ProximityPlacementGroup: pulumi.String("/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup"),
    			ResourceGroupName:       pulumi.String("myResourceGroup"),
    			StorageProfile: &azurelargeinstance.StorageProfileArgs{
    				NfsIpAddress: pulumi.String("200.200.200.200"),
    			},
    			Tags: pulumi.StringMap{
    				"testkey": pulumi.String("testvalue"),
    			},
    		})
    		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.azurelargeinstance.AzureLargeInstance;
    import com.pulumi.azurenative.azurelargeinstance.AzureLargeInstanceArgs;
    import com.pulumi.azurenative.azurelargeinstance.inputs.HardwareProfileArgs;
    import com.pulumi.azurenative.azurelargeinstance.inputs.NetworkProfileArgs;
    import com.pulumi.azurenative.azurelargeinstance.inputs.OsProfileArgs;
    import com.pulumi.azurenative.azurelargeinstance.inputs.StorageProfileArgs;
    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 azureLargeInstance = new AzureLargeInstance("azureLargeInstance", AzureLargeInstanceArgs.builder()
                .azureLargeInstanceId("23415635-4d7e-41dc-9598-8194f22c24e1")
                .azureLargeInstanceName("myALInstance")
                .hardwareProfile(HardwareProfileArgs.builder()
                    .azureLargeInstanceSize("S72")
                    .hardwareType("Cisco_UCS")
                    .build())
                .hwRevision("Rev 3")
                .location("westus")
                .networkProfile(NetworkProfileArgs.builder()
                    .circuitId("/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit")
                    .networkInterfaces(IpAddressArgs.builder()
                        .ipAddress("100.100.100.100")
                        .build())
                    .build())
                .osProfile(OsProfileArgs.builder()
                    .computerName("myComputerName")
                    .osType("SUSE")
                    .sshPublicKey("{ssh-rsa public key}")
                    .version("12 SP1")
                    .build())
                .powerState("started")
                .proximityPlacementGroup("/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup")
                .resourceGroupName("myResourceGroup")
                .storageProfile(StorageProfileArgs.builder()
                    .nfsIpAddress("200.200.200.200")
                    .build())
                .tags(Map.of("testkey", "testvalue"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    azure_large_instance = azure_native.azurelargeinstance.AzureLargeInstance("azureLargeInstance",
        azure_large_instance_id="23415635-4d7e-41dc-9598-8194f22c24e1",
        azure_large_instance_name="myALInstance",
        hardware_profile={
            "azure_large_instance_size": azure_native.azurelargeinstance.AzureLargeInstanceSizeNamesEnum.S72,
            "hardware_type": azure_native.azurelargeinstance.AzureLargeInstanceHardwareTypeNamesEnum.CISCO_UCS,
        },
        hw_revision="Rev 3",
        location="westus",
        network_profile={
            "circuit_id": "/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit",
            "network_interfaces": [{
                "ip_address": "100.100.100.100",
            }],
        },
        os_profile={
            "computer_name": "myComputerName",
            "os_type": "SUSE",
            "ssh_public_key": "{ssh-rsa public key}",
            "version": "12 SP1",
        },
        power_state=azure_native.azurelargeinstance.AzureLargeInstancePowerStateEnum.STARTED,
        proximity_placement_group="/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup",
        resource_group_name="myResourceGroup",
        storage_profile={
            "nfs_ip_address": "200.200.200.200",
        },
        tags={
            "testkey": "testvalue",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const azureLargeInstance = new azure_native.azurelargeinstance.AzureLargeInstance("azureLargeInstance", {
        azureLargeInstanceId: "23415635-4d7e-41dc-9598-8194f22c24e1",
        azureLargeInstanceName: "myALInstance",
        hardwareProfile: {
            azureLargeInstanceSize: azure_native.azurelargeinstance.AzureLargeInstanceSizeNamesEnum.S72,
            hardwareType: azure_native.azurelargeinstance.AzureLargeInstanceHardwareTypeNamesEnum.Cisco_UCS,
        },
        hwRevision: "Rev 3",
        location: "westus",
        networkProfile: {
            circuitId: "/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit",
            networkInterfaces: [{
                ipAddress: "100.100.100.100",
            }],
        },
        osProfile: {
            computerName: "myComputerName",
            osType: "SUSE",
            sshPublicKey: "{ssh-rsa public key}",
            version: "12 SP1",
        },
        powerState: azure_native.azurelargeinstance.AzureLargeInstancePowerStateEnum.Started,
        proximityPlacementGroup: "/subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup",
        resourceGroupName: "myResourceGroup",
        storageProfile: {
            nfsIpAddress: "200.200.200.200",
        },
        tags: {
            testkey: "testvalue",
        },
    });
    
    resources:
      azureLargeInstance:
        type: azure-native:azurelargeinstance:AzureLargeInstance
        properties:
          azureLargeInstanceId: 23415635-4d7e-41dc-9598-8194f22c24e1
          azureLargeInstanceName: myALInstance
          hardwareProfile:
            azureLargeInstanceSize: S72
            hardwareType: Cisco_UCS
          hwRevision: Rev 3
          location: westus
          networkProfile:
            circuitId: /subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Network/expressRouteCircuit
            networkInterfaces:
              - ipAddress: 100.100.100.100
          osProfile:
            computerName: myComputerName
            osType: SUSE
            sshPublicKey: '{ssh-rsa public key}'
            version: 12 SP1
          powerState: started
          proximityPlacementGroup: /subscriptions/f0f4887f-d13c-4943-a8ba-d7da28d2a3fd/resourceGroups/myResourceGroup/providers/Microsoft.Compute/proximityPlacementGroups/myplacementgroup
          resourceGroupName: myResourceGroup
          storageProfile:
            nfsIpAddress: 200.200.200.200
          tags:
            testkey: testvalue
    

    Create AzureLargeInstance Resource

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

    Constructor syntax

    new AzureLargeInstance(name: string, args: AzureLargeInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def AzureLargeInstance(resource_name: str,
                           args: AzureLargeInstanceArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def AzureLargeInstance(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_group_name: Optional[str] = None,
                           azure_large_instance_id: Optional[str] = None,
                           azure_large_instance_name: Optional[str] = None,
                           hardware_profile: Optional[HardwareProfileArgs] = None,
                           hw_revision: Optional[str] = None,
                           location: Optional[str] = None,
                           network_profile: Optional[NetworkProfileArgs] = None,
                           os_profile: Optional[OsProfileArgs] = None,
                           power_state: Optional[Union[str, AzureLargeInstancePowerStateEnum]] = None,
                           proximity_placement_group: Optional[str] = None,
                           storage_profile: Optional[StorageProfileArgs] = None,
                           tags: Optional[Mapping[str, str]] = None)
    func NewAzureLargeInstance(ctx *Context, name string, args AzureLargeInstanceArgs, opts ...ResourceOption) (*AzureLargeInstance, error)
    public AzureLargeInstance(string name, AzureLargeInstanceArgs args, CustomResourceOptions? opts = null)
    public AzureLargeInstance(String name, AzureLargeInstanceArgs args)
    public AzureLargeInstance(String name, AzureLargeInstanceArgs args, CustomResourceOptions options)
    
    type: azure-native:azurelargeinstance:AzureLargeInstance
    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 AzureLargeInstanceArgs
    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 AzureLargeInstanceArgs
    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 AzureLargeInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AzureLargeInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AzureLargeInstanceArgs
    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 azureLargeInstanceResource = new AzureNative.AzureLargeInstance.AzureLargeInstance("azureLargeInstanceResource", new()
    {
        ResourceGroupName = "string",
        AzureLargeInstanceId = "string",
        AzureLargeInstanceName = "string",
        HardwareProfile = new AzureNative.AzureLargeInstance.Inputs.HardwareProfileArgs
        {
            AzureLargeInstanceSize = "string",
            HardwareType = "string",
        },
        HwRevision = "string",
        Location = "string",
        NetworkProfile = new AzureNative.AzureLargeInstance.Inputs.NetworkProfileArgs
        {
            CircuitId = "string",
            NetworkInterfaces = new[]
            {
                new AzureNative.AzureLargeInstance.Inputs.IpAddressArgs
                {
                    IpAddress = "string",
                },
            },
        },
        OsProfile = new AzureNative.AzureLargeInstance.Inputs.OsProfileArgs
        {
            ComputerName = "string",
            OsType = "string",
            SshPublicKey = "string",
            Version = "string",
        },
        PowerState = "string",
        ProximityPlacementGroup = "string",
        StorageProfile = new AzureNative.AzureLargeInstance.Inputs.StorageProfileArgs
        {
            NfsIpAddress = "string",
            OsDisks = new[]
            {
                new AzureNative.AzureLargeInstance.Inputs.DiskArgs
                {
                    DiskSizeGB = 0,
                    Name = "string",
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azurelargeinstance.NewAzureLargeInstance(ctx, "azureLargeInstanceResource", &azurelargeinstance.AzureLargeInstanceArgs{
    	ResourceGroupName:      pulumi.String("string"),
    	AzureLargeInstanceId:   pulumi.String("string"),
    	AzureLargeInstanceName: pulumi.String("string"),
    	HardwareProfile: &azurelargeinstance.HardwareProfileArgs{
    		AzureLargeInstanceSize: pulumi.String("string"),
    		HardwareType:           pulumi.String("string"),
    	},
    	HwRevision: pulumi.String("string"),
    	Location:   pulumi.String("string"),
    	NetworkProfile: &azurelargeinstance.NetworkProfileArgs{
    		CircuitId: pulumi.String("string"),
    		NetworkInterfaces: azurelargeinstance.IpAddressArray{
    			&azurelargeinstance.IpAddressArgs{
    				IpAddress: pulumi.String("string"),
    			},
    		},
    	},
    	OsProfile: &azurelargeinstance.OsProfileArgs{
    		ComputerName: pulumi.String("string"),
    		OsType:       pulumi.String("string"),
    		SshPublicKey: pulumi.String("string"),
    		Version:      pulumi.String("string"),
    	},
    	PowerState:              pulumi.String("string"),
    	ProximityPlacementGroup: pulumi.String("string"),
    	StorageProfile: &azurelargeinstance.StorageProfileArgs{
    		NfsIpAddress: pulumi.String("string"),
    		OsDisks: azurelargeinstance.DiskArray{
    			&azurelargeinstance.DiskArgs{
    				DiskSizeGB: pulumi.Int(0),
    				Name:       pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureLargeInstanceResource = new AzureLargeInstance("azureLargeInstanceResource", AzureLargeInstanceArgs.builder()
        .resourceGroupName("string")
        .azureLargeInstanceId("string")
        .azureLargeInstanceName("string")
        .hardwareProfile(HardwareProfileArgs.builder()
            .azureLargeInstanceSize("string")
            .hardwareType("string")
            .build())
        .hwRevision("string")
        .location("string")
        .networkProfile(NetworkProfileArgs.builder()
            .circuitId("string")
            .networkInterfaces(IpAddressArgs.builder()
                .ipAddress("string")
                .build())
            .build())
        .osProfile(OsProfileArgs.builder()
            .computerName("string")
            .osType("string")
            .sshPublicKey("string")
            .version("string")
            .build())
        .powerState("string")
        .proximityPlacementGroup("string")
        .storageProfile(StorageProfileArgs.builder()
            .nfsIpAddress("string")
            .osDisks(DiskArgs.builder()
                .diskSizeGB(0)
                .name("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    azure_large_instance_resource = azure_native.azurelargeinstance.AzureLargeInstance("azureLargeInstanceResource",
        resource_group_name="string",
        azure_large_instance_id="string",
        azure_large_instance_name="string",
        hardware_profile={
            "azureLargeInstanceSize": "string",
            "hardwareType": "string",
        },
        hw_revision="string",
        location="string",
        network_profile={
            "circuitId": "string",
            "networkInterfaces": [{
                "ipAddress": "string",
            }],
        },
        os_profile={
            "computerName": "string",
            "osType": "string",
            "sshPublicKey": "string",
            "version": "string",
        },
        power_state="string",
        proximity_placement_group="string",
        storage_profile={
            "nfsIpAddress": "string",
            "osDisks": [{
                "diskSizeGB": 0,
                "name": "string",
            }],
        },
        tags={
            "string": "string",
        })
    
    const azureLargeInstanceResource = new azure_native.azurelargeinstance.AzureLargeInstance("azureLargeInstanceResource", {
        resourceGroupName: "string",
        azureLargeInstanceId: "string",
        azureLargeInstanceName: "string",
        hardwareProfile: {
            azureLargeInstanceSize: "string",
            hardwareType: "string",
        },
        hwRevision: "string",
        location: "string",
        networkProfile: {
            circuitId: "string",
            networkInterfaces: [{
                ipAddress: "string",
            }],
        },
        osProfile: {
            computerName: "string",
            osType: "string",
            sshPublicKey: "string",
            version: "string",
        },
        powerState: "string",
        proximityPlacementGroup: "string",
        storageProfile: {
            nfsIpAddress: "string",
            osDisks: [{
                diskSizeGB: 0,
                name: "string",
            }],
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azurelargeinstance:AzureLargeInstance
    properties:
        azureLargeInstanceId: string
        azureLargeInstanceName: string
        hardwareProfile:
            azureLargeInstanceSize: string
            hardwareType: string
        hwRevision: string
        location: string
        networkProfile:
            circuitId: string
            networkInterfaces:
                - ipAddress: string
        osProfile:
            computerName: string
            osType: string
            sshPublicKey: string
            version: string
        powerState: string
        proximityPlacementGroup: string
        resourceGroupName: string
        storageProfile:
            nfsIpAddress: string
            osDisks:
                - diskSizeGB: 0
                  name: string
        tags:
            string: string
    

    AzureLargeInstance Resource Properties

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

    Inputs

    The AzureLargeInstance resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AzureLargeInstanceId string
    Specifies the Azure Large Instance unique ID.
    AzureLargeInstanceName string
    Name of the AzureLargeInstance.
    HardwareProfile Pulumi.AzureNative.AzureLargeInstance.Inputs.HardwareProfile
    Specifies the hardware settings for the Azure Large Instance.
    HwRevision string
    Hardware revision of an Azure Large Instance
    Location string
    The geo-location where the resource lives
    NetworkProfile Pulumi.AzureNative.AzureLargeInstance.Inputs.NetworkProfile
    Specifies the network settings for the Azure Large Instance.
    OsProfile Pulumi.AzureNative.AzureLargeInstance.Inputs.OsProfile
    Specifies the operating system settings for the Azure Large Instance.
    PowerState string | Pulumi.AzureNative.AzureLargeInstance.AzureLargeInstancePowerStateEnum
    Resource power state
    ProximityPlacementGroup string
    Resource proximity placement group
    StorageProfile Pulumi.AzureNative.AzureLargeInstance.Inputs.StorageProfile
    Specifies the storage settings for the Azure Large Instance disks.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AzureLargeInstanceId string
    Specifies the Azure Large Instance unique ID.
    AzureLargeInstanceName string
    Name of the AzureLargeInstance.
    HardwareProfile HardwareProfileArgs
    Specifies the hardware settings for the Azure Large Instance.
    HwRevision string
    Hardware revision of an Azure Large Instance
    Location string
    The geo-location where the resource lives
    NetworkProfile NetworkProfileArgs
    Specifies the network settings for the Azure Large Instance.
    OsProfile OsProfileArgs
    Specifies the operating system settings for the Azure Large Instance.
    PowerState string | AzureLargeInstancePowerStateEnum
    Resource power state
    ProximityPlacementGroup string
    Resource proximity placement group
    StorageProfile StorageProfileArgs
    Specifies the storage settings for the Azure Large Instance disks.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    azureLargeInstanceId String
    Specifies the Azure Large Instance unique ID.
    azureLargeInstanceName String
    Name of the AzureLargeInstance.
    hardwareProfile HardwareProfile
    Specifies the hardware settings for the Azure Large Instance.
    hwRevision String
    Hardware revision of an Azure Large Instance
    location String
    The geo-location where the resource lives
    networkProfile NetworkProfile
    Specifies the network settings for the Azure Large Instance.
    osProfile OsProfile
    Specifies the operating system settings for the Azure Large Instance.
    powerState String | AzureLargeInstancePowerStateEnum
    Resource power state
    proximityPlacementGroup String
    Resource proximity placement group
    storageProfile StorageProfile
    Specifies the storage settings for the Azure Large Instance disks.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    azureLargeInstanceId string
    Specifies the Azure Large Instance unique ID.
    azureLargeInstanceName string
    Name of the AzureLargeInstance.
    hardwareProfile HardwareProfile
    Specifies the hardware settings for the Azure Large Instance.
    hwRevision string
    Hardware revision of an Azure Large Instance
    location string
    The geo-location where the resource lives
    networkProfile NetworkProfile
    Specifies the network settings for the Azure Large Instance.
    osProfile OsProfile
    Specifies the operating system settings for the Azure Large Instance.
    powerState string | AzureLargeInstancePowerStateEnum
    Resource power state
    proximityPlacementGroup string
    Resource proximity placement group
    storageProfile StorageProfile
    Specifies the storage settings for the Azure Large Instance disks.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    azure_large_instance_id str
    Specifies the Azure Large Instance unique ID.
    azure_large_instance_name str
    Name of the AzureLargeInstance.
    hardware_profile HardwareProfileArgs
    Specifies the hardware settings for the Azure Large Instance.
    hw_revision str
    Hardware revision of an Azure Large Instance
    location str
    The geo-location where the resource lives
    network_profile NetworkProfileArgs
    Specifies the network settings for the Azure Large Instance.
    os_profile OsProfileArgs
    Specifies the operating system settings for the Azure Large Instance.
    power_state str | AzureLargeInstancePowerStateEnum
    Resource power state
    proximity_placement_group str
    Resource proximity placement group
    storage_profile StorageProfileArgs
    Specifies the storage settings for the Azure Large Instance disks.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    azureLargeInstanceId String
    Specifies the Azure Large Instance unique ID.
    azureLargeInstanceName String
    Name of the AzureLargeInstance.
    hardwareProfile Property Map
    Specifies the hardware settings for the Azure Large Instance.
    hwRevision String
    Hardware revision of an Azure Large Instance
    location String
    The geo-location where the resource lives
    networkProfile Property Map
    Specifies the network settings for the Azure Large Instance.
    osProfile Property Map
    Specifies the operating system settings for the Azure Large Instance.
    powerState String | "starting" | "started" | "stopping" | "stopped" | "restarting" | "unknown"
    Resource power state
    proximityPlacementGroup String
    Resource proximity placement group
    storageProfile Property Map
    Specifies the storage settings for the Azure Large Instance disks.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of provisioning of the AzureLargeInstance
    SystemData Pulumi.AzureNative.AzureLargeInstance.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"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of provisioning of the AzureLargeInstance
    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"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of provisioning of the AzureLargeInstance
    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"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    State of provisioning of the AzureLargeInstance
    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"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    State of provisioning of the AzureLargeInstance
    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"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of provisioning of the AzureLargeInstance
    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

    AzureLargeInstanceHardwareTypeNamesEnum, AzureLargeInstanceHardwareTypeNamesEnumArgs

    Cisco_UCS
    Cisco_UCSHardware type of UCS from vendor Cisco
    HPE
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    SDFLEX
    SDFLEXHardware type of SDFLEX
    AzureLargeInstanceHardwareTypeNamesEnum_Cisco_UCS
    Cisco_UCSHardware type of UCS from vendor Cisco
    AzureLargeInstanceHardwareTypeNamesEnumHPE
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    AzureLargeInstanceHardwareTypeNamesEnumSDFLEX
    SDFLEXHardware type of SDFLEX
    Cisco_UCS
    Cisco_UCSHardware type of UCS from vendor Cisco
    HPE
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    SDFLEX
    SDFLEXHardware type of SDFLEX
    Cisco_UCS
    Cisco_UCSHardware type of UCS from vendor Cisco
    HPE
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    SDFLEX
    SDFLEXHardware type of SDFLEX
    CISCO_UCS
    Cisco_UCSHardware type of UCS from vendor Cisco
    HPE
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    SDFLEX
    SDFLEXHardware type of SDFLEX
    "Cisco_UCS"
    Cisco_UCSHardware type of UCS from vendor Cisco
    "HPE"
    HPEHardware type of HPE from vendor Hewlett Packard Enterprise
    "SDFLEX"
    SDFLEXHardware type of SDFLEX

    AzureLargeInstancePowerStateEnum, AzureLargeInstancePowerStateEnumArgs

    Starting
    startingStarting means that the Azure Large Instance resource is turning on.
    Started
    startedStarted means that the Azure Large Instance resource has been powered on.
    Stopping
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    Stopped
    stoppedStopped means that the Azure Large Instance resource has shut down.
    Restarting
    restartingRestarting means that the Azure Large Instance resource is restarting.
    Unknown
    unknownUnknown means that the state of the Azure Large Instance is unknown.
    AzureLargeInstancePowerStateEnumStarting
    startingStarting means that the Azure Large Instance resource is turning on.
    AzureLargeInstancePowerStateEnumStarted
    startedStarted means that the Azure Large Instance resource has been powered on.
    AzureLargeInstancePowerStateEnumStopping
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    AzureLargeInstancePowerStateEnumStopped
    stoppedStopped means that the Azure Large Instance resource has shut down.
    AzureLargeInstancePowerStateEnumRestarting
    restartingRestarting means that the Azure Large Instance resource is restarting.
    AzureLargeInstancePowerStateEnumUnknown
    unknownUnknown means that the state of the Azure Large Instance is unknown.
    Starting
    startingStarting means that the Azure Large Instance resource is turning on.
    Started
    startedStarted means that the Azure Large Instance resource has been powered on.
    Stopping
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    Stopped
    stoppedStopped means that the Azure Large Instance resource has shut down.
    Restarting
    restartingRestarting means that the Azure Large Instance resource is restarting.
    Unknown
    unknownUnknown means that the state of the Azure Large Instance is unknown.
    Starting
    startingStarting means that the Azure Large Instance resource is turning on.
    Started
    startedStarted means that the Azure Large Instance resource has been powered on.
    Stopping
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    Stopped
    stoppedStopped means that the Azure Large Instance resource has shut down.
    Restarting
    restartingRestarting means that the Azure Large Instance resource is restarting.
    Unknown
    unknownUnknown means that the state of the Azure Large Instance is unknown.
    STARTING
    startingStarting means that the Azure Large Instance resource is turning on.
    STARTED
    startedStarted means that the Azure Large Instance resource has been powered on.
    STOPPING
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    STOPPED
    stoppedStopped means that the Azure Large Instance resource has shut down.
    RESTARTING
    restartingRestarting means that the Azure Large Instance resource is restarting.
    UNKNOWN
    unknownUnknown means that the state of the Azure Large Instance is unknown.
    "starting"
    startingStarting means that the Azure Large Instance resource is turning on.
    "started"
    startedStarted means that the Azure Large Instance resource has been powered on.
    "stopping"
    stoppingStopping means that the Azure Large Instance resource is shutting down.
    "stopped"
    stoppedStopped means that the Azure Large Instance resource has shut down.
    "restarting"
    restartingRestarting means that the Azure Large Instance resource is restarting.
    "unknown"
    unknownUnknown means that the state of the Azure Large Instance is unknown.

    AzureLargeInstanceSizeNamesEnum, AzureLargeInstanceSizeNamesEnumArgs

    S72m
    S72mType I class SKU that can't be purchased anymore
    S144m
    S144mType I class SKU that can't be purchased anymore
    S72
    S72Type I class SKU that can't be purchased anymore
    S144
    S144Type I class SKU that can't be purchased anymore
    S192
    S192Type I class SKU that can't be purchased anymore
    S192m
    S192mType I class SKU that can't be purchased anymore
    S192xm
    S192xmType I class SKU that can't be purchased anymore
    S96
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    S112
    S112No longer offered or used.
    S224
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    S224m
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    S224om
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    S224oo
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    S224oom
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    S224ooo
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    S224se
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    S384
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    S384m
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    S384xm
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    S384xxm
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    S448
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    S448m
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S448om
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    S448oo
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    S448oom
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    S448ooo
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    S448se
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    S576m
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    S576xm
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    S672
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    S672m
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    S672om
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S672oo
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    S672oom
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    S672ooo
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    S768
    S768No longer offered or used.
    S768m
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    S768xm
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    S896
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S896m
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    S896om
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    S896oo
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S896oom
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    S896ooo
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    S960m
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS72m
    S72mType I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS144m
    S144mType I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS72
    S72Type I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS144
    S144Type I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS192
    S192Type I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS192m
    S192mType I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS192xm
    S192xmType I class SKU that can't be purchased anymore
    AzureLargeInstanceSizeNamesEnumS96
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS112
    S112No longer offered or used.
    AzureLargeInstanceSizeNamesEnumS224
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224m
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224om
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224oo
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224oom
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224ooo
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    AzureLargeInstanceSizeNamesEnumS224se
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS384
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS384m
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS384xm
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS384xxm
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS448
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448m
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448om
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448oo
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448oom
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448ooo
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS448se
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS576m
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS576xm
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS672
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS672m
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS672om
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS672oo
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS672oom
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS672ooo
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS768
    S768No longer offered or used.
    AzureLargeInstanceSizeNamesEnumS768m
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS768xm
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    AzureLargeInstanceSizeNamesEnumS896
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS896m
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS896om
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS896oo
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS896oom
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS896ooo
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    AzureLargeInstanceSizeNamesEnumS960m
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type
    S72m
    S72mType I class SKU that can't be purchased anymore
    S144m
    S144mType I class SKU that can't be purchased anymore
    S72
    S72Type I class SKU that can't be purchased anymore
    S144
    S144Type I class SKU that can't be purchased anymore
    S192
    S192Type I class SKU that can't be purchased anymore
    S192m
    S192mType I class SKU that can't be purchased anymore
    S192xm
    S192xmType I class SKU that can't be purchased anymore
    S96
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    S112
    S112No longer offered or used.
    S224
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    S224m
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    S224om
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    S224oo
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    S224oom
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    S224ooo
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    S224se
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    S384
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    S384m
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    S384xm
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    S384xxm
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    S448
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    S448m
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S448om
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    S448oo
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    S448oom
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    S448ooo
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    S448se
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    S576m
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    S576xm
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    S672
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    S672m
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    S672om
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S672oo
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    S672oom
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    S672ooo
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    S768
    S768No longer offered or used.
    S768m
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    S768xm
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    S896
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S896m
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    S896om
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    S896oo
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S896oom
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    S896ooo
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    S960m
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type
    S72m
    S72mType I class SKU that can't be purchased anymore
    S144m
    S144mType I class SKU that can't be purchased anymore
    S72
    S72Type I class SKU that can't be purchased anymore
    S144
    S144Type I class SKU that can't be purchased anymore
    S192
    S192Type I class SKU that can't be purchased anymore
    S192m
    S192mType I class SKU that can't be purchased anymore
    S192xm
    S192xmType I class SKU that can't be purchased anymore
    S96
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    S112
    S112No longer offered or used.
    S224
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    S224m
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    S224om
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    S224oo
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    S224oom
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    S224ooo
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    S224se
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    S384
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    S384m
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    S384xm
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    S384xxm
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    S448
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    S448m
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S448om
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    S448oo
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    S448oom
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    S448ooo
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    S448se
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    S576m
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    S576xm
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    S672
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    S672m
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    S672om
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S672oo
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    S672oom
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    S672ooo
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    S768
    S768No longer offered or used.
    S768m
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    S768xm
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    S896
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S896m
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    S896om
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    S896oo
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S896oom
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    S896ooo
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    S960m
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type
    S72M
    S72mType I class SKU that can't be purchased anymore
    S144M
    S144mType I class SKU that can't be purchased anymore
    S72
    S72Type I class SKU that can't be purchased anymore
    S144
    S144Type I class SKU that can't be purchased anymore
    S192
    S192Type I class SKU that can't be purchased anymore
    S192M
    S192mType I class SKU that can't be purchased anymore
    S192XM
    S192xmType I class SKU that can't be purchased anymore
    S96
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    S112
    S112No longer offered or used.
    S224
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    S224M
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    S224OM
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    S224OO
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    S224OOM
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    S224OOO
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    S224SE
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    S384
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    S384M
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    S384XM
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    S384XXM
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    S448
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    S448M
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S448OM
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    S448OO
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    S448OOM
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    S448OOO
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    S448SE
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    S576M
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    S576XM
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    S672
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    S672M
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    S672OM
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S672OO
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    S672OOM
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    S672OOO
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    S768
    S768No longer offered or used.
    S768M
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    S768XM
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    S896
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    S896M
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    S896OM
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    S896OO
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    S896OOM
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    S896OOO
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    S960M
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type
    "S72m"
    S72mType I class SKU that can't be purchased anymore
    "S144m"
    S144mType I class SKU that can't be purchased anymore
    "S72"
    S72Type I class SKU that can't be purchased anymore
    "S144"
    S144Type I class SKU that can't be purchased anymore
    "S192"
    S192Type I class SKU that can't be purchased anymore
    "S192m"
    S192mType I class SKU that can't be purchased anymore
    "S192xm"
    S192xmType I class SKU that can't be purchased anymore
    "S96"
    S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
    "S112"
    S112No longer offered or used.
    "S224"
    S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
    "S224m"
    S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
    "S224om"
    S224om4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 3 TB DRAM, 3 TB memory optane, 10.5 TB storage, Cisco_UCS hardware type
    "S224oo"
    S224oo4 sockets, 224 CPU threads, 112 CPU cores, 4.5 TB total memory, 1.5 TB DRAM, 3 TB memory optane, 8.4 TB storage, Cisco_UCS hardware type
    "S224oom"
    S224oom4 sockets, 224 CPU threads, 112 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, Cisco_UCS hardware type
    "S224ooo"
    S224ooo4 sockets, 224 CPU threads, 112 CPU cores, 7.5TB total memory, 1.5 TB DRAM, 6 TB memory optane, 12.7 TB storage, Cisco_UCS hardware type
    "S224se"
    S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
    "S384"
    S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
    "S384m"
    S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
    "S384xm"
    S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
    "S384xxm"
    S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
    "S448"
    S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
    "S448m"
    S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    "S448om"
    S448om8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 6 TB DRAM, 6 TB memory optane, 18.9 TB storage, SDFLEX hardware type
    "S448oo"
    S448oo8 sockets, 448 CPU threads, 224 CPU cores, 9 TB total memory, 3 TB DRAM, 6 TB memory optane, 14.8 TB storage, SDFLEX hardware type
    "S448oom"
    S448oom8 sockets, 448 CPU threads, 224 CPU cores, 18 TB total memory, 6 TB DRAM, 12 memory optane, 27.4 TB storage, SDFLEX hardware type
    "S448ooo"
    S448ooo8 sockets, 448 CPU threads, 224 CPU cores, 15 TB total memory, 3 TB DRAM, 12 memory optane, 23.2 TB storage, SDFLEX hardware type
    "S448se"
    S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
    "S576m"
    S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
    "S576xm"
    S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
    "S672"
    S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
    "S672m"
    S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
    "S672om"
    S672om12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 9 TB DRAM, 9 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    "S672oo"
    S672oo12 sockets, 672 CPU threads, 336 CPU cores, 13.5 TB total memory, 4.5 TB DRAM, 9 TB memory optane, 21.1 TB storage, SDFLEX hardware type
    "S672oom"
    S672oom12 sockets, 672 CPU threads, 336 CPU cores, 27 TB total memory, 9 TB DRAM, 18 TB memory optane, 40 TB storage, SDFLEX hardware type
    "S672ooo"
    S672ooo12 sockets, 672 CPU threads, 336 CPU cores, 22.5 TB total memory, 4.5 TB DRAM, 18 TB memory optane, 33.7 TB storage, SDFLEX hardware type
    "S768"
    S768No longer offered or used.
    "S768m"
    S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
    "S768xm"
    S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
    "S896"
    S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
    "S896m"
    S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
    "S896om"
    S896om16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 12 TB DRAM, 12 TB memory optane, 35.8 TB storage, SDFLEX hardware type
    "S896oo"
    S896oo16 sockets, 896 CPU threads, 448 CPU cores, 18 TB total memory, 6 TB DRAM, 12 TB memory optane, 27.4 TB storage, SDFLEX hardware type
    "S896oom"
    S896oom16 sockets, 896 CPU threads, 448 CPU cores, 36 TB total memory, 12 TB DRAM, 24 TB memory optane, 52.7 TB storage, SDFLEX hardware type
    "S896ooo"
    S896ooo16 sockets, 896 CPU threads, 448 CPU cores, 30 TB total memory, 6 TB DRAM, 24 TB memory optane, 44.3 TB storage, SDFLEX hardware type
    "S960m"
    S960m20 sockets, 960 CPU threads, 480 CPU cores, 20 TB total memory, 20 TB DRAM, 46 TB storage, HPEMc990x hardware type

    Disk, DiskArgs

    DiskSizeGB int
    Specifies the size of an empty data disk in gigabytes.
    Name string
    The disk name.
    DiskSizeGB int
    Specifies the size of an empty data disk in gigabytes.
    Name string
    The disk name.
    diskSizeGB Integer
    Specifies the size of an empty data disk in gigabytes.
    name String
    The disk name.
    diskSizeGB number
    Specifies the size of an empty data disk in gigabytes.
    name string
    The disk name.
    disk_size_gb int
    Specifies the size of an empty data disk in gigabytes.
    name str
    The disk name.
    diskSizeGB Number
    Specifies the size of an empty data disk in gigabytes.
    name String
    The disk name.

    DiskResponse, DiskResponseArgs

    Lun int
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    DiskSizeGB int
    Specifies the size of an empty data disk in gigabytes.
    Name string
    The disk name.
    Lun int
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    DiskSizeGB int
    Specifies the size of an empty data disk in gigabytes.
    Name string
    The disk name.
    lun Integer
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    diskSizeGB Integer
    Specifies the size of an empty data disk in gigabytes.
    name String
    The disk name.
    lun number
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    diskSizeGB number
    Specifies the size of an empty data disk in gigabytes.
    name string
    The disk name.
    lun int
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    disk_size_gb int
    Specifies the size of an empty data disk in gigabytes.
    name str
    The disk name.
    lun Number
    Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
    diskSizeGB Number
    Specifies the size of an empty data disk in gigabytes.
    name String
    The disk name.

    HardwareProfile, HardwareProfileArgs

    AzureLargeInstanceSize string | AzureLargeInstanceSizeNamesEnum
    Specifies the Azure Large Instance SKU.
    HardwareType string | AzureLargeInstanceHardwareTypeNamesEnum
    Name of the hardware type (vendor and/or their product name)
    azureLargeInstanceSize String | AzureLargeInstanceSizeNamesEnum
    Specifies the Azure Large Instance SKU.
    hardwareType String | AzureLargeInstanceHardwareTypeNamesEnum
    Name of the hardware type (vendor and/or their product name)
    azureLargeInstanceSize string | AzureLargeInstanceSizeNamesEnum
    Specifies the Azure Large Instance SKU.
    hardwareType string | AzureLargeInstanceHardwareTypeNamesEnum
    Name of the hardware type (vendor and/or their product name)
    azure_large_instance_size str | AzureLargeInstanceSizeNamesEnum
    Specifies the Azure Large Instance SKU.
    hardware_type str | AzureLargeInstanceHardwareTypeNamesEnum
    Name of the hardware type (vendor and/or their product name)

    HardwareProfileResponse, HardwareProfileResponseArgs

    AzureLargeInstanceSize string
    Specifies the Azure Large Instance SKU.
    HardwareType string
    Name of the hardware type (vendor and/or their product name)
    AzureLargeInstanceSize string
    Specifies the Azure Large Instance SKU.
    HardwareType string
    Name of the hardware type (vendor and/or their product name)
    azureLargeInstanceSize String
    Specifies the Azure Large Instance SKU.
    hardwareType String
    Name of the hardware type (vendor and/or their product name)
    azureLargeInstanceSize string
    Specifies the Azure Large Instance SKU.
    hardwareType string
    Name of the hardware type (vendor and/or their product name)
    azure_large_instance_size str
    Specifies the Azure Large Instance SKU.
    hardware_type str
    Name of the hardware type (vendor and/or their product name)
    azureLargeInstanceSize String
    Specifies the Azure Large Instance SKU.
    hardwareType String
    Name of the hardware type (vendor and/or their product name)

    IpAddress, IpAddressArgs

    IpAddress string
    Specifies the IP address of the network interface.
    IpAddress string
    Specifies the IP address of the network interface.
    ipAddress String
    Specifies the IP address of the network interface.
    ipAddress string
    Specifies the IP address of the network interface.
    ip_address str
    Specifies the IP address of the network interface.
    ipAddress String
    Specifies the IP address of the network interface.

    IpAddressResponse, IpAddressResponseArgs

    IpAddress string
    Specifies the IP address of the network interface.
    IpAddress string
    Specifies the IP address of the network interface.
    ipAddress String
    Specifies the IP address of the network interface.
    ipAddress string
    Specifies the IP address of the network interface.
    ip_address str
    Specifies the IP address of the network interface.
    ipAddress String
    Specifies the IP address of the network interface.

    NetworkProfile, NetworkProfileArgs

    CircuitId string
    Specifies the circuit id for connecting to express route.
    NetworkInterfaces List<Pulumi.AzureNative.AzureLargeInstance.Inputs.IpAddress>
    Specifies the network interfaces for the Azure Large Instance.
    CircuitId string
    Specifies the circuit id for connecting to express route.
    NetworkInterfaces []IpAddress
    Specifies the network interfaces for the Azure Large Instance.
    circuitId String
    Specifies the circuit id for connecting to express route.
    networkInterfaces List<IpAddress>
    Specifies the network interfaces for the Azure Large Instance.
    circuitId string
    Specifies the circuit id for connecting to express route.
    networkInterfaces IpAddress[]
    Specifies the network interfaces for the Azure Large Instance.
    circuit_id str
    Specifies the circuit id for connecting to express route.
    network_interfaces Sequence[IpAddress]
    Specifies the network interfaces for the Azure Large Instance.
    circuitId String
    Specifies the circuit id for connecting to express route.
    networkInterfaces List<Property Map>
    Specifies the network interfaces for the Azure Large Instance.

    NetworkProfileResponse, NetworkProfileResponseArgs

    CircuitId string
    Specifies the circuit id for connecting to express route.
    NetworkInterfaces List<Pulumi.AzureNative.AzureLargeInstance.Inputs.IpAddressResponse>
    Specifies the network interfaces for the Azure Large Instance.
    CircuitId string
    Specifies the circuit id for connecting to express route.
    NetworkInterfaces []IpAddressResponse
    Specifies the network interfaces for the Azure Large Instance.
    circuitId String
    Specifies the circuit id for connecting to express route.
    networkInterfaces List<IpAddressResponse>
    Specifies the network interfaces for the Azure Large Instance.
    circuitId string
    Specifies the circuit id for connecting to express route.
    networkInterfaces IpAddressResponse[]
    Specifies the network interfaces for the Azure Large Instance.
    circuit_id str
    Specifies the circuit id for connecting to express route.
    network_interfaces Sequence[IpAddressResponse]
    Specifies the network interfaces for the Azure Large Instance.
    circuitId String
    Specifies the circuit id for connecting to express route.
    networkInterfaces List<Property Map>
    Specifies the network interfaces for the Azure Large Instance.

    OsProfile, OsProfileArgs

    ComputerName string
    Specifies the host OS name of the Azure Large Instance.
    OsType string
    This property allows you to specify the type of the OS.
    SshPublicKey string
    Specifies the SSH public key used to access the operating system.
    Version string
    Specifies version of operating system.
    ComputerName string
    Specifies the host OS name of the Azure Large Instance.
    OsType string
    This property allows you to specify the type of the OS.
    SshPublicKey string
    Specifies the SSH public key used to access the operating system.
    Version string
    Specifies version of operating system.
    computerName String
    Specifies the host OS name of the Azure Large Instance.
    osType String
    This property allows you to specify the type of the OS.
    sshPublicKey String
    Specifies the SSH public key used to access the operating system.
    version String
    Specifies version of operating system.
    computerName string
    Specifies the host OS name of the Azure Large Instance.
    osType string
    This property allows you to specify the type of the OS.
    sshPublicKey string
    Specifies the SSH public key used to access the operating system.
    version string
    Specifies version of operating system.
    computer_name str
    Specifies the host OS name of the Azure Large Instance.
    os_type str
    This property allows you to specify the type of the OS.
    ssh_public_key str
    Specifies the SSH public key used to access the operating system.
    version str
    Specifies version of operating system.
    computerName String
    Specifies the host OS name of the Azure Large Instance.
    osType String
    This property allows you to specify the type of the OS.
    sshPublicKey String
    Specifies the SSH public key used to access the operating system.
    version String
    Specifies version of operating system.

    OsProfileResponse, OsProfileResponseArgs

    ComputerName string
    Specifies the host OS name of the Azure Large Instance.
    OsType string
    This property allows you to specify the type of the OS.
    SshPublicKey string
    Specifies the SSH public key used to access the operating system.
    Version string
    Specifies version of operating system.
    ComputerName string
    Specifies the host OS name of the Azure Large Instance.
    OsType string
    This property allows you to specify the type of the OS.
    SshPublicKey string
    Specifies the SSH public key used to access the operating system.
    Version string
    Specifies version of operating system.
    computerName String
    Specifies the host OS name of the Azure Large Instance.
    osType String
    This property allows you to specify the type of the OS.
    sshPublicKey String
    Specifies the SSH public key used to access the operating system.
    version String
    Specifies version of operating system.
    computerName string
    Specifies the host OS name of the Azure Large Instance.
    osType string
    This property allows you to specify the type of the OS.
    sshPublicKey string
    Specifies the SSH public key used to access the operating system.
    version string
    Specifies version of operating system.
    computer_name str
    Specifies the host OS name of the Azure Large Instance.
    os_type str
    This property allows you to specify the type of the OS.
    ssh_public_key str
    Specifies the SSH public key used to access the operating system.
    version str
    Specifies version of operating system.
    computerName String
    Specifies the host OS name of the Azure Large Instance.
    osType String
    This property allows you to specify the type of the OS.
    sshPublicKey String
    Specifies the SSH public key used to access the operating system.
    version String
    Specifies version of operating system.

    StorageProfile, StorageProfileArgs

    NfsIpAddress string
    IP Address to connect to storage.
    OsDisks List<Pulumi.AzureNative.AzureLargeInstance.Inputs.Disk>
    Specifies information about the operating system disk used by Azure Large Instance.
    NfsIpAddress string
    IP Address to connect to storage.
    OsDisks []Disk
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress String
    IP Address to connect to storage.
    osDisks List<Disk>
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress string
    IP Address to connect to storage.
    osDisks Disk[]
    Specifies information about the operating system disk used by Azure Large Instance.
    nfs_ip_address str
    IP Address to connect to storage.
    os_disks Sequence[Disk]
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress String
    IP Address to connect to storage.
    osDisks List<Property Map>
    Specifies information about the operating system disk used by Azure Large Instance.

    StorageProfileResponse, StorageProfileResponseArgs

    NfsIpAddress string
    IP Address to connect to storage.
    OsDisks List<Pulumi.AzureNative.AzureLargeInstance.Inputs.DiskResponse>
    Specifies information about the operating system disk used by Azure Large Instance.
    NfsIpAddress string
    IP Address to connect to storage.
    OsDisks []DiskResponse
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress String
    IP Address to connect to storage.
    osDisks List<DiskResponse>
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress string
    IP Address to connect to storage.
    osDisks DiskResponse[]
    Specifies information about the operating system disk used by Azure Large Instance.
    nfs_ip_address str
    IP Address to connect to storage.
    os_disks Sequence[DiskResponse]
    Specifies information about the operating system disk used by Azure Large Instance.
    nfsIpAddress String
    IP Address to connect to storage.
    osDisks List<Property Map>
    Specifies information about the operating system disk used by Azure Large Instance.

    SystemDataResponse, SystemDataResponseArgs

    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.

    Import

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

    $ pulumi import azure-native:azurelargeinstance:AzureLargeInstance myALInstance /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureLargeInstance/azureLargeInstances/{azureLargeInstanceName} 
    

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.62.0 published on Wednesday, Sep 18, 2024 by Pulumi