azure-native.scvmm.VirtualMachine
Explore with Pulumi AI
The VirtualMachines resource definition. Azure REST API version: 2022-05-21-preview. Prior API version in Azure Native 1.x: 2020-06-05-preview.
Other available API versions: 2023-04-01-preview.
Example Usage
CreateVirtualMachine
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.ScVmm.VirtualMachine("virtualMachine", new()
    {
        CloudId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud",
        ExtendedLocation = new AzureNative.ScVmm.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
            Type = "customLocation",
        },
        HardwareProfile = new AzureNative.ScVmm.Inputs.HardwareProfileArgs
        {
            CpuCount = 4,
            MemoryMB = 4096,
        },
        Location = "East US",
        ResourceGroupName = "testrg",
        TemplateId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate",
        VirtualMachineName = "DemoVM",
        VmmServerId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer",
    });
});
package main
import (
	scvmm "github.com/pulumi/pulumi-azure-native-sdk/scvmm/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := scvmm.NewVirtualMachine(ctx, "virtualMachine", &scvmm.VirtualMachineArgs{
			CloudId: pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud"),
			ExtendedLocation: &scvmm.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso"),
				Type: pulumi.String("customLocation"),
			},
			HardwareProfile: &scvmm.HardwareProfileArgs{
				CpuCount: pulumi.Int(4),
				MemoryMB: pulumi.Int(4096),
			},
			Location:           pulumi.String("East US"),
			ResourceGroupName:  pulumi.String("testrg"),
			TemplateId:         pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate"),
			VirtualMachineName: pulumi.String("DemoVM"),
			VmmServerId:        pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer"),
		})
		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.scvmm.VirtualMachine;
