azure-native.azurelargeinstance.AzureLargeInstance
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Azure
Large stringInstance Id - Specifies the Azure Large Instance unique ID.
- Azure
Large stringInstance Name - Name of the AzureLargeInstance.
- Hardware
Profile Pulumi.Azure Native. Azure Large Instance. Inputs. Hardware Profile - Specifies the hardware settings for the Azure Large Instance.
- Hw
Revision string - Hardware revision of an Azure Large Instance
- Location string
- The geo-location where the resource lives
- Network
Profile Pulumi.Azure Native. Azure Large Instance. Inputs. Network Profile - Specifies the network settings for the Azure Large Instance.
- Os
Profile Pulumi.Azure Native. Azure Large Instance. Inputs. Os Profile - Specifies the operating system settings for the Azure Large Instance.
- Power
State string | Pulumi.Azure Native. Azure Large Instance. Azure Large Instance Power State Enum - Resource power state
- Proximity
Placement stringGroup - Resource proximity placement group
- Storage
Profile Pulumi.Azure Native. Azure Large Instance. Inputs. Storage Profile - Specifies the storage settings for the Azure Large Instance disks.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Azure
Large stringInstance Id - Specifies the Azure Large Instance unique ID.
- Azure
Large stringInstance Name - Name of the AzureLargeInstance.
- Hardware
Profile HardwareProfile Args - Specifies the hardware settings for the Azure Large Instance.
- Hw
Revision string - Hardware revision of an Azure Large Instance
- Location string
- The geo-location where the resource lives
- Network
Profile NetworkProfile Args - Specifies the network settings for the Azure Large Instance.
- Os
Profile OsProfile Args - Specifies the operating system settings for the Azure Large Instance.
- Power
State string | AzureLarge Instance Power State Enum - Resource power state
- Proximity
Placement stringGroup - Resource proximity placement group
- Storage
Profile StorageProfile Args - Specifies the storage settings for the Azure Large Instance disks.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- azure
Large StringInstance Id - Specifies the Azure Large Instance unique ID.
- azure
Large StringInstance Name - Name of the AzureLargeInstance.
- hardware
Profile HardwareProfile - Specifies the hardware settings for the Azure Large Instance.
- hw
Revision String - Hardware revision of an Azure Large Instance
- location String
- The geo-location where the resource lives
- network
Profile NetworkProfile - Specifies the network settings for the Azure Large Instance.
- os
Profile OsProfile - Specifies the operating system settings for the Azure Large Instance.
- power
State String | AzureLarge Instance Power State Enum - Resource power state
- proximity
Placement StringGroup - Resource proximity placement group
- storage
Profile StorageProfile - Specifies the storage settings for the Azure Large Instance disks.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- azure
Large stringInstance Id - Specifies the Azure Large Instance unique ID.
- azure
Large stringInstance Name - Name of the AzureLargeInstance.
- hardware
Profile HardwareProfile - Specifies the hardware settings for the Azure Large Instance.
- hw
Revision string - Hardware revision of an Azure Large Instance
- location string
- The geo-location where the resource lives
- network
Profile NetworkProfile - Specifies the network settings for the Azure Large Instance.
- os
Profile OsProfile - Specifies the operating system settings for the Azure Large Instance.
- power
State string | AzureLarge Instance Power State Enum - Resource power state
- proximity
Placement stringGroup - Resource proximity placement group
- storage
Profile StorageProfile - Specifies the storage settings for the Azure Large Instance disks.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- azure_
large_ strinstance_ id - Specifies the Azure Large Instance unique ID.
- azure_
large_ strinstance_ name - Name of the AzureLargeInstance.
- hardware_
profile HardwareProfile Args - 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 NetworkProfile Args - Specifies the network settings for the Azure Large Instance.
- os_
profile OsProfile Args - Specifies the operating system settings for the Azure Large Instance.
- power_
state str | AzureLarge Instance Power State Enum - Resource power state
- proximity_
placement_ strgroup - Resource proximity placement group
- storage_
profile StorageProfile Args - Specifies the storage settings for the Azure Large Instance disks.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- azure
Large StringInstance Id - Specifies the Azure Large Instance unique ID.
- azure
Large StringInstance Name - Name of the AzureLargeInstance.
- hardware
Profile Property Map - Specifies the hardware settings for the Azure Large Instance.
- hw
Revision String - Hardware revision of an Azure Large Instance
- location String
- The geo-location where the resource lives
- network
Profile Property Map - Specifies the network settings for the Azure Large Instance.
- os
Profile Property Map - Specifies the operating system settings for the Azure Large Instance.
- power
State String | "starting" | "started" | "stopping" | "stopped" | "restarting" | "unknown" - Resource power state
- proximity
Placement StringGroup - Resource proximity placement group
- storage
Profile Property Map - Specifies the storage settings for the Azure Large Instance disks.
- 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
- Provisioning
State string - State of provisioning of the AzureLargeInstance
- System
Data Pulumi.Azure Native. Azure Large Instance. 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - State of provisioning of the AzureLargeInstance
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - State of provisioning of the AzureLargeInstance
- 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - State of provisioning of the AzureLargeInstance
- 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"
- 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 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - State of provisioning of the AzureLargeInstance
- 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
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
- Azure
Large Instance Hardware Type Names Enum_Cisco_UCS - Cisco_UCSHardware type of UCS from vendor Cisco
- Azure
Large Instance Hardware Type Names Enum HPE - HPEHardware type of HPE from vendor Hewlett Packard Enterprise
- Azure
Large Instance Hardware Type Names Enum 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
- "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.
- Azure
Large Instance Power State Enum Starting - startingStarting means that the Azure Large Instance resource is turning on.
- Azure
Large Instance Power State Enum Started - startedStarted means that the Azure Large Instance resource has been powered on.
- Azure
Large Instance Power State Enum Stopping - stoppingStopping means that the Azure Large Instance resource is shutting down.
- Azure
Large Instance Power State Enum Stopped - stoppedStopped means that the Azure Large Instance resource has shut down.
- Azure
Large Instance Power State Enum Restarting - restartingRestarting means that the Azure Large Instance resource is restarting.
- Azure
Large Instance Power State Enum 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.
- "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
- Azure
Large Instance Size Names Enum S72m - S72mType I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S144m - S144mType I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S72 - S72Type I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S144 - S144Type I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S192 - S192Type I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S192m - S192mType I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S192xm - S192xmType I class SKU that can't be purchased anymore
- Azure
Large Instance Size Names Enum S96 - S962 sockets, 96 CPU threads, 48 CPU cores, 768 GB total memory, 768 GB DRAM, 3.0 TB storage, Cisco_UCS hardware type
- Azure
Large Instance Size Names Enum S112 - S112No longer offered or used.
- Azure
Large Instance Size Names Enum S224 - S2244 sockets, 224 CPU threads, 112 CPU cores, 3 TB total memory, 3 TB DRAM, 6.3 TB storage, Cisco_UCS hardware type
- Azure
Large Instance Size Names Enum S224m - S224m4 sockets, 224 CPU threads, 112 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, Cisco_UCS hardware type
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum S224se - S224se4 sockets, 448 CPU threads, 6 TB total memory, SDFLEX hardware type
- Azure
Large Instance Size Names Enum S384 - S3848 sockets, 384 CPU threads, 192 CPU cores, 4 TB total memory, 4 TB DRAM, 16 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S384m - S384m8 sockets, 384 CPU threads, 192 CPU cores, 6 TB total memory, 6 TB DRAM, 18 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S384xm - S384xm8 sockets, 384 CPU threads, 192 CPU cores, 8 TB total memory, 8 TB DRAM, 22 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S384xxm - S384xxm8 sockets, 384 CPU threads, 12 TB total memory, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S448 - S4488 sockets, 448 CPU threads, 224 CPU cores, 6 TB total memory, 6 TB DRAM, 10.5 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum S448m - S448m8 sockets, 448 CPU threads, 224 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum S448se - S448se8 sockets, 448 CPU threads, 12 TB total memory, SDFLEX hardware type
- Azure
Large Instance Size Names Enum S576m - S576m12 sockets, 576 CPU threads, 288 CPU cores, 12 TB total memory, 12 TB DRAM, 28 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S576xm - S576xm12 sockets, 576 CPU threads, 288 CPU cores, 18 TB total memory, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S672 - S67212 sockets, 672 CPU threads, 336 CPU cores, 9 TB total memory, 9 TB DRAM, 14.7 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum S672m - S672m12 sockets, 672 CPU threads, 336 CPU cores, 18 TB total memory, 18 TB DRAM, 27.4 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum S768 - S768No longer offered or used.
- Azure
Large Instance Size Names Enum S768m - S768m16 sockets, 768 CPU threads, 384 CPU cores, 16 TB total memory, 16 TB DRAM, 36 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S768xm - S768xm16 sockets, 768 CPU threads, 384 CPU cores, 24 TB total memory, 24 TB DRAM, 56 TB storage, HPEMc990x hardware type
- Azure
Large Instance Size Names Enum S896 - S89616 sockets, 896 CPU threads, 448 CPU cores, 12 TB total memory, 12 TB DRAM, 18.9 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum S896m - S896m16 sockets, 896 CPU threads, 448 CPU cores, 24 TB total memory, 24 TB DRAM, 35.8 TB storage, SDFLEX hardware type
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- Azure
Large Instance Size Names Enum 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
- "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
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes.
- Name string
- The disk name.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes.
- Name string
- The disk name.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes.
- name String
- The disk name.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes.
- name string
- The disk name.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes.
- name str
- The disk name.
- disk
Size NumberGB - 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.
- Disk
Size intGB - 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 intGB - 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.
- disk
Size IntegerGB - 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.
- disk
Size numberGB - 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_ intgb - 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.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes.
- name String
- The disk name.
HardwareProfile, HardwareProfileArgs
- Azure
Large string | Pulumi.Instance Size Azure Native. Azure Large Instance. Azure Large Instance Size Names Enum - Specifies the Azure Large Instance SKU.
- Hardware
Type string | Pulumi.Azure Native. Azure Large Instance. Azure Large Instance Hardware Type Names Enum - Name of the hardware type (vendor and/or their product name)
- Azure
Large string | AzureInstance Size Large Instance Size Names Enum - Specifies the Azure Large Instance SKU.
- Hardware
Type string | AzureLarge Instance Hardware Type Names Enum - Name of the hardware type (vendor and/or their product name)
- azure
Large String | AzureInstance Size Large Instance Size Names Enum - Specifies the Azure Large Instance SKU.
- hardware
Type String | AzureLarge Instance Hardware Type Names Enum - Name of the hardware type (vendor and/or their product name)
- azure
Large string | AzureInstance Size Large Instance Size Names Enum - Specifies the Azure Large Instance SKU.
- hardware
Type string | AzureLarge Instance Hardware Type Names Enum - Name of the hardware type (vendor and/or their product name)
- azure_
large_ str | Azureinstance_ size Large Instance Size Names Enum - Specifies the Azure Large Instance SKU.
- hardware_
type str | AzureLarge Instance Hardware Type Names Enum - Name of the hardware type (vendor and/or their product name)
- azure
Large String | "S72m" | "S144m" | "S72" | "S144" | "S192" | "S192m" | "S192xm" | "S96" | "S112" | "S224" | "S224m" | "S224om" | "S224oo" | "S224oom" | "S224ooo" | "S224se" | "S384" | "S384m" | "S384xm" | "S384xxm" | "S448" | "S448m" | "S448om" | "S448oo" | "S448oom" | "S448ooo" | "S448se" | "S576m" | "S576xm" | "S672" | "S672m" | "S672om" | "S672oo" | "S672oom" | "S672ooo" | "S768" | "S768m" | "S768xm" | "S896" | "S896m" | "S896om" | "S896oo" | "S896oom" | "S896ooo" | "S960m"Instance Size - Specifies the Azure Large Instance SKU.
- hardware
Type String | "Cisco_UCS" | "HPE" | "SDFLEX" - Name of the hardware type (vendor and/or their product name)
HardwareProfileResponse, HardwareProfileResponseArgs
- Azure
Large stringInstance Size - Specifies the Azure Large Instance SKU.
- Hardware
Type string - Name of the hardware type (vendor and/or their product name)
- Azure
Large stringInstance Size - Specifies the Azure Large Instance SKU.
- Hardware
Type string - Name of the hardware type (vendor and/or their product name)
- azure
Large StringInstance Size - Specifies the Azure Large Instance SKU.
- hardware
Type String - Name of the hardware type (vendor and/or their product name)
- azure
Large stringInstance Size - Specifies the Azure Large Instance SKU.
- hardware
Type string - Name of the hardware type (vendor and/or their product name)
- azure_
large_ strinstance_ size - Specifies the Azure Large Instance SKU.
- hardware_
type str - Name of the hardware type (vendor and/or their product name)
- azure
Large StringInstance Size - Specifies the Azure Large Instance SKU.
- hardware
Type String - Name of the hardware type (vendor and/or their product name)
IpAddress, IpAddressArgs
- Ip
Address string - Specifies the IP address of the network interface.
- Ip
Address string - Specifies the IP address of the network interface.
- ip
Address String - Specifies the IP address of the network interface.
- ip
Address string - Specifies the IP address of the network interface.
- ip_
address str - Specifies the IP address of the network interface.
- ip
Address String - Specifies the IP address of the network interface.
IpAddressResponse, IpAddressResponseArgs
- Ip
Address string - Specifies the IP address of the network interface.
- Ip
Address string - Specifies the IP address of the network interface.
- ip
Address String - Specifies the IP address of the network interface.
- ip
Address string - Specifies the IP address of the network interface.
- ip_
address str - Specifies the IP address of the network interface.
- ip
Address String - Specifies the IP address of the network interface.
NetworkProfile, NetworkProfileArgs
- Circuit
Id string - Specifies the circuit id for connecting to express route.
- Network
Interfaces List<Pulumi.Azure Native. Azure Large Instance. Inputs. Ip Address> - Specifies the network interfaces for the Azure Large Instance.
- Circuit
Id string - Specifies the circuit id for connecting to express route.
- Network
Interfaces []IpAddress - Specifies the network interfaces for the Azure Large Instance.
- circuit
Id String - Specifies the circuit id for connecting to express route.
- network
Interfaces List<IpAddress> - Specifies the network interfaces for the Azure Large Instance.
- circuit
Id string - Specifies the circuit id for connecting to express route.
- network
Interfaces 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.
- circuit
Id String - Specifies the circuit id for connecting to express route.
- network
Interfaces List<Property Map> - Specifies the network interfaces for the Azure Large Instance.
NetworkProfileResponse, NetworkProfileResponseArgs
- Circuit
Id string - Specifies the circuit id for connecting to express route.
- Network
Interfaces List<Pulumi.Azure Native. Azure Large Instance. Inputs. Ip Address Response> - Specifies the network interfaces for the Azure Large Instance.
- Circuit
Id string - Specifies the circuit id for connecting to express route.
- Network
Interfaces []IpAddress Response - Specifies the network interfaces for the Azure Large Instance.
- circuit
Id String - Specifies the circuit id for connecting to express route.
- network
Interfaces List<IpAddress Response> - Specifies the network interfaces for the Azure Large Instance.
- circuit
Id string - Specifies the circuit id for connecting to express route.
- network
Interfaces IpAddress Response[] - 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 Response] - Specifies the network interfaces for the Azure Large Instance.
- circuit
Id String - Specifies the circuit id for connecting to express route.
- network
Interfaces List<Property Map> - Specifies the network interfaces for the Azure Large Instance.
OsProfile, OsProfileArgs
- Computer
Name string - Specifies the host OS name of the Azure Large Instance.
- Os
Type string - This property allows you to specify the type of the OS.
- Ssh
Public stringKey - Specifies the SSH public key used to access the operating system.
- Version string
- Specifies version of operating system.
- Computer
Name string - Specifies the host OS name of the Azure Large Instance.
- Os
Type string - This property allows you to specify the type of the OS.
- Ssh
Public stringKey - Specifies the SSH public key used to access the operating system.
- Version string
- Specifies version of operating system.
- computer
Name String - Specifies the host OS name of the Azure Large Instance.
- os
Type String - This property allows you to specify the type of the OS.
- ssh
Public StringKey - Specifies the SSH public key used to access the operating system.
- version String
- Specifies version of operating system.
- computer
Name string - Specifies the host OS name of the Azure Large Instance.
- os
Type string - This property allows you to specify the type of the OS.
- ssh
Public stringKey - 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_ strkey - Specifies the SSH public key used to access the operating system.
- version str
- Specifies version of operating system.
- computer
Name String - Specifies the host OS name of the Azure Large Instance.
- os
Type String - This property allows you to specify the type of the OS.
- ssh
Public StringKey - Specifies the SSH public key used to access the operating system.
- version String
- Specifies version of operating system.
OsProfileResponse, OsProfileResponseArgs
- Computer
Name string - Specifies the host OS name of the Azure Large Instance.
- Os
Type string - This property allows you to specify the type of the OS.
- Ssh
Public stringKey - Specifies the SSH public key used to access the operating system.
- Version string
- Specifies version of operating system.
- Computer
Name string - Specifies the host OS name of the Azure Large Instance.
- Os
Type string - This property allows you to specify the type of the OS.
- Ssh
Public stringKey - Specifies the SSH public key used to access the operating system.
- Version string
- Specifies version of operating system.
- computer
Name String - Specifies the host OS name of the Azure Large Instance.
- os
Type String - This property allows you to specify the type of the OS.
- ssh
Public StringKey - Specifies the SSH public key used to access the operating system.
- version String
- Specifies version of operating system.
- computer
Name string - Specifies the host OS name of the Azure Large Instance.
- os
Type string - This property allows you to specify the type of the OS.
- ssh
Public stringKey - 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_ strkey - Specifies the SSH public key used to access the operating system.
- version str
- Specifies version of operating system.
- computer
Name String - Specifies the host OS name of the Azure Large Instance.
- os
Type String - This property allows you to specify the type of the OS.
- ssh
Public StringKey - Specifies the SSH public key used to access the operating system.
- version String
- Specifies version of operating system.
StorageProfile, StorageProfileArgs
- Nfs
Ip stringAddress - IP Address to connect to storage.
- Os
Disks List<Pulumi.Azure Native. Azure Large Instance. Inputs. Disk> - Specifies information about the operating system disk used by Azure Large Instance.
- Nfs
Ip stringAddress - IP Address to connect to storage.
- Os
Disks []Disk - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip StringAddress - IP Address to connect to storage.
- os
Disks List<Disk> - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip stringAddress - IP Address to connect to storage.
- os
Disks Disk[] - Specifies information about the operating system disk used by Azure Large Instance.
- nfs_
ip_ straddress - IP Address to connect to storage.
- os_
disks Sequence[Disk] - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip StringAddress - IP Address to connect to storage.
- os
Disks List<Property Map> - Specifies information about the operating system disk used by Azure Large Instance.
StorageProfileResponse, StorageProfileResponseArgs
- Nfs
Ip stringAddress - IP Address to connect to storage.
- Os
Disks List<Pulumi.Azure Native. Azure Large Instance. Inputs. Disk Response> - Specifies information about the operating system disk used by Azure Large Instance.
- Nfs
Ip stringAddress - IP Address to connect to storage.
- Os
Disks []DiskResponse - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip StringAddress - IP Address to connect to storage.
- os
Disks List<DiskResponse> - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip stringAddress - IP Address to connect to storage.
- os
Disks DiskResponse[] - Specifies information about the operating system disk used by Azure Large Instance.
- nfs_
ip_ straddress - IP Address to connect to storage.
- os_
disks Sequence[DiskResponse] - Specifies information about the operating system disk used by Azure Large Instance.
- nfs
Ip StringAddress - IP Address to connect to storage.
- os
Disks List<Property Map> - Specifies information about the operating system disk used by Azure Large Instance.
SystemDataResponse, SystemDataResponseArgs
- 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.
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