import com.pulumi.azurenative.scvmm.VirtualMachineArgs;
import com.pulumi.azurenative.scvmm.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.scvmm.inputs.HardwareProfileArgs;
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 virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
            .cloudId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud")
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso")
                .type("customLocation")
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .cpuCount(4)
                .memoryMB(4096)
                .build())
            .location("East US")
            .resourceGroupName("testrg")
            .templateId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate")
            .virtualMachineName("DemoVM")
            .vmmServerId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.scvmm.VirtualMachine("virtualMachine", {
    cloudId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud",
    extendedLocation: {
        name: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
        type: "customLocation",
    },
    hardwareProfile: {
        cpuCount: 4,
        memoryMB: 4096,
    },
    location: "East US",
    resourceGroupName: "testrg",
    templateId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate",
    virtualMachineName: "DemoVM",
    vmmServerId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.scvmm.VirtualMachine("virtualMachine",
    cloud_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud",
    extended_location={
        "name": "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
        "type": "customLocation",
    },
    hardware_profile={
        "cpu_count": 4,
        "memory_mb": 4096,
    },
    location="East US",
    resource_group_name="testrg",
    template_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate",
    virtual_machine_name="DemoVM",
    vmm_server_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer")
resources:
  virtualMachine:
    type: azure-native:scvmm:VirtualMachine
    properties:
      cloudId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/Clouds/HRCloud
      extendedLocation:
        name: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso
        type: customLocation
      hardwareProfile:
        cpuCount: 4
        memoryMB: 4096
      location: East US
      resourceGroupName: testrg
      templateId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate
      virtualMachineName: DemoVM
      vmmServerId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer
Create VirtualMachine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualMachine(name: string, args: VirtualMachineArgs, opts?: CustomResourceOptions);@overload
def VirtualMachine(resource_name: str,
                   args: VirtualMachineArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def VirtualMachine(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   extended_location: Optional[ExtendedLocationArgs] = None,
                   resource_group_name: Optional[str] = None,
                   location: Optional[str] = None,
                   network_profile: Optional[NetworkProfileArgs] = None,
                   checkpoints: Optional[Sequence[CheckpointArgs]] = None,
                   generation: Optional[int] = None,
                   guest_agent_profile: Optional[GuestAgentProfileArgs] = None,
                   hardware_profile: Optional[HardwareProfileArgs] = None,
                   identity: Optional[IdentityArgs] = None,
                   inventory_item_id: Optional[str] = None,
                   availability_sets: Optional[Sequence[VirtualMachinePropertiesAvailabilitySetsArgs]] = None,
                   cloud_id: Optional[str] = None,
                   os_profile: Optional[OsProfileArgs] = None,
                   checkpoint_type: Optional[str] = None,
                   storage_profile: Optional[StorageProfileArgs] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   template_id: Optional[str] = None,
                   uuid: Optional[str] = None,
                   virtual_machine_name: Optional[str] = None,
                   vm_name: Optional[str] = None,
                   vmm_server_id: Optional[str] = None)func NewVirtualMachine(ctx *Context, name string, args VirtualMachineArgs, opts ...ResourceOption) (*VirtualMachine, error)public VirtualMachine(string name, VirtualMachineArgs args, CustomResourceOptions? opts = null)
public VirtualMachine(String name, VirtualMachineArgs args)
public VirtualMachine(String name, VirtualMachineArgs args, CustomResourceOptions options)
type: azure-native:scvmm:VirtualMachine
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 VirtualMachineArgs
- 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 VirtualMachineArgs
- 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 VirtualMachineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualMachineArgs
- 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 examplevirtualMachineResourceResourceFromScvmm = new AzureNative.ScVmm.VirtualMachine("examplevirtualMachineResourceResourceFromScvmm", new()
{
    ExtendedLocation = new AzureNative.ScVmm.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    ResourceGroupName = "string",
    Location = "string",
    NetworkProfile = new AzureNative.ScVmm.Inputs.NetworkProfileArgs
    {
        NetworkInterfaces = new[]
        {
            new AzureNative.ScVmm.Inputs.NetworkInterfacesArgs
            {
                Ipv4AddressType = "string",
                Ipv6AddressType = "string",
                MacAddress = "string",
                MacAddressType = "string",
                Name = "string",
                NicId = "string",
                VirtualNetworkId = "string",
            },
        },
    },
    Checkpoints = new[]
    {
        new AzureNative.ScVmm.Inputs.CheckpointArgs
        {
            CheckpointID = "string",
            Description = "string",
            Name = "string",
            ParentCheckpointID = "string",
        },
    },
    Generation = 0,
    GuestAgentProfile = new AzureNative.ScVmm.Inputs.GuestAgentProfileArgs
    {
        ClientPublicKey = "string",
    },
    HardwareProfile = new AzureNative.ScVmm.Inputs.HardwareProfileArgs
    {
        CpuCount = 0,
        DynamicMemoryEnabled = "string",
        DynamicMemoryMaxMB = 0,
        DynamicMemoryMinMB = 0,
        IsHighlyAvailable = "string",
        LimitCpuForMigration = "string",
        MemoryMB = 0,
    },
    Identity = new AzureNative.ScVmm.Inputs.IdentityArgs
    {
        Type = "string",
    },
    InventoryItemId = "string",
    AvailabilitySets = new[]
    {
        new AzureNative.ScVmm.Inputs.VirtualMachinePropertiesAvailabilitySetsArgs
        {
            Id = "string",
            Name = "string",
        },
    },
    CloudId = "string",
    OsProfile = new AzureNative.ScVmm.Inputs.OsProfileArgs
    {
        AdminPassword = "string",
        ComputerName = "string",
    },
    CheckpointType = "string",
    StorageProfile = new AzureNative.ScVmm.Inputs.StorageProfileArgs
    {
        Disks = new[]
        {
            new AzureNative.ScVmm.Inputs.VirtualDiskArgs
            {
                Bus = 0,
                BusType = "string",
                CreateDiffDisk = "string",
                DiskId = "string",
                DiskSizeGB = 0,
                Lun = 0,
                Name = "string",
                StorageQoSPolicy = new AzureNative.ScVmm.Inputs.StorageQoSPolicyDetailsArgs
                {
                    Id = "string",
                    Name = "string",
                },
                TemplateDiskId = "string",
                VhdType = "string",
            },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    TemplateId = "string",
    Uuid = "string",
    VirtualMachineName = "string",
    VmName = "string",
    VmmServerId = "string",
});
example, err := scvmm.NewVirtualMachine(ctx, "examplevirtualMachineResourceResourceFromScvmm", &scvmm.VirtualMachineArgs{
	ExtendedLocation: &scvmm.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	NetworkProfile: &scvmm.NetworkProfileArgs{
		NetworkInterfaces: scvmm.NetworkInterfacesArray{
			&scvmm.NetworkInterfacesArgs{
				Ipv4AddressType:  pulumi.String("string"),
				Ipv6AddressType:  pulumi.String("string"),
				MacAddress:       pulumi.String("string"),
				MacAddressType:   pulumi.String("string"),
				Name:             pulumi.String("string"),
				NicId:            pulumi.String("string"),
				VirtualNetworkId: pulumi.String("string"),
			},
		},
	},
	Checkpoints: scvmm.CheckpointArray{
		&scvmm.CheckpointArgs{
			CheckpointID:       pulumi.String("string"),
			Description:        pulumi.String("string"),
			Name:               pulumi.String("string"),
			ParentCheckpointID: pulumi.String("string"),
		},
	},
	Generation: pulumi.Int(0),
	GuestAgentProfile: &scvmm.GuestAgentProfileArgs{
		ClientPublicKey: pulumi.String("string"),
	},
	HardwareProfile: &scvmm.HardwareProfileArgs{
		CpuCount:             pulumi.Int(0),
		DynamicMemoryEnabled: pulumi.String("string"),
		DynamicMemoryMaxMB:   pulumi.Int(0),
		DynamicMemoryMinMB:   pulumi.Int(0),
		IsHighlyAvailable:    pulumi.String("string"),
		LimitCpuForMigration: pulumi.String("string"),
		MemoryMB:             pulumi.Int(0),
	},
	Identity: &scvmm.IdentityArgs{
		Type: pulumi.String("string"),
	},
	InventoryItemId: pulumi.String("string"),
	AvailabilitySets: scvmm.VirtualMachinePropertiesAvailabilitySetsArray{
		&scvmm.VirtualMachinePropertiesAvailabilitySetsArgs{
			Id:   pulumi.String("string"),
			Name: pulumi.String("string"),
		},
	},
	CloudId: pulumi.String("string"),
	OsProfile: &scvmm.OsProfileArgs{
		AdminPassword: pulumi.String("string"),
		ComputerName:  pulumi.String("string"),
	},
	CheckpointType: pulumi.String("string"),
	StorageProfile: &scvmm.StorageProfileArgs{
		Disks: scvmm.VirtualDiskArray{
			&scvmm.VirtualDiskArgs{
				Bus:            pulumi.Int(0),
				BusType:        pulumi.String("string"),
				CreateDiffDisk: pulumi.String("string"),
				DiskId:         pulumi.String("string"),
				DiskSizeGB:     pulumi.Int(0),
				Lun:            pulumi.Int(0),
				Name:           pulumi.String("string"),
				StorageQoSPolicy: &scvmm.StorageQoSPolicyDetailsArgs{
					Id:   pulumi.String("string"),
					Name: pulumi.String("string"),
				},
				TemplateDiskId: pulumi.String("string"),
				VhdType:        pulumi.String("string"),
			},
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TemplateId:         pulumi.String("string"),
	Uuid:               pulumi.String("string"),
	VirtualMachineName: pulumi.String("string"),
	VmName:             pulumi.String("string"),
	VmmServerId:        pulumi.String("string"),
})
var examplevirtualMachineResourceResourceFromScvmm = new VirtualMachine("examplevirtualMachineResourceResourceFromScvmm", VirtualMachineArgs.builder()
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .resourceGroupName("string")
    .location("string")
    .networkProfile(NetworkProfileArgs.builder()
        .networkInterfaces(NetworkInterfacesArgs.builder()
            .ipv4AddressType("string")
            .ipv6AddressType("string")
            .macAddress("string")
            .macAddressType("string")
            .name("string")
            .nicId("string")
            .virtualNetworkId("string")
            .build())
        .build())
    .checkpoints(CheckpointArgs.builder()
        .checkpointID("string")
        .description("string")
        .name("string")
        .parentCheckpointID("string")
        .build())
    .generation(0)
    .guestAgentProfile(GuestAgentProfileArgs.builder()
        .clientPublicKey("string")
        .build())
    .hardwareProfile(HardwareProfileArgs.builder()
        .cpuCount(0)
        .dynamicMemoryEnabled("string")
        .dynamicMemoryMaxMB(0)
        .dynamicMemoryMinMB(0)
        .isHighlyAvailable("string")
        .limitCpuForMigration("string")
        .memoryMB(0)
        .build())
    .identity(IdentityArgs.builder()
        .type("string")
        .build())
    .inventoryItemId("string")
    .availabilitySets(VirtualMachinePropertiesAvailabilitySetsArgs.builder()
        .id("string")
        .name("string")
        .build())
    .cloudId("string")
    .osProfile(OsProfileArgs.builder()
        .adminPassword("string")
        .computerName("string")
        .build())
    .checkpointType("string")
    .storageProfile(StorageProfileArgs.builder()
        .disks(VirtualDiskArgs.builder()
            .bus(0)
            .busType("string")
            .createDiffDisk("string")
            .diskId("string")
            .diskSizeGB(0)
            .lun(0)
            .name("string")
            .storageQoSPolicy(StorageQoSPolicyDetailsArgs.builder()
                .id("string")
                .name("string")
                .build())
            .templateDiskId("string")
            .vhdType("string")
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .templateId("string")
    .uuid("string")
    .virtualMachineName("string")
    .vmName("string")
    .vmmServerId("string")
    .build());
examplevirtual_machine_resource_resource_from_scvmm = azure_native.scvmm.VirtualMachine("examplevirtualMachineResourceResourceFromScvmm",
    extended_location={
        "name": "string",
        "type": "string",
    },
    resource_group_name="string",
    location="string",
    network_profile={
        "network_interfaces": [{
            "ipv4_address_type": "string",
            "ipv6_address_type": "string",
            "mac_address": "string",
            "mac_address_type": "string",
            "name": "string",
            "nic_id": "string",
            "virtual_network_id": "string",
        }],
    },
    checkpoints=[{
        "checkpoint_id": "string",
        "description": "string",
        "name": "string",
        "parent_checkpoint_id": "string",
    }],
    generation=0,
    guest_agent_profile={
        "client_public_key": "string",
    },
    hardware_profile={
        "cpu_count": 0,
        "dynamic_memory_enabled": "string",
        "dynamic_memory_max_mb": 0,
        "dynamic_memory_min_mb": 0,
        "is_highly_available": "string",
        "limit_cpu_for_migration": "string",
        "memory_mb": 0,
    },
    identity={
        "type": "string",
    },
    inventory_item_id="string",
    availability_sets=[{
        "id": "string",
        "name": "string",
    }],
    cloud_id="string",
    os_profile={
        "admin_password": "string",
        "computer_name": "string",
    },
    checkpoint_type="string",
    storage_profile={
        "disks": [{
            "bus": 0,
            "bus_type": "string",
            "create_diff_disk": "string",
            "disk_id": "string",
            "disk_size_gb": 0,
            "lun": 0,
            "name": "string",
            "storage_qo_s_policy": {
                "id": "string",
                "name": "string",
            },
            "template_disk_id": "string",
            "vhd_type": "string",
        }],
    },
    tags={
        "string": "string",
    },
    template_id="string",
    uuid="string",
    virtual_machine_name="string",
    vm_name="string",
    vmm_server_id="string")
const examplevirtualMachineResourceResourceFromScvmm = new azure_native.scvmm.VirtualMachine("examplevirtualMachineResourceResourceFromScvmm", {
    extendedLocation: {
        name: "string",
        type: "string",
    },
    resourceGroupName: "string",
    location: "string",
    networkProfile: {
        networkInterfaces: [{
            ipv4AddressType: "string",
            ipv6AddressType: "string",
            macAddress: "string",
            macAddressType: "string",
            name: "string",
            nicId: "string",
            virtualNetworkId: "string",
        }],
    },
    checkpoints: [{
        checkpointID: "string",
        description: "string",
        name: "string",
        parentCheckpointID: "string",
    }],
    generation: 0,
    guestAgentProfile: {
        clientPublicKey: "string",
    },
    hardwareProfile: {
        cpuCount: 0,
        dynamicMemoryEnabled: "string",
        dynamicMemoryMaxMB: 0,
        dynamicMemoryMinMB: 0,
        isHighlyAvailable: "string",
        limitCpuForMigration: "string",
        memoryMB: 0,
    },
    identity: {
        type: "string",
    },
    inventoryItemId: "string",
    availabilitySets: [{
        id: "string",
        name: "string",
    }],
    cloudId: "string",
    osProfile: {
        adminPassword: "string",
        computerName: "string",
    },
    checkpointType: "string",
    storageProfile: {
        disks: [{
            bus: 0,
            busType: "string",
            createDiffDisk: "string",
            diskId: "string",
            diskSizeGB: 0,
            lun: 0,
            name: "string",
            storageQoSPolicy: {
                id: "string",
                name: "string",
            },
            templateDiskId: "string",
            vhdType: "string",
        }],
    },
    tags: {
        string: "string",
    },
    templateId: "string",
    uuid: "string",
    virtualMachineName: "string",
    vmName: "string",
    vmmServerId: "string",
});
type: azure-native:scvmm:VirtualMachine
properties:
    availabilitySets:
        - id: string
          name: string
    checkpointType: string
    checkpoints:
        - checkpointID: string
          description: string
          name: string
          parentCheckpointID: string
    cloudId: string
    extendedLocation:
        name: string
        type: string
    generation: 0
    guestAgentProfile:
        clientPublicKey: string
    hardwareProfile:
        cpuCount: 0
        dynamicMemoryEnabled: string
        dynamicMemoryMaxMB: 0
        dynamicMemoryMinMB: 0
        isHighlyAvailable: string
        limitCpuForMigration: string
        memoryMB: 0
    identity:
        type: string
    inventoryItemId: string
    location: string
    networkProfile:
        networkInterfaces:
            - ipv4AddressType: string
              ipv6AddressType: string
              macAddress: string
              macAddressType: string
              name: string
              nicId: string
              virtualNetworkId: string
    osProfile:
        adminPassword: string
        computerName: string
    resourceGroupName: string
    storageProfile:
        disks:
            - bus: 0
              busType: string
              createDiffDisk: string
              diskId: string
              diskSizeGB: 0
              lun: 0
              name: string
              storageQoSPolicy:
                id: string
                name: string
              templateDiskId: string
              vhdType: string
    tags:
        string: string
    templateId: string
    uuid: string
    virtualMachineName: string
    vmName: string
    vmmServerId: string
VirtualMachine Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VirtualMachine resource accepts the following input properties:
- ExtendedLocation Pulumi.Azure Native. Sc Vmm. Inputs. Extended Location 
- The extended location.
- ResourceGroup stringName 
- The name of the resource group.
- AvailabilitySets List<Pulumi.Azure Native. Sc Vmm. Inputs. Virtual Machine Properties Availability Sets> 
- Availability Sets in vm.
- CheckpointType string
- Type of checkpoint supported for the vm.
- Checkpoints
List<Pulumi.Azure Native. Sc Vmm. Inputs. Checkpoint> 
- Checkpoints in the vm.
- CloudId string
- ARM Id of the cloud resource to use for deploying the vm.
- Generation int
- Gets or sets the generation for the vm.
- GuestAgent Pulumi.Profile Azure Native. Sc Vmm. Inputs. Guest Agent Profile 
- Guest agent status properties.
- HardwareProfile Pulumi.Azure Native. Sc Vmm. Inputs. Hardware Profile 
- Hardware properties.
- Identity
Pulumi.Azure Native. Sc Vmm. Inputs. Identity 
- The identity of the resource.
- InventoryItem stringId 
- Gets or sets the inventory Item ID for the resource.
- Location string
- Gets or sets the location.
- NetworkProfile Pulumi.Azure Native. Sc Vmm. Inputs. Network Profile 
- Network properties.
- OsProfile Pulumi.Azure Native. Sc Vmm. Inputs. Os Profile 
- OS properties.
- StorageProfile Pulumi.Azure Native. Sc Vmm. Inputs. Storage Profile 
- Storage properties.
- Dictionary<string, string>
- Resource tags
- TemplateId string
- ARM Id of the template resource to use for deploying the vm.
- Uuid string
- Unique ID of the virtual machine.
- VirtualMachine stringName 
- Name of the VirtualMachine.
- VmName string
- VMName is the name of VM on the SCVMM server.
- VmmServer stringId 
- ARM Id of the vmmServer resource in which this resource resides.
- ExtendedLocation ExtendedLocation Args 
- The extended location.
- ResourceGroup stringName 
- The name of the resource group.
- AvailabilitySets []VirtualMachine Properties Availability Sets Args 
- Availability Sets in vm.
- CheckpointType string
- Type of checkpoint supported for the vm.
- Checkpoints
[]CheckpointArgs 
- Checkpoints in the vm.
- CloudId string
- ARM Id of the cloud resource to use for deploying the vm.
- Generation int
- Gets or sets the generation for the vm.
- GuestAgent GuestProfile Agent Profile Args 
- Guest agent status properties.
- HardwareProfile HardwareProfile Args 
- Hardware properties.
- Identity
IdentityArgs 
- The identity of the resource.
- InventoryItem stringId 
- Gets or sets the inventory Item ID for the resource.
- Location string
- Gets or sets the location.
- NetworkProfile NetworkProfile Args 
- Network properties.
- OsProfile OsProfile Args 
- OS properties.
- StorageProfile StorageProfile Args 
- Storage properties.
- map[string]string
- Resource tags
- TemplateId string
- ARM Id of the template resource to use for deploying the vm.
- Uuid string
- Unique ID of the virtual machine.
- VirtualMachine stringName 
- Name of the VirtualMachine.
- VmName string
- VMName is the name of VM on the SCVMM server.
- VmmServer stringId 
- ARM Id of the vmmServer resource in which this resource resides.
- extendedLocation ExtendedLocation 
- The extended location.
- resourceGroup StringName 
- The name of the resource group.
- availabilitySets List<VirtualMachine Properties Availability Sets> 
- Availability Sets in vm.
- checkpointType String
- Type of checkpoint supported for the vm.
- checkpoints List<Checkpoint>
- Checkpoints in the vm.
- cloudId String
- ARM Id of the cloud resource to use for deploying the vm.
- generation Integer
- Gets or sets the generation for the vm.
- guestAgent GuestProfile Agent Profile 
- Guest agent status properties.
- hardwareProfile HardwareProfile 
- Hardware properties.
- identity Identity
- The identity of the resource.
- inventoryItem StringId 
- Gets or sets the inventory Item ID for the resource.
- location String
- Gets or sets the location.
- networkProfile NetworkProfile 
- Network properties.
- osProfile OsProfile 
- OS properties.
- storageProfile StorageProfile 
- Storage properties.
- Map<String,String>
- Resource tags
- templateId String
- ARM Id of the template resource to use for deploying the vm.
- uuid String
- Unique ID of the virtual machine.
- virtualMachine StringName 
- Name of the VirtualMachine.
- vmName String
- VMName is the name of VM on the SCVMM server.
- vmmServer StringId 
- ARM Id of the vmmServer resource in which this resource resides.
- extendedLocation ExtendedLocation 
- The extended location.
- resourceGroup stringName 
- The name of the resource group.
- availabilitySets VirtualMachine Properties Availability Sets[] 
- Availability Sets in vm.
- checkpointType string
- Type of checkpoint supported for the vm.
- checkpoints Checkpoint[]
- Checkpoints in the vm.
- cloudId string
- ARM Id of the cloud resource to use for deploying the vm.
- generation number
- Gets or sets the generation for the vm.
- guestAgent GuestProfile Agent Profile 
- Guest agent status properties.
- hardwareProfile HardwareProfile 
- Hardware properties.
- identity Identity
- The identity of the resource.
- inventoryItem stringId 
- Gets or sets the inventory Item ID for the resource.
- location string
- Gets or sets the location.
- networkProfile NetworkProfile 
- Network properties.
- osProfile OsProfile 
- OS properties.
- storageProfile StorageProfile 
- Storage properties.
- {[key: string]: string}
- Resource tags
- templateId string
- ARM Id of the template resource to use for deploying the vm.
- uuid string
- Unique ID of the virtual machine.
- virtualMachine stringName 
- Name of the VirtualMachine.
- vmName string
- VMName is the name of VM on the SCVMM server.
- vmmServer stringId 
- ARM Id of the vmmServer resource in which this resource resides.
- extended_location ExtendedLocation Args 
- The extended location.
- resource_group_ strname 
- The name of the resource group.
- availability_sets Sequence[VirtualMachine Properties Availability Sets Args] 
- Availability Sets in vm.
- checkpoint_type str
- Type of checkpoint supported for the vm.
- checkpoints
Sequence[CheckpointArgs] 
- Checkpoints in the vm.
- cloud_id str
- ARM Id of the cloud resource to use for deploying the vm.
- generation int
- Gets or sets the generation for the vm.
- guest_agent_ Guestprofile Agent Profile Args 
- Guest agent status properties.
- hardware_profile HardwareProfile Args 
- Hardware properties.
- identity
IdentityArgs 
- The identity of the resource.
- inventory_item_ strid 
- Gets or sets the inventory Item ID for the resource.
- location str
- Gets or sets the location.
- network_profile NetworkProfile Args 
- Network properties.
- os_profile OsProfile Args 
- OS properties.
- storage_profile StorageProfile Args 
- Storage properties.
- Mapping[str, str]
- Resource tags
- template_id str
- ARM Id of the template resource to use for deploying the vm.
- uuid str
- Unique ID of the virtual machine.
- virtual_machine_ strname 
- Name of the VirtualMachine.
- vm_name str
- VMName is the name of VM on the SCVMM server.
- vmm_server_ strid 
- ARM Id of the vmmServer resource in which this resource resides.
- extendedLocation Property Map
- The extended location.
- resourceGroup StringName 
- The name of the resource group.
- availabilitySets List<Property Map>
- Availability Sets in vm.
- checkpointType String
- Type of checkpoint supported for the vm.
- checkpoints List<Property Map>
- Checkpoints in the vm.
- cloudId String
- ARM Id of the cloud resource to use for deploying the vm.
- generation Number
- Gets or sets the generation for the vm.
- guestAgent Property MapProfile 
- Guest agent status properties.
- hardwareProfile Property Map
- Hardware properties.
- identity Property Map
- The identity of the resource.
- inventoryItem StringId 
- Gets or sets the inventory Item ID for the resource.
- location String
- Gets or sets the location.
- networkProfile Property Map
- Network properties.
- osProfile Property Map
- OS properties.
- storageProfile Property Map
- Storage properties.
- Map<String>
- Resource tags
- templateId String
- ARM Id of the template resource to use for deploying the vm.
- uuid String
- Unique ID of the virtual machine.
- virtualMachine StringName 
- Name of the VirtualMachine.
- vmName String
- VMName is the name of VM on the SCVMM server.
- vmmServer StringId 
- ARM Id of the vmmServer resource in which this resource resides.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualMachine resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LastRestored Pulumi.VMCheckpoint Azure Native. Sc Vmm. Outputs. Checkpoint Response 
- Last restored checkpoint in the vm.
- Name string
- Resource Name
- PowerState string
- Gets the power state of the virtual machine.
- ProvisioningState string
- Gets or sets the provisioning state.
- SystemData Pulumi.Azure Native. Sc Vmm. Outputs. System Data Response 
- The system data.
- Type string
- Resource Type
- Id string
- The provider-assigned unique ID for this managed resource.
- LastRestored CheckpointVMCheckpoint Response 
- Last restored checkpoint in the vm.
- Name string
- Resource Name
- PowerState string
- Gets the power state of the virtual machine.
- ProvisioningState string
- Gets or sets the provisioning state.
- SystemData SystemData Response 
- The system data.
- Type string
- Resource Type
- id String
- The provider-assigned unique ID for this managed resource.
- lastRestored CheckpointVMCheckpoint Response 
- Last restored checkpoint in the vm.
- name String
- Resource Name
- powerState String
- Gets the power state of the virtual machine.
- provisioningState String
- Gets or sets the provisioning state.
- systemData SystemData Response 
- The system data.
- type String
- Resource Type
- id string
- The provider-assigned unique ID for this managed resource.
- lastRestored CheckpointVMCheckpoint Response 
- Last restored checkpoint in the vm.
- name string
- Resource Name
- powerState string
- Gets the power state of the virtual machine.
- provisioningState string
- Gets or sets the provisioning state.
- systemData SystemData Response 
- The system data.
- type string
- Resource Type
- id str
- The provider-assigned unique ID for this managed resource.
- last_restored_ Checkpointvm_ checkpoint Response 
- Last restored checkpoint in the vm.
- name str
- Resource Name
- power_state str
- Gets the power state of the virtual machine.
- provisioning_state str
- Gets or sets the provisioning state.
- system_data SystemData Response 
- The system data.
- type str
- Resource Type
- id String
- The provider-assigned unique ID for this managed resource.
- lastRestored Property MapVMCheckpoint 
- Last restored checkpoint in the vm.
- name String
- Resource Name
- powerState String
- Gets the power state of the virtual machine.
- provisioningState String
- Gets or sets the provisioning state.
- systemData Property Map
- The system data.
- type String
- Resource Type
Supporting Types
AllocationMethod, AllocationMethodArgs    
- Dynamic
- Dynamic
- Static
- Static
- AllocationMethod Dynamic 
- Dynamic
- AllocationMethod Static 
- Static
- Dynamic
- Dynamic
- Static
- Static
- Dynamic
- Dynamic
- Static
- Static
- DYNAMIC
- Dynamic
- STATIC
- Static
- "Dynamic"
- Dynamic
- "Static"
- Static
Checkpoint, CheckpointArgs  
- CheckpointID string
- Gets ID of the checkpoint.
- Description string
- Gets description of the checkpoint.
- Name string
- Gets name of the checkpoint.
- ParentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- CheckpointID string
- Gets ID of the checkpoint.
- Description string
- Gets description of the checkpoint.
- Name string
- Gets name of the checkpoint.
- ParentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- checkpointID String
- Gets ID of the checkpoint.
- description String
- Gets description of the checkpoint.
- name String
- Gets name of the checkpoint.
- parentCheckpoint StringID 
- Gets ID of parent of the checkpoint.
- checkpointID string
- Gets ID of the checkpoint.
- description string
- Gets description of the checkpoint.
- name string
- Gets name of the checkpoint.
- parentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- checkpoint_id str
- Gets ID of the checkpoint.
- description str
- Gets description of the checkpoint.
- name str
- Gets name of the checkpoint.
- parent_checkpoint_ strid 
- Gets ID of parent of the checkpoint.
- checkpointID String
- Gets ID of the checkpoint.
- description String
- Gets description of the checkpoint.
- name String
- Gets name of the checkpoint.
- parentCheckpoint StringID 
- Gets ID of parent of the checkpoint.
CheckpointResponse, CheckpointResponseArgs    
- CheckpointID string
- Gets ID of the checkpoint.
- Description string
- Gets description of the checkpoint.
- Name string
- Gets name of the checkpoint.
- ParentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- CheckpointID string
- Gets ID of the checkpoint.
- Description string
- Gets description of the checkpoint.
- Name string
- Gets name of the checkpoint.
- ParentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- checkpointID String
- Gets ID of the checkpoint.
- description String
- Gets description of the checkpoint.
- name String
- Gets name of the checkpoint.
- parentCheckpoint StringID 
- Gets ID of parent of the checkpoint.
- checkpointID string
- Gets ID of the checkpoint.
- description string
- Gets description of the checkpoint.
- name string
- Gets name of the checkpoint.
- parentCheckpoint stringID 
- Gets ID of parent of the checkpoint.
- checkpoint_id str
- Gets ID of the checkpoint.
- description str
- Gets description of the checkpoint.
- name str
- Gets name of the checkpoint.
- parent_checkpoint_ strid 
- Gets ID of parent of the checkpoint.
- checkpointID String
- Gets ID of the checkpoint.
- description String
- Gets description of the checkpoint.
- name String
- Gets name of the checkpoint.
- parentCheckpoint StringID 
- Gets ID of parent of the checkpoint.
CreateDiffDisk, CreateDiffDiskArgs      
- @False
- false
- @True
- true
- CreateDiff Disk False 
- false
- CreateDiff Disk True 
- true
- False_
- false
- True_
- true
- False
- false
- True
- true
- FALSE
- false
- TRUE
- true
- "false"
- false
- "true"
- true
DynamicMemoryEnabled, DynamicMemoryEnabledArgs      
- @False
- false
- @True
- true
- DynamicMemory Enabled False 
- false
- DynamicMemory Enabled True 
- true
- False_
- false
- True_
- true
- False
- false
- True
- true
- FALSE
- false
- TRUE
- true
- "false"
- false
- "true"
- true
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs        
ErrorDetailResponse, ErrorDetailResponseArgs      
- AdditionalInfo List<Pulumi.Azure Native. Sc Vmm. Inputs. Error Additional Info Response> 
- The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.Azure Native. Sc Vmm. Inputs. Error Detail Response> 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- AdditionalInfo []ErrorAdditional Info Response 
- The error additional info.
- Code string
- The error code.
- Details
[]ErrorDetail Response 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- additionalInfo List<ErrorAdditional Info Response> 
- The error additional info.
- code String
- The error code.
- details
List<ErrorDetail Response> 
- The error details.
- message String
- The error message.
- target String
- The error target.
- additionalInfo ErrorAdditional Info Response[] 
- The error additional info.
- code string
- The error code.
- details
ErrorDetail Response[] 
- The error details.
- message string
- The error message.
- target string
- The error target.
- additional_info Sequence[ErrorAdditional Info Response] 
- The error additional info.
- code str
- The error code.
- details
Sequence[ErrorDetail Response] 
- The error details.
- message str
- The error message.
- target str
- The error target.
- additionalInfo List<Property Map>
- The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ExtendedLocation, ExtendedLocationArgs    
ExtendedLocationResponse, ExtendedLocationResponseArgs      
GuestAgentProfile, GuestAgentProfileArgs      
- ClientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- ClientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- clientPublic StringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- clientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- client_public_ strkey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- clientPublic StringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
GuestAgentProfileResponse, GuestAgentProfileResponseArgs        
- AgentVersion string
- The hybrid machine agent full version.
- ErrorDetails List<Pulumi.Azure Native. Sc Vmm. Inputs. Error Detail Response> 
- Details about the error state.
- LastStatus stringChange 
- The time of the last status change.
- Status string
- The status of the hybrid machine agent.
- VmUuid string
- Specifies the VM's unique SMBIOS ID.
- ClientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- AgentVersion string
- The hybrid machine agent full version.
- ErrorDetails []ErrorDetail Response 
- Details about the error state.
- LastStatus stringChange 
- The time of the last status change.
- Status string
- The status of the hybrid machine agent.
- VmUuid string
- Specifies the VM's unique SMBIOS ID.
- ClientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- agentVersion String
- The hybrid machine agent full version.
- errorDetails List<ErrorDetail Response> 
- Details about the error state.
- lastStatus StringChange 
- The time of the last status change.
- status String
- The status of the hybrid machine agent.
- vmUuid String
- Specifies the VM's unique SMBIOS ID.
- clientPublic StringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- agentVersion string
- The hybrid machine agent full version.
- errorDetails ErrorDetail Response[] 
- Details about the error state.
- lastStatus stringChange 
- The time of the last status change.
- status string
- The status of the hybrid machine agent.
- vmUuid string
- Specifies the VM's unique SMBIOS ID.
- clientPublic stringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- agent_version str
- The hybrid machine agent full version.
- error_details Sequence[ErrorDetail Response] 
- Details about the error state.
- last_status_ strchange 
- The time of the last status change.
- status str
- The status of the hybrid machine agent.
- vm_uuid str
- Specifies the VM's unique SMBIOS ID.
- client_public_ strkey 
- Gets or sets the Public Key provided by the client for enabling guest management.
- agentVersion String
- The hybrid machine agent full version.
- errorDetails List<Property Map>
- Details about the error state.
- lastStatus StringChange 
- The time of the last status change.
- status String
- The status of the hybrid machine agent.
- vmUuid String
- Specifies the VM's unique SMBIOS ID.
- clientPublic StringKey 
- Gets or sets the Public Key provided by the client for enabling guest management.
HardwareProfile, HardwareProfileArgs    
- CpuCount int
- Gets or sets the number of vCPUs for the vm.
- DynamicMemory string | Pulumi.Enabled Azure Native. Sc Vmm. Dynamic Memory Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- DynamicMemory intMax MB 
- Gets or sets the max dynamic memory for the vm.
- DynamicMemory intMin MB 
- Gets or sets the min dynamic memory for the vm.
- IsHighly stringAvailable 
- Gets highly available property.
- LimitCpu string | Pulumi.For Migration Azure Native. Sc Vmm. Limit Cpu For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- MemoryMB int
- MemoryMB is the size of a virtual machine's memory, in MB.
- CpuCount int
- Gets or sets the number of vCPUs for the vm.
- DynamicMemory string | DynamicEnabled Memory Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- DynamicMemory intMax MB 
- Gets or sets the max dynamic memory for the vm.
- DynamicMemory intMin MB 
- Gets or sets the min dynamic memory for the vm.
- IsHighly stringAvailable 
- Gets highly available property.
- LimitCpu string | LimitFor Migration Cpu For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- MemoryMB int
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount Integer
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory String | DynamicEnabled Memory Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory IntegerMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory IntegerMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly StringAvailable 
- Gets highly available property.
- limitCpu String | LimitFor Migration Cpu For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB Integer
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount number
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory string | DynamicEnabled Memory Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory numberMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory numberMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly stringAvailable 
- Gets highly available property.
- limitCpu string | LimitFor Migration Cpu For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB number
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpu_count int
- Gets or sets the number of vCPUs for the vm.
- dynamic_memory_ str | Dynamicenabled Memory Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic_memory_ intmax_ mb 
- Gets or sets the max dynamic memory for the vm.
- dynamic_memory_ intmin_ mb 
- Gets or sets the min dynamic memory for the vm.
- is_highly_ stravailable 
- Gets highly available property.
- limit_cpu_ str | Limitfor_ migration Cpu For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory_mb int
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount Number
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory String | "false" | "true"Enabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory NumberMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory NumberMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly StringAvailable 
- Gets highly available property.
- limitCpu String | "false" | "true"For Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB Number
- MemoryMB is the size of a virtual machine's memory, in MB.
HardwareProfileResponse, HardwareProfileResponseArgs      
- CpuCount int
- Gets or sets the number of vCPUs for the vm.
- DynamicMemory stringEnabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- DynamicMemory intMax MB 
- Gets or sets the max dynamic memory for the vm.
- DynamicMemory intMin MB 
- Gets or sets the min dynamic memory for the vm.
- IsHighly stringAvailable 
- Gets highly available property.
- LimitCpu stringFor Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- MemoryMB int
- MemoryMB is the size of a virtual machine's memory, in MB.
- CpuCount int
- Gets or sets the number of vCPUs for the vm.
- DynamicMemory stringEnabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- DynamicMemory intMax MB 
- Gets or sets the max dynamic memory for the vm.
- DynamicMemory intMin MB 
- Gets or sets the min dynamic memory for the vm.
- IsHighly stringAvailable 
- Gets highly available property.
- LimitCpu stringFor Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- MemoryMB int
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount Integer
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory StringEnabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory IntegerMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory IntegerMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly StringAvailable 
- Gets highly available property.
- limitCpu StringFor Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB Integer
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount number
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory stringEnabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory numberMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory numberMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly stringAvailable 
- Gets highly available property.
- limitCpu stringFor Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB number
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpu_count int
- Gets or sets the number of vCPUs for the vm.
- dynamic_memory_ strenabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic_memory_ intmax_ mb 
- Gets or sets the max dynamic memory for the vm.
- dynamic_memory_ intmin_ mb 
- Gets or sets the min dynamic memory for the vm.
- is_highly_ stravailable 
- Gets highly available property.
- limit_cpu_ strfor_ migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory_mb int
- MemoryMB is the size of a virtual machine's memory, in MB.
- cpuCount Number
- Gets or sets the number of vCPUs for the vm.
- dynamicMemory StringEnabled 
- Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamicMemory NumberMax MB 
- Gets or sets the max dynamic memory for the vm.
- dynamicMemory NumberMin MB 
- Gets or sets the min dynamic memory for the vm.
- isHighly StringAvailable 
- Gets highly available property.
- limitCpu StringFor Migration 
- Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memoryMB Number
- MemoryMB is the size of a virtual machine's memory, in MB.
Identity, IdentityArgs  
- Type
string | Pulumi.Azure Native. Sc Vmm. Identity Type 
- The type of managed service identity.
- Type
string | IdentityType 
- The type of managed service identity.
- type
String | IdentityType 
- The type of managed service identity.
- type
string | IdentityType 
- The type of managed service identity.
- type
str | IdentityType 
- The type of managed service identity.
- type
String | "None" | "SystemAssigned" 
- The type of managed service identity.
IdentityResponse, IdentityResponseArgs    
- PrincipalId string
- The principal id of managed service identity.
- TenantId string
- The tenant of managed service identity.
- Type string
- The type of managed service identity.
- PrincipalId string
- The principal id of managed service identity.
- TenantId string
- The tenant of managed service identity.
- Type string
- The type of managed service identity.
- principalId String
- The principal id of managed service identity.
- tenantId String
- The tenant of managed service identity.
- type String
- The type of managed service identity.
- principalId string
- The principal id of managed service identity.
- tenantId string
- The tenant of managed service identity.
- type string
- The type of managed service identity.
- principal_id str
- The principal id of managed service identity.
- tenant_id str
- The tenant of managed service identity.
- type str
- The type of managed service identity.
- principalId String
- The principal id of managed service identity.
- tenantId String
- The tenant of managed service identity.
- type String
- The type of managed service identity.
IdentityType, IdentityTypeArgs    
- None
- None
- SystemAssigned 
- SystemAssigned
- IdentityType None 
- None
- IdentityType System Assigned 
- SystemAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
LimitCpuForMigration, LimitCpuForMigrationArgs        
- @False
- false
- @True
- true
- LimitCpu For Migration False 
- false
- LimitCpu For Migration True 
- true
- False_
- false
- True_
- true
- False
- false
- True
- true
- FALSE
- false
- TRUE
- true
- "false"
- false
- "true"
- true
NetworkInterfaces, NetworkInterfacesArgs    
- Ipv4AddressType string | Pulumi.Azure Native. Sc Vmm. Allocation Method 
- Gets or sets the ipv4 address type.
- Ipv6AddressType string | Pulumi.Azure Native. Sc Vmm. Allocation Method 
- Gets or sets the ipv6 address type.
- MacAddress string
- Gets or sets the nic MAC address.
- MacAddress string | Pulumi.Type Azure Native. Sc Vmm. Allocation Method 
- Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- NicId string
- Gets or sets the nic id.
- VirtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- Ipv4AddressType string | AllocationMethod 
- Gets or sets the ipv4 address type.
- Ipv6AddressType string | AllocationMethod 
- Gets or sets the ipv6 address type.
- MacAddress string
- Gets or sets the nic MAC address.
- MacAddress string | AllocationType Method 
- Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- NicId string
- Gets or sets the nic id.
- VirtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- ipv4AddressType String | AllocationMethod 
- Gets or sets the ipv4 address type.
- ipv6AddressType String | AllocationMethod 
- Gets or sets the ipv6 address type.
- macAddress String
- Gets or sets the nic MAC address.
- macAddress String | AllocationType Method 
- Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nicId String
- Gets or sets the nic id.
- virtualNetwork StringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- ipv4AddressType string | AllocationMethod 
- Gets or sets the ipv4 address type.
- ipv6AddressType string | AllocationMethod 
- Gets or sets the ipv6 address type.
- macAddress string
- Gets or sets the nic MAC address.
- macAddress string | AllocationType Method 
- Gets or sets the mac address type.
- name string
- Gets or sets the name of the network interface.
- nicId string
- Gets or sets the nic id.
- virtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- ipv4_address_ str | Allocationtype Method 
- Gets or sets the ipv4 address type.
- ipv6_address_ str | Allocationtype Method 
- Gets or sets the ipv6 address type.
- mac_address str
- Gets or sets the nic MAC address.
- mac_address_ str | Allocationtype Method 
- Gets or sets the mac address type.
- name str
- Gets or sets the name of the network interface.
- nic_id str
- Gets or sets the nic id.
- virtual_network_ strid 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- ipv4AddressType String | "Dynamic" | "Static"
- Gets or sets the ipv4 address type.
- ipv6AddressType String | "Dynamic" | "Static"
- Gets or sets the ipv6 address type.
- macAddress String
- Gets or sets the nic MAC address.
- macAddress String | "Dynamic" | "Static"Type 
- Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nicId String
- Gets or sets the nic id.
- virtualNetwork StringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
NetworkInterfacesResponse, NetworkInterfacesResponseArgs      
- DisplayName string
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- Ipv4Addresses List<string>
- Gets or sets the nic ipv4 addresses.
- Ipv6Addresses List<string>
- Gets or sets the nic ipv6 addresses.
- NetworkName string
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- Ipv4AddressType string
- Gets or sets the ipv4 address type.
- Ipv6AddressType string
- Gets or sets the ipv6 address type.
- MacAddress string
- Gets or sets the nic MAC address.
- MacAddress stringType 
- Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- NicId string
- Gets or sets the nic id.
- VirtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- DisplayName string
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- Ipv4Addresses []string
- Gets or sets the nic ipv4 addresses.
- Ipv6Addresses []string
- Gets or sets the nic ipv6 addresses.
- NetworkName string
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- Ipv4AddressType string
- Gets or sets the ipv4 address type.
- Ipv6AddressType string
- Gets or sets the ipv6 address type.
- MacAddress string
- Gets or sets the nic MAC address.
- MacAddress stringType 
- Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- NicId string
- Gets or sets the nic id.
- VirtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- displayName String
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses List<String>
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses List<String>
- Gets or sets the nic ipv6 addresses.
- networkName String
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4AddressType String
- Gets or sets the ipv4 address type.
- ipv6AddressType String
- Gets or sets the ipv6 address type.
- macAddress String
- Gets or sets the nic MAC address.
- macAddress StringType 
- Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nicId String
- Gets or sets the nic id.
- virtualNetwork StringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- displayName string
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses string[]
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses string[]
- Gets or sets the nic ipv6 addresses.
- networkName string
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4AddressType string
- Gets or sets the ipv4 address type.
- ipv6AddressType string
- Gets or sets the ipv6 address type.
- macAddress string
- Gets or sets the nic MAC address.
- macAddress stringType 
- Gets or sets the mac address type.
- name string
- Gets or sets the name of the network interface.
- nicId string
- Gets or sets the nic id.
- virtualNetwork stringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- display_name str
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4_addresses Sequence[str]
- Gets or sets the nic ipv4 addresses.
- ipv6_addresses Sequence[str]
- Gets or sets the nic ipv6 addresses.
- network_name str
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4_address_ strtype 
- Gets or sets the ipv4 address type.
- ipv6_address_ strtype 
- Gets or sets the ipv6 address type.
- mac_address str
- Gets or sets the nic MAC address.
- mac_address_ strtype 
- Gets or sets the mac address type.
- name str
- Gets or sets the name of the network interface.
- nic_id str
- Gets or sets the nic id.
- virtual_network_ strid 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- displayName String
- Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses List<String>
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses List<String>
- Gets or sets the nic ipv6 addresses.
- networkName String
- Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4AddressType String
- Gets or sets the ipv4 address type.
- ipv6AddressType String
- Gets or sets the ipv6 address type.
- macAddress String
- Gets or sets the nic MAC address.
- macAddress StringType 
- Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nicId String
- Gets or sets the nic id.
- virtualNetwork StringId 
- Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
NetworkProfile, NetworkProfileArgs    
- NetworkInterfaces List<Pulumi.Azure Native. Sc Vmm. Inputs. Network Interfaces> 
- Gets or sets the list of network interfaces associated with the virtual machine.
- NetworkInterfaces []NetworkInterfaces 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces List<NetworkInterfaces> 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces NetworkInterfaces[] 
- Gets or sets the list of network interfaces associated with the virtual machine.
- network_interfaces Sequence[NetworkInterfaces] 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces List<Property Map>
- Gets or sets the list of network interfaces associated with the virtual machine.
NetworkProfileResponse, NetworkProfileResponseArgs      
- NetworkInterfaces List<Pulumi.Azure Native. Sc Vmm. Inputs. Network Interfaces Response> 
- Gets or sets the list of network interfaces associated with the virtual machine.
- NetworkInterfaces []NetworkInterfaces Response 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces List<NetworkInterfaces Response> 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces NetworkInterfaces Response[] 
- Gets or sets the list of network interfaces associated with the virtual machine.
- network_interfaces Sequence[NetworkInterfaces Response] 
- Gets or sets the list of network interfaces associated with the virtual machine.
- networkInterfaces List<Property Map>
- Gets or sets the list of network interfaces associated with the virtual machine.
OsProfile, OsProfileArgs    
- AdminPassword string
- Admin password of the virtual machine.
- ComputerName string
- Gets or sets computer name.
- AdminPassword string
- Admin password of the virtual machine.
- ComputerName string
- Gets or sets computer name.
- adminPassword String
- Admin password of the virtual machine.
- computerName String
- Gets or sets computer name.
- adminPassword string
- Admin password of the virtual machine.
- computerName string
- Gets or sets computer name.
- admin_password str
- Admin password of the virtual machine.
- computer_name str
- Gets or sets computer name.
- adminPassword String
- Admin password of the virtual machine.
- computerName String
- Gets or sets computer name.
OsProfileResponse, OsProfileResponseArgs      
- OsName string
- Gets or sets os name.
- OsType string
- Gets or sets the type of the os.
- ComputerName string
- Gets or sets computer name.
- OsName string
- Gets or sets os name.
- OsType string
- Gets or sets the type of the os.
- ComputerName string
- Gets or sets computer name.
- osName String
- Gets or sets os name.
- osType String
- Gets or sets the type of the os.
- computerName String
- Gets or sets computer name.
- osName string
- Gets or sets os name.
- osType string
- Gets or sets the type of the os.
- computerName string
- Gets or sets computer name.
- os_name str
- Gets or sets os name.
- os_type str
- Gets or sets the type of the os.
- computer_name str
- Gets or sets computer name.
- osName String
- Gets or sets os name.
- osType String
- Gets or sets the type of the os.
- computerName String
- Gets or sets computer name.
StorageProfile, StorageProfileArgs    
- Disks
List<Pulumi.Azure Native. Sc Vmm. Inputs. Virtual Disk> 
- Gets or sets the list of virtual disks associated with the virtual machine.
- Disks
[]VirtualDisk 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
List<VirtualDisk> 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
VirtualDisk[] 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
Sequence[VirtualDisk] 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks List<Property Map>
- Gets or sets the list of virtual disks associated with the virtual machine.
StorageProfileResponse, StorageProfileResponseArgs      
- Disks
List<Pulumi.Azure Native. Sc Vmm. Inputs. Virtual Disk Response> 
- Gets or sets the list of virtual disks associated with the virtual machine.
- Disks
[]VirtualDisk Response 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
List<VirtualDisk Response> 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
VirtualDisk Response[] 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks
Sequence[VirtualDisk Response] 
- Gets or sets the list of virtual disks associated with the virtual machine.
- disks List<Property Map>
- Gets or sets the list of virtual disks associated with the virtual machine.
StorageQoSPolicyDetails, StorageQoSPolicyDetailsArgs        
StorageQoSPolicyDetailsResponse, StorageQoSPolicyDetailsResponseArgs          
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
VirtualDisk, VirtualDiskArgs    
- Bus int
- Gets or sets the disk bus.
- BusType string
- Gets or sets the disk bus type.
- CreateDiff string | Pulumi.Disk Azure Native. Sc Vmm. Create Diff Disk 
- Gets or sets a value indicating diff disk.
- DiskId string
- Gets or sets the disk id.
- DiskSize intGB 
- Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- StorageQo Pulumi.SPolicy Azure Native. Sc Vmm. Inputs. Storage Qo SPolicy Details 
- The QoS policy for the disk.
- TemplateDisk stringId 
- Gets or sets the disk id in the template.
- VhdType string
- Gets or sets the disk vhd type.
- Bus int
- Gets or sets the disk bus.
- BusType string
- Gets or sets the disk bus type.
- CreateDiff string | CreateDisk Diff Disk 
- Gets or sets a value indicating diff disk.
- DiskId string
- Gets or sets the disk id.
- DiskSize intGB 
- Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- StorageQo StorageSPolicy Qo SPolicy Details 
- The QoS policy for the disk.
- TemplateDisk stringId 
- Gets or sets the disk id in the template.
- VhdType string
- Gets or sets the disk vhd type.
- bus Integer
- Gets or sets the disk bus.
- busType String
- Gets or sets the disk bus type.
- createDiff String | CreateDisk Diff Disk 
- Gets or sets a value indicating diff disk.
- diskId String
- Gets or sets the disk id.
- diskSize IntegerGB 
- Gets or sets the disk total size.
- lun Integer
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storageQo StorageSPolicy Qo SPolicy Details 
- The QoS policy for the disk.
- templateDisk StringId 
- Gets or sets the disk id in the template.
- vhdType String
- Gets or sets the disk vhd type.
- bus number
- Gets or sets the disk bus.
- busType string
- Gets or sets the disk bus type.
- createDiff string | CreateDisk Diff Disk 
- Gets or sets a value indicating diff disk.
- diskId string
- Gets or sets the disk id.
- diskSize numberGB 
- Gets or sets the disk total size.
- lun number
- Gets or sets the disk lun.
- name string
- Gets or sets the name of the disk.
- storageQo StorageSPolicy Qo SPolicy Details 
- The QoS policy for the disk.
- templateDisk stringId 
- Gets or sets the disk id in the template.
- vhdType string
- Gets or sets the disk vhd type.
- bus int
- Gets or sets the disk bus.
- bus_type str
- Gets or sets the disk bus type.
- create_diff_ str | Createdisk Diff Disk 
- Gets or sets a value indicating diff disk.
- disk_id str
- Gets or sets the disk id.
- disk_size_ intgb 
- Gets or sets the disk total size.
- lun int
- Gets or sets the disk lun.
- name str
- Gets or sets the name of the disk.
- storage_qo_ Storages_ policy Qo SPolicy Details 
- The QoS policy for the disk.
- template_disk_ strid 
- Gets or sets the disk id in the template.
- vhd_type str
- Gets or sets the disk vhd type.
- bus Number
- Gets or sets the disk bus.
- busType String
- Gets or sets the disk bus type.
- createDiff String | "false" | "true"Disk 
- Gets or sets a value indicating diff disk.
- diskId String
- Gets or sets the disk id.
- diskSize NumberGB 
- Gets or sets the disk total size.
- lun Number
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storageQo Property MapSPolicy 
- The QoS policy for the disk.
- templateDisk StringId 
- Gets or sets the disk id in the template.
- vhdType String
- Gets or sets the disk vhd type.
VirtualDiskResponse, VirtualDiskResponseArgs      
- DisplayName string
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- MaxDisk intSize GB 
- Gets or sets the max disk size.
- VhdFormat stringType 
- Gets the disk vhd format type.
- VolumeType string
- Gets or sets the disk volume type.
- Bus int
- Gets or sets the disk bus.
- BusType string
- Gets or sets the disk bus type.
- CreateDiff stringDisk 
- Gets or sets a value indicating diff disk.
- DiskId string
- Gets or sets the disk id.
- DiskSize intGB 
- Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- StorageQo Pulumi.SPolicy Azure Native. Sc Vmm. Inputs. Storage Qo SPolicy Details Response 
- The QoS policy for the disk.
- TemplateDisk stringId 
- Gets or sets the disk id in the template.
- VhdType string
- Gets or sets the disk vhd type.
- DisplayName string
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- MaxDisk intSize GB 
- Gets or sets the max disk size.
- VhdFormat stringType 
- Gets the disk vhd format type.
- VolumeType string
- Gets or sets the disk volume type.
- Bus int
- Gets or sets the disk bus.
- BusType string
- Gets or sets the disk bus type.
- CreateDiff stringDisk 
- Gets or sets a value indicating diff disk.
- DiskId string
- Gets or sets the disk id.
- DiskSize intGB 
- Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- StorageQo StorageSPolicy Qo SPolicy Details Response 
- The QoS policy for the disk.
- TemplateDisk stringId 
- Gets or sets the disk id in the template.
- VhdType string
- Gets or sets the disk vhd type.
- displayName String
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- maxDisk IntegerSize GB 
- Gets or sets the max disk size.
- vhdFormat StringType 
- Gets the disk vhd format type.
- volumeType String
- Gets or sets the disk volume type.
- bus Integer
- Gets or sets the disk bus.
- busType String
- Gets or sets the disk bus type.
- createDiff StringDisk 
- Gets or sets a value indicating diff disk.
- diskId String
- Gets or sets the disk id.
- diskSize IntegerGB 
- Gets or sets the disk total size.
- lun Integer
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storageQo StorageSPolicy Qo SPolicy Details Response 
- The QoS policy for the disk.
- templateDisk StringId 
- Gets or sets the disk id in the template.
- vhdType String
- Gets or sets the disk vhd type.
- displayName string
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- maxDisk numberSize GB 
- Gets or sets the max disk size.
- vhdFormat stringType 
- Gets the disk vhd format type.
- volumeType string
- Gets or sets the disk volume type.
- bus number
- Gets or sets the disk bus.
- busType string
- Gets or sets the disk bus type.
- createDiff stringDisk 
- Gets or sets a value indicating diff disk.
- diskId string
- Gets or sets the disk id.
- diskSize numberGB 
- Gets or sets the disk total size.
- lun number
- Gets or sets the disk lun.
- name string
- Gets or sets the name of the disk.
- storageQo StorageSPolicy Qo SPolicy Details Response 
- The QoS policy for the disk.
- templateDisk stringId 
- Gets or sets the disk id in the template.
- vhdType string
- Gets or sets the disk vhd type.
- display_name str
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- max_disk_ intsize_ gb 
- Gets or sets the max disk size.
- vhd_format_ strtype 
- Gets the disk vhd format type.
- volume_type str
- Gets or sets the disk volume type.
- bus int
- Gets or sets the disk bus.
- bus_type str
- Gets or sets the disk bus type.
- create_diff_ strdisk 
- Gets or sets a value indicating diff disk.
- disk_id str
- Gets or sets the disk id.
- disk_size_ intgb 
- Gets or sets the disk total size.
- lun int
- Gets or sets the disk lun.
- name str
- Gets or sets the name of the disk.
- storage_qo_ Storages_ policy Qo SPolicy Details Response 
- The QoS policy for the disk.
- template_disk_ strid 
- Gets or sets the disk id in the template.
- vhd_type str
- Gets or sets the disk vhd type.
- displayName String
- Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- maxDisk NumberSize GB 
- Gets or sets the max disk size.
- vhdFormat StringType 
- Gets the disk vhd format type.
- volumeType String
- Gets or sets the disk volume type.
- bus Number
- Gets or sets the disk bus.
- busType String
- Gets or sets the disk bus type.
- createDiff StringDisk 
- Gets or sets a value indicating diff disk.
- diskId String
- Gets or sets the disk id.
- diskSize NumberGB 
- Gets or sets the disk total size.
- lun Number
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storageQo Property MapSPolicy 
- The QoS policy for the disk.
- templateDisk StringId 
- Gets or sets the disk id in the template.
- vhdType String
- Gets or sets the disk vhd type.
VirtualMachinePropertiesAvailabilitySets, VirtualMachinePropertiesAvailabilitySetsArgs          
VirtualMachinePropertiesResponseAvailabilitySets, VirtualMachinePropertiesResponseAvailabilitySetsArgs            
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:scvmm:VirtualMachine DemoVM /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ScVmm/virtualMachines/{virtualMachineName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0