azure-native.compute.VirtualMachine
Explore with Pulumi AI
Describes a Virtual Machine. Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2021-03-01.
Other available API versions: 2023-07-01, 2023-09-01, 2024-03-01, 2024-07-01.
Example Usage
Create a Linux vm with a patch setting assessmentMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
            {
                PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.LinuxPatchAssessmentMode.ImageDefault,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "UbuntuServer",
                Publisher = "Canonical",
                Sku = "16.04-LTS",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				LinuxConfiguration: &compute.LinuxConfigurationArgs{
					PatchSettings: &compute.LinuxPatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.LinuxPatchAssessmentModeImageDefault),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("UbuntuServer"),
					Publisher: pulumi.String("Canonical"),
					Sku:       pulumi.String("16.04-LTS"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.LinuxConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.LinuxPatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .linuxConfiguration(LinuxConfigurationArgs.builder()
                    .patchSettings(LinuxPatchSettingsArgs.builder()
                        .assessmentMode("ImageDefault")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("UbuntuServer")
                    .publisher("Canonical")
                    .sku("16.04-LTS")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        linuxConfiguration: {
            patchSettings: {
                assessmentMode: azure_native.compute.LinuxPatchAssessmentMode.ImageDefault,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "UbuntuServer",
            publisher: "Canonical",
            sku: "16.04-LTS",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "linux_configuration": {
            "patch_settings": {
                "assessment_mode": azure_native.compute.LinuxPatchAssessmentMode.IMAGE_DEFAULT,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "UbuntuServer",
            "publisher": "Canonical",
            "sku": "16.04-LTS",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        linuxConfiguration:
          patchSettings:
            assessmentMode: ImageDefault
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: UbuntuServer
          publisher: Canonical
          sku: 16.04-LTS
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Linux vm with a patch setting patchMode of AutomaticByPlatform and AutomaticByPlatformSettings.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
            {
                PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.LinuxPatchAssessmentMode.AutomaticByPlatform,
                    AutomaticByPlatformSettings = new AzureNative.Compute.Inputs.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs
                    {
                        BypassPlatformSafetyChecksOnUserSchedule = true,
                        RebootSetting = AzureNative.Compute.LinuxVMGuestPatchAutomaticByPlatformRebootSetting.Never,
                    },
                    PatchMode = AzureNative.Compute.LinuxVMGuestPatchMode.AutomaticByPlatform,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "UbuntuServer",
                Publisher = "Canonical",
                Sku = "16.04-LTS",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				LinuxConfiguration: &compute.LinuxConfigurationArgs{
					PatchSettings: &compute.LinuxPatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.LinuxPatchAssessmentModeAutomaticByPlatform),
						AutomaticByPlatformSettings: &compute.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs{
							BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(true),
							RebootSetting:                            pulumi.String(compute.LinuxVMGuestPatchAutomaticByPlatformRebootSettingNever),
						},
						PatchMode: pulumi.String(compute.LinuxVMGuestPatchModeAutomaticByPlatform),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("UbuntuServer"),
					Publisher: pulumi.String("Canonical"),
					Sku:       pulumi.String("16.04-LTS"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.LinuxConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.LinuxPatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .linuxConfiguration(LinuxConfigurationArgs.builder()
                    .patchSettings(LinuxPatchSettingsArgs.builder()
                        .assessmentMode("AutomaticByPlatform")
                        .automaticByPlatformSettings(LinuxVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                            .bypassPlatformSafetyChecksOnUserSchedule(true)
                            .rebootSetting("Never")
                            .build())
                        .patchMode("AutomaticByPlatform")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("UbuntuServer")
                    .publisher("Canonical")
                    .sku("16.04-LTS")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        linuxConfiguration: {
            patchSettings: {
                assessmentMode: azure_native.compute.LinuxPatchAssessmentMode.AutomaticByPlatform,
                automaticByPlatformSettings: {
                    bypassPlatformSafetyChecksOnUserSchedule: true,
                    rebootSetting: azure_native.compute.LinuxVMGuestPatchAutomaticByPlatformRebootSetting.Never,
                },
                patchMode: azure_native.compute.LinuxVMGuestPatchMode.AutomaticByPlatform,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "UbuntuServer",
            publisher: "Canonical",
            sku: "16.04-LTS",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "linux_configuration": {
            "patch_settings": {
                "assessment_mode": azure_native.compute.LinuxPatchAssessmentMode.AUTOMATIC_BY_PLATFORM,
                "automatic_by_platform_settings": {
                    "bypass_platform_safety_checks_on_user_schedule": True,
                    "reboot_setting": azure_native.compute.LinuxVMGuestPatchAutomaticByPlatformRebootSetting.NEVER,
                },
                "patch_mode": azure_native.compute.LinuxVMGuestPatchMode.AUTOMATIC_BY_PLATFORM,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "UbuntuServer",
            "publisher": "Canonical",
            "sku": "16.04-LTS",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        linuxConfiguration:
          patchSettings:
            assessmentMode: AutomaticByPlatform
            automaticByPlatformSettings:
              bypassPlatformSafetyChecksOnUserSchedule: true
              rebootSetting: Never
            patchMode: AutomaticByPlatform
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: UbuntuServer
          publisher: Canonical
          sku: 16.04-LTS
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Linux vm with a patch setting patchMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
            {
                PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
                {
                    PatchMode = AzureNative.Compute.LinuxVMGuestPatchMode.ImageDefault,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "UbuntuServer",
                Publisher = "Canonical",
                Sku = "16.04-LTS",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				LinuxConfiguration: &compute.LinuxConfigurationArgs{
					PatchSettings: &compute.LinuxPatchSettingsArgs{
						PatchMode: pulumi.String(compute.LinuxVMGuestPatchModeImageDefault),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("UbuntuServer"),
					Publisher: pulumi.String("Canonical"),
					Sku:       pulumi.String("16.04-LTS"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.LinuxConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.LinuxPatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .linuxConfiguration(LinuxConfigurationArgs.builder()
                    .patchSettings(LinuxPatchSettingsArgs.builder()
                        .patchMode("ImageDefault")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("UbuntuServer")
                    .publisher("Canonical")
                    .sku("16.04-LTS")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        linuxConfiguration: {
            patchSettings: {
                patchMode: azure_native.compute.LinuxVMGuestPatchMode.ImageDefault,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "UbuntuServer",
            publisher: "Canonical",
            sku: "16.04-LTS",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "linux_configuration": {
            "patch_settings": {
                "patch_mode": azure_native.compute.LinuxVMGuestPatchMode.IMAGE_DEFAULT,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "UbuntuServer",
            "publisher": "Canonical",
            "sku": "16.04-LTS",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        linuxConfiguration:
          patchSettings:
            patchMode: ImageDefault
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: UbuntuServer
          publisher: Canonical
          sku: 16.04-LTS
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Linux vm with a patch settings patchMode and assessmentMode set to AutomaticByPlatform.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
            {
                PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.LinuxPatchAssessmentMode.AutomaticByPlatform,
                    PatchMode = AzureNative.Compute.LinuxVMGuestPatchMode.AutomaticByPlatform,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "UbuntuServer",
                Publisher = "Canonical",
                Sku = "16.04-LTS",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				LinuxConfiguration: &compute.LinuxConfigurationArgs{
					PatchSettings: &compute.LinuxPatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.LinuxPatchAssessmentModeAutomaticByPlatform),
						PatchMode:      pulumi.String(compute.LinuxVMGuestPatchModeAutomaticByPlatform),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("UbuntuServer"),
					Publisher: pulumi.String("Canonical"),
					Sku:       pulumi.String("16.04-LTS"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.LinuxConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.LinuxPatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .linuxConfiguration(LinuxConfigurationArgs.builder()
                    .patchSettings(LinuxPatchSettingsArgs.builder()
                        .assessmentMode("AutomaticByPlatform")
                        .patchMode("AutomaticByPlatform")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("UbuntuServer")
                    .publisher("Canonical")
                    .sku("16.04-LTS")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        linuxConfiguration: {
            patchSettings: {
                assessmentMode: azure_native.compute.LinuxPatchAssessmentMode.AutomaticByPlatform,
                patchMode: azure_native.compute.LinuxVMGuestPatchMode.AutomaticByPlatform,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "UbuntuServer",
            publisher: "Canonical",
            sku: "16.04-LTS",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "linux_configuration": {
            "patch_settings": {
                "assessment_mode": azure_native.compute.LinuxPatchAssessmentMode.AUTOMATIC_BY_PLATFORM,
                "patch_mode": azure_native.compute.LinuxVMGuestPatchMode.AUTOMATIC_BY_PLATFORM,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "UbuntuServer",
            "publisher": "Canonical",
            "sku": "16.04-LTS",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        linuxConfiguration:
          patchSettings:
            assessmentMode: AutomaticByPlatform
            patchMode: AutomaticByPlatform
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: UbuntuServer
          publisher: Canonical
          sku: 16.04-LTS
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM from a community gallery image
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                CommunityGalleryImageId = "/CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					CommunityGalleryImageId: pulumi.String("/CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .communityGalleryImageId("/CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            communityGalleryImageId: "/CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "community_gallery_image_id": "/CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          communityGalleryImageId: /CommunityGalleries/galleryPublicName/Images/communityGalleryImageName/Versions/communityGalleryImageVersionName
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM from a shared gallery image
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                SharedGalleryImageId = "/SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					SharedGalleryImageId: pulumi.String("/SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .sharedGalleryImageId("/SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            sharedGalleryImageId: "/SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "shared_gallery_image_id": "/SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          sharedGalleryImageId: /SharedGalleries/sharedGalleryName/Images/sharedGalleryImageName/Versions/sharedGalleryImageVersionName
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM with Disk Controller Type
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D4_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            DiskControllerType = AzureNative.Compute.DiskControllerTypes.NVMe,
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        UserData = "U29tZSBDdXN0b20gRGF0YQ==",
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D4_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				DiskControllerType: pulumi.String(compute.DiskControllerTypesNVMe),
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			UserData: pulumi.String("U29tZSBDdXN0b20gRGF0YQ=="),
			VmName:   pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D4_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .diskControllerType("NVMe")
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .userData("U29tZSBDdXN0b20gRGF0YQ==")
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D4_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        diskControllerType: azure_native.compute.DiskControllerTypes.NVMe,
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    userData: "U29tZSBDdXN0b20gRGF0YQ==",
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D4_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "disk_controller_type": azure_native.compute.DiskControllerTypes.NV_ME,
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    user_data="U29tZSBDdXN0b20gRGF0YQ==",
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D4_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        diskControllerType: NVMe
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      userData: U29tZSBDdXN0b20gRGF0YQ==
      vmName: myVM
Create a VM with HibernationEnabled
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        AdditionalCapabilities = new AzureNative.Compute.Inputs.AdditionalCapabilitiesArgs
        {
            HibernationEnabled = true,
        },
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "eastus2euap",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "{vm-name}",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2019-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "vmOSdisk",
            },
        },
        VmName = "{vm-name}",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			AdditionalCapabilities: &compute.AdditionalCapabilitiesArgs{
				HibernationEnabled: pulumi.Bool(true),
			},
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("eastus2euap"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("{vm-name}"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2019-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("vmOSdisk"),
				},
			},
			VmName: pulumi.String("{vm-name}"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.AdditionalCapabilitiesArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .additionalCapabilities(AdditionalCapabilitiesArgs.builder()
                .hibernationEnabled(true)
                .build())
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("eastus2euap")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("{vm-name}")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2019-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("vmOSdisk")
                    .build())
                .build())
            .vmName("{vm-name}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    additionalCapabilities: {
        hibernationEnabled: true,
    },
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "eastus2euap",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "{vm-name}",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2019-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "vmOSdisk",
        },
    },
    vmName: "{vm-name}",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    additional_capabilities={
        "hibernation_enabled": True,
    },
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="eastus2euap",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "{vm-name}",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2019-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "vmOSdisk",
        },
    },
    vm_name="{vm-name}")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      additionalCapabilities:
        hibernationEnabled: true
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: eastus2euap
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: '{vm-name}'
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2019-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: vmOSdisk
      vmName: '{vm-name}'
Create a VM with Uefi Settings of secureBoot and vTPM.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2s_v3,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
        {
            SecurityType = AzureNative.Compute.SecurityTypes.TrustedLaunch,
            UefiSettings = new AzureNative.Compute.Inputs.UefiSettingsArgs
            {
                SecureBootEnabled = true,
                VTpmEnabled = true,
            },
        },
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windowsserver-gen2preview-preview",
                Publisher = "MicrosoftWindowsServer",
                Sku = "windows10-tvm",
                Version = "18363.592.2001092016",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.StandardSSD_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2s_v3),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SecurityProfile: &compute.SecurityProfileArgs{
				SecurityType: pulumi.String(compute.SecurityTypesTrustedLaunch),
				UefiSettings: &compute.UefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
					VTpmEnabled:       pulumi.Bool(true),
				},
			},
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windowsserver-gen2preview-preview"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("windows10-tvm"),
					Version:   pulumi.String("18363.592.2001092016"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_StandardSSD_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.SecurityProfileArgs;
import com.pulumi.azurenative.compute.inputs.UefiSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2s_v3")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .securityProfile(SecurityProfileArgs.builder()
                .securityType("TrustedLaunch")
                .uefiSettings(UefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .vTpmEnabled(true)
                    .build())
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windowsserver-gen2preview-preview")
                    .publisher("MicrosoftWindowsServer")
                    .sku("windows10-tvm")
                    .version("18363.592.2001092016")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("StandardSSD_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2s_v3,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    securityProfile: {
        securityType: azure_native.compute.SecurityTypes.TrustedLaunch,
        uefiSettings: {
            secureBootEnabled: true,
            vTpmEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            offer: "windowsserver-gen2preview-preview",
            publisher: "MicrosoftWindowsServer",
            sku: "windows10-tvm",
            version: "18363.592.2001092016",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.StandardSSD_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2S_V3,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    security_profile={
        "security_type": azure_native.compute.SecurityTypes.TRUSTED_LAUNCH,
        "uefi_settings": {
            "secure_boot_enabled": True,
            "v_tpm_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "offer": "windowsserver-gen2preview-preview",
            "publisher": "MicrosoftWindowsServer",
            "sku": "windows10-tvm",
            "version": "18363.592.2001092016",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_SS_D_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2s_v3
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      securityProfile:
        securityType: TrustedLaunch
        uefiSettings:
          secureBootEnabled: true
          vTpmEnabled: true
      storageProfile:
        imageReference:
          offer: windowsserver-gen2preview-preview
          publisher: MicrosoftWindowsServer
          sku: windows10-tvm
          version: 18363.592.2001092016
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          managedDisk:
            storageAccountType: StandardSSD_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM with UserData
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "{vm-name}",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "vmOSdisk",
            },
        },
        UserData = "RXhhbXBsZSBVc2VyRGF0YQ==",
        VmName = "{vm-name}",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("{vm-name}"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("vmOSdisk"),
				},
			},
			UserData: pulumi.String("RXhhbXBsZSBVc2VyRGF0YQ=="),
			VmName:   pulumi.String("{vm-name}"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("{vm-name}")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("vmOSdisk")
                    .build())
                .build())
            .userData("RXhhbXBsZSBVc2VyRGF0YQ==")
            .vmName("{vm-name}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "{vm-name}",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "vmOSdisk",
        },
    },
    userData: "RXhhbXBsZSBVc2VyRGF0YQ==",
    vmName: "{vm-name}",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "{vm-name}",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "vmOSdisk",
        },
    },
    user_data="RXhhbXBsZSBVc2VyRGF0YQ==",
    vm_name="{vm-name}")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: '{vm-name}'
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: vmOSdisk
      userData: RXhhbXBsZSBVc2VyRGF0YQ==
      vmName: '{vm-name}'
Create a VM with VM Size Properties
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D4_v3,
            VmSizeProperties = new AzureNative.Compute.Inputs.VMSizePropertiesArgs
            {
                VCPUsAvailable = 1,
                VCPUsPerCore = 1,
            },
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        UserData = "U29tZSBDdXN0b20gRGF0YQ==",
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D4_v3),
				VmSizeProperties: &compute.VMSizePropertiesArgs{
					VCPUsAvailable: pulumi.Int(1),
					VCPUsPerCore:   pulumi.Int(1),
				},
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			UserData: pulumi.String("U29tZSBDdXN0b20gRGF0YQ=="),
			VmName:   pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.VMSizePropertiesArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D4_v3")
                .vmSizeProperties(VMSizePropertiesArgs.builder()
                    .vCPUsAvailable(1)
                    .vCPUsPerCore(1)
                    .build())
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .userData("U29tZSBDdXN0b20gRGF0YQ==")
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D4_v3,
        vmSizeProperties: {
            vCPUsAvailable: 1,
            vCPUsPerCore: 1,
        },
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    userData: "U29tZSBDdXN0b20gRGF0YQ==",
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D4_V3,
        "vm_size_properties": {
            "v_cpus_available": 1,
            "v_cpus_per_core": 1,
        },
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    user_data="U29tZSBDdXN0b20gRGF0YQ==",
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D4_v3
        vmSizeProperties:
          vCPUsAvailable: 1
          vCPUsPerCore: 1
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      userData: U29tZSBDdXN0b20gRGF0YQ==
      vmName: myVM
Create a VM with network interface configuration
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkApiVersion = AzureNative.Compute.NetworkApiVersion.NetworkApiVersion_2020_11_01,
            NetworkInterfaceConfigurations = new[]
            {
                new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceConfigurationArgs
                {
                    DeleteOption = AzureNative.Compute.DeleteOptions.Delete,
                    IpConfigurations = new[]
                    {
                        new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceIPConfigurationArgs
                        {
                            Name = "{ip-config-name}",
                            Primary = true,
                            PublicIPAddressConfiguration = new AzureNative.Compute.Inputs.VirtualMachinePublicIPAddressConfigurationArgs
                            {
                                DeleteOption = AzureNative.Compute.DeleteOptions.Detach,
                                Name = "{publicIP-config-name}",
                                PublicIPAllocationMethod = AzureNative.Compute.PublicIPAllocationMethod.Static,
                                Sku = new AzureNative.Compute.Inputs.PublicIPAddressSkuArgs
                                {
                                    Name = AzureNative.Compute.PublicIPAddressSkuName.Basic,
                                    Tier = AzureNative.Compute.PublicIPAddressSkuTier.Global,
                                },
                            },
                        },
                    },
                    Name = "{nic-config-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkApiVersion: pulumi.String(compute.NetworkApiVersion_2020_11_01),
				NetworkInterfaceConfigurations: compute.VirtualMachineNetworkInterfaceConfigurationArray{
					&compute.VirtualMachineNetworkInterfaceConfigurationArgs{
						DeleteOption: pulumi.String(compute.DeleteOptionsDelete),
						IpConfigurations: compute.VirtualMachineNetworkInterfaceIPConfigurationArray{
							&compute.VirtualMachineNetworkInterfaceIPConfigurationArgs{
								Name:    pulumi.String("{ip-config-name}"),
								Primary: pulumi.Bool(true),
								PublicIPAddressConfiguration: &compute.VirtualMachinePublicIPAddressConfigurationArgs{
									DeleteOption:             pulumi.String(compute.DeleteOptionsDetach),
									Name:                     pulumi.String("{publicIP-config-name}"),
									PublicIPAllocationMethod: pulumi.String(compute.PublicIPAllocationMethodStatic),
									Sku: &compute.PublicIPAddressSkuArgs{
										Name: pulumi.String(compute.PublicIPAddressSkuNameBasic),
										Tier: pulumi.String(compute.PublicIPAddressSkuTierGlobal),
									},
								},
							},
						},
						Name:    pulumi.String("{nic-config-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkApiVersion("2020-11-01")
                .networkInterfaceConfigurations(VirtualMachineNetworkInterfaceConfigurationArgs.builder()
                    .deleteOption("Delete")
                    .ipConfigurations(VirtualMachineNetworkInterfaceIPConfigurationArgs.builder()
                        .name("{ip-config-name}")
                        .primary(true)
                        .publicIPAddressConfiguration(VirtualMachinePublicIPAddressConfigurationArgs.builder()
                            .deleteOption("Detach")
                            .name("{publicIP-config-name}")
                            .publicIPAllocationMethod("Static")
                            .sku(PublicIPAddressSkuArgs.builder()
                                .name("Basic")
                                .tier("Global")
                                .build())
                            .build())
                        .build())
                    .name("{nic-config-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkApiVersion: azure_native.compute.NetworkApiVersion.NetworkApiVersion_2020_11_01,
        networkInterfaceConfigurations: [{
            deleteOption: azure_native.compute.DeleteOptions.Delete,
            ipConfigurations: [{
                name: "{ip-config-name}",
                primary: true,
                publicIPAddressConfiguration: {
                    deleteOption: azure_native.compute.DeleteOptions.Detach,
                    name: "{publicIP-config-name}",
                    publicIPAllocationMethod: azure_native.compute.PublicIPAllocationMethod.Static,
                    sku: {
                        name: azure_native.compute.PublicIPAddressSkuName.Basic,
                        tier: azure_native.compute.PublicIPAddressSkuTier.Global,
                    },
                },
            }],
            name: "{nic-config-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_api_version": azure_native.compute.NetworkApiVersion.NETWORK_API_VERSION_2020_11_01,
        "network_interface_configurations": [{
            "delete_option": azure_native.compute.DeleteOptions.DELETE,
            "ip_configurations": [{
                "name": "{ip-config-name}",
                "primary": True,
                "public_ip_address_configuration": {
                    "delete_option": azure_native.compute.DeleteOptions.DETACH,
                    "name": "{publicIP-config-name}",
                    "public_ip_allocation_method": azure_native.compute.PublicIPAllocationMethod.STATIC,
                    "sku": {
                        "name": azure_native.compute.PublicIPAddressSkuName.BASIC,
                        "tier": azure_native.compute.PublicIPAddressSkuTier.GLOBAL_,
                    },
                },
            }],
            "name": "{nic-config-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkApiVersion: 2020-11-01
        networkInterfaceConfigurations:
          - deleteOption: Delete
            ipConfigurations:
              - name: '{ip-config-name}'
                primary: true
                publicIPAddressConfiguration:
                  deleteOption: Detach
                  name: '{publicIP-config-name}'
                  publicIPAllocationMethod: Static
                  sku:
                    name: Basic
                    tier: Global
            name: '{nic-config-name}'
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM with securityType ConfidentialVM with Customer Managed Keys
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = "Standard_DC2as_v5",
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
        {
            SecurityType = AzureNative.Compute.SecurityTypes.ConfidentialVM,
            UefiSettings = new AzureNative.Compute.Inputs.UefiSettingsArgs
            {
                SecureBootEnabled = true,
                VTpmEnabled = true,
            },
        },
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "2019-datacenter-cvm",
                Publisher = "MicrosoftWindowsServer",
                Sku = "windows-cvm",
                Version = "17763.2183.2109130127",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
                    {
                        DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                        {
                            Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                        },
                        SecurityEncryptionType = AzureNative.Compute.SecurityEncryptionTypes.DiskWithVMGuestState,
                    },
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.StandardSSD_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String("Standard_DC2as_v5"),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SecurityProfile: &compute.SecurityProfileArgs{
				SecurityType: pulumi.String(compute.SecurityTypesConfidentialVM),
				UefiSettings: &compute.UefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
					VTpmEnabled:       pulumi.Bool(true),
				},
			},
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("2019-datacenter-cvm"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("windows-cvm"),
					Version:   pulumi.String("17763.2183.2109130127"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						SecurityProfile: &compute.VMDiskSecurityProfileArgs{
							DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
								Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}"),
							},
							SecurityEncryptionType: pulumi.String(compute.SecurityEncryptionTypesDiskWithVMGuestState),
						},
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_StandardSSD_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.SecurityProfileArgs;
import com.pulumi.azurenative.compute.inputs.UefiSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
import com.pulumi.azurenative.compute.inputs.VMDiskSecurityProfileArgs;
import com.pulumi.azurenative.compute.inputs.DiskEncryptionSetParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DC2as_v5")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .securityProfile(SecurityProfileArgs.builder()
                .securityType("ConfidentialVM")
                .uefiSettings(UefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .vTpmEnabled(true)
                    .build())
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("2019-datacenter-cvm")
                    .publisher("MicrosoftWindowsServer")
                    .sku("windows-cvm")
                    .version("17763.2183.2109130127")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .securityProfile(VMDiskSecurityProfileArgs.builder()
                            .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")
                                .build())
                            .securityEncryptionType("DiskWithVMGuestState")
                            .build())
                        .storageAccountType("StandardSSD_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: "Standard_DC2as_v5",
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    securityProfile: {
        securityType: azure_native.compute.SecurityTypes.ConfidentialVM,
        uefiSettings: {
            secureBootEnabled: true,
            vTpmEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            offer: "2019-datacenter-cvm",
            publisher: "MicrosoftWindowsServer",
            sku: "windows-cvm",
            version: "17763.2183.2109130127",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                securityProfile: {
                    diskEncryptionSet: {
                        id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    securityEncryptionType: azure_native.compute.SecurityEncryptionTypes.DiskWithVMGuestState,
                },
                storageAccountType: azure_native.compute.StorageAccountTypes.StandardSSD_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": "Standard_DC2as_v5",
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    security_profile={
        "security_type": azure_native.compute.SecurityTypes.CONFIDENTIAL_VM,
        "uefi_settings": {
            "secure_boot_enabled": True,
            "v_tpm_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "offer": "2019-datacenter-cvm",
            "publisher": "MicrosoftWindowsServer",
            "sku": "windows-cvm",
            "version": "17763.2183.2109130127",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "security_profile": {
                    "disk_encryption_set": {
                        "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    "security_encryption_type": azure_native.compute.SecurityEncryptionTypes.DISK_WITH_VM_GUEST_STATE,
                },
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_SS_D_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DC2as_v5
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      securityProfile:
        securityType: ConfidentialVM
        uefiSettings:
          secureBootEnabled: true
          vTpmEnabled: true
      storageProfile:
        imageReference:
          offer: 2019-datacenter-cvm
          publisher: MicrosoftWindowsServer
          sku: windows-cvm
          version: 17763.2183.2109130127
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          managedDisk:
            securityProfile:
              diskEncryptionSet:
                id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
              securityEncryptionType: DiskWithVMGuestState
            storageAccountType: StandardSSD_LRS
          name: myVMosdisk
      vmName: myVM
Create a VM with securityType ConfidentialVM with Platform Managed Keys
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = "Standard_DC2as_v5",
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
        {
            SecurityType = AzureNative.Compute.SecurityTypes.ConfidentialVM,
            UefiSettings = new AzureNative.Compute.Inputs.UefiSettingsArgs
            {
                SecureBootEnabled = true,
                VTpmEnabled = true,
            },
        },
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "2019-datacenter-cvm",
                Publisher = "MicrosoftWindowsServer",
                Sku = "windows-cvm",
                Version = "17763.2183.2109130127",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
                    {
                        SecurityEncryptionType = AzureNative.Compute.SecurityEncryptionTypes.DiskWithVMGuestState,
                    },
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.StandardSSD_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String("Standard_DC2as_v5"),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SecurityProfile: &compute.SecurityProfileArgs{
				SecurityType: pulumi.String(compute.SecurityTypesConfidentialVM),
				UefiSettings: &compute.UefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
					VTpmEnabled:       pulumi.Bool(true),
				},
			},
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("2019-datacenter-cvm"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("windows-cvm"),
					Version:   pulumi.String("17763.2183.2109130127"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						SecurityProfile: &compute.VMDiskSecurityProfileArgs{
							SecurityEncryptionType: pulumi.String(compute.SecurityEncryptionTypesDiskWithVMGuestState),
						},
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_StandardSSD_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.SecurityProfileArgs;
import com.pulumi.azurenative.compute.inputs.UefiSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
import com.pulumi.azurenative.compute.inputs.VMDiskSecurityProfileArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DC2as_v5")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .securityProfile(SecurityProfileArgs.builder()
                .securityType("ConfidentialVM")
                .uefiSettings(UefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .vTpmEnabled(true)
                    .build())
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("2019-datacenter-cvm")
                    .publisher("MicrosoftWindowsServer")
                    .sku("windows-cvm")
                    .version("17763.2183.2109130127")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .securityProfile(VMDiskSecurityProfileArgs.builder()
                            .securityEncryptionType("DiskWithVMGuestState")
                            .build())
                        .storageAccountType("StandardSSD_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: "Standard_DC2as_v5",
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    securityProfile: {
        securityType: azure_native.compute.SecurityTypes.ConfidentialVM,
        uefiSettings: {
            secureBootEnabled: true,
            vTpmEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            offer: "2019-datacenter-cvm",
            publisher: "MicrosoftWindowsServer",
            sku: "windows-cvm",
            version: "17763.2183.2109130127",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                securityProfile: {
                    securityEncryptionType: azure_native.compute.SecurityEncryptionTypes.DiskWithVMGuestState,
                },
                storageAccountType: azure_native.compute.StorageAccountTypes.StandardSSD_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": "Standard_DC2as_v5",
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    security_profile={
        "security_type": azure_native.compute.SecurityTypes.CONFIDENTIAL_VM,
        "uefi_settings": {
            "secure_boot_enabled": True,
            "v_tpm_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "offer": "2019-datacenter-cvm",
            "publisher": "MicrosoftWindowsServer",
            "sku": "windows-cvm",
            "version": "17763.2183.2109130127",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "security_profile": {
                    "security_encryption_type": azure_native.compute.SecurityEncryptionTypes.DISK_WITH_VM_GUEST_STATE,
                },
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_SS_D_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DC2as_v5
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      securityProfile:
        securityType: ConfidentialVM
        uefiSettings:
          secureBootEnabled: true
          vTpmEnabled: true
      storageProfile:
        imageReference:
          offer: 2019-datacenter-cvm
          publisher: MicrosoftWindowsServer
          sku: windows-cvm
          version: 17763.2183.2109130127
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          managedDisk:
            securityProfile:
              securityEncryptionType: DiskWithVMGuestState
            storageAccountType: StandardSSD_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with a patch setting assessmentMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.WindowsPatchAssessmentMode.ImageDefault,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.WindowsPatchAssessmentModeImageDefault),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .assessmentMode("ImageDefault")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                assessmentMode: azure_native.compute.WindowsPatchAssessmentMode.ImageDefault,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "assessment_mode": azure_native.compute.WindowsPatchAssessmentMode.IMAGE_DEFAULT,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            assessmentMode: ImageDefault
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with a patch setting patchMode of AutomaticByOS.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    PatchMode = AzureNative.Compute.WindowsVMGuestPatchMode.AutomaticByOS,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						PatchMode: pulumi.String(compute.WindowsVMGuestPatchModeAutomaticByOS),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .patchMode("AutomaticByOS")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                patchMode: azure_native.compute.WindowsVMGuestPatchMode.AutomaticByOS,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "patch_mode": azure_native.compute.WindowsVMGuestPatchMode.AUTOMATIC_BY_OS,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            patchMode: AutomaticByOS
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with a patch setting patchMode of AutomaticByPlatform and AutomaticByPlatformSettings.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.WindowsPatchAssessmentMode.AutomaticByPlatform,
                    AutomaticByPlatformSettings = new AzureNative.Compute.Inputs.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs
                    {
                        BypassPlatformSafetyChecksOnUserSchedule = false,
                        RebootSetting = AzureNative.Compute.WindowsVMGuestPatchAutomaticByPlatformRebootSetting.Never,
                    },
                    PatchMode = AzureNative.Compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.WindowsPatchAssessmentModeAutomaticByPlatform),
						AutomaticByPlatformSettings: &compute.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs{
							BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(false),
							RebootSetting:                            pulumi.String(compute.WindowsVMGuestPatchAutomaticByPlatformRebootSettingNever),
						},
						PatchMode: pulumi.String(compute.WindowsVMGuestPatchModeAutomaticByPlatform),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .assessmentMode("AutomaticByPlatform")
                        .automaticByPlatformSettings(WindowsVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                            .bypassPlatformSafetyChecksOnUserSchedule(false)
                            .rebootSetting("Never")
                            .build())
                        .patchMode("AutomaticByPlatform")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                assessmentMode: azure_native.compute.WindowsPatchAssessmentMode.AutomaticByPlatform,
                automaticByPlatformSettings: {
                    bypassPlatformSafetyChecksOnUserSchedule: false,
                    rebootSetting: azure_native.compute.WindowsVMGuestPatchAutomaticByPlatformRebootSetting.Never,
                },
                patchMode: azure_native.compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "assessment_mode": azure_native.compute.WindowsPatchAssessmentMode.AUTOMATIC_BY_PLATFORM,
                "automatic_by_platform_settings": {
                    "bypass_platform_safety_checks_on_user_schedule": False,
                    "reboot_setting": azure_native.compute.WindowsVMGuestPatchAutomaticByPlatformRebootSetting.NEVER,
                },
                "patch_mode": azure_native.compute.WindowsVMGuestPatchMode.AUTOMATIC_BY_PLATFORM,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            assessmentMode: AutomaticByPlatform
            automaticByPlatformSettings:
              bypassPlatformSafetyChecksOnUserSchedule: false
              rebootSetting: Never
            patchMode: AutomaticByPlatform
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with a patch setting patchMode of AutomaticByPlatform and enableHotpatching set to true.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    EnableHotpatching = true,
                    PatchMode = AzureNative.Compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						EnableHotpatching: pulumi.Bool(true),
						PatchMode:         pulumi.String(compute.WindowsVMGuestPatchModeAutomaticByPlatform),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .enableHotpatching(true)
                        .patchMode("AutomaticByPlatform")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                enableHotpatching: true,
                patchMode: azure_native.compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "enable_hotpatching": True,
                "patch_mode": azure_native.compute.WindowsVMGuestPatchMode.AUTOMATIC_BY_PLATFORM,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            enableHotpatching: true
            patchMode: AutomaticByPlatform
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with a patch setting patchMode of Manual.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    PatchMode = AzureNative.Compute.WindowsVMGuestPatchMode.Manual,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						PatchMode: pulumi.String(compute.WindowsVMGuestPatchModeManual),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .patchMode("Manual")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                patchMode: azure_native.compute.WindowsVMGuestPatchMode.Manual,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "patch_mode": azure_native.compute.WindowsVMGuestPatchMode.MANUAL,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            patchMode: Manual
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a Windows vm with patch settings patchMode and assessmentMode set to AutomaticByPlatform.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
            {
                EnableAutomaticUpdates = true,
                PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
                {
                    AssessmentMode = AzureNative.Compute.WindowsPatchAssessmentMode.AutomaticByPlatform,
                    PatchMode = AzureNative.Compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
                },
                ProvisionVMAgent = true,
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				WindowsConfiguration: &compute.WindowsConfigurationArgs{
					EnableAutomaticUpdates: pulumi.Bool(true),
					PatchSettings: &compute.PatchSettingsArgs{
						AssessmentMode: pulumi.String(compute.WindowsPatchAssessmentModeAutomaticByPlatform),
						PatchMode:      pulumi.String(compute.WindowsVMGuestPatchModeAutomaticByPlatform),
					},
					ProvisionVMAgent: pulumi.Bool(true),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.WindowsConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.PatchSettingsArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .windowsConfiguration(WindowsConfigurationArgs.builder()
                    .enableAutomaticUpdates(true)
                    .patchSettings(PatchSettingsArgs.builder()
                        .assessmentMode("AutomaticByPlatform")
                        .patchMode("AutomaticByPlatform")
                        .build())
                    .provisionVMAgent(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
        windowsConfiguration: {
            enableAutomaticUpdates: true,
            patchSettings: {
                assessmentMode: azure_native.compute.WindowsPatchAssessmentMode.AutomaticByPlatform,
                patchMode: azure_native.compute.WindowsVMGuestPatchMode.AutomaticByPlatform,
            },
            provisionVMAgent: true,
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "windows_configuration": {
            "enable_automatic_updates": True,
            "patch_settings": {
                "assessment_mode": azure_native.compute.WindowsPatchAssessmentMode.AUTOMATIC_BY_PLATFORM,
                "patch_mode": azure_native.compute.WindowsVMGuestPatchMode.AUTOMATIC_BY_PLATFORM,
            },
            "provision_vm_agent": True,
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
        windowsConfiguration:
          enableAutomaticUpdates: true
          patchSettings:
            assessmentMode: AutomaticByPlatform
            patchMode: AutomaticByPlatform
          provisionVMAgent: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a custom-image vm from an unmanaged generalized os image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                Image = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                {
                    Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
                },
                Name = "myVMosdisk",
                OsType = AzureNative.Compute.OperatingSystemTypes.Windows,
                Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                {
                    Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
                },
            },
        },
        VmName = "{vm-name}",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					Image: &compute.VirtualHardDiskArgs{
						Uri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd"),
					},
					Name:   pulumi.String("myVMosdisk"),
					OsType: compute.OperatingSystemTypesWindows,
					Vhd: &compute.VirtualHardDiskArgs{
						Uri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd"),
					},
				},
			},
			VmName: pulumi.String("{vm-name}"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.VirtualHardDiskArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .image(VirtualHardDiskArgs.builder()
                        .uri("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd")
                        .build())
                    .name("myVMosdisk")
                    .osType("Windows")
                    .vhd(VirtualHardDiskArgs.builder()
                        .uri("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd")
                        .build())
                    .build())
                .build())
            .vmName("{vm-name}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            image: {
                uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
            },
            name: "myVMosdisk",
            osType: azure_native.compute.OperatingSystemTypes.Windows,
            vhd: {
                uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
            },
        },
    },
    vmName: "{vm-name}",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "image": {
                "uri": "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
            },
            "name": "myVMosdisk",
            "os_type": azure_native.compute.OperatingSystemTypes.WINDOWS,
            "vhd": {
                "uri": "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
            },
        },
    },
    vm_name="{vm-name}")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          image:
            uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd
          name: myVMosdisk
          osType: Windows
          vhd:
            uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd
      vmName: '{vm-name}'
Create a platform-image vm with unmanaged os and data disks.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            DataDisks = new[]
            {
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Empty,
                    DiskSizeGB = 1023,
                    Lun = 0,
                    Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                    {
                        Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
                    },
                },
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Empty,
                    DiskSizeGB = 1023,
                    Lun = 1,
                    Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                    {
                        Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
                    },
                },
            },
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                Name = "myVMosdisk",
                Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                {
                    Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
                },
            },
        },
        VmName = "{vm-name}",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				DataDisks: compute.DataDiskArray{
					&compute.DataDiskArgs{
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesEmpty),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(0),
						Vhd: &compute.VirtualHardDiskArgs{
							Uri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd"),
						},
					},
					&compute.DataDiskArgs{
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesEmpty),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(1),
						Vhd: &compute.VirtualHardDiskArgs{
							Uri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd"),
						},
					},
				},
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					Name:         pulumi.String("myVMosdisk"),
					Vhd: &compute.VirtualHardDiskArgs{
						Uri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd"),
					},
				},
			},
			VmName: pulumi.String("{vm-name}"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.VirtualHardDiskArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .dataDisks(                
                    DataDiskArgs.builder()
                        .createOption("Empty")
                        .diskSizeGB(1023)
                        .lun(0)
                        .vhd(VirtualHardDiskArgs.builder()
                            .uri("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd")
                            .build())
                        .build(),
                    DataDiskArgs.builder()
                        .createOption("Empty")
                        .diskSizeGB(1023)
                        .lun(1)
                        .vhd(VirtualHardDiskArgs.builder()
                            .uri("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd")
                            .build())
                        .build())
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .name("myVMosdisk")
                    .vhd(VirtualHardDiskArgs.builder()
                        .uri("http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd")
                        .build())
                    .build())
                .build())
            .vmName("{vm-name}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        dataDisks: [
            {
                createOption: azure_native.compute.DiskCreateOptionTypes.Empty,
                diskSizeGB: 1023,
                lun: 0,
                vhd: {
                    uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
                },
            },
            {
                createOption: azure_native.compute.DiskCreateOptionTypes.Empty,
                diskSizeGB: 1023,
                lun: 1,
                vhd: {
                    uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
                },
            },
        ],
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            name: "myVMosdisk",
            vhd: {
                uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
            },
        },
    },
    vmName: "{vm-name}",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "data_disks": [
            {
                "create_option": azure_native.compute.DiskCreateOptionTypes.EMPTY,
                "disk_size_gb": 1023,
                "lun": 0,
                "vhd": {
                    "uri": "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
                },
            },
            {
                "create_option": azure_native.compute.DiskCreateOptionTypes.EMPTY,
                "disk_size_gb": 1023,
                "lun": 1,
                "vhd": {
                    "uri": "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
                },
            },
        ],
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "name": "myVMosdisk",
            "vhd": {
                "uri": "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
            },
        },
    },
    vm_name="{vm-name}")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        dataDisks:
          - createOption: Empty
            diskSizeGB: 1023
            lun: 0
            vhd:
              uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd
          - createOption: Empty
            diskSizeGB: 1023
            lun: 1
            vhd:
              uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          name: myVMosdisk
          vhd:
            uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd
      vmName: '{vm-name}'
Create a vm from a custom image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm from a generalized shared image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm from a specialized shared image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm in a Virtual Machine Scale Set with customer assigned platformFaultDomain.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        PlatformFaultDomain = 1,
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VirtualMachineScaleSet = new AzureNative.Compute.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			PlatformFaultDomain: pulumi.Int(1),
			ResourceGroupName:   pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VirtualMachineScaleSet: &compute.SubResourceArgs{
				Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}"),
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
import com.pulumi.azurenative.compute.inputs.SubResourceArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .platformFaultDomain(1)
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .virtualMachineScaleSet(SubResourceArgs.builder()
                .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}")
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    platformFaultDomain: 1,
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    virtualMachineScaleSet: {
        id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    platform_fault_domain=1,
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    virtual_machine_scale_set={
        "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      platformFaultDomain: 1
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      virtualMachineScaleSet:
        id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}
      vmName: myVM
Create a vm in an availability set.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        AvailabilitySet = new AzureNative.Compute.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			AvailabilitySet: &compute.SubResourceArgs{
				Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}"),
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.SubResourceArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .availabilitySet(SubResourceArgs.builder()
                .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}")
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    availabilitySet: {
        id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    availability_set={
        "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      availabilitySet:
        id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with Application Profile.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        ApplicationProfile = new AzureNative.Compute.Inputs.ApplicationProfileArgs
        {
            GalleryApplications = new[]
            {
                new AzureNative.Compute.Inputs.VMGalleryApplicationArgs
                {
                    ConfigurationReference = "https://mystorageaccount.blob.core.windows.net/configurations/settings.config",
                    EnableAutomaticUpgrade = false,
                    Order = 1,
                    PackageReferenceId = "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0",
                    Tags = "myTag1",
                    TreatFailureAsDeploymentFailure = false,
                },
                new AzureNative.Compute.Inputs.VMGalleryApplicationArgs
                {
                    PackageReferenceId = "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1",
                },
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "{image_offer}",
                Publisher = "{image_publisher}",
                Sku = "{image_sku}",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			ApplicationProfile: &compute.ApplicationProfileArgs{
				GalleryApplications: compute.VMGalleryApplicationArray{
					&compute.VMGalleryApplicationArgs{
						ConfigurationReference:          pulumi.String("https://mystorageaccount.blob.core.windows.net/configurations/settings.config"),
						EnableAutomaticUpgrade:          pulumi.Bool(false),
						Order:                           pulumi.Int(1),
						PackageReferenceId:              pulumi.String("/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0"),
						Tags:                            pulumi.String("myTag1"),
						TreatFailureAsDeploymentFailure: pulumi.Bool(false),
					},
					&compute.VMGalleryApplicationArgs{
						PackageReferenceId: pulumi.String("/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1"),
					},
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("{image_offer}"),
					Publisher: pulumi.String("{image_publisher}"),
					Sku:       pulumi.String("{image_sku}"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.ApplicationProfileArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .applicationProfile(ApplicationProfileArgs.builder()
                .galleryApplications(                
                    VMGalleryApplicationArgs.builder()
                        .configurationReference("https://mystorageaccount.blob.core.windows.net/configurations/settings.config")
                        .enableAutomaticUpgrade(false)
                        .order(1)
                        .packageReferenceId("/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0")
                        .tags("myTag1")
                        .treatFailureAsDeploymentFailure(false)
                        .build(),
                    VMGalleryApplicationArgs.builder()
                        .packageReferenceId("/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1")
                        .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("{image_offer}")
                    .publisher("{image_publisher}")
                    .sku("{image_sku}")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    applicationProfile: {
        galleryApplications: [
            {
                configurationReference: "https://mystorageaccount.blob.core.windows.net/configurations/settings.config",
                enableAutomaticUpgrade: false,
                order: 1,
                packageReferenceId: "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0",
                tags: "myTag1",
                treatFailureAsDeploymentFailure: false,
            },
            {
                packageReferenceId: "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1",
            },
        ],
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "{image_offer}",
            publisher: "{image_publisher}",
            sku: "{image_sku}",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    application_profile={
        "gallery_applications": [
            {
                "configuration_reference": "https://mystorageaccount.blob.core.windows.net/configurations/settings.config",
                "enable_automatic_upgrade": False,
                "order": 1,
                "package_reference_id": "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0",
                "tags": "myTag1",
                "treat_failure_as_deployment_failure": False,
            },
            {
                "package_reference_id": "/subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1",
            },
        ],
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "{image_offer}",
            "publisher": "{image_publisher}",
            "sku": "{image_sku}",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      applicationProfile:
        galleryApplications:
          - configurationReference: https://mystorageaccount.blob.core.windows.net/configurations/settings.config
            enableAutomaticUpgrade: false
            order: 1
            packageReferenceId: /subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdb/resourceGroups/myresourceGroupName2/providers/Microsoft.Compute/galleries/myGallery1/applications/MyApplication1/versions/1.0
            tags: myTag1
            treatFailureAsDeploymentFailure: false
          - packageReferenceId: /subscriptions/32c17a9e-aa7b-4ba5-a45b-e324116b6fdg/resourceGroups/myresourceGroupName3/providers/Microsoft.Compute/galleries/myGallery2/applications/MyApplication2/versions/1.1
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: '{image_offer}'
          publisher: '{image_publisher}'
          sku: '{image_sku}'
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with DiskEncryptionSet resource id in the os disk and data disk.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            DataDisks = new[]
            {
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Empty,
                    DiskSizeGB = 1023,
                    Lun = 0,
                    ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                    {
                        DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                        {
                            Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                        },
                        StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                    },
                },
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Attach,
                    DiskSizeGB = 1023,
                    Lun = 1,
                    ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                    {
                        DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                        {
                            Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                        },
                        Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
                        StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                    },
                },
            },
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                    {
                        Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				DataDisks: compute.DataDiskArray{
					&compute.DataDiskArgs{
						Caching:      compute.CachingTypesReadWrite,
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesEmpty),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(0),
						ManagedDisk: &compute.ManagedDiskParametersArgs{
							DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
								Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}"),
							},
							StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
						},
					},
					&compute.DataDiskArgs{
						Caching:      compute.CachingTypesReadWrite,
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesAttach),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(1),
						ManagedDisk: &compute.ManagedDiskParametersArgs{
							DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
								Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}"),
							},
							Id:                 pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}"),
							StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
						},
					},
				},
				ImageReference: &compute.ImageReferenceArgs{
					Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
							Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}"),
						},
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
import com.pulumi.azurenative.compute.inputs.DiskEncryptionSetParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .dataDisks(                
                    DataDiskArgs.builder()
                        .caching("ReadWrite")
                        .createOption("Empty")
                        .diskSizeGB(1023)
                        .lun(0)
                        .managedDisk(ManagedDiskParametersArgs.builder()
                            .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")
                                .build())
                            .storageAccountType("Standard_LRS")
                            .build())
                        .build(),
                    DataDiskArgs.builder()
                        .caching("ReadWrite")
                        .createOption("Attach")
                        .diskSizeGB(1023)
                        .lun(1)
                        .managedDisk(ManagedDiskParametersArgs.builder()
                            .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                                .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")
                                .build())
                            .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}")
                            .storageAccountType("Standard_LRS")
                            .build())
                        .build())
                .imageReference(ImageReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                            .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")
                            .build())
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        dataDisks: [
            {
                caching: azure_native.compute.CachingTypes.ReadWrite,
                createOption: azure_native.compute.DiskCreateOptionTypes.Empty,
                diskSizeGB: 1023,
                lun: 0,
                managedDisk: {
                    diskEncryptionSet: {
                        id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
                },
            },
            {
                caching: azure_native.compute.CachingTypes.ReadWrite,
                createOption: azure_native.compute.DiskCreateOptionTypes.Attach,
                diskSizeGB: 1023,
                lun: 1,
                managedDisk: {
                    diskEncryptionSet: {
                        id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
                    storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
                },
            },
        ],
        imageReference: {
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                diskEncryptionSet: {
                    id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                },
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "data_disks": [
            {
                "caching": azure_native.compute.CachingTypes.READ_WRITE,
                "create_option": azure_native.compute.DiskCreateOptionTypes.EMPTY,
                "disk_size_gb": 1023,
                "lun": 0,
                "managed_disk": {
                    "disk_encryption_set": {
                        "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
                },
            },
            {
                "caching": azure_native.compute.CachingTypes.READ_WRITE,
                "create_option": azure_native.compute.DiskCreateOptionTypes.ATTACH,
                "disk_size_gb": 1023,
                "lun": 1,
                "managed_disk": {
                    "disk_encryption_set": {
                        "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                    },
                    "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
                    "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
                },
            },
        ],
        "image_reference": {
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "disk_encryption_set": {
                    "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
                },
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        dataDisks:
          - caching: ReadWrite
            createOption: Empty
            diskSizeGB: 1023
            lun: 0
            managedDisk:
              diskEncryptionSet:
                id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
              storageAccountType: Standard_LRS
          - caching: ReadWrite
            createOption: Attach
            diskSizeGB: 1023
            lun: 1
            managedDisk:
              diskEncryptionSet:
                id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
              id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}
              storageAccountType: Standard_LRS
        imageReference:
          id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            diskEncryptionSet:
              id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with Host Encryption using encryptionAtHost property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_DS1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
        {
            EncryptionAtHost = true,
        },
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_DS1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SecurityProfile: &compute.SecurityProfileArgs{
				EncryptionAtHost: pulumi.Bool(true),
			},
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.SecurityProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DS1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .securityProfile(SecurityProfileArgs.builder()
                .encryptionAtHost(true)
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_DS1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    securityProfile: {
        encryptionAtHost: true,
    },
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_DS1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    security_profile={
        "encryption_at_host": True,
    },
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DS1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      securityProfile:
        encryptionAtHost: true
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with Scheduled Events Profile
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        ScheduledEventsProfile = new AzureNative.Compute.Inputs.ScheduledEventsProfileArgs
        {
            OsImageNotificationProfile = new AzureNative.Compute.Inputs.OSImageNotificationProfileArgs
            {
                Enable = true,
                NotBeforeTimeout = "PT15M",
            },
            TerminateNotificationProfile = new AzureNative.Compute.Inputs.TerminateNotificationProfileArgs
            {
                Enable = true,
                NotBeforeTimeout = "PT10M",
            },
        },
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			ScheduledEventsProfile: &compute.ScheduledEventsProfileArgs{
				OsImageNotificationProfile: &compute.OSImageNotificationProfileArgs{
					Enable:           pulumi.Bool(true),
					NotBeforeTimeout: pulumi.String("PT15M"),
				},
				TerminateNotificationProfile: &compute.TerminateNotificationProfileArgs{
					Enable:           pulumi.Bool(true),
					NotBeforeTimeout: pulumi.String("PT10M"),
				},
			},
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.ScheduledEventsProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSImageNotificationProfileArgs;
import com.pulumi.azurenative.compute.inputs.TerminateNotificationProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .scheduledEventsProfile(ScheduledEventsProfileArgs.builder()
                .osImageNotificationProfile(OSImageNotificationProfileArgs.builder()
                    .enable(true)
                    .notBeforeTimeout("PT15M")
                    .build())
                .terminateNotificationProfile(TerminateNotificationProfileArgs.builder()
                    .enable(true)
                    .notBeforeTimeout("PT10M")
                    .build())
                .build())
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    scheduledEventsProfile: {
        osImageNotificationProfile: {
            enable: true,
            notBeforeTimeout: "PT15M",
        },
        terminateNotificationProfile: {
            enable: true,
            notBeforeTimeout: "PT10M",
        },
    },
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    scheduled_events_profile={
        "os_image_notification_profile": {
            "enable": True,
            "not_before_timeout": "PT15M",
        },
        "terminate_notification_profile": {
            "enable": True,
            "not_before_timeout": "PT10M",
        },
    },
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      scheduledEventsProfile:
        osImageNotificationProfile:
          enable: true
          notBeforeTimeout: PT15M
        terminateNotificationProfile:
          enable: true
          notBeforeTimeout: PT10M
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with a marketplace image plan.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with an extensions time budget.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        ExtensionsTimeBudget = "PT30M",
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			ExtensionsTimeBudget: pulumi.String("PT30M"),
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .extensionsTimeBudget("PT30M")
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    extensionsTimeBudget: "PT30M",
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    extensions_time_budget="PT30M",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      extensionsTimeBudget: PT30M
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with boot diagnostics.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
                StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled:    pulumi.Bool(true),
					StorageUri: pulumi.String("http://{existing-storage-account-name}.blob.core.windows.net"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .storageUri("http://{existing-storage-account-name}.blob.core.windows.net")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
            storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
            "storage_uri": "http://{existing-storage-account-name}.blob.core.windows.net",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
          storageUri: http://{existing-storage-account-name}.blob.core.windows.net
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with empty data disks.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D2_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            DataDisks = new[]
            {
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Empty,
                    DiskSizeGB = 1023,
                    Lun = 0,
                },
                new AzureNative.Compute.Inputs.DataDiskArgs
                {
                    CreateOption = AzureNative.Compute.DiskCreateOptionTypes.Empty,
                    DiskSizeGB = 1023,
                    Lun = 1,
                },
            },
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D2_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				DataDisks: compute.DataDiskArray{
					&compute.DataDiskArgs{
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesEmpty),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(0),
					},
					&compute.DataDiskArgs{
						CreateOption: pulumi.String(compute.DiskCreateOptionTypesEmpty),
						DiskSizeGB:   pulumi.Int(1023),
						Lun:          pulumi.Int(1),
					},
				},
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D2_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .dataDisks(                
                    DataDiskArgs.builder()
                        .createOption("Empty")
                        .diskSizeGB(1023)
                        .lun(0)
                        .build(),
                    DataDiskArgs.builder()
                        .createOption("Empty")
                        .diskSizeGB(1023)
                        .lun(1)
                        .build())
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D2_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        dataDisks: [
            {
                createOption: azure_native.compute.DiskCreateOptionTypes.Empty,
                diskSizeGB: 1023,
                lun: 0,
            },
            {
                createOption: azure_native.compute.DiskCreateOptionTypes.Empty,
                diskSizeGB: 1023,
                lun: 1,
            },
        ],
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D2_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "data_disks": [
            {
                "create_option": azure_native.compute.DiskCreateOptionTypes.EMPTY,
                "disk_size_gb": 1023,
                "lun": 0,
            },
            {
                "create_option": azure_native.compute.DiskCreateOptionTypes.EMPTY,
                "disk_size_gb": 1023,
                "lun": 1,
            },
        ],
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D2_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        dataDisks:
          - createOption: Empty
            diskSizeGB: 1023
            lun: 0
          - createOption: Empty
            diskSizeGB: 1023
            lun: 1
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with ephemeral os disk provisioning in Cache disk using placement property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_DS1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
                {
                    Option = AzureNative.Compute.DiffDiskOptions.Local,
                    Placement = AzureNative.Compute.DiffDiskPlacement.CacheDisk,
                },
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_DS1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					DiffDiskSettings: &compute.DiffDiskSettingsArgs{
						Option:    pulumi.String(compute.DiffDiskOptionsLocal),
						Placement: pulumi.String(compute.DiffDiskPlacementCacheDisk),
					},
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.DiffDiskSettingsArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DS1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .diffDiskSettings(DiffDiskSettingsArgs.builder()
                        .option("Local")
                        .placement("CacheDisk")
                        .build())
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_DS1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            diffDiskSettings: {
                option: azure_native.compute.DiffDiskOptions.Local,
                placement: azure_native.compute.DiffDiskPlacement.CacheDisk,
            },
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_DS1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "diff_disk_settings": {
                "option": azure_native.compute.DiffDiskOptions.LOCAL,
                "placement": azure_native.compute.DiffDiskPlacement.CACHE_DISK,
            },
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DS1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          diffDiskSettings:
            option: Local
            placement: CacheDisk
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with ephemeral os disk provisioning in Resource disk using placement property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_DS1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
                {
                    Option = AzureNative.Compute.DiffDiskOptions.Local,
                    Placement = AzureNative.Compute.DiffDiskPlacement.ResourceDisk,
                },
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_DS1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					DiffDiskSettings: &compute.DiffDiskSettingsArgs{
						Option:    pulumi.String(compute.DiffDiskOptionsLocal),
						Placement: pulumi.String(compute.DiffDiskPlacementResourceDisk),
					},
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.DiffDiskSettingsArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DS1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .diffDiskSettings(DiffDiskSettingsArgs.builder()
                        .option("Local")
                        .placement("ResourceDisk")
                        .build())
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_DS1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            diffDiskSettings: {
                option: azure_native.compute.DiffDiskOptions.Local,
                placement: azure_native.compute.DiffDiskPlacement.ResourceDisk,
            },
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_DS1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "diff_disk_settings": {
                "option": azure_native.compute.DiffDiskOptions.LOCAL,
                "placement": azure_native.compute.DiffDiskPlacement.RESOURCE_DISK,
            },
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DS1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          diffDiskSettings:
            option: Local
            placement: ResourceDisk
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with ephemeral os disk.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_DS1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
                {
                    Option = AzureNative.Compute.DiffDiskOptions.Local,
                },
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_DS1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					DiffDiskSettings: &compute.DiffDiskSettingsArgs{
						Option: pulumi.String(compute.DiffDiskOptionsLocal),
					},
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.DiffDiskSettingsArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DS1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .diffDiskSettings(DiffDiskSettingsArgs.builder()
                        .option("Local")
                        .build())
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_DS1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            diffDiskSettings: {
                option: azure_native.compute.DiffDiskOptions.Local,
            },
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_DS1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "diff_disk_settings": {
                "option": azure_native.compute.DiffDiskOptions.LOCAL,
            },
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_DS1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          diffDiskSettings:
            option: Local
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with managed boot diagnostics.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
        {
            BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
            {
                Enabled = true,
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
				BootDiagnostics: &compute.BootDiagnosticsArgs{
					Enabled: pulumi.Bool(true),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.DiagnosticsProfileArgs;
import com.pulumi.azurenative.compute.inputs.BootDiagnosticsArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .diagnosticsProfile(DiagnosticsProfileArgs.builder()
                .bootDiagnostics(BootDiagnosticsArgs.builder()
                    .enabled(true)
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: true,
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": True,
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      diagnosticsProfile:
        bootDiagnostics:
          enabled: true
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with password authentication.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with premium storage.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "WindowsServer",
                Publisher = "MicrosoftWindowsServer",
                Sku = "2016-Datacenter",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Premium_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("WindowsServer"),
					Publisher: pulumi.String("MicrosoftWindowsServer"),
					Sku:       pulumi.String("2016-Datacenter"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Premium_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("WindowsServer")
                    .publisher("MicrosoftWindowsServer")
                    .sku("2016-Datacenter")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Premium_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "WindowsServer",
            publisher: "MicrosoftWindowsServer",
            sku: "2016-Datacenter",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Premium_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "WindowsServer",
            "publisher": "MicrosoftWindowsServer",
            "sku": "2016-Datacenter",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.PREMIUM_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: WindowsServer
          publisher: MicrosoftWindowsServer
          sku: 2016-Datacenter
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Premium_LRS
          name: myVMosdisk
      vmName: myVM
Create a vm with ssh authentication.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_D1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
            LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
            {
                DisablePasswordAuthentication = true,
                Ssh = new AzureNative.Compute.Inputs.SshConfigurationArgs
                {
                    PublicKeys = new[]
                    {
                        new AzureNative.Compute.Inputs.SshPublicKeyArgs
                        {
                            KeyData = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
                            Path = "/home/{your-username}/.ssh/authorized_keys",
                        },
                    },
                },
            },
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "{image_offer}",
                Publisher = "{image_publisher}",
                Sku = "{image_sku}",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadWrite,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_D1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
				LinuxConfiguration: &compute.LinuxConfigurationArgs{
					DisablePasswordAuthentication: pulumi.Bool(true),
					Ssh: &compute.SshConfigurationArgs{
						PublicKeys: compute.SshPublicKeyTypeArray{
							&compute.SshPublicKeyTypeArgs{
								KeyData: pulumi.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1"),
								Path:    pulumi.String("/home/{your-username}/.ssh/authorized_keys"),
							},
						},
					},
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("{image_offer}"),
					Publisher: pulumi.String("{image_publisher}"),
					Sku:       pulumi.String("{image_sku}"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadWrite,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.LinuxConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.SshConfigurationArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_D1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminUsername("{your-username}")
                .computerName("myVM")
                .linuxConfiguration(LinuxConfigurationArgs.builder()
                    .disablePasswordAuthentication(true)
                    .ssh(SshConfigurationArgs.builder()
                        .publicKeys(SshPublicKeyArgs.builder()
                            .keyData("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1")
                            .path("/home/{your-username}/.ssh/authorized_keys")
                            .build())
                        .build())
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("{image_offer}")
                    .publisher("{image_publisher}")
                    .sku("{image_sku}")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadWrite")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_D1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminUsername: "{your-username}",
        computerName: "myVM",
        linuxConfiguration: {
            disablePasswordAuthentication: true,
            ssh: {
                publicKeys: [{
                    keyData: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
                    path: "/home/{your-username}/.ssh/authorized_keys",
                }],
            },
        },
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "{image_offer}",
            publisher: "{image_publisher}",
            sku: "{image_sku}",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadWrite,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_D1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_username": "{your-username}",
        "computer_name": "myVM",
        "linux_configuration": {
            "disable_password_authentication": True,
            "ssh": {
                "public_keys": [{
                    "key_data": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
                    "path": "/home/{your-username}/.ssh/authorized_keys",
                }],
            },
        },
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "{image_offer}",
            "publisher": "{image_publisher}",
            "sku": "{image_sku}",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_WRITE,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      hardwareProfile:
        vmSize: Standard_D1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminUsername: '{your-username}'
        computerName: myVM
        linuxConfiguration:
          disablePasswordAuthentication: true
          ssh:
            publicKeys:
              - keyData: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1
                path: /home/{your-username}/.ssh/authorized_keys
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: '{image_offer}'
          publisher: '{image_publisher}'
          sku: '{image_sku}'
          version: latest
        osDisk:
          caching: ReadWrite
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
Create or update a VM with capacity reservation
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
    {
        CapacityReservation = new AzureNative.Compute.Inputs.CapacityReservationProfileArgs
        {
            CapacityReservationGroup = new AzureNative.Compute.Inputs.SubResourceArgs
            {
                Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}",
            },
        },
        HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
        {
            VmSize = AzureNative.Compute.VirtualMachineSizeTypes.Standard_DS1_v2,
        },
        Location = "westus",
        NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
                {
                    Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
                    Primary = true,
                },
            },
        },
        OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
        {
            AdminPassword = "{your-password}",
            AdminUsername = "{your-username}",
            ComputerName = "myVM",
        },
        Plan = new AzureNative.Compute.Inputs.PlanArgs
        {
            Name = "windows2016",
            Product = "windows-data-science-vm",
            Publisher = "microsoft-ads",
        },
        ResourceGroupName = "myResourceGroup",
        StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
        {
            ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
            {
                Offer = "windows-data-science-vm",
                Publisher = "microsoft-ads",
                Sku = "windows2016",
                Version = "latest",
            },
            OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
            {
                Caching = AzureNative.Compute.CachingTypes.ReadOnly,
                CreateOption = AzureNative.Compute.DiskCreateOptionTypes.FromImage,
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    StorageAccountType = AzureNative.Compute.StorageAccountTypes.Standard_LRS,
                },
                Name = "myVMosdisk",
            },
        },
        VmName = "myVM",
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewVirtualMachine(ctx, "virtualMachine", &compute.VirtualMachineArgs{
			CapacityReservation: &compute.CapacityReservationProfileArgs{
				CapacityReservationGroup: &compute.SubResourceArgs{
					Id: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}"),
				},
			},
			HardwareProfile: &compute.HardwareProfileArgs{
				VmSize: pulumi.String(compute.VirtualMachineSizeTypes_Standard_DS1_v2),
			},
			Location: pulumi.String("westus"),
			NetworkProfile: &compute.NetworkProfileArgs{
				NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
					&compute.NetworkInterfaceReferenceArgs{
						Id:      pulumi.String("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
						Primary: pulumi.Bool(true),
					},
				},
			},
			OsProfile: &compute.OSProfileArgs{
				AdminPassword: pulumi.String("{your-password}"),
				AdminUsername: pulumi.String("{your-username}"),
				ComputerName:  pulumi.String("myVM"),
			},
			Plan: &compute.PlanArgs{
				Name:      pulumi.String("windows2016"),
				Product:   pulumi.String("windows-data-science-vm"),
				Publisher: pulumi.String("microsoft-ads"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			StorageProfile: &compute.StorageProfileArgs{
				ImageReference: &compute.ImageReferenceArgs{
					Offer:     pulumi.String("windows-data-science-vm"),
					Publisher: pulumi.String("microsoft-ads"),
					Sku:       pulumi.String("windows2016"),
					Version:   pulumi.String("latest"),
				},
				OsDisk: &compute.OSDiskArgs{
					Caching:      compute.CachingTypesReadOnly,
					CreateOption: pulumi.String(compute.DiskCreateOptionTypesFromImage),
					ManagedDisk: &compute.ManagedDiskParametersArgs{
						StorageAccountType: pulumi.String(compute.StorageAccountTypes_Standard_LRS),
					},
					Name: pulumi.String("myVMosdisk"),
				},
			},
			VmName: pulumi.String("myVM"),
		})
		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.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import com.pulumi.azurenative.compute.inputs.CapacityReservationProfileArgs;
import com.pulumi.azurenative.compute.inputs.SubResourceArgs;
import com.pulumi.azurenative.compute.inputs.HardwareProfileArgs;
import com.pulumi.azurenative.compute.inputs.NetworkProfileArgs;
import com.pulumi.azurenative.compute.inputs.OSProfileArgs;
import com.pulumi.azurenative.compute.inputs.PlanArgs;
import com.pulumi.azurenative.compute.inputs.StorageProfileArgs;
import com.pulumi.azurenative.compute.inputs.ImageReferenceArgs;
import com.pulumi.azurenative.compute.inputs.OSDiskArgs;
import com.pulumi.azurenative.compute.inputs.ManagedDiskParametersArgs;
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()
            .capacityReservation(CapacityReservationProfileArgs.builder()
                .capacityReservationGroup(SubResourceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}")
                    .build())
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .vmSize("Standard_DS1_v2")
                .build())
            .location("westus")
            .networkProfile(NetworkProfileArgs.builder()
                .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
                    .id("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}")
                    .primary(true)
                    .build())
                .build())
            .osProfile(OSProfileArgs.builder()
                .adminPassword("{your-password}")
                .adminUsername("{your-username}")
                .computerName("myVM")
                .build())
            .plan(PlanArgs.builder()
                .name("windows2016")
                .product("windows-data-science-vm")
                .publisher("microsoft-ads")
                .build())
            .resourceGroupName("myResourceGroup")
            .storageProfile(StorageProfileArgs.builder()
                .imageReference(ImageReferenceArgs.builder()
                    .offer("windows-data-science-vm")
                    .publisher("microsoft-ads")
                    .sku("windows2016")
                    .version("latest")
                    .build())
                .osDisk(OSDiskArgs.builder()
                    .caching("ReadOnly")
                    .createOption("FromImage")
                    .managedDisk(ManagedDiskParametersArgs.builder()
                        .storageAccountType("Standard_LRS")
                        .build())
                    .name("myVMosdisk")
                    .build())
                .build())
            .vmName("myVM")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
    capacityReservation: {
        capacityReservationGroup: {
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}",
        },
    },
    hardwareProfile: {
        vmSize: azure_native.compute.VirtualMachineSizeTypes.Standard_DS1_v2,
    },
    location: "westus",
    networkProfile: {
        networkInterfaces: [{
            id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            primary: true,
        }],
    },
    osProfile: {
        adminPassword: "{your-password}",
        adminUsername: "{your-username}",
        computerName: "myVM",
    },
    plan: {
        name: "windows2016",
        product: "windows-data-science-vm",
        publisher: "microsoft-ads",
    },
    resourceGroupName: "myResourceGroup",
    storageProfile: {
        imageReference: {
            offer: "windows-data-science-vm",
            publisher: "microsoft-ads",
            sku: "windows2016",
            version: "latest",
        },
        osDisk: {
            caching: azure_native.compute.CachingTypes.ReadOnly,
            createOption: azure_native.compute.DiskCreateOptionTypes.FromImage,
            managedDisk: {
                storageAccountType: azure_native.compute.StorageAccountTypes.Standard_LRS,
            },
            name: "myVMosdisk",
        },
    },
    vmName: "myVM",
});
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
    capacity_reservation={
        "capacity_reservation_group": {
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}",
        },
    },
    hardware_profile={
        "vm_size": azure_native.compute.VirtualMachineSizeTypes.STANDARD_DS1_V2,
    },
    location="westus",
    network_profile={
        "network_interfaces": [{
            "id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
            "primary": True,
        }],
    },
    os_profile={
        "admin_password": "{your-password}",
        "admin_username": "{your-username}",
        "computer_name": "myVM",
    },
    plan={
        "name": "windows2016",
        "product": "windows-data-science-vm",
        "publisher": "microsoft-ads",
    },
    resource_group_name="myResourceGroup",
    storage_profile={
        "image_reference": {
            "offer": "windows-data-science-vm",
            "publisher": "microsoft-ads",
            "sku": "windows2016",
            "version": "latest",
        },
        "os_disk": {
            "caching": azure_native.compute.CachingTypes.READ_ONLY,
            "create_option": azure_native.compute.DiskCreateOptionTypes.FROM_IMAGE,
            "managed_disk": {
                "storage_account_type": azure_native.compute.StorageAccountTypes.STANDARD_LRS,
            },
            "name": "myVMosdisk",
        },
    },
    vm_name="myVM")
resources:
  virtualMachine:
    type: azure-native:compute:VirtualMachine
    properties:
      capacityReservation:
        capacityReservationGroup:
          id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/CapacityReservationGroups/{crgName}
      hardwareProfile:
        vmSize: Standard_DS1_v2
      location: westus
      networkProfile:
        networkInterfaces:
          - id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
            primary: true
      osProfile:
        adminPassword: '{your-password}'
        adminUsername: '{your-username}'
        computerName: myVM
      plan:
        name: windows2016
        product: windows-data-science-vm
        publisher: microsoft-ads
      resourceGroupName: myResourceGroup
      storageProfile:
        imageReference:
          offer: windows-data-science-vm
          publisher: microsoft-ads
          sku: windows2016
          version: latest
        osDisk:
          caching: ReadOnly
          createOption: FromImage
          managedDisk:
            storageAccountType: Standard_LRS
          name: myVMosdisk
      vmName: myVM
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,
                   resource_group_name: Optional[str] = None,
                   extended_location: Optional[ExtendedLocationArgs] = None,
                   diagnostics_profile: Optional[DiagnosticsProfileArgs] = None,
                   network_profile: Optional[NetworkProfileArgs] = None,
                   capacity_reservation: Optional[CapacityReservationProfileArgs] = None,
                   os_profile: Optional[OSProfileArgs] = None,
                   eviction_policy: Optional[Union[str, VirtualMachineEvictionPolicyTypes]] = None,
                   additional_capabilities: Optional[AdditionalCapabilitiesArgs] = None,
                   extensions_time_budget: Optional[str] = None,
                   hardware_profile: Optional[HardwareProfileArgs] = None,
                   host: Optional[SubResourceArgs] = None,
                   host_group: Optional[SubResourceArgs] = None,
                   plan: Optional[PlanArgs] = None,
                   license_type: Optional[str] = None,
                   location: Optional[str] = None,
                   billing_profile: Optional[BillingProfileArgs] = None,
                   availability_set: Optional[SubResourceArgs] = None,
                   identity: Optional[VirtualMachineIdentityArgs] = None,
                   platform_fault_domain: Optional[int] = None,
                   priority: Optional[Union[str, VirtualMachinePriorityTypes]] = None,
                   proximity_placement_group: Optional[SubResourceArgs] = None,
                   application_profile: Optional[ApplicationProfileArgs] = None,
                   scheduled_events_profile: Optional[ScheduledEventsProfileArgs] = None,
                   security_profile: Optional[SecurityProfileArgs] = None,
                   storage_profile: Optional[StorageProfileArgs] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   user_data: Optional[str] = None,
                   virtual_machine_scale_set: Optional[SubResourceArgs] = None,
                   vm_name: Optional[str] = None,
                   zones: Optional[Sequence[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:compute: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 azure_nativeVirtualMachineResource = new AzureNative.Compute.VirtualMachine("azure-nativeVirtualMachineResource", new()
{
    ResourceGroupName = "string",
    ExtendedLocation = new AzureNative.Compute.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
    {
        BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
        {
            Enabled = false,
            StorageUri = "string",
        },
    },
    NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
    {
        NetworkApiVersion = "string",
        NetworkInterfaceConfigurations = new[]
        {
            new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceConfigurationArgs
            {
                IpConfigurations = new[]
                {
                    new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceIPConfigurationArgs
                    {
                        Name = "string",
                        ApplicationGatewayBackendAddressPools = new[]
                        {
                            new AzureNative.Compute.Inputs.SubResourceArgs
                            {
                                Id = "string",
                            },
                        },
                        ApplicationSecurityGroups = new[]
                        {
                            new AzureNative.Compute.Inputs.SubResourceArgs
                            {
                                Id = "string",
                            },
                        },
                        LoadBalancerBackendAddressPools = new[]
                        {
                            new AzureNative.Compute.Inputs.SubResourceArgs
                            {
                                Id = "string",
                            },
                        },
                        Primary = false,
                        PrivateIPAddressVersion = "string",
                        PublicIPAddressConfiguration = new AzureNative.Compute.Inputs.VirtualMachinePublicIPAddressConfigurationArgs
                        {
                            Name = "string",
                            DeleteOption = "string",
                            DnsSettings = new AzureNative.Compute.Inputs.VirtualMachinePublicIPAddressDnsSettingsConfigurationArgs
                            {
                                DomainNameLabel = "string",
                            },
                            IdleTimeoutInMinutes = 0,
                            IpTags = new[]
                            {
                                new AzureNative.Compute.Inputs.VirtualMachineIpTagArgs
                                {
                                    IpTagType = "string",
                                    Tag = "string",
                                },
                            },
                            PublicIPAddressVersion = "string",
                            PublicIPAllocationMethod = "string",
                            PublicIPPrefix = new AzureNative.Compute.Inputs.SubResourceArgs
                            {
                                Id = "string",
                            },
                            Sku = new AzureNative.Compute.Inputs.PublicIPAddressSkuArgs
                            {
                                Name = "string",
                                Tier = "string",
                            },
                        },
                        Subnet = new AzureNative.Compute.Inputs.SubResourceArgs
                        {
                            Id = "string",
                        },
                    },
                },
                Name = "string",
                DeleteOption = "string",
                DisableTcpStateTracking = false,
                DnsSettings = new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceDnsSettingsConfigurationArgs
                {
                    DnsServers = new[]
                    {
                        "string",
                    },
                },
                DscpConfiguration = new AzureNative.Compute.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                EnableAcceleratedNetworking = false,
                EnableFpga = false,
                EnableIPForwarding = false,
                NetworkSecurityGroup = new AzureNative.Compute.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                Primary = false,
            },
        },
        NetworkInterfaces = new[]
        {
            new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
            {
                DeleteOption = "string",
                Id = "string",
                Primary = false,
            },
        },
    },
    CapacityReservation = new AzureNative.Compute.Inputs.CapacityReservationProfileArgs
    {
        CapacityReservationGroup = new AzureNative.Compute.Inputs.SubResourceArgs
        {
            Id = "string",
        },
    },
    OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
    {
        AdminPassword = "string",
        AdminUsername = "string",
        AllowExtensionOperations = false,
        ComputerName = "string",
        CustomData = "string",
        LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
        {
            DisablePasswordAuthentication = false,
            EnableVMAgentPlatformUpdates = false,
            PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
            {
                AssessmentMode = "string",
                AutomaticByPlatformSettings = new AzureNative.Compute.Inputs.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs
                {
                    BypassPlatformSafetyChecksOnUserSchedule = false,
                    RebootSetting = "string",
                },
                PatchMode = "string",
            },
            ProvisionVMAgent = false,
            Ssh = new AzureNative.Compute.Inputs.SshConfigurationArgs
            {
                PublicKeys = new[]
                {
                    new AzureNative.Compute.Inputs.SshPublicKeyArgs
                    {
                        KeyData = "string",
                        Path = "string",
                    },
                },
            },
        },
        RequireGuestProvisionSignal = false,
        Secrets = new[]
        {
            new AzureNative.Compute.Inputs.VaultSecretGroupArgs
            {
                SourceVault = new AzureNative.Compute.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                VaultCertificates = new[]
                {
                    new AzureNative.Compute.Inputs.VaultCertificateArgs
                    {
                        CertificateStore = "string",
                        CertificateUrl = "string",
                    },
                },
            },
        },
        WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
        {
            AdditionalUnattendContent = new[]
            {
                new AzureNative.Compute.Inputs.AdditionalUnattendContentArgs
                {
                    ComponentName = AzureNative.Compute.ComponentNames.Microsoft_Windows_Shell_Setup,
                    Content = "string",
                    PassName = AzureNative.Compute.PassNames.OobeSystem,
                    SettingName = AzureNative.Compute.SettingNames.AutoLogon,
                },
            },
            EnableAutomaticUpdates = false,
            EnableVMAgentPlatformUpdates = false,
            PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
            {
                AssessmentMode = "string",
                AutomaticByPlatformSettings = new AzureNative.Compute.Inputs.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs
                {
                    BypassPlatformSafetyChecksOnUserSchedule = false,
                    RebootSetting = "string",
                },
                EnableHotpatching = false,
                PatchMode = "string",
            },
            ProvisionVMAgent = false,
            TimeZone = "string",
            WinRM = new AzureNative.Compute.Inputs.WinRMConfigurationArgs
            {
                Listeners = new[]
                {
                    new AzureNative.Compute.Inputs.WinRMListenerArgs
                    {
                        CertificateUrl = "string",
                        Protocol = AzureNative.Compute.ProtocolTypes.Http,
                    },
                },
            },
        },
    },
    EvictionPolicy = "string",
    AdditionalCapabilities = new AzureNative.Compute.Inputs.AdditionalCapabilitiesArgs
    {
        HibernationEnabled = false,
        UltraSSDEnabled = false,
    },
    ExtensionsTimeBudget = "string",
    HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
    {
        VmSize = "string",
        VmSizeProperties = new AzureNative.Compute.Inputs.VMSizePropertiesArgs
        {
            VCPUsAvailable = 0,
            VCPUsPerCore = 0,
        },
    },
    Host = new AzureNative.Compute.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    HostGroup = new AzureNative.Compute.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    Plan = new AzureNative.Compute.Inputs.PlanArgs
    {
        Name = "string",
        Product = "string",
        PromotionCode = "string",
        Publisher = "string",
    },
    LicenseType = "string",
    Location = "string",
    BillingProfile = new AzureNative.Compute.Inputs.BillingProfileArgs
    {
        MaxPrice = 0,
    },
    AvailabilitySet = new AzureNative.Compute.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    Identity = new AzureNative.Compute.Inputs.VirtualMachineIdentityArgs
    {
        Type = AzureNative.Compute.ResourceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    PlatformFaultDomain = 0,
    Priority = "string",
    ProximityPlacementGroup = new AzureNative.Compute.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    ApplicationProfile = new AzureNative.Compute.Inputs.ApplicationProfileArgs
    {
        GalleryApplications = new[]
        {
            new AzureNative.Compute.Inputs.VMGalleryApplicationArgs
            {
                PackageReferenceId = "string",
                ConfigurationReference = "string",
                EnableAutomaticUpgrade = false,
                Order = 0,
                Tags = "string",
                TreatFailureAsDeploymentFailure = false,
            },
        },
    },
    ScheduledEventsProfile = new AzureNative.Compute.Inputs.ScheduledEventsProfileArgs
    {
        OsImageNotificationProfile = new AzureNative.Compute.Inputs.OSImageNotificationProfileArgs
        {
            Enable = false,
            NotBeforeTimeout = "string",
        },
        TerminateNotificationProfile = new AzureNative.Compute.Inputs.TerminateNotificationProfileArgs
        {
            Enable = false,
            NotBeforeTimeout = "string",
        },
    },
    SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
    {
        EncryptionAtHost = false,
        SecurityType = "string",
        UefiSettings = new AzureNative.Compute.Inputs.UefiSettingsArgs
        {
            SecureBootEnabled = false,
            VTpmEnabled = false,
        },
    },
    StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
    {
        DataDisks = new[]
        {
            new AzureNative.Compute.Inputs.DataDiskArgs
            {
                CreateOption = "string",
                Lun = 0,
                Caching = AzureNative.Compute.CachingTypes.None,
                DeleteOption = "string",
                DetachOption = "string",
                DiskSizeGB = 0,
                Image = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                {
                    Uri = "string",
                },
                ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
                {
                    DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                    {
                        Id = "string",
                    },
                    Id = "string",
                    SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
                    {
                        DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                        {
                            Id = "string",
                        },
                        SecurityEncryptionType = "string",
                    },
                    StorageAccountType = "string",
                },
                Name = "string",
                ToBeDetached = false,
                Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
                {
                    Uri = "string",
                },
                WriteAcceleratorEnabled = false,
            },
        },
        DiskControllerType = "string",
        ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
        {
            CommunityGalleryImageId = "string",
            Id = "string",
            Offer = "string",
            Publisher = "string",
            SharedGalleryImageId = "string",
            Sku = "string",
            Version = "string",
        },
        OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
        {
            CreateOption = "string",
            Caching = AzureNative.Compute.CachingTypes.None,
            DeleteOption = "string",
            DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
            {
                Option = "string",
                Placement = "string",
            },
            DiskSizeGB = 0,
            EncryptionSettings = new AzureNative.Compute.Inputs.DiskEncryptionSettingsArgs
            {
                DiskEncryptionKey = new AzureNative.Compute.Inputs.KeyVaultSecretReferenceArgs
                {
                    SecretUrl = "string",
                    SourceVault = new AzureNative.Compute.Inputs.SubResourceArgs
                    {
                        Id = "string",
                    },
                },
                Enabled = false,
                KeyEncryptionKey = new AzureNative.Compute.Inputs.KeyVaultKeyReferenceArgs
                {
                    KeyUrl = "string",
                    SourceVault = new AzureNative.Compute.Inputs.SubResourceArgs
                    {
                        Id = "string",
                    },
                },
            },
            Image = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
            {
                Uri = "string",
            },
            ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
            {
                DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                {
                    Id = "string",
                },
                Id = "string",
                SecurityProfile = new AzureNative.Compute.Inputs.VMDiskSecurityProfileArgs
                {
                    DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
                    {
                        Id = "string",
                    },
                    SecurityEncryptionType = "string",
                },
                StorageAccountType = "string",
            },
            Name = "string",
            OsType = AzureNative.Compute.OperatingSystemTypes.Windows,
            Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
            {
                Uri = "string",
            },
            WriteAcceleratorEnabled = false,
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    UserData = "string",
    VirtualMachineScaleSet = new AzureNative.Compute.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    VmName = "string",
    Zones = new[]
    {
        "string",
    },
});
example, err := compute.NewVirtualMachine(ctx, "azure-nativeVirtualMachineResource", &compute.VirtualMachineArgs{
	ResourceGroupName: pulumi.String("string"),
	ExtendedLocation: &compute.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	DiagnosticsProfile: &compute.DiagnosticsProfileArgs{
		BootDiagnostics: &compute.BootDiagnosticsArgs{
			Enabled:    pulumi.Bool(false),
			StorageUri: pulumi.String("string"),
		},
	},
	NetworkProfile: &compute.NetworkProfileArgs{
		NetworkApiVersion: pulumi.String("string"),
		NetworkInterfaceConfigurations: compute.VirtualMachineNetworkInterfaceConfigurationArray{
			&compute.VirtualMachineNetworkInterfaceConfigurationArgs{
				IpConfigurations: compute.VirtualMachineNetworkInterfaceIPConfigurationArray{
					&compute.VirtualMachineNetworkInterfaceIPConfigurationArgs{
						Name: pulumi.String("string"),
						ApplicationGatewayBackendAddressPools: compute.SubResourceArray{
							&compute.SubResourceArgs{
								Id: pulumi.String("string"),
							},
						},
						ApplicationSecurityGroups: compute.SubResourceArray{
							&compute.SubResourceArgs{
								Id: pulumi.String("string"),
							},
						},
						LoadBalancerBackendAddressPools: compute.SubResourceArray{
							&compute.SubResourceArgs{
								Id: pulumi.String("string"),
							},
						},
						Primary:                 pulumi.Bool(false),
						PrivateIPAddressVersion: pulumi.String("string"),
						PublicIPAddressConfiguration: &compute.VirtualMachinePublicIPAddressConfigurationArgs{
							Name:         pulumi.String("string"),
							DeleteOption: pulumi.String("string"),
							DnsSettings: &compute.VirtualMachinePublicIPAddressDnsSettingsConfigurationArgs{
								DomainNameLabel: pulumi.String("string"),
							},
							IdleTimeoutInMinutes: pulumi.Int(0),
							IpTags: compute.VirtualMachineIpTagArray{
								&compute.VirtualMachineIpTagArgs{
									IpTagType: pulumi.String("string"),
									Tag:       pulumi.String("string"),
								},
							},
							PublicIPAddressVersion:   pulumi.String("string"),
							PublicIPAllocationMethod: pulumi.String("string"),
							PublicIPPrefix: &compute.SubResourceArgs{
								Id: pulumi.String("string"),
							},
							Sku: &compute.PublicIPAddressSkuArgs{
								Name: pulumi.String("string"),
								Tier: pulumi.String("string"),
							},
						},
						Subnet: &compute.SubResourceArgs{
							Id: pulumi.String("string"),
						},
					},
				},
				Name:                    pulumi.String("string"),
				DeleteOption:            pulumi.String("string"),
				DisableTcpStateTracking: pulumi.Bool(false),
				DnsSettings: &compute.VirtualMachineNetworkInterfaceDnsSettingsConfigurationArgs{
					DnsServers: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
				DscpConfiguration: &compute.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				EnableAcceleratedNetworking: pulumi.Bool(false),
				EnableFpga:                  pulumi.Bool(false),
				EnableIPForwarding:          pulumi.Bool(false),
				NetworkSecurityGroup: &compute.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				Primary: pulumi.Bool(false),
			},
		},
		NetworkInterfaces: compute.NetworkInterfaceReferenceArray{
			&compute.NetworkInterfaceReferenceArgs{
				DeleteOption: pulumi.String("string"),
				Id:           pulumi.String("string"),
				Primary:      pulumi.Bool(false),
			},
		},
	},
	CapacityReservation: &compute.CapacityReservationProfileArgs{
		CapacityReservationGroup: &compute.SubResourceArgs{
			Id: pulumi.String("string"),
		},
	},
	OsProfile: &compute.OSProfileArgs{
		AdminPassword:            pulumi.String("string"),
		AdminUsername:            pulumi.String("string"),
		AllowExtensionOperations: pulumi.Bool(false),
		ComputerName:             pulumi.String("string"),
		CustomData:               pulumi.String("string"),
		LinuxConfiguration: &compute.LinuxConfigurationArgs{
			DisablePasswordAuthentication: pulumi.Bool(false),
			EnableVMAgentPlatformUpdates:  pulumi.Bool(false),
			PatchSettings: &compute.LinuxPatchSettingsArgs{
				AssessmentMode: pulumi.String("string"),
				AutomaticByPlatformSettings: &compute.LinuxVMGuestPatchAutomaticByPlatformSettingsArgs{
					BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(false),
					RebootSetting:                            pulumi.String("string"),
				},
				PatchMode: pulumi.String("string"),
			},
			ProvisionVMAgent: pulumi.Bool(false),
			Ssh: &compute.SshConfigurationArgs{
				PublicKeys: compute.SshPublicKeyTypeArray{
					&compute.SshPublicKeyTypeArgs{
						KeyData: pulumi.String("string"),
						Path:    pulumi.String("string"),
					},
				},
			},
		},
		RequireGuestProvisionSignal: pulumi.Bool(false),
		Secrets: compute.VaultSecretGroupArray{
			&compute.VaultSecretGroupArgs{
				SourceVault: &compute.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				VaultCertificates: compute.VaultCertificateArray{
					&compute.VaultCertificateArgs{
						CertificateStore: pulumi.String("string"),
						CertificateUrl:   pulumi.String("string"),
					},
				},
			},
		},
		WindowsConfiguration: &compute.WindowsConfigurationArgs{
			AdditionalUnattendContent: compute.AdditionalUnattendContentArray{
				&compute.AdditionalUnattendContentArgs{
					ComponentName: compute.ComponentNames_Microsoft_Windows_Shell_Setup,
					Content:       pulumi.String("string"),
					PassName:      compute.PassNamesOobeSystem,
					SettingName:   compute.SettingNamesAutoLogon,
				},
			},
			EnableAutomaticUpdates:       pulumi.Bool(false),
			EnableVMAgentPlatformUpdates: pulumi.Bool(false),
			PatchSettings: &compute.PatchSettingsArgs{
				AssessmentMode: pulumi.String("string"),
				AutomaticByPlatformSettings: &compute.WindowsVMGuestPatchAutomaticByPlatformSettingsArgs{
					BypassPlatformSafetyChecksOnUserSchedule: pulumi.Bool(false),
					RebootSetting:                            pulumi.String("string"),
				},
				EnableHotpatching: pulumi.Bool(false),
				PatchMode:         pulumi.String("string"),
			},
			ProvisionVMAgent: pulumi.Bool(false),
			TimeZone:         pulumi.String("string"),
			WinRM: &compute.WinRMConfigurationArgs{
				Listeners: compute.WinRMListenerArray{
					&compute.WinRMListenerArgs{
						CertificateUrl: pulumi.String("string"),
						Protocol:       compute.ProtocolTypesHttp,
					},
				},
			},
		},
	},
	EvictionPolicy: pulumi.String("string"),
	AdditionalCapabilities: &compute.AdditionalCapabilitiesArgs{
		HibernationEnabled: pulumi.Bool(false),
		UltraSSDEnabled:    pulumi.Bool(false),
	},
	ExtensionsTimeBudget: pulumi.String("string"),
	HardwareProfile: &compute.HardwareProfileArgs{
		VmSize: pulumi.String("string"),
		VmSizeProperties: &compute.VMSizePropertiesArgs{
			VCPUsAvailable: pulumi.Int(0),
			VCPUsPerCore:   pulumi.Int(0),
		},
	},
	Host: &compute.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	HostGroup: &compute.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	Plan: &compute.PlanArgs{
		Name:          pulumi.String("string"),
		Product:       pulumi.String("string"),
		PromotionCode: pulumi.String("string"),
		Publisher:     pulumi.String("string"),
	},
	LicenseType: pulumi.String("string"),
	Location:    pulumi.String("string"),
	BillingProfile: &compute.BillingProfileArgs{
		MaxPrice: pulumi.Float64(0),
	},
	AvailabilitySet: &compute.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	Identity: &compute.VirtualMachineIdentityArgs{
		Type: compute.ResourceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	PlatformFaultDomain: pulumi.Int(0),
	Priority:            pulumi.String("string"),
	ProximityPlacementGroup: &compute.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	ApplicationProfile: &compute.ApplicationProfileArgs{
		GalleryApplications: compute.VMGalleryApplicationArray{
			&compute.VMGalleryApplicationArgs{
				PackageReferenceId:              pulumi.String("string"),
				ConfigurationReference:          pulumi.String("string"),
				EnableAutomaticUpgrade:          pulumi.Bool(false),
				Order:                           pulumi.Int(0),
				Tags:                            pulumi.String("string"),
				TreatFailureAsDeploymentFailure: pulumi.Bool(false),
			},
		},
	},
	ScheduledEventsProfile: &compute.ScheduledEventsProfileArgs{
		OsImageNotificationProfile: &compute.OSImageNotificationProfileArgs{
			Enable:           pulumi.Bool(false),
			NotBeforeTimeout: pulumi.String("string"),
		},
		TerminateNotificationProfile: &compute.TerminateNotificationProfileArgs{
			Enable:           pulumi.Bool(false),
			NotBeforeTimeout: pulumi.String("string"),
		},
	},
	SecurityProfile: &compute.SecurityProfileArgs{
		EncryptionAtHost: pulumi.Bool(false),
		SecurityType:     pulumi.String("string"),
		UefiSettings: &compute.UefiSettingsArgs{
			SecureBootEnabled: pulumi.Bool(false),
			VTpmEnabled:       pulumi.Bool(false),
		},
	},
	StorageProfile: &compute.StorageProfileArgs{
		DataDisks: compute.DataDiskArray{
			&compute.DataDiskArgs{
				CreateOption: pulumi.String("string"),
				Lun:          pulumi.Int(0),
				Caching:      compute.CachingTypesNone,
				DeleteOption: pulumi.String("string"),
				DetachOption: pulumi.String("string"),
				DiskSizeGB:   pulumi.Int(0),
				Image: &compute.VirtualHardDiskArgs{
					Uri: pulumi.String("string"),
				},
				ManagedDisk: &compute.ManagedDiskParametersArgs{
					DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
						Id: pulumi.String("string"),
					},
					Id: pulumi.String("string"),
					SecurityProfile: &compute.VMDiskSecurityProfileArgs{
						DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
							Id: pulumi.String("string"),
						},
						SecurityEncryptionType: pulumi.String("string"),
					},
					StorageAccountType: pulumi.String("string"),
				},
				Name:         pulumi.String("string"),
				ToBeDetached: pulumi.Bool(false),
				Vhd: &compute.VirtualHardDiskArgs{
					Uri: pulumi.String("string"),
				},
				WriteAcceleratorEnabled: pulumi.Bool(false),
			},
		},
		DiskControllerType: pulumi.String("string"),
		ImageReference: &compute.ImageReferenceArgs{
			CommunityGalleryImageId: pulumi.String("string"),
			Id:                      pulumi.String("string"),
			Offer:                   pulumi.String("string"),
			Publisher:               pulumi.String("string"),
			SharedGalleryImageId:    pulumi.String("string"),
			Sku:                     pulumi.String("string"),
			Version:                 pulumi.String("string"),
		},
		OsDisk: &compute.OSDiskArgs{
			CreateOption: pulumi.String("string"),
			Caching:      compute.CachingTypesNone,
			DeleteOption: pulumi.String("string"),
			DiffDiskSettings: &compute.DiffDiskSettingsArgs{
				Option:    pulumi.String("string"),
				Placement: pulumi.String("string"),
			},
			DiskSizeGB: pulumi.Int(0),
			EncryptionSettings: &compute.DiskEncryptionSettingsArgs{
				DiskEncryptionKey: &compute.KeyVaultSecretReferenceArgs{
					SecretUrl: pulumi.String("string"),
					SourceVault: &compute.SubResourceArgs{
						Id: pulumi.String("string"),
					},
				},
				Enabled: pulumi.Bool(false),
				KeyEncryptionKey: &compute.KeyVaultKeyReferenceArgs{
					KeyUrl: pulumi.String("string"),
					SourceVault: &compute.SubResourceArgs{
						Id: pulumi.String("string"),
					},
				},
			},
			Image: &compute.VirtualHardDiskArgs{
				Uri: pulumi.String("string"),
			},
			ManagedDisk: &compute.ManagedDiskParametersArgs{
				DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
					Id: pulumi.String("string"),
				},
				Id: pulumi.String("string"),
				SecurityProfile: &compute.VMDiskSecurityProfileArgs{
					DiskEncryptionSet: &compute.DiskEncryptionSetParametersArgs{
						Id: pulumi.String("string"),
					},
					SecurityEncryptionType: pulumi.String("string"),
				},
				StorageAccountType: pulumi.String("string"),
			},
			Name:   pulumi.String("string"),
			OsType: compute.OperatingSystemTypesWindows,
			Vhd: &compute.VirtualHardDiskArgs{
				Uri: pulumi.String("string"),
			},
			WriteAcceleratorEnabled: pulumi.Bool(false),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UserData: pulumi.String("string"),
	VirtualMachineScaleSet: &compute.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	VmName: pulumi.String("string"),
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var azure_nativeVirtualMachineResource = new VirtualMachine("azure-nativeVirtualMachineResource", VirtualMachineArgs.builder()
    .resourceGroupName("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .diagnosticsProfile(DiagnosticsProfileArgs.builder()
        .bootDiagnostics(BootDiagnosticsArgs.builder()
            .enabled(false)
            .storageUri("string")
            .build())
        .build())
    .networkProfile(NetworkProfileArgs.builder()
        .networkApiVersion("string")
        .networkInterfaceConfigurations(VirtualMachineNetworkInterfaceConfigurationArgs.builder()
            .ipConfigurations(VirtualMachineNetworkInterfaceIPConfigurationArgs.builder()
                .name("string")
                .applicationGatewayBackendAddressPools(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .applicationSecurityGroups(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .loadBalancerBackendAddressPools(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .primary(false)
                .privateIPAddressVersion("string")
                .publicIPAddressConfiguration(VirtualMachinePublicIPAddressConfigurationArgs.builder()
                    .name("string")
                    .deleteOption("string")
                    .dnsSettings(VirtualMachinePublicIPAddressDnsSettingsConfigurationArgs.builder()
                        .domainNameLabel("string")
                        .build())
                    .idleTimeoutInMinutes(0)
                    .ipTags(VirtualMachineIpTagArgs.builder()
                        .ipTagType("string")
                        .tag("string")
                        .build())
                    .publicIPAddressVersion("string")
                    .publicIPAllocationMethod("string")
                    .publicIPPrefix(SubResourceArgs.builder()
                        .id("string")
                        .build())
                    .sku(PublicIPAddressSkuArgs.builder()
                        .name("string")
                        .tier("string")
                        .build())
                    .build())
                .subnet(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .build())
            .name("string")
            .deleteOption("string")
            .disableTcpStateTracking(false)
            .dnsSettings(VirtualMachineNetworkInterfaceDnsSettingsConfigurationArgs.builder()
                .dnsServers("string")
                .build())
            .dscpConfiguration(SubResourceArgs.builder()
                .id("string")
                .build())
            .enableAcceleratedNetworking(false)
            .enableFpga(false)
            .enableIPForwarding(false)
            .networkSecurityGroup(SubResourceArgs.builder()
                .id("string")
                .build())
            .primary(false)
            .build())
        .networkInterfaces(NetworkInterfaceReferenceArgs.builder()
            .deleteOption("string")
            .id("string")
            .primary(false)
            .build())
        .build())
    .capacityReservation(CapacityReservationProfileArgs.builder()
        .capacityReservationGroup(SubResourceArgs.builder()
            .id("string")
            .build())
        .build())
    .osProfile(OSProfileArgs.builder()
        .adminPassword("string")
        .adminUsername("string")
        .allowExtensionOperations(false)
        .computerName("string")
        .customData("string")
        .linuxConfiguration(LinuxConfigurationArgs.builder()
            .disablePasswordAuthentication(false)
            .enableVMAgentPlatformUpdates(false)
            .patchSettings(LinuxPatchSettingsArgs.builder()
                .assessmentMode("string")
                .automaticByPlatformSettings(LinuxVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                    .bypassPlatformSafetyChecksOnUserSchedule(false)
                    .rebootSetting("string")
                    .build())
                .patchMode("string")
                .build())
            .provisionVMAgent(false)
            .ssh(SshConfigurationArgs.builder()
                .publicKeys(SshPublicKeyArgs.builder()
                    .keyData("string")
                    .path("string")
                    .build())
                .build())
            .build())
        .requireGuestProvisionSignal(false)
        .secrets(VaultSecretGroupArgs.builder()
            .sourceVault(SubResourceArgs.builder()
                .id("string")
                .build())
            .vaultCertificates(VaultCertificateArgs.builder()
                .certificateStore("string")
                .certificateUrl("string")
                .build())
            .build())
        .windowsConfiguration(WindowsConfigurationArgs.builder()
            .additionalUnattendContent(AdditionalUnattendContentArgs.builder()
                .componentName("Microsoft-Windows-Shell-Setup")
                .content("string")
                .passName("OobeSystem")
                .settingName("AutoLogon")
                .build())
            .enableAutomaticUpdates(false)
            .enableVMAgentPlatformUpdates(false)
            .patchSettings(PatchSettingsArgs.builder()
                .assessmentMode("string")
                .automaticByPlatformSettings(WindowsVMGuestPatchAutomaticByPlatformSettingsArgs.builder()
                    .bypassPlatformSafetyChecksOnUserSchedule(false)
                    .rebootSetting("string")
                    .build())
                .enableHotpatching(false)
                .patchMode("string")
                .build())
            .provisionVMAgent(false)
            .timeZone("string")
            .winRM(WinRMConfigurationArgs.builder()
                .listeners(WinRMListenerArgs.builder()
                    .certificateUrl("string")
                    .protocol("Http")
                    .build())
                .build())
            .build())
        .build())
    .evictionPolicy("string")
    .additionalCapabilities(AdditionalCapabilitiesArgs.builder()
        .hibernationEnabled(false)
        .ultraSSDEnabled(false)
        .build())
    .extensionsTimeBudget("string")
    .hardwareProfile(HardwareProfileArgs.builder()
        .vmSize("string")
        .vmSizeProperties(VMSizePropertiesArgs.builder()
            .vCPUsAvailable(0)
            .vCPUsPerCore(0)
            .build())
        .build())
    .host(SubResourceArgs.builder()
        .id("string")
        .build())
    .hostGroup(SubResourceArgs.builder()
        .id("string")
        .build())
    .plan(PlanArgs.builder()
        .name("string")
        .product("string")
        .promotionCode("string")
        .publisher("string")
        .build())
    .licenseType("string")
    .location("string")
    .billingProfile(BillingProfileArgs.builder()
        .maxPrice(0)
        .build())
    .availabilitySet(SubResourceArgs.builder()
        .id("string")
        .build())
    .identity(VirtualMachineIdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .platformFaultDomain(0)
    .priority("string")
    .proximityPlacementGroup(SubResourceArgs.builder()
        .id("string")
        .build())
    .applicationProfile(ApplicationProfileArgs.builder()
        .galleryApplications(VMGalleryApplicationArgs.builder()
            .packageReferenceId("string")
            .configurationReference("string")
            .enableAutomaticUpgrade(false)
            .order(0)
            .tags("string")
            .treatFailureAsDeploymentFailure(false)
            .build())
        .build())
    .scheduledEventsProfile(ScheduledEventsProfileArgs.builder()
        .osImageNotificationProfile(OSImageNotificationProfileArgs.builder()
            .enable(false)
            .notBeforeTimeout("string")
            .build())
        .terminateNotificationProfile(TerminateNotificationProfileArgs.builder()
            .enable(false)
            .notBeforeTimeout("string")
            .build())
        .build())
    .securityProfile(SecurityProfileArgs.builder()
        .encryptionAtHost(false)
        .securityType("string")
        .uefiSettings(UefiSettingsArgs.builder()
            .secureBootEnabled(false)
            .vTpmEnabled(false)
            .build())
        .build())
    .storageProfile(StorageProfileArgs.builder()
        .dataDisks(DataDiskArgs.builder()
            .createOption("string")
            .lun(0)
            .caching("None")
            .deleteOption("string")
            .detachOption("string")
            .diskSizeGB(0)
            .image(VirtualHardDiskArgs.builder()
                .uri("string")
                .build())
            .managedDisk(ManagedDiskParametersArgs.builder()
                .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                    .id("string")
                    .build())
                .id("string")
                .securityProfile(VMDiskSecurityProfileArgs.builder()
                    .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                        .id("string")
                        .build())
                    .securityEncryptionType("string")
                    .build())
                .storageAccountType("string")
                .build())
            .name("string")
            .toBeDetached(false)
            .vhd(VirtualHardDiskArgs.builder()
                .uri("string")
                .build())
            .writeAcceleratorEnabled(false)
            .build())
        .diskControllerType("string")
        .imageReference(ImageReferenceArgs.builder()
            .communityGalleryImageId("string")
            .id("string")
            .offer("string")
            .publisher("string")
            .sharedGalleryImageId("string")
            .sku("string")
            .version("string")
            .build())
        .osDisk(OSDiskArgs.builder()
            .createOption("string")
            .caching("None")
            .deleteOption("string")
            .diffDiskSettings(DiffDiskSettingsArgs.builder()
                .option("string")
                .placement("string")
                .build())
            .diskSizeGB(0)
            .encryptionSettings(DiskEncryptionSettingsArgs.builder()
                .diskEncryptionKey(KeyVaultSecretReferenceArgs.builder()
                    .secretUrl("string")
                    .sourceVault(SubResourceArgs.builder()
                        .id("string")
                        .build())
                    .build())
                .enabled(false)
                .keyEncryptionKey(KeyVaultKeyReferenceArgs.builder()
                    .keyUrl("string")
                    .sourceVault(SubResourceArgs.builder()
                        .id("string")
                        .build())
                    .build())
                .build())
            .image(VirtualHardDiskArgs.builder()
                .uri("string")
                .build())
            .managedDisk(ManagedDiskParametersArgs.builder()
                .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                    .id("string")
                    .build())
                .id("string")
                .securityProfile(VMDiskSecurityProfileArgs.builder()
                    .diskEncryptionSet(DiskEncryptionSetParametersArgs.builder()
                        .id("string")
                        .build())
                    .securityEncryptionType("string")
                    .build())
                .storageAccountType("string")
                .build())
            .name("string")
            .osType("Windows")
            .vhd(VirtualHardDiskArgs.builder()
                .uri("string")
                .build())
            .writeAcceleratorEnabled(false)
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .userData("string")
    .virtualMachineScaleSet(SubResourceArgs.builder()
        .id("string")
        .build())
    .vmName("string")
    .zones("string")
    .build());
azure_native_virtual_machine_resource = azure_native.compute.VirtualMachine("azure-nativeVirtualMachineResource",
    resource_group_name="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    diagnostics_profile={
        "boot_diagnostics": {
            "enabled": False,
            "storage_uri": "string",
        },
    },
    network_profile={
        "network_api_version": "string",
        "network_interface_configurations": [{
            "ip_configurations": [{
                "name": "string",
                "application_gateway_backend_address_pools": [{
                    "id": "string",
                }],
                "application_security_groups": [{
                    "id": "string",
                }],
                "load_balancer_backend_address_pools": [{
                    "id": "string",
                }],
                "primary": False,
                "private_ip_address_version": "string",
                "public_ip_address_configuration": {
                    "name": "string",
                    "delete_option": "string",
                    "dns_settings": {
                        "domain_name_label": "string",
                    },
                    "idle_timeout_in_minutes": 0,
                    "ip_tags": [{
                        "ip_tag_type": "string",
                        "tag": "string",
                    }],
                    "public_ip_address_version": "string",
                    "public_ip_allocation_method": "string",
                    "public_ip_prefix": {
                        "id": "string",
                    },
                    "sku": {
                        "name": "string",
                        "tier": "string",
                    },
                },
                "subnet": {
                    "id": "string",
                },
            }],
            "name": "string",
            "delete_option": "string",
            "disable_tcp_state_tracking": False,
            "dns_settings": {
                "dns_servers": ["string"],
            },
            "dscp_configuration": {
                "id": "string",
            },
            "enable_accelerated_networking": False,
            "enable_fpga": False,
            "enable_ip_forwarding": False,
            "network_security_group": {
                "id": "string",
            },
            "primary": False,
        }],
        "network_interfaces": [{
            "delete_option": "string",
            "id": "string",
            "primary": False,
        }],
    },
    capacity_reservation={
        "capacity_reservation_group": {
            "id": "string",
        },
    },
    os_profile={
        "admin_password": "string",
        "admin_username": "string",
        "allow_extension_operations": False,
        "computer_name": "string",
        "custom_data": "string",
        "linux_configuration": {
            "disable_password_authentication": False,
            "enable_vm_agent_platform_updates": False,
            "patch_settings": {
                "assessment_mode": "string",
                "automatic_by_platform_settings": {
                    "bypass_platform_safety_checks_on_user_schedule": False,
                    "reboot_setting": "string",
                },
                "patch_mode": "string",
            },
            "provision_vm_agent": False,
            "ssh": {
                "public_keys": [{
                    "key_data": "string",
                    "path": "string",
                }],
            },
        },
        "require_guest_provision_signal": False,
        "secrets": [{
            "source_vault": {
                "id": "string",
            },
            "vault_certificates": [{
                "certificate_store": "string",
                "certificate_url": "string",
            }],
        }],
        "windows_configuration": {
            "additional_unattend_content": [{
                "component_name": azure_native.compute.ComponentNames.MICROSOFT_WINDOWS_SHELL_SETUP,
                "content": "string",
                "pass_name": azure_native.compute.PassNames.OOBE_SYSTEM,
                "setting_name": azure_native.compute.SettingNames.AUTO_LOGON,
            }],
            "enable_automatic_updates": False,
            "enable_vm_agent_platform_updates": False,
            "patch_settings": {
                "assessment_mode": "string",
                "automatic_by_platform_settings": {
                    "bypass_platform_safety_checks_on_user_schedule": False,
                    "reboot_setting": "string",
                },
                "enable_hotpatching": False,
                "patch_mode": "string",
            },
            "provision_vm_agent": False,
            "time_zone": "string",
            "win_rm": {
                "listeners": [{
                    "certificate_url": "string",
                    "protocol": azure_native.compute.ProtocolTypes.HTTP,
                }],
            },
        },
    },
    eviction_policy="string",
    additional_capabilities={
        "hibernation_enabled": False,
        "ultra_ssd_enabled": False,
    },
    extensions_time_budget="string",
    hardware_profile={
        "vm_size": "string",
        "vm_size_properties": {
            "v_cpus_available": 0,
            "v_cpus_per_core": 0,
        },
    },
    host={
        "id": "string",
    },
    host_group={
        "id": "string",
    },
    plan={
        "name": "string",
        "product": "string",
        "promotion_code": "string",
        "publisher": "string",
    },
    license_type="string",
    location="string",
    billing_profile={
        "max_price": 0,
    },
    availability_set={
        "id": "string",
    },
    identity={
        "type": azure_native.compute.ResourceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    platform_fault_domain=0,
    priority="string",
    proximity_placement_group={
        "id": "string",
    },
    application_profile={
        "gallery_applications": [{
            "package_reference_id": "string",
            "configuration_reference": "string",
            "enable_automatic_upgrade": False,
            "order": 0,
            "tags": "string",
            "treat_failure_as_deployment_failure": False,
        }],
    },
    scheduled_events_profile={
        "os_image_notification_profile": {
            "enable": False,
            "not_before_timeout": "string",
        },
        "terminate_notification_profile": {
            "enable": False,
            "not_before_timeout": "string",
        },
    },
    security_profile={
        "encryption_at_host": False,
        "security_type": "string",
        "uefi_settings": {
            "secure_boot_enabled": False,
            "v_tpm_enabled": False,
        },
    },
    storage_profile={
        "data_disks": [{
            "create_option": "string",
            "lun": 0,
            "caching": azure_native.compute.CachingTypes.NONE,
            "delete_option": "string",
            "detach_option": "string",
            "disk_size_gb": 0,
            "image": {
                "uri": "string",
            },
            "managed_disk": {
                "disk_encryption_set": {
                    "id": "string",
                },
                "id": "string",
                "security_profile": {
                    "disk_encryption_set": {
                        "id": "string",
                    },
                    "security_encryption_type": "string",
                },
                "storage_account_type": "string",
            },
            "name": "string",
            "to_be_detached": False,
            "vhd": {
                "uri": "string",
            },
            "write_accelerator_enabled": False,
        }],
        "disk_controller_type": "string",
        "image_reference": {
            "community_gallery_image_id": "string",
            "id": "string",
            "offer": "string",
            "publisher": "string",
            "shared_gallery_image_id": "string",
            "sku": "string",
            "version": "string",
        },
        "os_disk": {
            "create_option": "string",
            "caching": azure_native.compute.CachingTypes.NONE,
            "delete_option": "string",
            "diff_disk_settings": {
                "option": "string",
                "placement": "string",
            },
            "disk_size_gb": 0,
            "encryption_settings": {
                "disk_encryption_key": {
                    "secret_url": "string",
                    "source_vault": {
                        "id": "string",
                    },
                },
                "enabled": False,
                "key_encryption_key": {
                    "key_url": "string",
                    "source_vault": {
                        "id": "string",
                    },
                },
            },
            "image": {
                "uri": "string",
            },
            "managed_disk": {
                "disk_encryption_set": {
                    "id": "string",
                },
                "id": "string",
                "security_profile": {
                    "disk_encryption_set": {
                        "id": "string",
                    },
                    "security_encryption_type": "string",
                },
                "storage_account_type": "string",
            },
            "name": "string",
            "os_type": azure_native.compute.OperatingSystemTypes.WINDOWS,
            "vhd": {
                "uri": "string",
            },
            "write_accelerator_enabled": False,
        },
    },
    tags={
        "string": "string",
    },
    user_data="string",
    virtual_machine_scale_set={
        "id": "string",
    },
    vm_name="string",
    zones=["string"])
const azure_nativeVirtualMachineResource = new azure_native.compute.VirtualMachine("azure-nativeVirtualMachineResource", {
    resourceGroupName: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    diagnosticsProfile: {
        bootDiagnostics: {
            enabled: false,
            storageUri: "string",
        },
    },
    networkProfile: {
        networkApiVersion: "string",
        networkInterfaceConfigurations: [{
            ipConfigurations: [{
                name: "string",
                applicationGatewayBackendAddressPools: [{
                    id: "string",
                }],
                applicationSecurityGroups: [{
                    id: "string",
                }],
                loadBalancerBackendAddressPools: [{
                    id: "string",
                }],
                primary: false,
                privateIPAddressVersion: "string",
                publicIPAddressConfiguration: {
                    name: "string",
                    deleteOption: "string",
                    dnsSettings: {
                        domainNameLabel: "string",
                    },
                    idleTimeoutInMinutes: 0,
                    ipTags: [{
                        ipTagType: "string",
                        tag: "string",
                    }],
                    publicIPAddressVersion: "string",
                    publicIPAllocationMethod: "string",
                    publicIPPrefix: {
                        id: "string",
                    },
                    sku: {
                        name: "string",
                        tier: "string",
                    },
                },
                subnet: {
                    id: "string",
                },
            }],
            name: "string",
            deleteOption: "string",
            disableTcpStateTracking: false,
            dnsSettings: {
                dnsServers: ["string"],
            },
            dscpConfiguration: {
                id: "string",
            },
            enableAcceleratedNetworking: false,
            enableFpga: false,
            enableIPForwarding: false,
            networkSecurityGroup: {
                id: "string",
            },
            primary: false,
        }],
        networkInterfaces: [{
            deleteOption: "string",
            id: "string",
            primary: false,
        }],
    },
    capacityReservation: {
        capacityReservationGroup: {
            id: "string",
        },
    },
    osProfile: {
        adminPassword: "string",
        adminUsername: "string",
        allowExtensionOperations: false,
        computerName: "string",
        customData: "string",
        linuxConfiguration: {
            disablePasswordAuthentication: false,
            enableVMAgentPlatformUpdates: false,
            patchSettings: {
                assessmentMode: "string",
                automaticByPlatformSettings: {
                    bypassPlatformSafetyChecksOnUserSchedule: false,
                    rebootSetting: "string",
                },
                patchMode: "string",
            },
            provisionVMAgent: false,
            ssh: {
                publicKeys: [{
                    keyData: "string",
                    path: "string",
                }],
            },
        },
        requireGuestProvisionSignal: false,
        secrets: [{
            sourceVault: {
                id: "string",
            },
            vaultCertificates: [{
                certificateStore: "string",
                certificateUrl: "string",
            }],
        }],
        windowsConfiguration: {
            additionalUnattendContent: [{
                componentName: azure_native.compute.ComponentNames.Microsoft_Windows_Shell_Setup,
                content: "string",
                passName: azure_native.compute.PassNames.OobeSystem,
                settingName: azure_native.compute.SettingNames.AutoLogon,
            }],
            enableAutomaticUpdates: false,
            enableVMAgentPlatformUpdates: false,
            patchSettings: {
                assessmentMode: "string",
                automaticByPlatformSettings: {
                    bypassPlatformSafetyChecksOnUserSchedule: false,
                    rebootSetting: "string",
                },
                enableHotpatching: false,
                patchMode: "string",
            },
            provisionVMAgent: false,
            timeZone: "string",
            winRM: {
                listeners: [{
                    certificateUrl: "string",
                    protocol: azure_native.compute.ProtocolTypes.Http,
                }],
            },
        },
    },
    evictionPolicy: "string",
    additionalCapabilities: {
        hibernationEnabled: false,
        ultraSSDEnabled: false,
    },
    extensionsTimeBudget: "string",
    hardwareProfile: {
        vmSize: "string",
        vmSizeProperties: {
            vCPUsAvailable: 0,
            vCPUsPerCore: 0,
        },
    },
    host: {
        id: "string",
    },
    hostGroup: {
        id: "string",
    },
    plan: {
        name: "string",
        product: "string",
        promotionCode: "string",
        publisher: "string",
    },
    licenseType: "string",
    location: "string",
    billingProfile: {
        maxPrice: 0,
    },
    availabilitySet: {
        id: "string",
    },
    identity: {
        type: azure_native.compute.ResourceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    platformFaultDomain: 0,
    priority: "string",
    proximityPlacementGroup: {
        id: "string",
    },
    applicationProfile: {
        galleryApplications: [{
            packageReferenceId: "string",
            configurationReference: "string",
            enableAutomaticUpgrade: false,
            order: 0,
            tags: "string",
            treatFailureAsDeploymentFailure: false,
        }],
    },
    scheduledEventsProfile: {
        osImageNotificationProfile: {
            enable: false,
            notBeforeTimeout: "string",
        },
        terminateNotificationProfile: {
            enable: false,
            notBeforeTimeout: "string",
        },
    },
    securityProfile: {
        encryptionAtHost: false,
        securityType: "string",
        uefiSettings: {
            secureBootEnabled: false,
            vTpmEnabled: false,
        },
    },
    storageProfile: {
        dataDisks: [{
            createOption: "string",
            lun: 0,
            caching: azure_native.compute.CachingTypes.None,
            deleteOption: "string",
            detachOption: "string",
            diskSizeGB: 0,
            image: {
                uri: "string",
            },
            managedDisk: {
                diskEncryptionSet: {
                    id: "string",
                },
                id: "string",
                securityProfile: {
                    diskEncryptionSet: {
                        id: "string",
                    },
                    securityEncryptionType: "string",
                },
                storageAccountType: "string",
            },
            name: "string",
            toBeDetached: false,
            vhd: {
                uri: "string",
            },
            writeAcceleratorEnabled: false,
        }],
        diskControllerType: "string",
        imageReference: {
            communityGalleryImageId: "string",
            id: "string",
            offer: "string",
            publisher: "string",
            sharedGalleryImageId: "string",
            sku: "string",
            version: "string",
        },
        osDisk: {
            createOption: "string",
            caching: azure_native.compute.CachingTypes.None,
            deleteOption: "string",
            diffDiskSettings: {
                option: "string",
                placement: "string",
            },
            diskSizeGB: 0,
            encryptionSettings: {
                diskEncryptionKey: {
                    secretUrl: "string",
                    sourceVault: {
                        id: "string",
                    },
                },
                enabled: false,
                keyEncryptionKey: {
                    keyUrl: "string",
                    sourceVault: {
                        id: "string",
                    },
                },
            },
            image: {
                uri: "string",
            },
            managedDisk: {
                diskEncryptionSet: {
                    id: "string",
                },
                id: "string",
                securityProfile: {
                    diskEncryptionSet: {
                        id: "string",
                    },
                    securityEncryptionType: "string",
                },
                storageAccountType: "string",
            },
            name: "string",
            osType: azure_native.compute.OperatingSystemTypes.Windows,
            vhd: {
                uri: "string",
            },
            writeAcceleratorEnabled: false,
        },
    },
    tags: {
        string: "string",
    },
    userData: "string",
    virtualMachineScaleSet: {
        id: "string",
    },
    vmName: "string",
    zones: ["string"],
});
type: azure-native:compute:VirtualMachine
properties:
    additionalCapabilities:
        hibernationEnabled: false
        ultraSSDEnabled: false
    applicationProfile:
        galleryApplications:
            - configurationReference: string
              enableAutomaticUpgrade: false
              order: 0
              packageReferenceId: string
              tags: string
              treatFailureAsDeploymentFailure: false
    availabilitySet:
        id: string
    billingProfile:
        maxPrice: 0
    capacityReservation:
        capacityReservationGroup:
            id: string
    diagnosticsProfile:
        bootDiagnostics:
            enabled: false
            storageUri: string
    evictionPolicy: string
    extendedLocation:
        name: string
        type: string
    extensionsTimeBudget: string
    hardwareProfile:
        vmSize: string
        vmSizeProperties:
            vCPUsAvailable: 0
            vCPUsPerCore: 0
    host:
        id: string
    hostGroup:
        id: string
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    licenseType: string
    location: string
    networkProfile:
        networkApiVersion: string
        networkInterfaceConfigurations:
            - deleteOption: string
              disableTcpStateTracking: false
              dnsSettings:
                dnsServers:
                    - string
              dscpConfiguration:
                id: string
              enableAcceleratedNetworking: false
              enableFpga: false
              enableIPForwarding: false
              ipConfigurations:
                - applicationGatewayBackendAddressPools:
                    - id: string
                  applicationSecurityGroups:
                    - id: string
                  loadBalancerBackendAddressPools:
                    - id: string
                  name: string
                  primary: false
                  privateIPAddressVersion: string
                  publicIPAddressConfiguration:
                    deleteOption: string
                    dnsSettings:
                        domainNameLabel: string
                    idleTimeoutInMinutes: 0
                    ipTags:
                        - ipTagType: string
                          tag: string
                    name: string
                    publicIPAddressVersion: string
                    publicIPAllocationMethod: string
                    publicIPPrefix:
                        id: string
                    sku:
                        name: string
                        tier: string
                  subnet:
                    id: string
              name: string
              networkSecurityGroup:
                id: string
              primary: false
        networkInterfaces:
            - deleteOption: string
              id: string
              primary: false
    osProfile:
        adminPassword: string
        adminUsername: string
        allowExtensionOperations: false
        computerName: string
        customData: string
        linuxConfiguration:
            disablePasswordAuthentication: false
            enableVMAgentPlatformUpdates: false
            patchSettings:
                assessmentMode: string
                automaticByPlatformSettings:
                    bypassPlatformSafetyChecksOnUserSchedule: false
                    rebootSetting: string
                patchMode: string
            provisionVMAgent: false
            ssh:
                publicKeys:
                    - keyData: string
                      path: string
        requireGuestProvisionSignal: false
        secrets:
            - sourceVault:
                id: string
              vaultCertificates:
                - certificateStore: string
                  certificateUrl: string
        windowsConfiguration:
            additionalUnattendContent:
                - componentName: Microsoft-Windows-Shell-Setup
                  content: string
                  passName: OobeSystem
                  settingName: AutoLogon
            enableAutomaticUpdates: false
            enableVMAgentPlatformUpdates: false
            patchSettings:
                assessmentMode: string
                automaticByPlatformSettings:
                    bypassPlatformSafetyChecksOnUserSchedule: false
                    rebootSetting: string
                enableHotpatching: false
                patchMode: string
            provisionVMAgent: false
            timeZone: string
            winRM:
                listeners:
                    - certificateUrl: string
                      protocol: Http
    plan:
        name: string
        product: string
        promotionCode: string
        publisher: string
    platformFaultDomain: 0
    priority: string
    proximityPlacementGroup:
        id: string
    resourceGroupName: string
    scheduledEventsProfile:
        osImageNotificationProfile:
            enable: false
            notBeforeTimeout: string
        terminateNotificationProfile:
            enable: false
            notBeforeTimeout: string
    securityProfile:
        encryptionAtHost: false
        securityType: string
        uefiSettings:
            secureBootEnabled: false
            vTpmEnabled: false
    storageProfile:
        dataDisks:
            - caching: None
              createOption: string
              deleteOption: string
              detachOption: string
              diskSizeGB: 0
              image:
                uri: string
              lun: 0
              managedDisk:
                diskEncryptionSet:
                    id: string
                id: string
                securityProfile:
                    diskEncryptionSet:
                        id: string
                    securityEncryptionType: string
                storageAccountType: string
              name: string
              toBeDetached: false
              vhd:
                uri: string
              writeAcceleratorEnabled: false
        diskControllerType: string
        imageReference:
            communityGalleryImageId: string
            id: string
            offer: string
            publisher: string
            sharedGalleryImageId: string
            sku: string
            version: string
        osDisk:
            caching: None
            createOption: string
            deleteOption: string
            diffDiskSettings:
                option: string
                placement: string
            diskSizeGB: 0
            encryptionSettings:
                diskEncryptionKey:
                    secretUrl: string
                    sourceVault:
                        id: string
                enabled: false
                keyEncryptionKey:
                    keyUrl: string
                    sourceVault:
                        id: string
            image:
                uri: string
            managedDisk:
                diskEncryptionSet:
                    id: string
                id: string
                securityProfile:
                    diskEncryptionSet:
                        id: string
                    securityEncryptionType: string
                storageAccountType: string
            name: string
            osType: Windows
            vhd:
                uri: string
            writeAcceleratorEnabled: false
    tags:
        string: string
    userData: string
    virtualMachineScaleSet:
        id: string
    vmName: string
    zones:
        - 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:
- ResourceGroup stringName 
- The name of the resource group.
- AdditionalCapabilities Pulumi.Azure Native. Compute. Inputs. Additional Capabilities 
- Specifies additional capabilities enabled or disabled on the virtual machine.
- ApplicationProfile Pulumi.Azure Native. Compute. Inputs. Application Profile 
- Specifies the gallery applications that should be made available to the VM/VMSS.
- AvailabilitySet Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- BillingProfile Pulumi.Azure Native. Compute. Inputs. Billing Profile 
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- CapacityReservation Pulumi.Azure Native. Compute. Inputs. Capacity Reservation Profile 
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- DiagnosticsProfile Pulumi.Azure Native. Compute. Inputs. Diagnostics Profile 
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- EvictionPolicy string | Pulumi.Azure Native. Compute. Virtual Machine Eviction Policy Types 
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- ExtendedLocation Pulumi.Azure Native. Compute. Inputs. Extended Location 
- The extended location of the Virtual Machine.
- ExtensionsTime stringBudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- HardwareProfile Pulumi.Azure Native. Compute. Inputs. Hardware Profile 
- Specifies the hardware settings for the virtual machine.
- Host
Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- HostGroup Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- Identity
Pulumi.Azure Native. Compute. Inputs. Virtual Machine Identity 
- The identity of the virtual machine, if configured.
- LicenseType string
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- Location string
- Resource location
- NetworkProfile Pulumi.Azure Native. Compute. Inputs. Network Profile 
- Specifies the network interfaces of the virtual machine.
- OsProfile Pulumi.Azure Native. Compute. Inputs. OSProfile 
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- Plan
Pulumi.Azure Native. Compute. Inputs. Plan 
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- PlatformFault intDomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- Priority
string | Pulumi.Azure Native. Compute. Virtual Machine Priority Types 
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- ProximityPlacement Pulumi.Group Azure Native. Compute. Inputs. Sub Resource 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- ScheduledEvents Pulumi.Profile Azure Native. Compute. Inputs. Scheduled Events Profile 
- Specifies Scheduled Event related configurations.
- SecurityProfile Pulumi.Azure Native. Compute. Inputs. Security Profile 
- Specifies the Security related profile settings for the virtual machine.
- StorageProfile Pulumi.Azure Native. Compute. Inputs. Storage Profile 
- Specifies the storage settings for the virtual machine disks.
- Dictionary<string, string>
- Resource tags
- UserData string
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- VirtualMachine Pulumi.Scale Set Azure Native. Compute. Inputs. Sub Resource 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- VmName string
- The name of the virtual machine.
- Zones List<string>
- The virtual machine zones.
- ResourceGroup stringName 
- The name of the resource group.
- AdditionalCapabilities AdditionalCapabilities Args 
- Specifies additional capabilities enabled or disabled on the virtual machine.
- ApplicationProfile ApplicationProfile Args 
- Specifies the gallery applications that should be made available to the VM/VMSS.
- AvailabilitySet SubResource Args 
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- BillingProfile BillingProfile Args 
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- CapacityReservation CapacityReservation Profile Args 
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- DiagnosticsProfile DiagnosticsProfile Args 
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- EvictionPolicy string | VirtualMachine Eviction Policy Types 
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- ExtendedLocation ExtendedLocation Args 
- The extended location of the Virtual Machine.
- ExtensionsTime stringBudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- HardwareProfile HardwareProfile Args 
- Specifies the hardware settings for the virtual machine.
- Host
SubResource Args 
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- HostGroup SubResource Args 
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- Identity
VirtualMachine Identity Args 
- The identity of the virtual machine, if configured.
- LicenseType string
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- Location string
- Resource location
- NetworkProfile NetworkProfile Args 
- Specifies the network interfaces of the virtual machine.
- OsProfile OSProfileArgs 
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- Plan
PlanArgs 
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- PlatformFault intDomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- Priority
string | VirtualMachine Priority Types 
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- ProximityPlacement SubGroup Resource Args 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- ScheduledEvents ScheduledProfile Events Profile Args 
- Specifies Scheduled Event related configurations.
- SecurityProfile SecurityProfile Args 
- Specifies the Security related profile settings for the virtual machine.
- StorageProfile StorageProfile Args 
- Specifies the storage settings for the virtual machine disks.
- map[string]string
- Resource tags
- UserData string
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- VirtualMachine SubScale Set Resource Args 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- VmName string
- The name of the virtual machine.
- Zones []string
- The virtual machine zones.
- resourceGroup StringName 
- The name of the resource group.
- additionalCapabilities AdditionalCapabilities 
- Specifies additional capabilities enabled or disabled on the virtual machine.
- applicationProfile ApplicationProfile 
- Specifies the gallery applications that should be made available to the VM/VMSS.
- availabilitySet SubResource 
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billingProfile BillingProfile 
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- capacityReservation CapacityReservation Profile 
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- diagnosticsProfile DiagnosticsProfile 
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- evictionPolicy String | VirtualMachine Eviction Policy Types 
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extendedLocation ExtendedLocation 
- The extended location of the Virtual Machine.
- extensionsTime StringBudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- hardwareProfile HardwareProfile 
- Specifies the hardware settings for the virtual machine.
- host
SubResource 
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- hostGroup SubResource 
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- identity
VirtualMachine Identity 
- The identity of the virtual machine, if configured.
- licenseType String
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location String
- Resource location
- networkProfile NetworkProfile 
- Specifies the network interfaces of the virtual machine.
- osProfile OSProfile
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Plan
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platformFault IntegerDomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- priority
String | VirtualMachine Priority Types 
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximityPlacement SubGroup Resource 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduledEvents ScheduledProfile Events Profile 
- Specifies Scheduled Event related configurations.
- securityProfile SecurityProfile 
- Specifies the Security related profile settings for the virtual machine.
- storageProfile StorageProfile 
- Specifies the storage settings for the virtual machine disks.
- Map<String,String>
- Resource tags
- userData String
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- virtualMachine SubScale Set Resource 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- vmName String
- The name of the virtual machine.
- zones List<String>
- The virtual machine zones.
- resourceGroup stringName 
- The name of the resource group.
- additionalCapabilities AdditionalCapabilities 
- Specifies additional capabilities enabled or disabled on the virtual machine.
- applicationProfile ApplicationProfile 
- Specifies the gallery applications that should be made available to the VM/VMSS.
- availabilitySet SubResource 
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billingProfile BillingProfile 
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- capacityReservation CapacityReservation Profile 
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- diagnosticsProfile DiagnosticsProfile 
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- evictionPolicy string | VirtualMachine Eviction Policy Types 
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extendedLocation ExtendedLocation 
- The extended location of the Virtual Machine.
- extensionsTime stringBudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- hardwareProfile HardwareProfile 
- Specifies the hardware settings for the virtual machine.
- host
SubResource 
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- hostGroup SubResource 
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- identity
VirtualMachine Identity 
- The identity of the virtual machine, if configured.
- licenseType string
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location string
- Resource location
- networkProfile NetworkProfile 
- Specifies the network interfaces of the virtual machine.
- osProfile OSProfile
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Plan
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platformFault numberDomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- priority
string | VirtualMachine Priority Types 
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximityPlacement SubGroup Resource 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduledEvents ScheduledProfile Events Profile 
- Specifies Scheduled Event related configurations.
- securityProfile SecurityProfile 
- Specifies the Security related profile settings for the virtual machine.
- storageProfile StorageProfile 
- Specifies the storage settings for the virtual machine disks.
- {[key: string]: string}
- Resource tags
- userData string
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- virtualMachine SubScale Set Resource 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- vmName string
- The name of the virtual machine.
- zones string[]
- The virtual machine zones.
- resource_group_ strname 
- The name of the resource group.
- additional_capabilities AdditionalCapabilities Args 
- Specifies additional capabilities enabled or disabled on the virtual machine.
- application_profile ApplicationProfile Args 
- Specifies the gallery applications that should be made available to the VM/VMSS.
- availability_set SubResource Args 
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billing_profile BillingProfile Args 
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- capacity_reservation CapacityReservation Profile Args 
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- diagnostics_profile DiagnosticsProfile Args 
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- eviction_policy str | VirtualMachine Eviction Policy Types 
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extended_location ExtendedLocation Args 
- The extended location of the Virtual Machine.
- extensions_time_ strbudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- hardware_profile HardwareProfile Args 
- Specifies the hardware settings for the virtual machine.
- host
SubResource Args 
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- host_group SubResource Args 
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- identity
VirtualMachine Identity Args 
- The identity of the virtual machine, if configured.
- license_type str
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location str
- Resource location
- network_profile NetworkProfile Args 
- Specifies the network interfaces of the virtual machine.
- os_profile OSProfileArgs 
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan
PlanArgs 
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platform_fault_ intdomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- priority
str | VirtualMachine Priority Types 
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximity_placement_ Subgroup Resource Args 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduled_events_ Scheduledprofile Events Profile Args 
- Specifies Scheduled Event related configurations.
- security_profile SecurityProfile Args 
- Specifies the Security related profile settings for the virtual machine.
- storage_profile StorageProfile Args 
- Specifies the storage settings for the virtual machine disks.
- Mapping[str, str]
- Resource tags
- user_data str
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- virtual_machine_ Subscale_ set Resource Args 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- vm_name str
- The name of the virtual machine.
- zones Sequence[str]
- The virtual machine zones.
- resourceGroup StringName 
- The name of the resource group.
- additionalCapabilities Property Map
- Specifies additional capabilities enabled or disabled on the virtual machine.
- applicationProfile Property Map
- Specifies the gallery applications that should be made available to the VM/VMSS.
- availabilitySet Property Map
- Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure. Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billingProfile Property Map
- Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- capacityReservation Property Map
- Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.
- diagnosticsProfile Property Map
- Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- evictionPolicy String | "Deallocate" | "Delete"
- Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extendedLocation Property Map
- The extended location of the Virtual Machine.
- extensionsTime StringBudget 
- Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
- hardwareProfile Property Map
- Specifies the hardware settings for the virtual machine.
- host Property Map
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- hostGroup Property Map
- Specifies information about the dedicated host group that the virtual machine resides in. Note: User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
- identity Property Map
- The identity of the virtual machine, if configured.
- licenseType String
- Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location String
- Resource location
- networkProfile Property Map
- Specifies the network interfaces of the virtual machine.
- osProfile Property Map
- Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Property Map
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platformFault NumberDomain 
- Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
- priority String | "Regular" | "Low" | "Spot"
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximityPlacement Property MapGroup 
- Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduledEvents Property MapProfile 
- Specifies Scheduled Event related configurations.
- securityProfile Property Map
- Specifies the Security related profile settings for the virtual machine.
- storageProfile Property Map
- Specifies the storage settings for the virtual machine disks.
- Map<String>
- Resource tags
- userData String
- UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.
- virtualMachine Property MapScale Set 
- Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
- vmName String
- The name of the virtual machine.
- zones List<String>
- The virtual machine zones.
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.
- InstanceView Pulumi.Azure Native. Compute. Outputs. Virtual Machine Instance View Response 
- The virtual machine instance view.
- Name string
- Resource name
- ProvisioningState string
- The provisioning state, which only appears in the response.
- Resources
List<Pulumi.Azure Native. Compute. Outputs. Virtual Machine Extension Response> 
- The virtual machine child extension resources.
- TimeCreated string
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- Type string
- Resource type
- VmId string
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- Name string
- Resource name
- ProvisioningState string
- The provisioning state, which only appears in the response.
- Resources
[]VirtualMachine Extension Response 
- The virtual machine child extension resources.
- TimeCreated string
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- Type string
- Resource type
- VmId string
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- name String
- Resource name
- provisioningState String
- The provisioning state, which only appears in the response.
- resources
List<VirtualMachine Extension Response> 
- The virtual machine child extension resources.
- timeCreated String
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- type String
- Resource type
- vmId String
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id string
- The provider-assigned unique ID for this managed resource.
- instanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- name string
- Resource name
- provisioningState string
- The provisioning state, which only appears in the response.
- resources
VirtualMachine Extension Response[] 
- The virtual machine child extension resources.
- timeCreated string
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- type string
- Resource type
- vmId string
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_view VirtualMachine Instance View Response 
- The virtual machine instance view.
- name str
- Resource name
- provisioning_state str
- The provisioning state, which only appears in the response.
- resources
Sequence[VirtualMachine Extension Response] 
- The virtual machine child extension resources.
- time_created str
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- type str
- Resource type
- vm_id str
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView Property Map
- The virtual machine instance view.
- name String
- Resource name
- provisioningState String
- The provisioning state, which only appears in the response.
- resources List<Property Map>
- The virtual machine child extension resources.
- timeCreated String
- Specifies the time at which the Virtual Machine resource was created. Minimum api-version: 2021-11-01.
- type String
- Resource type
- vmId String
- Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
Supporting Types
AdditionalCapabilities, AdditionalCapabilitiesArgs    
- HibernationEnabled bool
- The flag that enables or disables hibernation capability on the VM.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- HibernationEnabled bool
- The flag that enables or disables hibernation capability on the VM.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled Boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernation_enabled bool
- The flag that enables or disables hibernation capability on the VM.
- ultra_ssd_ boolenabled 
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled Boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
AdditionalCapabilitiesResponse, AdditionalCapabilitiesResponseArgs      
- HibernationEnabled bool
- The flag that enables or disables hibernation capability on the VM.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- HibernationEnabled bool
- The flag that enables or disables hibernation capability on the VM.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled Boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernation_enabled bool
- The flag that enables or disables hibernation capability on the VM.
- ultra_ssd_ boolenabled 
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- hibernationEnabled Boolean
- The flag that enables or disables hibernation capability on the VM.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
AdditionalUnattendContent, AdditionalUnattendContentArgs      
- ComponentName Pulumi.Azure Native. Compute. Component Names 
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- PassName Pulumi.Azure Native. Compute. Pass Names 
- The pass name. Currently, the only allowable value is OobeSystem.
- SettingName Pulumi.Azure Native. Compute. Setting Names 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- ComponentName ComponentNames 
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- PassName PassNames 
- The pass name. Currently, the only allowable value is OobeSystem.
- SettingName SettingNames 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName ComponentNames 
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName PassNames 
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName SettingNames 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName ComponentNames 
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName PassNames 
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName SettingNames 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component_name ComponentNames 
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content str
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass_name PassNames 
- The pass name. Currently, the only allowable value is OobeSystem.
- setting_name SettingNames 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName "Microsoft-Windows-Shell-Setup"
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName "OobeSystem" 
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName "AutoLogon" | "First Logon Commands" 
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
AdditionalUnattendContentResponse, AdditionalUnattendContentResponseArgs        
- ComponentName string
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- PassName string
- The pass name. Currently, the only allowable value is OobeSystem.
- SettingName string
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- ComponentName string
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- PassName string
- The pass name. Currently, the only allowable value is OobeSystem.
- SettingName string
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName String
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName String
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName String
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName string
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName string
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName string
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component_name str
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content str
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass_name str
- The pass name. Currently, the only allowable value is OobeSystem.
- setting_name str
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- componentName String
- The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- passName String
- The pass name. Currently, the only allowable value is OobeSystem.
- settingName String
- Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
ApiErrorBaseResponse, ApiErrorBaseResponseArgs        
ApiErrorResponse, ApiErrorResponseArgs      
- Code string
- The error code.
- Details
List<Pulumi.Azure Native. Compute. Inputs. Api Error Base Response> 
- The Api error details
- Innererror
Pulumi.Azure Native. Compute. Inputs. Inner Error Response 
- The Api inner error
- Message string
- The error message.
- Target string
- The target of the particular error.
- Code string
- The error code.
- Details
[]ApiError Base Response 
- The Api error details
- Innererror
InnerError Response 
- The Api inner error
- Message string
- The error message.
- Target string
- The target of the particular error.
- code String
- The error code.
- details
List<ApiError Base Response> 
- The Api error details
- innererror
InnerError Response 
- The Api inner error
- message String
- The error message.
- target String
- The target of the particular error.
- code string
- The error code.
- details
ApiError Base Response[] 
- The Api error details
- innererror
InnerError Response 
- The Api inner error
- message string
- The error message.
- target string
- The target of the particular error.
- code str
- The error code.
- details
Sequence[ApiError Base Response] 
- The Api error details
- innererror
InnerError Response 
- The Api inner error
- message str
- The error message.
- target str
- The target of the particular error.
- code String
- The error code.
- details List<Property Map>
- The Api error details
- innererror Property Map
- The Api inner error
- message String
- The error message.
- target String
- The target of the particular error.
ApplicationProfile, ApplicationProfileArgs    
- GalleryApplications List<Pulumi.Azure Native. Compute. Inputs. VMGallery Application> 
- Specifies the gallery applications that should be made available to the VM/VMSS
- GalleryApplications []VMGalleryApplication 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications List<VMGalleryApplication> 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications VMGalleryApplication[] 
- Specifies the gallery applications that should be made available to the VM/VMSS
- gallery_applications Sequence[VMGalleryApplication] 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications List<Property Map>
- Specifies the gallery applications that should be made available to the VM/VMSS
ApplicationProfileResponse, ApplicationProfileResponseArgs      
- GalleryApplications List<Pulumi.Azure Native. Compute. Inputs. VMGallery Application Response> 
- Specifies the gallery applications that should be made available to the VM/VMSS
- GalleryApplications []VMGalleryApplication Response 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications List<VMGalleryApplication Response> 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications VMGalleryApplication Response[] 
- Specifies the gallery applications that should be made available to the VM/VMSS
- gallery_applications Sequence[VMGalleryApplication Response] 
- Specifies the gallery applications that should be made available to the VM/VMSS
- galleryApplications List<Property Map>
- Specifies the gallery applications that should be made available to the VM/VMSS
AvailablePatchSummaryResponse, AvailablePatchSummaryResponseArgs        
- AssessmentActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- CriticalAnd intSecurity Patch Count 
- The number of critical or security patches that have been detected as available and not yet installed.
- Error
Pulumi.Azure Native. Compute. Inputs. Api Error Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- LastModified stringTime 
- The UTC timestamp when the operation began.
- OtherPatch intCount 
- The number of all available patches excluding critical and security.
- RebootPending bool
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- StartTime string
- The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- AssessmentActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- CriticalAnd intSecurity Patch Count 
- The number of critical or security patches that have been detected as available and not yet installed.
- Error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- LastModified stringTime 
- The UTC timestamp when the operation began.
- OtherPatch intCount 
- The number of all available patches excluding critical and security.
- RebootPending bool
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- StartTime string
- The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessmentActivity StringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- criticalAnd IntegerSecurity Patch Count 
- The number of critical or security patches that have been detected as available and not yet installed.
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- lastModified StringTime 
- The UTC timestamp when the operation began.
- otherPatch IntegerCount 
- The number of all available patches excluding critical and security.
- rebootPending Boolean
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- startTime String
- The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessmentActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- criticalAnd numberSecurity Patch Count 
- The number of critical or security patches that have been detected as available and not yet installed.
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- lastModified stringTime 
- The UTC timestamp when the operation began.
- otherPatch numberCount 
- The number of all available patches excluding critical and security.
- rebootPending boolean
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- startTime string
- The UTC timestamp when the operation began.
- status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessment_activity_ strid 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- critical_and_ intsecurity_ patch_ count 
- The number of critical or security patches that have been detected as available and not yet installed.
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- last_modified_ strtime 
- The UTC timestamp when the operation began.
- other_patch_ intcount 
- The number of all available patches excluding critical and security.
- reboot_pending bool
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- start_time str
- The UTC timestamp when the operation began.
- status str
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessmentActivity StringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- criticalAnd NumberSecurity Patch Count 
- The number of critical or security patches that have been detected as available and not yet installed.
- error Property Map
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- lastModified StringTime 
- The UTC timestamp when the operation began.
- otherPatch NumberCount 
- The number of all available patches excluding critical and security.
- rebootPending Boolean
- The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- startTime String
- The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
BillingProfile, BillingProfileArgs    
- MaxPrice double
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- MaxPrice float64
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice Double
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice number
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max_price float
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice Number
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
BillingProfileResponse, BillingProfileResponseArgs      
- MaxPrice double
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- MaxPrice float64
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice Double
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice number
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max_price float
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- maxPrice Number
- Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
BootDiagnostics, BootDiagnosticsArgs    
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- StorageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- StorageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri String
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage_uri str
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri String
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
BootDiagnosticsInstanceViewResponse, BootDiagnosticsInstanceViewResponseArgs          
- ConsoleScreenshot stringBlob Uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- SerialConsole stringLog Blob Uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- Status
Pulumi.Azure Native. Compute. Inputs. Instance View Status Response 
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
- ConsoleScreenshot stringBlob Uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- SerialConsole stringLog Blob Uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- Status
InstanceView Status Response 
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
- consoleScreenshot StringBlob Uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- serialConsole StringLog Blob Uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
InstanceView Status Response 
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
- consoleScreenshot stringBlob Uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- serialConsole stringLog Blob Uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
InstanceView Status Response 
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
- console_screenshot_ strblob_ uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- serial_console_ strlog_ blob_ uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
InstanceView Status Response 
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
- consoleScreenshot StringBlob Uri 
- The console screenshot blob URI. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- serialConsole StringLog Blob Uri 
- The serial console log blob Uri. Note: This will not be set if boot diagnostics is currently enabled with managed storage.
- status Property Map
- The boot diagnostics status information for the VM. Note: It will be set only if there are errors encountered in enabling boot diagnostics.
BootDiagnosticsResponse, BootDiagnosticsResponseArgs      
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- StorageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- StorageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri String
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri string
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage_uri str
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storageUri String
- Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
CachingTypes, CachingTypesArgs    
- None
- None
- ReadOnly 
- ReadOnly
- ReadWrite 
- ReadWrite
- CachingTypes None 
- None
- CachingTypes Read Only 
- ReadOnly
- CachingTypes Read Write 
- ReadWrite
- None
- None
- ReadOnly 
- ReadOnly
- ReadWrite 
- ReadWrite
- None
- None
- ReadOnly 
- ReadOnly
- ReadWrite 
- ReadWrite
- NONE
- None
- READ_ONLY
- ReadOnly
- READ_WRITE
- ReadWrite
- "None"
- None
- "ReadOnly" 
- ReadOnly
- "ReadWrite" 
- ReadWrite
CapacityReservationProfile, CapacityReservationProfileArgs      
- CapacityReservation Pulumi.Group Azure Native. Compute. Inputs. Sub Resource 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- CapacityReservation SubGroup Resource 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation SubGroup Resource 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation SubGroup Resource 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacity_reservation_ Subgroup Resource 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation Property MapGroup 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
CapacityReservationProfileResponse, CapacityReservationProfileResponseArgs        
- CapacityReservation Pulumi.Group Azure Native. Compute. Inputs. Sub Resource Response 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- CapacityReservation SubGroup Resource Response 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation SubGroup Resource Response 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation SubGroup Resource Response 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacity_reservation_ Subgroup Resource Response 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
- capacityReservation Property MapGroup 
- Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.
ComponentNames, ComponentNamesArgs    
- Microsoft_Windows_Shell_Setup
- Microsoft-Windows-Shell-Setup
- ComponentNames_Microsoft_Windows_Shell_Setup 
- Microsoft-Windows-Shell-Setup
- MicrosoftWindows Shell Setup 
- Microsoft-Windows-Shell-Setup
- Microsoft_Windows_Shell_Setup
- Microsoft-Windows-Shell-Setup
- MICROSOFT_WINDOWS_SHELL_SETUP
- Microsoft-Windows-Shell-Setup
- "Microsoft-Windows-Shell-Setup"
- Microsoft-Windows-Shell-Setup
DataDisk, DataDiskArgs    
- CreateOption string | Pulumi.Azure Native. Compute. Disk Create Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- Caching
Pulumi.Azure Native. Compute. Caching Types 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string | Pulumi.Azure Native. Compute. Disk Delete Option Types 
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- DetachOption string | Pulumi.Azure Native. Compute. Disk Detach Option Types 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters 
- The managed disk parameters.
- Name string
- The disk name.
- ToBe boolDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- CreateOption string | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- Caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string | DiskDelete Option Types 
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- DetachOption string | DiskDetach Option Types 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk ManagedDisk Parameters 
- The managed disk parameters.
- Name string
- The disk name.
- ToBe boolDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
VirtualHard Disk 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String | DiskDelete Option Types 
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption String | DiskDetach Option Types 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize IntegerGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters 
- The managed disk parameters.
- name String
- The disk name.
- toBe BooleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk 
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption string | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption string | DiskDelete Option Types 
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption string | DiskDetach Option Types 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize numberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters 
- The managed disk parameters.
- name string
- The disk name.
- toBe booleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk 
- The virtual hard disk.
- writeAccelerator booleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_option str | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- delete_option str | DiskDelete Option Types 
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detach_option str | DiskDetach Option Types 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk_size_ intgb 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_disk ManagedDisk Parameters 
- The managed disk parameters.
- name str
- The disk name.
- to_be_ booldetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk 
- The virtual hard disk.
- write_accelerator_ boolenabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String | "FromImage" | "Empty" | "Attach" 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- 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.
- caching
"None" | "ReadOnly" | "Read Write" 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String | "Delete" | "Detach"
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption String | "ForceDetach" 
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize NumberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk Property Map
- The managed disk parameters.
- name String
- The disk name.
- toBe BooleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd Property Map
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
DataDiskResponse, DataDiskResponseArgs      
- CreateOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- DiskIOPSRead doubleWrite 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- DiskMBps doubleRead Write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- DetachOption string
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response 
- The managed disk parameters.
- Name string
- The disk name.
- ToBe boolDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk Response 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- CreateOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- DiskIOPSRead float64Write 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- DiskMBps float64Read Write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- DetachOption string
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- Image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- Name string
- The disk name.
- ToBe boolDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
VirtualHard Disk Response 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- diskIOPSRead DoubleWrite 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- diskMBps DoubleRead Write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption String
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize IntegerGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- name String
- The disk name.
- toBe BooleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- diskIOPSRead numberWrite 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- diskMBps numberRead Write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption string
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption string
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize numberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- name string
- The disk name.
- toBe booleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- writeAccelerator booleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_option str
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- disk_iops_ floatread_ write 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- disk_m_ floatbps_ read_ write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- caching str
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- delete_option str
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detach_option str
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk_size_ intgb 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_disk ManagedDisk Parameters Response 
- The managed disk parameters.
- name str
- The disk name.
- to_be_ booldetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- write_accelerator_ boolenabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- diskIOPSRead NumberWrite 
- Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- diskMBps NumberRead Write 
- Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- 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.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String
- Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the data disk is deleted when VM is deleted. Detach. If this value is used, the data disk is retained after VM is deleted. The default value is set to Detach.
- detachOption String
- Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- diskSize NumberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk Property Map
- The managed disk parameters.
- name String
- The disk name.
- toBe BooleanDetached 
- Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd Property Map
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
DeleteOptions, DeleteOptionsArgs    
- Delete
- Delete
- Detach
- Detach
- DeleteOptions Delete 
- Delete
- DeleteOptions Detach 
- Detach
- Delete
- Delete
- Detach
- Detach
- Delete
- Delete
- Detach
- Detach
- DELETE
- Delete
- DETACH
- Detach
- "Delete"
- Delete
- "Detach"
- Detach
DiagnosticsProfile, DiagnosticsProfileArgs    
- BootDiagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- BootDiagnostics BootDiagnostics 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics BootDiagnostics 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics BootDiagnostics 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot_diagnostics BootDiagnostics 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics Property Map
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
DiagnosticsProfileResponse, DiagnosticsProfileResponseArgs      
- BootDiagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- BootDiagnostics BootDiagnostics Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics BootDiagnostics Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics BootDiagnostics Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot_diagnostics BootDiagnostics Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- bootDiagnostics Property Map
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. NOTE: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
DiffDiskOptions, DiffDiskOptionsArgs      
- Local
- Local
- DiffDisk Options Local 
- Local
- Local
- Local
- Local
- Local
- LOCAL
- Local
- "Local"
- Local
DiffDiskPlacement, DiffDiskPlacementArgs      
- CacheDisk 
- CacheDisk
- ResourceDisk 
- ResourceDisk
- DiffDisk Placement Cache Disk 
- CacheDisk
- DiffDisk Placement Resource Disk 
- ResourceDisk
- CacheDisk 
- CacheDisk
- ResourceDisk 
- ResourceDisk
- CacheDisk 
- CacheDisk
- ResourceDisk 
- ResourceDisk
- CACHE_DISK
- CacheDisk
- RESOURCE_DISK
- ResourceDisk
- "CacheDisk" 
- CacheDisk
- "ResourceDisk" 
- ResourceDisk
DiffDiskSettings, DiffDiskSettingsArgs      
- Option
string | Pulumi.Azure Native. Compute. Diff Disk Options 
- Specifies the ephemeral disk settings for operating system disk.
- Placement
string | Pulumi.Azure Native. Compute. Diff Disk Placement 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- Option
string | DiffDisk Options 
- Specifies the ephemeral disk settings for operating system disk.
- Placement
string | DiffDisk Placement 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
String | DiffDisk Options 
- Specifies the ephemeral disk settings for operating system disk.
- placement
String | DiffDisk Placement 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
string | DiffDisk Options 
- Specifies the ephemeral disk settings for operating system disk.
- placement
string | DiffDisk Placement 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
str | DiffDisk Options 
- Specifies the ephemeral disk settings for operating system disk.
- placement
str | DiffDisk Placement 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String | "Local"
- Specifies the ephemeral disk settings for operating system disk.
- placement
String | "CacheDisk" | "Resource Disk" 
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
DiffDiskSettingsResponse, DiffDiskSettingsResponseArgs        
- Option string
- Specifies the ephemeral disk settings for operating system disk.
- Placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- Option string
- Specifies the ephemeral disk settings for operating system disk.
- Placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String
- Specifies the ephemeral disk settings for operating system disk.
- placement String
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option string
- Specifies the ephemeral disk settings for operating system disk.
- placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option str
- Specifies the ephemeral disk settings for operating system disk.
- placement str
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String
- Specifies the ephemeral disk settings for operating system disk.
- placement String
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk, ResourceDisk. The defaulting behavior is: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
DiskControllerTypes, DiskControllerTypesArgs      
- SCSI
- SCSI
- NVMe
- NVMe
- DiskController Types SCSI 
- SCSI
- DiskController Types NVMe 
- NVMe
- SCSI
- SCSI
- NVMe
- NVMe
- SCSI
- SCSI
- NVMe
- NVMe
- SCSI
- SCSI
- NV_ME
- NVMe
- "SCSI"
- SCSI
- "NVMe"
- NVMe
DiskCreateOptionTypes, DiskCreateOptionTypesArgs        
- FromImage 
- FromImage
- Empty
- Empty
- Attach
- Attach
- DiskCreate Option Types From Image 
- FromImage
- DiskCreate Option Types Empty 
- Empty
- DiskCreate Option Types Attach 
- Attach
- FromImage 
- FromImage
- Empty
- Empty
- Attach
- Attach
- FromImage 
- FromImage
- Empty
- Empty
- Attach
- Attach
- FROM_IMAGE
- FromImage
- EMPTY
- Empty
- ATTACH
- Attach
- "FromImage" 
- FromImage
- "Empty"
- Empty
- "Attach"
- Attach
DiskDeleteOptionTypes, DiskDeleteOptionTypesArgs        
- Delete
- Delete
- Detach
- Detach
- DiskDelete Option Types Delete 
- Delete
- DiskDelete Option Types Detach 
- Detach
- Delete
- Delete
- Detach
- Detach
- Delete
- Delete
- Detach
- Detach
- DELETE
- Delete
- DETACH
- Detach
- "Delete"
- Delete
- "Detach"
- Detach
DiskDetachOptionTypes, DiskDetachOptionTypesArgs        
- ForceDetach 
- ForceDetach
- DiskDetach Option Types Force Detach 
- ForceDetach
- ForceDetach 
- ForceDetach
- ForceDetach 
- ForceDetach
- FORCE_DETACH
- ForceDetach
- "ForceDetach" 
- ForceDetach
DiskEncryptionSetParameters, DiskEncryptionSetParametersArgs        
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
DiskEncryptionSetParametersResponse, DiskEncryptionSetParametersResponseArgs          
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
DiskEncryptionSettings, DiskEncryptionSettingsArgs      
- DiskEncryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Secret Reference 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- KeyEncryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Key Reference 
- Specifies the location of the key encryption key in Key Vault.
- DiskEncryption KeyKey Vault Secret Reference 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- KeyEncryption KeyKey Vault Key Reference 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption KeyKey Vault Secret Reference 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption KeyKey Vault Key Reference 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption KeyKey Vault Secret Reference 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption KeyKey Vault Key Reference 
- Specifies the location of the key encryption key in Key Vault.
- disk_encryption_ Keykey Vault Secret Reference 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- key_encryption_ Keykey Vault Key Reference 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption Property MapKey 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption Property MapKey 
- Specifies the location of the key encryption key in Key Vault.
DiskEncryptionSettingsResponse, DiskEncryptionSettingsResponseArgs        
- DiskEncryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Secret Reference Response 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- KeyEncryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Key Reference Response 
- Specifies the location of the key encryption key in Key Vault.
- DiskEncryption KeyKey Vault Secret Reference Response 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- KeyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption KeyKey Vault Secret Reference Response 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption KeyKey Vault Secret Reference Response 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption KeyKey Vault Key Reference Response 
- Specifies the location of the key encryption key in Key Vault.
- disk_encryption_ Keykey Vault Secret Reference Response 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- key_encryption_ Keykey Vault Key Reference Response 
- Specifies the location of the key encryption key in Key Vault.
- diskEncryption Property MapKey 
- Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- keyEncryption Property MapKey 
- Specifies the location of the key encryption key in Key Vault.
DiskInstanceViewResponse, DiskInstanceViewResponseArgs        
- EncryptionSettings List<Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings Response> 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Name string
- The disk name.
- Statuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- EncryptionSettings []DiskEncryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Name string
- The disk name.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- encryptionSettings List<DiskEncryption Settings Response> 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name String
- The disk name.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- encryptionSettings DiskEncryption Settings Response[] 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name string
- The disk name.
- statuses
InstanceView Status Response[] 
- The resource status information.
- encryption_settings Sequence[DiskEncryption Settings Response] 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name str
- The disk name.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- encryptionSettings List<Property Map>
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name String
- The disk name.
- statuses List<Property Map>
- The resource status information.
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Compute. Extended Location Types 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Types 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Types 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "EdgeZone" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- EdgeZone 
- EdgeZone
- ExtendedLocation Types Edge Zone 
- EdgeZone
- EdgeZone 
- EdgeZone
- EdgeZone 
- EdgeZone
- EDGE_ZONE
- EdgeZone
- "EdgeZone" 
- EdgeZone
HardwareProfile, HardwareProfileArgs    
- VmSize string | Pulumi.Azure Native. Compute. Virtual Machine Size Types 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- VmSize Pulumi.Properties Azure Native. Compute. Inputs. VMSize Properties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- VmSize string | VirtualMachine Size Types 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- VmSize VMSizeProperties Properties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize String | VirtualMachine Size Types 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize VMSizeProperties Properties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize string | VirtualMachine Size Types 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize VMSizeProperties Properties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm_size str | VirtualMachine Size Types 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm_size_ VMSizeproperties Properties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize String | "Basic_A0" | "Basic_A1" | "Basic_A2" | "Basic_A3" | "Basic_A4" | "Standard_A0" | "Standard_A1" | "Standard_A2" | "Standard_A3" | "Standard_A4" | "Standard_A5" | "Standard_A6" | "Standard_A7" | "Standard_A8" | "Standard_A9" | "Standard_A10" | "Standard_A11" | "Standard_A1_v2" | "Standard_A2_ v2" | "Standard_A4_ v2" | "Standard_A8_ v2" | "Standard_A2m_ v2" | "Standard_A4m_ v2" | "Standard_A8m_ v2" | "Standard_B1s" | "Standard_B1ms" | "Standard_B2s" | "Standard_B2ms" | "Standard_B4ms" | "Standard_B8ms" | "Standard_D1" | "Standard_D2" | "Standard_D3" | "Standard_D4" | "Standard_D11" | "Standard_D12" | "Standard_D13" | "Standard_D14" | "Standard_D1_ v2" | "Standard_D2_ v2" | "Standard_D3_ v2" | "Standard_D4_ v2" | "Standard_D5_ v2" | "Standard_D2_ v3" | "Standard_D4_ v3" | "Standard_D8_ v3" | "Standard_D16_ v3" | "Standard_D32_ v3" | "Standard_D64_ v3" | "Standard_D2s_ v3" | "Standard_D4s_ v3" | "Standard_D8s_ v3" | "Standard_D16s_ v3" | "Standard_D32s_ v3" | "Standard_D64s_ v3" | "Standard_D11_ v2" | "Standard_D12_ v2" | "Standard_D13_ v2" | "Standard_D14_ v2" | "Standard_D15_ v2" | "Standard_DS1" | "Standard_DS2" | "Standard_DS3" | "Standard_DS4" | "Standard_DS11" | "Standard_DS12" | "Standard_DS13" | "Standard_DS14" | "Standard_DS1_ v2" | "Standard_DS2_ v2" | "Standard_DS3_ v2" | "Standard_DS4_ v2" | "Standard_DS5_ v2" | "Standard_DS11_ v2" | "Standard_DS12_ v2" | "Standard_DS13_ v2" | "Standard_DS14_ v2" | "Standard_DS15_ v2" | "Standard_DS13-4_ v2" | "Standard_DS13-2_ v2" | "Standard_DS14-8_ v2" | "Standard_DS14-4_ v2" | "Standard_E2_ v3" | "Standard_E4_ v3" | "Standard_E8_ v3" | "Standard_E16_ v3" | "Standard_E32_ v3" | "Standard_E64_ v3" | "Standard_E2s_ v3" | "Standard_E4s_ v3" | "Standard_E8s_ v3" | "Standard_E16s_ v3" | "Standard_E32s_ v3" | "Standard_E64s_ v3" | "Standard_E32-16_ v3" | "Standard_E32-8s_ v3" | "Standard_E64-32s_ v3" | "Standard_E64-16s_ v3" | "Standard_F1" | "Standard_F2" | "Standard_F4" | "Standard_F8" | "Standard_F16" | "Standard_F1s" | "Standard_F2s" | "Standard_F4s" | "Standard_F8s" | "Standard_F16s" | "Standard_F2s_ v2" | "Standard_F4s_ v2" | "Standard_F8s_ v2" | "Standard_F16s_ v2" | "Standard_F32s_ v2" | "Standard_F64s_ v2" | "Standard_F72s_ v2" | "Standard_G1" | "Standard_G2" | "Standard_G3" | "Standard_G4" | "Standard_G5" | "Standard_GS1" | "Standard_GS2" | "Standard_GS3" | "Standard_GS4" | "Standard_GS5" | "Standard_GS4-8" | "Standard_GS4-4" | "Standard_GS5-16" | "Standard_GS5-8" | "Standard_H8" | "Standard_H16" | "Standard_H8m" | "Standard_H16m" | "Standard_H16r" | "Standard_H16mr" | "Standard_L4s" | "Standard_L8s" | "Standard_L16s" | "Standard_L32s" | "Standard_M64s" | "Standard_M64ms" | "Standard_M128s" | "Standard_M128ms" | "Standard_M64-32ms" | "Standard_M64-16ms" | "Standard_M128-64ms" | "Standard_M128-32ms" | "Standard_NC6" | "Standard_NC12" | "Standard_NC24" | "Standard_NC24r" | "Standard_NC6s_ v2" | "Standard_NC12s_ v2" | "Standard_NC24s_ v2" | "Standard_NC24rs_ v2" | "Standard_NC6s_ v3" | "Standard_NC12s_ v3" | "Standard_NC24s_ v3" | "Standard_NC24rs_ v3" | "Standard_ND6s" | "Standard_ND12s" | "Standard_ND24s" | "Standard_ND24rs" | "Standard_NV6" | "Standard_NV12" | "Standard_NV24" 
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize Property MapProperties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
HardwareProfileResponse, HardwareProfileResponseArgs      
- VmSize string
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- VmSize Pulumi.Properties Azure Native. Compute. Inputs. VMSize Properties Response 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- VmSize string
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- VmSize VMSizeProperties Properties Response 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize String
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize VMSizeProperties Properties Response 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize string
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize VMSizeProperties Properties Response 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vm_size str
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm_size_ VMSizeproperties Properties Response 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
- vmSize String
- Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set, List all available virtual machine sizes in a region, List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vmSize Property MapProperties 
- Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in VM Customization for more details.
IPVersions, IPVersionsArgs  
- IPv4
- IPv4
- IPv6
- IPv6
- IPVersionsIPv4 
- IPv4
- IPVersionsIPv6 
- IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- I_PV4
- IPv4
- I_PV6
- IPv6
- "IPv4"
- IPv4
- "IPv6"
- IPv6
ImageReference, ImageReferenceArgs    
- CommunityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- CommunityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- communityGallery StringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- String
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- communityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id string
- Resource Id
- offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku string
- The image SKU.
- version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- community_gallery_ strimage_ id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id str
- Resource Id
- offer str
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher str
- The image publisher.
- str
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku str
- The image SKU.
- version str
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- communityGallery StringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- String
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
ImageReferenceResponse, ImageReferenceResponseArgs      
- ExactVersion string
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- CommunityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- ExactVersion string
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- CommunityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- exactVersion String
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- communityGallery StringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- String
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- exactVersion string
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- communityGallery stringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id string
- Resource Id
- offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher string
- The image publisher.
- string
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku string
- The image SKU.
- version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- exact_version str
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- community_gallery_ strimage_ id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id str
- Resource Id
- offer str
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher str
- The image publisher.
- str
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku str
- The image SKU.
- version str
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
- exactVersion String
- Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- communityGallery StringImage Id 
- Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- String
- Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.
InnerErrorResponse, InnerErrorResponseArgs      
- Errordetail string
- The internal error message or exception dump.
- Exceptiontype string
- The exception type.
- Errordetail string
- The internal error message or exception dump.
- Exceptiontype string
- The exception type.
- errordetail String
- The internal error message or exception dump.
- exceptiontype String
- The exception type.
- errordetail string
- The internal error message or exception dump.
- exceptiontype string
- The exception type.
- errordetail str
- The internal error message or exception dump.
- exceptiontype str
- The exception type.
- errordetail String
- The internal error message or exception dump.
- exceptiontype String
- The exception type.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs        
- Code string
- The status code.
- DisplayStatus string
- The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- DisplayStatus string
- The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- displayStatus String
- The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- displayStatus string
- The short localizable label for the status.
- level string
- The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_status str
- The short localizable label for the status.
- level str
- The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- displayStatus String
- The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
KeyVaultKeyReference, KeyVaultKeyReferenceArgs        
- KeyUrl string
- The URL referencing a key encryption key in Key Vault.
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- The relative URL of the Key Vault containing the key.
- KeyUrl string
- The URL referencing a key encryption key in Key Vault.
- SourceVault SubResource 
- The relative URL of the Key Vault containing the key.
- keyUrl String
- The URL referencing a key encryption key in Key Vault.
- sourceVault SubResource 
- The relative URL of the Key Vault containing the key.
- keyUrl string
- The URL referencing a key encryption key in Key Vault.
- sourceVault SubResource 
- The relative URL of the Key Vault containing the key.
- key_url str
- The URL referencing a key encryption key in Key Vault.
- source_vault SubResource 
- The relative URL of the Key Vault containing the key.
- keyUrl String
- The URL referencing a key encryption key in Key Vault.
- sourceVault Property Map
- The relative URL of the Key Vault containing the key.
KeyVaultKeyReferenceResponse, KeyVaultKeyReferenceResponseArgs          
- KeyUrl string
- The URL referencing a key encryption key in Key Vault.
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- The relative URL of the Key Vault containing the key.
- KeyUrl string
- The URL referencing a key encryption key in Key Vault.
- SourceVault SubResource Response 
- The relative URL of the Key Vault containing the key.
- keyUrl String
- The URL referencing a key encryption key in Key Vault.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing the key.
- keyUrl string
- The URL referencing a key encryption key in Key Vault.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing the key.
- key_url str
- The URL referencing a key encryption key in Key Vault.
- source_vault SubResource Response 
- The relative URL of the Key Vault containing the key.
- keyUrl String
- The URL referencing a key encryption key in Key Vault.
- sourceVault Property Map
- The relative URL of the Key Vault containing the key.
KeyVaultSecretReference, KeyVaultSecretReferenceArgs        
- SecretUrl string
- The URL referencing a secret in a Key Vault.
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- The relative URL of the Key Vault containing the secret.
- SecretUrl string
- The URL referencing a secret in a Key Vault.
- SourceVault SubResource 
- The relative URL of the Key Vault containing the secret.
- secretUrl String
- The URL referencing a secret in a Key Vault.
- sourceVault SubResource 
- The relative URL of the Key Vault containing the secret.
- secretUrl string
- The URL referencing a secret in a Key Vault.
- sourceVault SubResource 
- The relative URL of the Key Vault containing the secret.
- secret_url str
- The URL referencing a secret in a Key Vault.
- source_vault SubResource 
- The relative URL of the Key Vault containing the secret.
- secretUrl String
- The URL referencing a secret in a Key Vault.
- sourceVault Property Map
- The relative URL of the Key Vault containing the secret.
KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs          
- SecretUrl string
- The URL referencing a secret in a Key Vault.
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- The relative URL of the Key Vault containing the secret.
- SecretUrl string
- The URL referencing a secret in a Key Vault.
- SourceVault SubResource Response 
- The relative URL of the Key Vault containing the secret.
- secretUrl String
- The URL referencing a secret in a Key Vault.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing the secret.
- secretUrl string
- The URL referencing a secret in a Key Vault.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing the secret.
- secret_url str
- The URL referencing a secret in a Key Vault.
- source_vault SubResource Response 
- The relative URL of the Key Vault containing the secret.
- secretUrl String
- The URL referencing a secret in a Key Vault.
- sourceVault Property Map
- The relative URL of the Key Vault containing the secret.
LastPatchInstallationSummaryResponse, LastPatchInstallationSummaryResponseArgs          
- Error
Pulumi.Azure Native. Compute. Inputs. Api Error Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- ExcludedPatch intCount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- FailedPatch intCount 
- The count of patches that failed installation.
- InstallationActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- InstalledPatch intCount 
- The count of patches that successfully installed.
- LastModified stringTime 
- The UTC timestamp when the operation began.
- MaintenanceWindow boolExceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- NotSelected intPatch Count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- PendingPatch intCount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- StartTime string
- The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- Error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- ExcludedPatch intCount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- FailedPatch intCount 
- The count of patches that failed installation.
- InstallationActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- InstalledPatch intCount 
- The count of patches that successfully installed.
- LastModified stringTime 
- The UTC timestamp when the operation began.
- MaintenanceWindow boolExceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- NotSelected intPatch Count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- PendingPatch intCount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- StartTime string
- The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- excludedPatch IntegerCount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failedPatch IntegerCount 
- The count of patches that failed installation.
- installationActivity StringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installedPatch IntegerCount 
- The count of patches that successfully installed.
- lastModified StringTime 
- The UTC timestamp when the operation began.
- maintenanceWindow BooleanExceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- notSelected IntegerPatch Count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pendingPatch IntegerCount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- startTime String
- The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- excludedPatch numberCount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failedPatch numberCount 
- The count of patches that failed installation.
- installationActivity stringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installedPatch numberCount 
- The count of patches that successfully installed.
- lastModified stringTime 
- The UTC timestamp when the operation began.
- maintenanceWindow booleanExceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- notSelected numberPatch Count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pendingPatch numberCount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- startTime string
- The UTC timestamp when the operation began.
- status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
ApiError Response 
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- excluded_patch_ intcount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failed_patch_ intcount 
- The count of patches that failed installation.
- installation_activity_ strid 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installed_patch_ intcount 
- The count of patches that successfully installed.
- last_modified_ strtime 
- The UTC timestamp when the operation began.
- maintenance_window_ boolexceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- not_selected_ intpatch_ count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pending_patch_ intcount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- start_time str
- The UTC timestamp when the operation began.
- status str
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error Property Map
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- excludedPatch NumberCount 
- The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failedPatch NumberCount 
- The count of patches that failed installation.
- installationActivity StringId 
- The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installedPatch NumberCount 
- The count of patches that successfully installed.
- lastModified StringTime 
- The UTC timestamp when the operation began.
- maintenanceWindow BooleanExceeded 
- Describes whether the operation ran out of time before it completed all its intended actions
- notSelected NumberPatch Count 
- The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pendingPatch NumberCount 
- The number of all available patches expected to be installed over the course of the patch installation operation.
- startTime String
- The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
LinuxConfiguration, LinuxConfigurationArgs    
- DisablePassword boolAuthentication 
- Specifies whether password authentication should be disabled.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- PatchSettings Pulumi.Azure Native. Compute. Inputs. Linux Patch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Pulumi.Azure Native. Compute. Inputs. Ssh Configuration 
- Specifies the ssh key configuration for a Linux OS.
- DisablePassword boolAuthentication 
- Specifies whether password authentication should be disabled.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- PatchSettings LinuxPatch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings LinuxPatch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword booleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent booleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings LinuxPatch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disable_password_ boolauthentication 
- Specifies whether password authentication should be disabled.
- enable_vm_ boolagent_ platform_ updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch_settings LinuxPatch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_vm_ boolagent 
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings Property Map
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
LinuxConfigurationResponse, LinuxConfigurationResponseArgs      
- DisablePassword boolAuthentication 
- Specifies whether password authentication should be disabled.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- PatchSettings Pulumi.Azure Native. Compute. Inputs. Linux Patch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Pulumi.Azure Native. Compute. Inputs. Ssh Configuration Response 
- Specifies the ssh key configuration for a Linux OS.
- DisablePassword boolAuthentication 
- Specifies whether password authentication should be disabled.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- PatchSettings LinuxPatch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings LinuxPatch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword booleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent booleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings LinuxPatch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disable_password_ boolauthentication 
- Specifies whether password authentication should be disabled.
- enable_vm_ boolagent_ platform_ updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patch_settings LinuxPatch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_vm_ boolagent 
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- Specifies whether password authentication should be disabled.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.
- patchSettings Property Map
- [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
LinuxPatchAssessmentMode, LinuxPatchAssessmentModeArgs        
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- LinuxPatch Assessment Mode Image Default 
- ImageDefault
- LinuxPatch Assessment Mode Automatic By Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "ImageDefault" 
- ImageDefault
- "AutomaticBy Platform" 
- AutomaticByPlatform
LinuxPatchSettings, LinuxPatchSettingsArgs      
- AssessmentMode string | Pulumi.Azure Native. Compute. Linux Patch Assessment Mode 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy Pulumi.Platform Settings Azure Native. Compute. Inputs. Linux VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- PatchMode string | Pulumi.Azure Native. Compute. Linux VMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- AssessmentMode string | LinuxPatch Assessment Mode 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- PatchMode string | LinuxVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode String | LinuxPatch Assessment Mode 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode String | LinuxVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode string | LinuxPatch Assessment Mode 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode string | LinuxVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment_mode str | LinuxPatch Assessment Mode 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automatic_by_ Linuxplatform_ settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch_mode str | LinuxVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode String | "ImageDefault" | "Automatic By Platform" 
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy Property MapPlatform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode String | "ImageDefault" | "Automatic By Platform" 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
LinuxPatchSettingsResponse, LinuxPatchSettingsResponseArgs        
- AssessmentMode string
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy Pulumi.Platform Settings Azure Native. Compute. Inputs. Linux VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- PatchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- AssessmentMode string
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- PatchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode String
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode String
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode string
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy LinuxPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment_mode str
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automatic_by_ Linuxplatform_ settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patch_mode str
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessmentMode String
- Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy Property MapPlatform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.
- patchMode String
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
LinuxVMGuestPatchAutomaticByPlatformRebootSetting, LinuxVMGuestPatchAutomaticByPlatformRebootSettingArgs                
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- LinuxVMGuest Patch Automatic By Platform Reboot Setting Unknown 
- Unknown
- LinuxVMGuest Patch Automatic By Platform Reboot Setting If Required 
- IfRequired
- LinuxVMGuest Patch Automatic By Platform Reboot Setting Never 
- Never
- LinuxVMGuest Patch Automatic By Platform Reboot Setting Always 
- Always
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- UNKNOWN
- Unknown
- IF_REQUIRED
- IfRequired
- NEVER
- Never
- ALWAYS
- Always
- "Unknown"
- Unknown
- "IfRequired" 
- IfRequired
- "Never"
- Never
- "Always"
- Always
LinuxVMGuestPatchAutomaticByPlatformSettings, LinuxVMGuestPatchAutomaticByPlatformSettingsArgs              
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string | Pulumi.Azure Native. Compute. Linux VMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string | LinuxVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String | LinuxVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform booleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting string | LinuxVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_platform_ boolsafety_ checks_ on_ user_ schedule 
- Enables customer to schedule patching without accidental upgrades
- reboot_setting str | LinuxVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String | "Unknown" | "IfRequired" | "Never" | "Always" 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
LinuxVMGuestPatchAutomaticByPlatformSettingsResponse, LinuxVMGuestPatchAutomaticByPlatformSettingsResponseArgs                
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform booleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_platform_ boolsafety_ checks_ on_ user_ schedule 
- Enables customer to schedule patching without accidental upgrades
- reboot_setting str
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
LinuxVMGuestPatchMode, LinuxVMGuestPatchModeArgs        
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- LinuxVMGuest Patch Mode Image Default 
- ImageDefault
- LinuxVMGuest Patch Mode Automatic By Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "ImageDefault" 
- ImageDefault
- "AutomaticBy Platform" 
- AutomaticByPlatform
MaintenanceRedeployStatusResponse, MaintenanceRedeployStatusResponseArgs        
- IsCustomer boolInitiated Maintenance Allowed 
- True, if customer is allowed to perform Maintenance.
- LastOperation stringMessage 
- Message returned for the last Maintenance Operation.
- LastOperation stringResult Code 
- The Last Maintenance Operation Result Code.
- MaintenanceWindow stringEnd Time 
- End Time for the Maintenance Window.
- MaintenanceWindow stringStart Time 
- Start Time for the Maintenance Window.
- PreMaintenance stringWindow End Time 
- End Time for the Pre Maintenance Window.
- PreMaintenance stringWindow Start Time 
- Start Time for the Pre Maintenance Window.
- IsCustomer boolInitiated Maintenance Allowed 
- True, if customer is allowed to perform Maintenance.
- LastOperation stringMessage 
- Message returned for the last Maintenance Operation.
- LastOperation stringResult Code 
- The Last Maintenance Operation Result Code.
- MaintenanceWindow stringEnd Time 
- End Time for the Maintenance Window.
- MaintenanceWindow stringStart Time 
- Start Time for the Maintenance Window.
- PreMaintenance stringWindow End Time 
- End Time for the Pre Maintenance Window.
- PreMaintenance stringWindow Start Time 
- Start Time for the Pre Maintenance Window.
- isCustomer BooleanInitiated Maintenance Allowed 
- True, if customer is allowed to perform Maintenance.
- lastOperation StringMessage 
- Message returned for the last Maintenance Operation.
- lastOperation StringResult Code 
- The Last Maintenance Operation Result Code.
- maintenanceWindow StringEnd Time 
- End Time for the Maintenance Window.
- maintenanceWindow StringStart Time 
- Start Time for the Maintenance Window.
- preMaintenance StringWindow End Time 
- End Time for the Pre Maintenance Window.
- preMaintenance StringWindow Start Time 
- Start Time for the Pre Maintenance Window.
- isCustomer booleanInitiated Maintenance Allowed 
- True, if customer is allowed to perform Maintenance.
- lastOperation stringMessage 
- Message returned for the last Maintenance Operation.
- lastOperation stringResult Code 
- The Last Maintenance Operation Result Code.
- maintenanceWindow stringEnd Time 
- End Time for the Maintenance Window.
- maintenanceWindow stringStart Time 
- Start Time for the Maintenance Window.
- preMaintenance stringWindow End Time 
- End Time for the Pre Maintenance Window.
- preMaintenance stringWindow Start Time 
- Start Time for the Pre Maintenance Window.
- is_customer_ boolinitiated_ maintenance_ allowed 
- True, if customer is allowed to perform Maintenance.
- last_operation_ strmessage 
- Message returned for the last Maintenance Operation.
- last_operation_ strresult_ code 
- The Last Maintenance Operation Result Code.
- maintenance_window_ strend_ time 
- End Time for the Maintenance Window.
- maintenance_window_ strstart_ time 
- Start Time for the Maintenance Window.
- pre_maintenance_ strwindow_ end_ time 
- End Time for the Pre Maintenance Window.
- pre_maintenance_ strwindow_ start_ time 
- Start Time for the Pre Maintenance Window.
- isCustomer BooleanInitiated Maintenance Allowed 
- True, if customer is allowed to perform Maintenance.
- lastOperation StringMessage 
- Message returned for the last Maintenance Operation.
- lastOperation StringResult Code 
- The Last Maintenance Operation Result Code.
- maintenanceWindow StringEnd Time 
- End Time for the Maintenance Window.
- maintenanceWindow StringStart Time 
- Start Time for the Maintenance Window.
- preMaintenance StringWindow End Time 
- End Time for the Pre Maintenance Window.
- preMaintenance StringWindow Start Time 
- Start Time for the Pre Maintenance Window.
ManagedDiskParameters, ManagedDiskParametersArgs      
- DiskEncryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- SecurityProfile Pulumi.Azure Native. Compute. Inputs. VMDisk Security Profile 
- Specifies the security profile for the managed disk.
- StorageAccount string | Pulumi.Type Azure Native. Compute. Storage Account Types 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- DiskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- SecurityProfile VMDiskSecurity Profile 
- Specifies the security profile for the managed disk.
- StorageAccount string | StorageType Account Types 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- securityProfile VMDiskSecurity Profile 
- Specifies the security profile for the managed disk.
- storageAccount String | StorageType Account Types 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id string
- Resource Id
- securityProfile VMDiskSecurity Profile 
- Specifies the security profile for the managed disk.
- storageAccount string | StorageType Account Types 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_encryption_ Diskset Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id str
- Resource Id
- security_profile VMDiskSecurity Profile 
- Specifies the security profile for the managed disk.
- storage_account_ str | Storagetype Account Types 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption Property MapSet 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- securityProfile Property Map
- Specifies the security profile for the managed disk.
- storageAccount String | "Standard_LRS" | "Premium_LRS" | "StandardType SSD_LRS" | "Ultra SSD_LRS" | "Premium_ZRS" | "Standard SSD_ZRS" | "Premium V2_LRS" 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
ManagedDiskParametersResponse, ManagedDiskParametersResponseArgs        
- DiskEncryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- SecurityProfile Pulumi.Azure Native. Compute. Inputs. VMDisk Security Profile Response 
- Specifies the security profile for the managed disk.
- StorageAccount stringType 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- DiskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- SecurityProfile VMDiskSecurity Profile Response 
- Specifies the security profile for the managed disk.
- StorageAccount stringType 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- securityProfile VMDiskSecurity Profile Response 
- Specifies the security profile for the managed disk.
- storageAccount StringType 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id string
- Resource Id
- securityProfile VMDiskSecurity Profile Response 
- Specifies the security profile for the managed disk.
- storageAccount stringType 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_encryption_ Diskset Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id str
- Resource Id
- security_profile VMDiskSecurity Profile Response 
- Specifies the security profile for the managed disk.
- storage_account_ strtype 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- diskEncryption Property MapSet 
- Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- securityProfile Property Map
- Specifies the security profile for the managed disk.
- storageAccount StringType 
- Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
NetworkApiVersion, NetworkApiVersionArgs      
- NetworkApi Version_2020_11_01 
- 2020-11-01
- NetworkApi Version_2020_11_01 
- 2020-11-01
- _20201101
- 2020-11-01
- NetworkApi Version_2020_11_01 
- 2020-11-01
- NETWORK_API_VERSION_2020_11_01
- 2020-11-01
- "2020-11-01"
- 2020-11-01
NetworkInterfaceReference, NetworkInterfaceReferenceArgs      
- DeleteOption string | Pulumi.Azure Native. Compute. Delete Options 
- Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- DeleteOption string | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption String | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption string | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- id string
- Resource Id
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete_option str | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- id str
- Resource Id
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption String | "Delete" | "Detach"
- Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
NetworkInterfaceReferenceResponse, NetworkInterfaceReferenceResponseArgs        
- DeleteOption string
- Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- DeleteOption string
- Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption String
- Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption string
- Specify what happens to the network interface when the VM is deleted
- id string
- Resource Id
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete_option str
- Specify what happens to the network interface when the VM is deleted
- id str
- Resource Id
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- deleteOption String
- Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
NetworkProfile, NetworkProfileArgs    
- NetworkApi string | Pulumi.Version Azure Native. Compute. Network Api Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- NetworkInterface List<Pulumi.Configurations Azure Native. Compute. Inputs. Virtual Machine Network Interface Configuration> 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- NetworkInterfaces List<Pulumi.Azure Native. Compute. Inputs. Network Interface Reference> 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- NetworkApi string | NetworkVersion Api Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- NetworkInterface []VirtualConfigurations Machine Network Interface Configuration 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- NetworkInterfaces []NetworkInterface Reference 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi String | NetworkVersion Api Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface List<VirtualConfigurations Machine Network Interface Configuration> 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces List<NetworkInterface Reference> 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi string | NetworkVersion Api Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface VirtualConfigurations Machine Network Interface Configuration[] 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces NetworkInterface Reference[] 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network_api_ str | Networkversion Api Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network_interface_ Sequence[Virtualconfigurations Machine Network Interface Configuration] 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network_interfaces Sequence[NetworkInterface Reference] 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi String | "2020-11-01"Version 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface List<Property Map>Configurations 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces List<Property Map>
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
NetworkProfileResponse, NetworkProfileResponseArgs      
- NetworkApi stringVersion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- NetworkInterface List<Pulumi.Configurations Azure Native. Compute. Inputs. Virtual Machine Network Interface Configuration Response> 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- NetworkInterfaces List<Pulumi.Azure Native. Compute. Inputs. Network Interface Reference Response> 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- NetworkApi stringVersion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- NetworkInterface []VirtualConfigurations Machine Network Interface Configuration Response 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- NetworkInterfaces []NetworkInterface Reference Response 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi StringVersion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface List<VirtualConfigurations Machine Network Interface Configuration Response> 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces List<NetworkInterface Reference Response> 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi stringVersion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface VirtualConfigurations Machine Network Interface Configuration Response[] 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces NetworkInterface Reference Response[] 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network_api_ strversion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network_interface_ Sequence[Virtualconfigurations Machine Network Interface Configuration Response] 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network_interfaces Sequence[NetworkInterface Reference Response] 
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- networkApi StringVersion 
- specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- networkInterface List<Property Map>Configurations 
- Specifies the networking configurations that will be used to create the virtual machine networking resources.
- networkInterfaces List<Property Map>
- Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
OSDisk, OSDiskArgs  
- CreateOption string | Pulumi.Azure Native. Compute. Disk Create Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- Caching
Pulumi.Azure Native. Compute. Caching Types 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string | Pulumi.Azure Native. Compute. Disk Delete Option Types 
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- DiffDisk Pulumi.Settings Azure Native. Compute. Inputs. Diff Disk Settings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- EncryptionSettings Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- Image
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters 
- The managed disk parameters.
- Name string
- The disk name.
- OsType Pulumi.Azure Native. Compute. Operating System Types 
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- CreateOption string | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- Caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string | DiskDelete Option Types 
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- DiffDisk DiffSettings Disk Settings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- EncryptionSettings DiskEncryption Settings 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- Image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk ManagedDisk Parameters 
- The managed disk parameters.
- Name string
- The disk name.
- OsType OperatingSystem Types 
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
VirtualHard Disk 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String | DiskDelete Option Types 
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk DiffSettings Disk Settings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize IntegerGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings DiskEncryption Settings 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters 
- The managed disk parameters.
- name String
- The disk name.
- osType OperatingSystem Types 
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk 
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption string | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption string | DiskDelete Option Types 
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk DiffSettings Disk Settings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize numberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings DiskEncryption Settings 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters 
- The managed disk parameters.
- name string
- The disk name.
- osType OperatingSystem Types 
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk 
- The virtual hard disk.
- writeAccelerator booleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_option str | DiskCreate Option Types 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching
CachingTypes 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- delete_option str | DiskDelete Option Types 
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diff_disk_ Diffsettings Disk Settings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk_size_ intgb 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryption_settings DiskEncryption Settings 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_disk ManagedDisk Parameters 
- The managed disk parameters.
- name str
- The disk name.
- os_type OperatingSystem Types 
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk 
- The virtual hard disk.
- write_accelerator_ boolenabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String | "FromImage" | "Empty" | "Attach" 
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching
"None" | "ReadOnly" | "Read Write" 
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String | "Delete" | "Detach"
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk Property MapSettings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize NumberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings Property Map
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk Property Map
- The managed disk parameters.
- name String
- The disk name.
- osType "Windows" | "Linux"
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd Property Map
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
OSDiskResponse, OSDiskResponseArgs    
- CreateOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- DiffDisk Pulumi.Settings Azure Native. Compute. Inputs. Diff Disk Settings Response 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- EncryptionSettings Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- Image
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response 
- The managed disk parameters.
- Name string
- The disk name.
- OsType string
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
Pulumi.Azure Native. Compute. Inputs. Virtual Hard Disk Response 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- CreateOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- Caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- DeleteOption string
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- DiffDisk DiffSettings Disk Settings Response 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- DiskSize intGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- EncryptionSettings DiskEncryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- Image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- ManagedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- Name string
- The disk name.
- OsType string
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- Vhd
VirtualHard Disk Response 
- The virtual hard disk.
- WriteAccelerator boolEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk DiffSettings Disk Settings Response 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize IntegerGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings DiskEncryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- name String
- The disk name.
- osType String
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption string
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching string
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption string
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk DiffSettings Disk Settings Response 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize numberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings DiskEncryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk ManagedDisk Parameters Response 
- The managed disk parameters.
- name string
- The disk name.
- osType string
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- writeAccelerator booleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_option str
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching str
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- delete_option str
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diff_disk_ Diffsettings Disk Settings Response 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk_size_ intgb 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryption_settings DiskEncryption Settings Response 
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image
VirtualHard Disk Response 
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_disk ManagedDisk Parameters Response 
- The managed disk parameters.
- name str
- The disk name.
- os_type str
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd
VirtualHard Disk Response 
- The virtual hard disk.
- write_accelerator_ boolenabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
- createOption String
- Specifies how the virtual machine should be created. Possible values are: Attach. This value is used when you are using a specialized disk to create the virtual machine. FromImage. This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.
- caching String
- Specifies the caching requirements. Possible values are: None, ReadOnly, ReadWrite. The defaulting behavior is: None for Standard storage. ReadOnly for Premium storage.
- deleteOption String
- Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: Delete. If this value is used, the OS disk is deleted when VM is deleted. Detach. If this value is used, the os disk is retained after VM is deleted. The default value is set to Detach. For an ephemeral OS Disk, the default value is set to Delete. The user cannot change the delete option for an ephemeral OS Disk.
- diffDisk Property MapSettings 
- Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- diskSize NumberGB 
- Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
- encryptionSettings Property Map
- Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managedDisk Property Map
- The managed disk parameters.
- name String
- The disk name.
- osType String
- This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows, Linux.
- vhd Property Map
- The virtual hard disk.
- writeAccelerator BooleanEnabled 
- Specifies whether writeAccelerator should be enabled or disabled on the disk.
OSImageNotificationProfile, OSImageNotificationProfileArgs      
- Enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- Enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable Boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- not_before_ strtimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable Boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
OSImageNotificationProfileResponse, OSImageNotificationProfileResponseArgs        
- Enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- Enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable Boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore stringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable bool
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- not_before_ strtimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
- enable Boolean
- Specifies whether the OS Image Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)
OSProfile, OSProfileArgs  
- AdminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- AdminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- AllowExtension boolOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- ComputerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- CustomData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- LinuxConfiguration Pulumi.Azure Native. Compute. Inputs. Linux Configuration 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- RequireGuest boolProvision Signal 
- Optional property which must either be set to True or omitted.
- Secrets
List<Pulumi.Azure Native. Compute. Inputs. Vault Secret Group> 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- WindowsConfiguration Pulumi.Azure Native. Compute. Inputs. Windows Configuration 
- Specifies Windows operating system settings on the virtual machine.
- AdminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- AdminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- AllowExtension boolOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- ComputerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- CustomData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- LinuxConfiguration LinuxConfiguration 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- RequireGuest boolProvision Signal 
- Optional property which must either be set to True or omitted.
- Secrets
[]VaultSecret Group 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- WindowsConfiguration WindowsConfiguration 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword String
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername String
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension BooleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName String
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData String
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration LinuxConfiguration 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest BooleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets
List<VaultSecret Group> 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration WindowsConfiguration 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension booleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration LinuxConfiguration 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest booleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets
VaultSecret Group[] 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration WindowsConfiguration 
- Specifies Windows operating system settings on the virtual machine.
- admin_password str
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin_username str
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow_extension_ booloperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer_name str
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom_data str
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linux_configuration LinuxConfiguration 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_guest_ boolprovision_ signal 
- Optional property which must either be set to True or omitted.
- secrets
Sequence[VaultSecret Group] 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_configuration WindowsConfiguration 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword String
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername String
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension BooleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName String
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData String
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration Property Map
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest BooleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration Property Map
- Specifies Windows operating system settings on the virtual machine.
OSProfileResponse, OSProfileResponseArgs    
- AdminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- AdminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- AllowExtension boolOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- ComputerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- CustomData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- LinuxConfiguration Pulumi.Azure Native. Compute. Inputs. Linux Configuration Response 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- RequireGuest boolProvision Signal 
- Optional property which must either be set to True or omitted.
- Secrets
List<Pulumi.Azure Native. Compute. Inputs. Vault Secret Group Response> 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- WindowsConfiguration Pulumi.Azure Native. Compute. Inputs. Windows Configuration Response 
- Specifies Windows operating system settings on the virtual machine.
- AdminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- AdminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- AllowExtension boolOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- ComputerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- CustomData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- LinuxConfiguration LinuxConfiguration Response 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- RequireGuest boolProvision Signal 
- Optional property which must either be set to True or omitted.
- Secrets
[]VaultSecret Group Response 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- WindowsConfiguration WindowsConfiguration Response 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword String
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername String
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension BooleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName String
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData String
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration LinuxConfiguration Response 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest BooleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets
List<VaultSecret Group Response> 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration WindowsConfiguration Response 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword string
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername string
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension booleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName string
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData string
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration LinuxConfiguration Response 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest booleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets
VaultSecret Group Response[] 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration WindowsConfiguration Response 
- Specifies Windows operating system settings on the virtual machine.
- admin_password str
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin_username str
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow_extension_ booloperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer_name str
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom_data str
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linux_configuration LinuxConfiguration Response 
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_guest_ boolprovision_ signal 
- Optional property which must either be set to True or omitted.
- secrets
Sequence[VaultSecret Group Response] 
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_configuration WindowsConfiguration Response 
- Specifies Windows operating system settings on the virtual machine.
- adminPassword String
- Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- adminUsername String
- Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allowExtension BooleanOperations 
- Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computerName String
- Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters. Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- customData String
- Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property. This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs. For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation.
- linuxConfiguration Property Map
- Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- requireGuest BooleanProvision Signal 
- Optional property which must either be set to True or omitted.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windowsConfiguration Property Map
- Specifies Windows operating system settings on the virtual machine.
OperatingSystemTypes, OperatingSystemTypesArgs      
- Windows
- Windows
- Linux
- Linux
- OperatingSystem Types Windows 
- Windows
- OperatingSystem Types Linux 
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- WINDOWS
- Windows
- LINUX
- Linux
- "Windows"
- Windows
- "Linux"
- Linux
PassNames, PassNamesArgs    
- OobeSystem 
- OobeSystem
- PassNames Oobe System 
- OobeSystem
- OobeSystem 
- OobeSystem
- OobeSystem 
- OobeSystem
- OOBE_SYSTEM
- OobeSystem
- "OobeSystem" 
- OobeSystem
PatchSettings, PatchSettingsArgs    
- AssessmentMode string | Pulumi.Azure Native. Compute. Windows Patch Assessment Mode 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy Pulumi.Platform Settings Azure Native. Compute. Inputs. Windows VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- EnableHotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- PatchMode string | Pulumi.Azure Native. Compute. Windows VMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- AssessmentMode string | WindowsPatch Assessment Mode 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- EnableHotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- PatchMode string | WindowsVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode String | WindowsPatch Assessment Mode 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching Boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode String | WindowsVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode string | WindowsPatch Assessment Mode 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode string | WindowsVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment_mode str | WindowsPatch Assessment Mode 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automatic_by_ Windowsplatform_ settings VMGuest Patch Automatic By Platform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable_hotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch_mode str | WindowsVMGuest Patch Mode 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode String | "ImageDefault" | "Automatic By Platform" 
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy Property MapPlatform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching Boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode String | "Manual" | "AutomaticBy OS" | "Automatic By Platform" 
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
PatchSettingsResponse, PatchSettingsResponseArgs      
- AssessmentMode string
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy Pulumi.Platform Settings Azure Native. Compute. Inputs. Windows VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- EnableHotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- PatchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- AssessmentMode string
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- AutomaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- EnableHotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- PatchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode String
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching Boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode String
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode string
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy WindowsPlatform Settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode string
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment_mode str
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automatic_by_ Windowsplatform_ settings VMGuest Patch Automatic By Platform Settings Response 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enable_hotpatching bool
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch_mode str
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessmentMode String
- Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- automaticBy Property MapPlatform Settings 
- Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.
- enableHotpatching Boolean
- Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patchMode String
- Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
Plan, PlanArgs  
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- PromotionCode string
- The promotion code.
- Publisher string
- The publisher ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- PromotionCode string
- The promotion code.
- Publisher string
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode String
- The promotion code.
- publisher String
- The publisher ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode string
- The promotion code.
- publisher string
- The publisher ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_code str
- The promotion code.
- publisher str
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode String
- The promotion code.
- publisher String
- The publisher ID.
PlanResponse, PlanResponseArgs    
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- PromotionCode string
- The promotion code.
- Publisher string
- The publisher ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- PromotionCode string
- The promotion code.
- Publisher string
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode String
- The promotion code.
- publisher String
- The publisher ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode string
- The promotion code.
- publisher string
- The publisher ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_code str
- The promotion code.
- publisher str
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotionCode String
- The promotion code.
- publisher String
- The publisher ID.
ProtocolTypes, ProtocolTypesArgs    
- Http
- Http
- Https
- Https
- ProtocolTypes Http 
- Http
- ProtocolTypes Https 
- Https
- Http
- Http
- Https
- Https
- Http
- Http
- Https
- Https
- HTTP
- Http
- HTTPS
- Https
- "Http"
- Http
- "Https"
- Https
PublicIPAddressSku, PublicIPAddressSkuArgs      
- Name
string | Pulumi.Azure Native. Compute. Public IPAddress Sku Name 
- Specify public IP sku name
- Tier
string | Pulumi.Azure Native. Compute. Public IPAddress Sku Tier 
- Specify public IP sku tier
- Name
string | PublicIPAddress Sku Name 
- Specify public IP sku name
- Tier
string | PublicIPAddress Sku Tier 
- Specify public IP sku tier
- name
String | PublicIPAddress Sku Name 
- Specify public IP sku name
- tier
String | PublicIPAddress Sku Tier 
- Specify public IP sku tier
- name
string | PublicIPAddress Sku Name 
- Specify public IP sku name
- tier
string | PublicIPAddress Sku Tier 
- Specify public IP sku tier
- name
str | PublicIPAddress Sku Name 
- Specify public IP sku name
- tier
str | PublicIPAddress Sku Tier 
- Specify public IP sku tier
- name String | "Basic" | "Standard"
- Specify public IP sku name
- tier String | "Regional" | "Global"
- Specify public IP sku tier
PublicIPAddressSkuName, PublicIPAddressSkuNameArgs        
- Basic
- Basic
- Standard
- Standard
- PublicIPAddress Sku Name Basic 
- Basic
- PublicIPAddress Sku Name Standard 
- Standard
- Basic
- Basic
- Standard
- Standard
- Basic
- Basic
- Standard
- Standard
- BASIC
- Basic
- STANDARD
- Standard
- "Basic"
- Basic
- "Standard"
- Standard
PublicIPAddressSkuResponse, PublicIPAddressSkuResponseArgs        
PublicIPAddressSkuTier, PublicIPAddressSkuTierArgs        
- Regional
- Regional
- Global
- Global
- PublicIPAddress Sku Tier Regional 
- Regional
- PublicIPAddress Sku Tier Global 
- Global
- Regional
- Regional
- Global
- Global
- Regional
- Regional
- Global
- Global
- REGIONAL
- Regional
- GLOBAL_
- Global
- "Regional"
- Regional
- "Global"
- Global
PublicIPAllocationMethod, PublicIPAllocationMethodArgs      
- Dynamic
- Dynamic
- Static
- Static
- PublicIPAllocation Method Dynamic 
- Dynamic
- PublicIPAllocation Method Static 
- Static
- Dynamic
- Dynamic
- Static
- Static
- Dynamic
- Dynamic
- Static
- Static
- DYNAMIC
- Dynamic
- STATIC
- Static
- "Dynamic"
- Dynamic
- "Static"
- Static
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- ResourceIdentity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ResourceIdentity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
ScheduledEventsProfile, ScheduledEventsProfileArgs      
- OsImage Pulumi.Notification Profile Azure Native. Compute. Inputs. OSImage Notification Profile 
- Specifies OS Image Scheduled Event related configurations.
- TerminateNotification Pulumi.Profile Azure Native. Compute. Inputs. Terminate Notification Profile 
- Specifies Terminate Scheduled Event related configurations.
- OsImage OSImageNotification Profile Notification Profile 
- Specifies OS Image Scheduled Event related configurations.
- TerminateNotification TerminateProfile Notification Profile 
- Specifies Terminate Scheduled Event related configurations.
- osImage OSImageNotification Profile Notification Profile 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification TerminateProfile Notification Profile 
- Specifies Terminate Scheduled Event related configurations.
- osImage OSImageNotification Profile Notification Profile 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification TerminateProfile Notification Profile 
- Specifies Terminate Scheduled Event related configurations.
- os_image_ OSImagenotification_ profile Notification Profile 
- Specifies OS Image Scheduled Event related configurations.
- terminate_notification_ Terminateprofile Notification Profile 
- Specifies Terminate Scheduled Event related configurations.
- osImage Property MapNotification Profile 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification Property MapProfile 
- Specifies Terminate Scheduled Event related configurations.
ScheduledEventsProfileResponse, ScheduledEventsProfileResponseArgs        
- OsImage Pulumi.Notification Profile Azure Native. Compute. Inputs. OSImage Notification Profile Response 
- Specifies OS Image Scheduled Event related configurations.
- TerminateNotification Pulumi.Profile Azure Native. Compute. Inputs. Terminate Notification Profile Response 
- Specifies Terminate Scheduled Event related configurations.
- OsImage OSImageNotification Profile Notification Profile Response 
- Specifies OS Image Scheduled Event related configurations.
- TerminateNotification TerminateProfile Notification Profile Response 
- Specifies Terminate Scheduled Event related configurations.
- osImage OSImageNotification Profile Notification Profile Response 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification TerminateProfile Notification Profile Response 
- Specifies Terminate Scheduled Event related configurations.
- osImage OSImageNotification Profile Notification Profile Response 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification TerminateProfile Notification Profile Response 
- Specifies Terminate Scheduled Event related configurations.
- os_image_ OSImagenotification_ profile Notification Profile Response 
- Specifies OS Image Scheduled Event related configurations.
- terminate_notification_ Terminateprofile Notification Profile Response 
- Specifies Terminate Scheduled Event related configurations.
- osImage Property MapNotification Profile 
- Specifies OS Image Scheduled Event related configurations.
- terminateNotification Property MapProfile 
- Specifies Terminate Scheduled Event related configurations.
SecurityEncryptionTypes, SecurityEncryptionTypesArgs      
- VMGuestState Only 
- VMGuestStateOnly
- DiskWith VMGuest State 
- DiskWithVMGuestState
- SecurityEncryption Types VMGuest State Only 
- VMGuestStateOnly
- SecurityEncryption Types Disk With VMGuest State 
- DiskWithVMGuestState
- VMGuestState Only 
- VMGuestStateOnly
- DiskWith VMGuest State 
- DiskWithVMGuestState
- VMGuestState Only 
- VMGuestStateOnly
- DiskWith VMGuest State 
- DiskWithVMGuestState
- VM_GUEST_STATE_ONLY
- VMGuestStateOnly
- DISK_WITH_VM_GUEST_STATE
- DiskWithVMGuestState
- "VMGuestState Only" 
- VMGuestStateOnly
- "DiskWith VMGuest State" 
- DiskWithVMGuestState
SecurityProfile, SecurityProfileArgs    
- EncryptionAt boolHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- SecurityType string | Pulumi.Azure Native. Compute. Security Types 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- UefiSettings Pulumi.Azure Native. Compute. Inputs. Uefi Settings 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- EncryptionAt boolHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- SecurityType string | SecurityTypes 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- UefiSettings UefiSettings 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt BooleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType String | SecurityTypes 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings UefiSettings 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt booleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType string | SecurityTypes 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings UefiSettings 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption_at_ boolhost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- security_type str | SecurityTypes 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi_settings UefiSettings 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt BooleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType String | "TrustedLaunch" | "Confidential VM" 
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings Property Map
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
SecurityProfileResponse, SecurityProfileResponseArgs      
- EncryptionAt boolHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- SecurityType string
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- UefiSettings Pulumi.Azure Native. Compute. Inputs. Uefi Settings Response 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- EncryptionAt boolHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- SecurityType string
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- UefiSettings UefiSettings Response 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt BooleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType String
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings UefiSettings Response 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt booleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType string
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings UefiSettings Response 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryption_at_ boolhost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- security_type str
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefi_settings UefiSettings Response 
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
- encryptionAt BooleanHost 
- This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.
- securityType String
- Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.
- uefiSettings Property Map
- Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.
SecurityTypes, SecurityTypesArgs    
- TrustedLaunch 
- TrustedLaunch
- ConfidentialVM 
- ConfidentialVM
- SecurityTypes Trusted Launch 
- TrustedLaunch
- SecurityTypes Confidential VM 
- ConfidentialVM
- TrustedLaunch 
- TrustedLaunch
- ConfidentialVM 
- ConfidentialVM
- TrustedLaunch 
- TrustedLaunch
- ConfidentialVM 
- ConfidentialVM
- TRUSTED_LAUNCH
- TrustedLaunch
- CONFIDENTIAL_VM
- ConfidentialVM
- "TrustedLaunch" 
- TrustedLaunch
- "ConfidentialVM" 
- ConfidentialVM
SettingNames, SettingNamesArgs    
- AutoLogon 
- AutoLogon
- FirstLogon Commands 
- FirstLogonCommands
- SettingNames Auto Logon 
- AutoLogon
- SettingNames First Logon Commands 
- FirstLogonCommands
- AutoLogon 
- AutoLogon
- FirstLogon Commands 
- FirstLogonCommands
- AutoLogon 
- AutoLogon
- FirstLogon Commands 
- FirstLogonCommands
- AUTO_LOGON
- AutoLogon
- FIRST_LOGON_COMMANDS
- FirstLogonCommands
- "AutoLogon" 
- AutoLogon
- "FirstLogon Commands" 
- FirstLogonCommands
SshConfiguration, SshConfigurationArgs    
- PublicKeys List<Pulumi.Azure Native. Compute. Inputs. Ssh Public Key> 
- The list of SSH public keys used to authenticate with linux based VMs.
- PublicKeys []SshPublic Key Type 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys List<SshPublic Key> 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys SshPublic Key[] 
- The list of SSH public keys used to authenticate with linux based VMs.
- public_keys Sequence[SshPublic Key] 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys List<Property Map>
- The list of SSH public keys used to authenticate with linux based VMs.
SshConfigurationResponse, SshConfigurationResponseArgs      
- PublicKeys List<Pulumi.Azure Native. Compute. Inputs. Ssh Public Key Response> 
- The list of SSH public keys used to authenticate with linux based VMs.
- PublicKeys []SshPublic Key Response 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys List<SshPublic Key Response> 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys SshPublic Key Response[] 
- The list of SSH public keys used to authenticate with linux based VMs.
- public_keys Sequence[SshPublic Key Response] 
- The list of SSH public keys used to authenticate with linux based VMs.
- publicKeys List<Property Map>
- The list of SSH public keys used to authenticate with linux based VMs.
SshPublicKey, SshPublicKeyArgs      
- KeyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- KeyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData String
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key_data str
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path str
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData String
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
SshPublicKeyResponse, SshPublicKeyResponseArgs        
- KeyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- KeyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- Path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData String
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData string
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path string
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- key_data str
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path str
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
- keyData String
- SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).
- path String
- Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys
StorageAccountTypes, StorageAccountTypesArgs      
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- StandardSSD_LRS 
- StandardSSD_LRS
- UltraSSD_LRS 
- UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- StandardSSD_ZRS 
- StandardSSD_ZRS
- PremiumV2_LRS 
- PremiumV2_LRS
- StorageAccount Types_Standard_LRS 
- Standard_LRS
- StorageAccount Types_Premium_LRS 
- Premium_LRS
- StorageAccount Types_Standard SSD_LRS 
- StandardSSD_LRS
- StorageAccount Types_Ultra SSD_LRS 
- UltraSSD_LRS
- StorageAccount Types_Premium_ZRS 
- Premium_ZRS
- StorageAccount Types_Standard SSD_ZRS 
- StandardSSD_ZRS
- StorageAccount Types_Premium V2_LRS 
- PremiumV2_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- StandardSSD_LRS 
- StandardSSD_LRS
- UltraSSD_LRS 
- UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- StandardSSD_ZRS 
- StandardSSD_ZRS
- PremiumV2_LRS 
- PremiumV2_LRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- StandardSSD_LRS 
- StandardSSD_LRS
- UltraSSD_LRS 
- UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- StandardSSD_ZRS 
- StandardSSD_ZRS
- PremiumV2_LRS 
- PremiumV2_LRS
- STANDARD_LRS
- Standard_LRS
- PREMIUM_LRS
- Premium_LRS
- STANDARD_SS_D_LRS
- StandardSSD_LRS
- ULTRA_SS_D_LRS
- UltraSSD_LRS
- PREMIUM_ZRS
- Premium_ZRS
- STANDARD_SS_D_ZRS
- StandardSSD_ZRS
- PREMIUM_V2_LRS
- PremiumV2_LRS
- "Standard_LRS"
- Standard_LRS
- "Premium_LRS"
- Premium_LRS
- "StandardSSD_LRS" 
- StandardSSD_LRS
- "UltraSSD_LRS" 
- UltraSSD_LRS
- "Premium_ZRS"
- Premium_ZRS
- "StandardSSD_ZRS" 
- StandardSSD_ZRS
- "PremiumV2_LRS" 
- PremiumV2_LRS
StorageProfile, StorageProfileArgs    
- DataDisks List<Pulumi.Azure Native. Compute. Inputs. Data Disk> 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DiskController string | Pulumi.Type Azure Native. Compute. Disk Controller Types 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- ImageReference Pulumi.Azure Native. Compute. Inputs. Image Reference 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- OsDisk Pulumi.Azure Native. Compute. Inputs. OSDisk 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DataDisks []DataDisk 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DiskController string | DiskType Controller Types 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- ImageReference ImageReference 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- OsDisk OSDisk
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks List<DataDisk> 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController String | DiskType Controller Types 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference ImageReference 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk OSDisk
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks DataDisk[] 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController string | DiskType Controller Types 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference ImageReference 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk OSDisk
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_disks Sequence[DataDisk] 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk_controller_ str | Disktype Controller Types 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- image_reference ImageReference 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_disk OSDisk
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks List<Property Map>
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController String | "SCSI" | "NVMe"Type 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference Property Map
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk Property Map
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
StorageProfileResponse, StorageProfileResponseArgs      
- DataDisks List<Pulumi.Azure Native. Compute. Inputs. Data Disk Response> 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DiskController stringType 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- ImageReference Pulumi.Azure Native. Compute. Inputs. Image Reference Response 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- OsDisk Pulumi.Azure Native. Compute. Inputs. OSDisk Response 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DataDisks []DataDisk Response 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- DiskController stringType 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- ImageReference ImageReference Response 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- OsDisk OSDiskResponse 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks List<DataDisk Response> 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController StringType 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference ImageReference Response 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk OSDiskResponse 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks DataDisk Response[] 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController stringType 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference ImageReference Response 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk OSDiskResponse 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_disks Sequence[DataDisk Response] 
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- disk_controller_ strtype 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- image_reference ImageReference Response 
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_disk OSDiskResponse 
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- dataDisks List<Property Map>
- Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- diskController StringType 
- Specifies the disk controller type configured for the VM. Note: This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.
- imageReference Property Map
- Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- osDisk Property Map
- Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
SubResource, SubResourceArgs    
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs      
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
TerminateNotificationProfile, TerminateNotificationProfileArgs      
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_before_ strtimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
TerminateNotificationProfileResponse, TerminateNotificationProfileResponseArgs        
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- NotBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore stringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_before_ strtimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- notBefore StringTimeout 
- Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
UefiSettings, UefiSettingsArgs    
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpmEnabled bool
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpmEnabled bool
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm BooleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot booleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm booleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure_boot_ boolenabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v_tpm_ boolenabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm BooleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
UefiSettingsResponse, UefiSettingsResponseArgs      
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpmEnabled bool
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- VTpmEnabled bool
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm BooleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot booleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm booleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secure_boot_ boolenabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- v_tpm_ boolenabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
- vTpm BooleanEnabled 
- Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.
UserAssignedIdentitiesResponseUserAssignedIdentities, UserAssignedIdentitiesResponseUserAssignedIdentitiesArgs              
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
- clientId string
- The client id of user assigned identity.
- principalId string
- The principal id of user assigned identity.
- client_id str
- The client id of user assigned identity.
- principal_id str
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
VMDiskSecurityProfile, VMDiskSecurityProfileArgs      
- DiskEncryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- SecurityEncryption string | Pulumi.Type Azure Native. Compute. Security Encryption Types 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- DiskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- SecurityEncryption string | SecurityType Encryption Types 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption String | SecurityType Encryption Types 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption DiskSet Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption string | SecurityType Encryption Types 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- disk_encryption_ Diskset Encryption Set Parameters 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security_encryption_ str | Securitytype Encryption Types 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption Property MapSet 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption String | "VMGuestType State Only" | "Disk With VMGuest State" 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
VMDiskSecurityProfileResponse, VMDiskSecurityProfileResponseArgs        
- DiskEncryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- SecurityEncryption stringType 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- DiskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- SecurityEncryption stringType 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption StringType 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption DiskSet Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption stringType 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- disk_encryption_ Diskset Encryption Set Parameters Response 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- security_encryption_ strtype 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
- diskEncryption Property MapSet 
- Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.
- securityEncryption StringType 
- Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, and VMGuestStateOnly for encryption of just the VMGuestState blob. Note: It can be set for only Confidential VMs.
VMGalleryApplication, VMGalleryApplicationArgs    
- PackageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- ConfigurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- EnableAutomatic boolUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- TreatFailure boolAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- PackageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- ConfigurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- EnableAutomatic boolUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- TreatFailure boolAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference StringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference String
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic BooleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Integer
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treatFailure BooleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic booleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order number
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- treatFailure booleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package_reference_ strid 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration_reference str
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable_automatic_ boolupgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order int
- Optional, Specifies the order in which the packages have to be installed
- str
- Optional, Specifies a passthrough value for more generic context.
- treat_failure_ boolas_ deployment_ failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference StringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference String
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic BooleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Number
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treatFailure BooleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
VMGalleryApplicationResponse, VMGalleryApplicationResponseArgs      
- PackageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- ConfigurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- EnableAutomatic boolUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- TreatFailure boolAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- PackageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- ConfigurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- EnableAutomatic boolUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- Order int
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- TreatFailure boolAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference StringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference String
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic BooleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Integer
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treatFailure BooleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference stringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference string
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic booleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order number
- Optional, Specifies the order in which the packages have to be installed
- string
- Optional, Specifies a passthrough value for more generic context.
- treatFailure booleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- package_reference_ strid 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configuration_reference str
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enable_automatic_ boolupgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order int
- Optional, Specifies the order in which the packages have to be installed
- str
- Optional, Specifies a passthrough value for more generic context.
- treat_failure_ boolas_ deployment_ failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
- packageReference StringId 
- Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}
- configurationReference String
- Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided
- enableAutomatic BooleanUpgrade 
- If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS
- order Number
- Optional, Specifies the order in which the packages have to be installed
- String
- Optional, Specifies a passthrough value for more generic context.
- treatFailure BooleanAs Deployment Failure 
- Optional, If true, any failure for any operation in the VmApplication will fail the deployment
VMSizeProperties, VMSizePropertiesArgs    
- VCPUsAvailable int
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUsPer intCore 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- VCPUsAvailable int
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUsPer intCore 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs IntegerAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs IntegerPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs numberAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs numberPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v_cpus_ intavailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v_cpus_ intper_ core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs NumberAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs NumberPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
VMSizePropertiesResponse, VMSizePropertiesResponseArgs      
- VCPUsAvailable int
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUsPer intCore 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- VCPUsAvailable int
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- VCPUsPer intCore 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs IntegerAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs IntegerPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs numberAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs numberPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- v_cpus_ intavailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- v_cpus_ intper_ core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
- vCPUs NumberAvailable 
- Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of List all available virtual machine sizes in a region.
- vCPUs NumberPer Core 
- Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of List all available virtual machine sizes in a region. Setting this property to 1 also means that hyper-threading is disabled.
VaultCertificate, VaultCertificateArgs    
- CertificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- CertificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore String
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_store str
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_url str
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore String
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultCertificateResponse, VaultCertificateResponseArgs      
- CertificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- CertificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore String
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore string
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_store str
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_url str
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificateStore String
- For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultSecretGroup, VaultSecretGroupArgs      
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- VaultCertificates List<Pulumi.Azure Native. Compute. Inputs. Vault Certificate> 
- The list of key vault references in SourceVault which contain certificates.
- SourceVault SubResource 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- VaultCertificates []VaultCertificate 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault SubResource 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates List<VaultCertificate> 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault SubResource 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates VaultCertificate[] 
- The list of key vault references in SourceVault which contain certificates.
- source_vault SubResource 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_certificates Sequence[VaultCertificate] 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault Property Map
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates List<Property Map>
- The list of key vault references in SourceVault which contain certificates.
VaultSecretGroupResponse, VaultSecretGroupResponseArgs        
- SourceVault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- VaultCertificates List<Pulumi.Azure Native. Compute. Inputs. Vault Certificate Response> 
- The list of key vault references in SourceVault which contain certificates.
- SourceVault SubResource Response 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- VaultCertificates []VaultCertificate Response 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates List<VaultCertificate Response> 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault SubResource Response 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates VaultCertificate Response[] 
- The list of key vault references in SourceVault which contain certificates.
- source_vault SubResource Response 
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_certificates Sequence[VaultCertificate Response] 
- The list of key vault references in SourceVault which contain certificates.
- sourceVault Property Map
- The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vaultCertificates List<Property Map>
- The list of key vault references in SourceVault which contain certificates.
VirtualHardDisk, VirtualHardDiskArgs      
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualHardDiskResponse, VirtualHardDiskResponseArgs        
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualMachineAgentInstanceViewResponse, VirtualMachineAgentInstanceViewResponseArgs            
- ExtensionHandlers List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Handler Instance View Response> 
- The virtual machine extension handler instance view.
- Statuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- VmAgent stringVersion 
- The VM Agent full version.
- ExtensionHandlers []VirtualMachine Extension Handler Instance View Response 
- The virtual machine extension handler instance view.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- VmAgent stringVersion 
- The VM Agent full version.
- extensionHandlers List<VirtualMachine Extension Handler Instance View Response> 
- The virtual machine extension handler instance view.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- vmAgent StringVersion 
- The VM Agent full version.
- extensionHandlers VirtualMachine Extension Handler Instance View Response[] 
- The virtual machine extension handler instance view.
- statuses
InstanceView Status Response[] 
- The resource status information.
- vmAgent stringVersion 
- The VM Agent full version.
- extension_handlers Sequence[VirtualMachine Extension Handler Instance View Response] 
- The virtual machine extension handler instance view.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- vm_agent_ strversion 
- The VM Agent full version.
- extensionHandlers List<Property Map>
- The virtual machine extension handler instance view.
- statuses List<Property Map>
- The resource status information.
- vmAgent StringVersion 
- The VM Agent full version.
VirtualMachineEvictionPolicyTypes, VirtualMachineEvictionPolicyTypesArgs          
- Deallocate
- Deallocate
- Delete
- Delete
- VirtualMachine Eviction Policy Types Deallocate 
- Deallocate
- VirtualMachine Eviction Policy Types Delete 
- Delete
- Deallocate
- Deallocate
- Delete
- Delete
- Deallocate
- Deallocate
- Delete
- Delete
- DEALLOCATE
- Deallocate
- DELETE
- Delete
- "Deallocate"
- Deallocate
- "Delete"
- Delete
VirtualMachineExtensionHandlerInstanceViewResponse, VirtualMachineExtensionHandlerInstanceViewResponseArgs              
- Status
Pulumi.Azure Native. Compute. Inputs. Instance View Status Response 
- The extension handler status.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- Status
InstanceView Status Response 
- The extension handler status.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- status
InstanceView Status Response 
- The extension handler status.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler StringVersion 
- Specifies the version of the script handler.
- status
InstanceView Status Response 
- The extension handler status.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler stringVersion 
- Specifies the version of the script handler.
- status
InstanceView Status Response 
- The extension handler status.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_handler_ strversion 
- Specifies the version of the script handler.
- status Property Map
- The extension handler status.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler StringVersion 
- Specifies the version of the script handler.
VirtualMachineExtensionInstanceViewResponse, VirtualMachineExtensionInstanceViewResponseArgs            
- Name string
- The virtual machine extension name.
- Statuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- Substatuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- Name string
- The virtual machine extension name.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- Substatuses
[]InstanceView Status Response 
- The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- substatuses
List<InstanceView Status Response> 
- The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler StringVersion 
- Specifies the version of the script handler.
- name string
- The virtual machine extension name.
- statuses
InstanceView Status Response[] 
- The resource status information.
- substatuses
InstanceView Status Response[] 
- The resource status information.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler stringVersion 
- Specifies the version of the script handler.
- name str
- The virtual machine extension name.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- substatuses
Sequence[InstanceView Status Response] 
- The resource status information.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_handler_ strversion 
- Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses List<Property Map>
- The resource status information.
- substatuses List<Property Map>
- The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandler StringVersion 
- Specifies the version of the script handler.
VirtualMachineExtensionResponse, VirtualMachineExtensionResponseArgs        
- Id string
- Resource Id
- Name string
- Resource name
- ProvisioningState string
- The provisioning state, which only appears in the response.
- Type string
- Resource type
- AutoUpgrade boolMinor Version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- EnableAutomatic boolUpgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- ForceUpdate stringTag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- InstanceView Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Instance View Response 
- The virtual machine extension instance view.
- Location string
- Resource location
- ProtectedSettings object
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- ProtectedSettings Pulumi.From Key Vault Azure Native. Compute. Inputs. Key Vault Secret Reference Response 
- The extensions protected settings that are passed by reference, and consumed from key vault
- ProvisionAfter List<string>Extensions 
- Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings object
- Json formatted public settings for the extension.
- SuppressFailures bool
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Dictionary<string, string>
- Resource tags
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- Id string
- Resource Id
- Name string
- Resource name
- ProvisioningState string
- The provisioning state, which only appears in the response.
- Type string
- Resource type
- AutoUpgrade boolMinor Version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- EnableAutomatic boolUpgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- ForceUpdate stringTag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- InstanceView VirtualMachine Extension Instance View Response 
- The virtual machine extension instance view.
- Location string
- Resource location
- ProtectedSettings interface{}
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- ProtectedSettings KeyFrom Key Vault Vault Secret Reference Response 
- The extensions protected settings that are passed by reference, and consumed from key vault
- ProvisionAfter []stringExtensions 
- Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings interface{}
- Json formatted public settings for the extension.
- SuppressFailures bool
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- map[string]string
- Resource tags
- TypeHandler stringVersion 
- Specifies the version of the script handler.
- id String
- Resource Id
- name String
- Resource name
- provisioningState String
- The provisioning state, which only appears in the response.
- type String
- Resource type
- autoUpgrade BooleanMinor Version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enableAutomatic BooleanUpgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- forceUpdate StringTag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- instanceView VirtualMachine Extension Instance View Response 
- The virtual machine extension instance view.
- location String
- Resource location
- protectedSettings Object
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protectedSettings KeyFrom Key Vault Vault Secret Reference Response 
- The extensions protected settings that are passed by reference, and consumed from key vault
- provisionAfter List<String>Extensions 
- Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Object
- Json formatted public settings for the extension.
- suppressFailures Boolean
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Map<String,String>
- Resource tags
- typeHandler StringVersion 
- Specifies the version of the script handler.
- id string
- Resource Id
- name string
- Resource name
- provisioningState string
- The provisioning state, which only appears in the response.
- type string
- Resource type
- autoUpgrade booleanMinor Version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enableAutomatic booleanUpgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- forceUpdate stringTag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- instanceView VirtualMachine Extension Instance View Response 
- The virtual machine extension instance view.
- location string
- Resource location
- protectedSettings any
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protectedSettings KeyFrom Key Vault Vault Secret Reference Response 
- The extensions protected settings that are passed by reference, and consumed from key vault
- provisionAfter string[]Extensions 
- Collection of extension names after which this extension needs to be provisioned.
- publisher string
- The name of the extension handler publisher.
- settings any
- Json formatted public settings for the extension.
- suppressFailures boolean
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- {[key: string]: string}
- Resource tags
- typeHandler stringVersion 
- Specifies the version of the script handler.
- id str
- Resource Id
- name str
- Resource name
- provisioning_state str
- The provisioning state, which only appears in the response.
- type str
- Resource type
- auto_upgrade_ boolminor_ version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable_automatic_ boolupgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force_update_ strtag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- instance_view VirtualMachine Extension Instance View Response 
- The virtual machine extension instance view.
- location str
- Resource location
- protected_settings Any
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected_settings_ Keyfrom_ key_ vault Vault Secret Reference Response 
- The extensions protected settings that are passed by reference, and consumed from key vault
- provision_after_ Sequence[str]extensions 
- Collection of extension names after which this extension needs to be provisioned.
- publisher str
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress_failures bool
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Mapping[str, str]
- Resource tags
- type_handler_ strversion 
- Specifies the version of the script handler.
- id String
- Resource Id
- name String
- Resource name
- provisioningState String
- The provisioning state, which only appears in the response.
- type String
- Resource type
- autoUpgrade BooleanMinor Version 
- Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enableAutomatic BooleanUpgrade 
- Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- forceUpdate StringTag 
- How the extension handler should be forced to update even if the extension configuration has not changed.
- instanceView Property Map
- The virtual machine extension instance view.
- location String
- Resource location
- protectedSettings Any
- The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protectedSettings Property MapFrom Key Vault 
- The extensions protected settings that are passed by reference, and consumed from key vault
- provisionAfter List<String>Extensions 
- Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppressFailures Boolean
- Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Map<String>
- Resource tags
- typeHandler StringVersion 
- Specifies the version of the script handler.
VirtualMachineHealthStatusResponse, VirtualMachineHealthStatusResponseArgs          
- Status
Pulumi.Azure Native. Compute. Inputs. Instance View Status Response 
- The health status information for the VM.
- Status
InstanceView Status Response 
- The health status information for the VM.
- status
InstanceView Status Response 
- The health status information for the VM.
- status
InstanceView Status Response 
- The health status information for the VM.
- status
InstanceView Status Response 
- The health status information for the VM.
- status Property Map
- The health status information for the VM.
VirtualMachineIdentity, VirtualMachineIdentityArgs      
- Type
Pulumi.Azure Native. Compute. Resource Identity Type 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- UserAssigned List<string>Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
ResourceIdentity Type 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- UserAssigned []stringIdentities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned List<String>Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned string[]Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user_assigned_ Sequence[str]identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned List<String>Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
VirtualMachineIdentityResponse, VirtualMachineIdentityResponseArgs        
- PrincipalId string
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- TenantId string
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Compute. Inputs. User Assigned Identities Response User Assigned Identities> 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- PrincipalId string
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- TenantId string
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- UserAssigned map[string]UserIdentities Assigned Identities Response User Assigned Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenantId String
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned Map<String,UserIdentities Assigned Identities Response User Assigned Identities> 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId string
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenantId string
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned {[key: string]: UserIdentities Assigned Identities Response User Assigned Identities} 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_id str
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenant_id str
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type str
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user_assigned_ Mapping[str, Useridentities Assigned Identities Response User Assigned Identities] 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenantId String
- The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- userAssigned Map<Property Map>Identities 
- The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
VirtualMachineInstanceViewResponse, VirtualMachineInstanceViewResponseArgs          
- AssignedHost string
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- VmHealth Pulumi.Azure Native. Compute. Inputs. Virtual Machine Health Status Response 
- The health status for the VM.
- BootDiagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics Instance View Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- ComputerName string
- The computer name assigned to the virtual machine.
- Disks
List<Pulumi.Azure Native. Compute. Inputs. Disk Instance View Response> 
- The virtual machine disk information.
- Extensions
List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Instance View Response> 
- The extensions information.
- HyperVGeneration string
- Specifies the HyperVGeneration Type associated with a resource
- MaintenanceRedeploy Pulumi.Status Azure Native. Compute. Inputs. Maintenance Redeploy Status Response 
- The Maintenance Operation status on the virtual machine.
- OsName string
- The Operating System running on the virtual machine.
- OsVersion string
- The version of Operating System running on the virtual machine.
- PatchStatus Pulumi.Azure Native. Compute. Inputs. Virtual Machine Patch Status Response 
- [Preview Feature] The status of virtual machine patch operations.
- PlatformFault intDomain 
- Specifies the fault domain of the virtual machine.
- PlatformUpdate intDomain 
- Specifies the update domain of the virtual machine.
- RdpThumb stringPrint 
- The Remote desktop certificate thumbprint.
- Statuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- VmAgent Pulumi.Azure Native. Compute. Inputs. Virtual Machine Agent Instance View Response 
- The VM Agent running on the virtual machine.
- AssignedHost string
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- VmHealth VirtualMachine Health Status Response 
- The health status for the VM.
- BootDiagnostics BootDiagnostics Instance View Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- ComputerName string
- The computer name assigned to the virtual machine.
- Disks
[]DiskInstance View Response 
- The virtual machine disk information.
- Extensions
[]VirtualMachine Extension Instance View Response 
- The extensions information.
- HyperVGeneration string
- Specifies the HyperVGeneration Type associated with a resource
- MaintenanceRedeploy MaintenanceStatus Redeploy Status Response 
- The Maintenance Operation status on the virtual machine.
- OsName string
- The Operating System running on the virtual machine.
- OsVersion string
- The version of Operating System running on the virtual machine.
- PatchStatus VirtualMachine Patch Status Response 
- [Preview Feature] The status of virtual machine patch operations.
- PlatformFault intDomain 
- Specifies the fault domain of the virtual machine.
- PlatformUpdate intDomain 
- Specifies the update domain of the virtual machine.
- RdpThumb stringPrint 
- The Remote desktop certificate thumbprint.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- VmAgent VirtualMachine Agent Instance View Response 
- The VM Agent running on the virtual machine.
- assignedHost String
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vmHealth VirtualMachine Health Status Response 
- The health status for the VM.
- bootDiagnostics BootDiagnostics Instance View Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computerName String
- The computer name assigned to the virtual machine.
- disks
List<DiskInstance View Response> 
- The virtual machine disk information.
- extensions
List<VirtualMachine Extension Instance View Response> 
- The extensions information.
- hyperVGeneration String
- Specifies the HyperVGeneration Type associated with a resource
- maintenanceRedeploy MaintenanceStatus Redeploy Status Response 
- The Maintenance Operation status on the virtual machine.
- osName String
- The Operating System running on the virtual machine.
- osVersion String
- The version of Operating System running on the virtual machine.
- patchStatus VirtualMachine Patch Status Response 
- [Preview Feature] The status of virtual machine patch operations.
- platformFault IntegerDomain 
- Specifies the fault domain of the virtual machine.
- platformUpdate IntegerDomain 
- Specifies the update domain of the virtual machine.
- rdpThumb StringPrint 
- The Remote desktop certificate thumbprint.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- vmAgent VirtualMachine Agent Instance View Response 
- The VM Agent running on the virtual machine.
- assignedHost string
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vmHealth VirtualMachine Health Status Response 
- The health status for the VM.
- bootDiagnostics BootDiagnostics Instance View Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computerName string
- The computer name assigned to the virtual machine.
- disks
DiskInstance View Response[] 
- The virtual machine disk information.
- extensions
VirtualMachine Extension Instance View Response[] 
- The extensions information.
- hyperVGeneration string
- Specifies the HyperVGeneration Type associated with a resource
- maintenanceRedeploy MaintenanceStatus Redeploy Status Response 
- The Maintenance Operation status on the virtual machine.
- osName string
- The Operating System running on the virtual machine.
- osVersion string
- The version of Operating System running on the virtual machine.
- patchStatus VirtualMachine Patch Status Response 
- [Preview Feature] The status of virtual machine patch operations.
- platformFault numberDomain 
- Specifies the fault domain of the virtual machine.
- platformUpdate numberDomain 
- Specifies the update domain of the virtual machine.
- rdpThumb stringPrint 
- The Remote desktop certificate thumbprint.
- statuses
InstanceView Status Response[] 
- The resource status information.
- vmAgent VirtualMachine Agent Instance View Response 
- The VM Agent running on the virtual machine.
- assigned_host str
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vm_health VirtualMachine Health Status Response 
- The health status for the VM.
- boot_diagnostics BootDiagnostics Instance View Response 
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computer_name str
- The computer name assigned to the virtual machine.
- disks
Sequence[DiskInstance View Response] 
- The virtual machine disk information.
- extensions
Sequence[VirtualMachine Extension Instance View Response] 
- The extensions information.
- hyper_v_ strgeneration 
- Specifies the HyperVGeneration Type associated with a resource
- maintenance_redeploy_ Maintenancestatus Redeploy Status Response 
- The Maintenance Operation status on the virtual machine.
- os_name str
- The Operating System running on the virtual machine.
- os_version str
- The version of Operating System running on the virtual machine.
- patch_status VirtualMachine Patch Status Response 
- [Preview Feature] The status of virtual machine patch operations.
- platform_fault_ intdomain 
- Specifies the fault domain of the virtual machine.
- platform_update_ intdomain 
- Specifies the update domain of the virtual machine.
- rdp_thumb_ strprint 
- The Remote desktop certificate thumbprint.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- vm_agent VirtualMachine Agent Instance View Response 
- The VM Agent running on the virtual machine.
- assignedHost String
- Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vmHealth Property Map
- The health status for the VM.
- bootDiagnostics Property Map
- Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computerName String
- The computer name assigned to the virtual machine.
- disks List<Property Map>
- The virtual machine disk information.
- extensions List<Property Map>
- The extensions information.
- hyperVGeneration String
- Specifies the HyperVGeneration Type associated with a resource
- maintenanceRedeploy Property MapStatus 
- The Maintenance Operation status on the virtual machine.
- osName String
- The Operating System running on the virtual machine.
- osVersion String
- The version of Operating System running on the virtual machine.
- patchStatus Property Map
- [Preview Feature] The status of virtual machine patch operations.
- platformFault NumberDomain 
- Specifies the fault domain of the virtual machine.
- platformUpdate NumberDomain 
- Specifies the update domain of the virtual machine.
- rdpThumb StringPrint 
- The Remote desktop certificate thumbprint.
- statuses List<Property Map>
- The resource status information.
- vmAgent Property Map
- The VM Agent running on the virtual machine.
VirtualMachineIpTag, VirtualMachineIpTagArgs        
- ip_tag_ strtype 
- IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineIpTagResponse, VirtualMachineIpTagResponseArgs          
- ip_tag_ strtype 
- IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineNetworkInterfaceConfiguration, VirtualMachineNetworkInterfaceConfigurationArgs          
- IpConfigurations List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface IPConfiguration> 
- Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- DeleteOption string | Pulumi.Azure Native. Compute. Delete Options 
- Specify what happens to the network interface when the VM is deleted
- DisableTcp boolState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- DnsSettings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface Dns Settings Configuration 
- The dns settings to be applied on the network interfaces.
- DscpConfiguration Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- EnableAccelerated boolNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- EnableFpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- EnableIPForwarding bool
- Whether IP forwarding enabled on this NIC.
- NetworkSecurity Pulumi.Group Azure Native. Compute. Inputs. Sub Resource 
- The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- IpConfigurations []VirtualMachine Network Interface IPConfiguration 
- Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- DeleteOption string | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- DisableTcp boolState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- DnsSettings VirtualMachine Network Interface Dns Settings Configuration 
- The dns settings to be applied on the network interfaces.
- DscpConfiguration SubResource 
- EnableAccelerated boolNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- EnableFpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- EnableIPForwarding bool
- Whether IP forwarding enabled on this NIC.
- NetworkSecurity SubGroup Resource 
- The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations List<VirtualMachine Network Interface IPConfiguration> 
- Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- deleteOption String | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- disableTcp BooleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings VirtualMachine Network Interface Dns Settings Configuration 
- The dns settings to be applied on the network interfaces.
- dscpConfiguration SubResource 
- enableAccelerated BooleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga Boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding Boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity SubGroup Resource 
- The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations VirtualMachine Network Interface IPConfiguration[] 
- Specifies the IP configurations of the network interface.
- name string
- The network interface configuration name.
- deleteOption string | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- disableTcp booleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings VirtualMachine Network Interface Dns Settings Configuration 
- The dns settings to be applied on the network interfaces.
- dscpConfiguration SubResource 
- enableAccelerated booleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity SubGroup Resource 
- The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_configurations Sequence[VirtualMachine Network Interface IPConfiguration] 
- Specifies the IP configurations of the network interface.
- name str
- The network interface configuration name.
- delete_option str | DeleteOptions 
- Specify what happens to the network interface when the VM is deleted
- disable_tcp_ boolstate_ tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dns_settings VirtualMachine Network Interface Dns Settings Configuration 
- The dns settings to be applied on the network interfaces.
- dscp_configuration SubResource 
- enable_accelerated_ boolnetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enable_fpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- enable_ip_ boolforwarding 
- Whether IP forwarding enabled on this NIC.
- network_security_ Subgroup Resource 
- The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations List<Property Map>
- Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- deleteOption String | "Delete" | "Detach"
- Specify what happens to the network interface when the VM is deleted
- disableTcp BooleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings Property Map
- The dns settings to be applied on the network interfaces.
- dscpConfiguration Property Map
- enableAccelerated BooleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga Boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding Boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity Property MapGroup 
- The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineNetworkInterfaceConfigurationResponse, VirtualMachineNetworkInterfaceConfigurationResponseArgs            
- IpConfigurations List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface IPConfiguration Response> 
- Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- DeleteOption string
- Specify what happens to the network interface when the VM is deleted
- DisableTcp boolState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- DnsSettings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface Dns Settings Configuration Response 
- The dns settings to be applied on the network interfaces.
- DscpConfiguration Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- EnableAccelerated boolNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- EnableFpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- EnableIPForwarding bool
- Whether IP forwarding enabled on this NIC.
- NetworkSecurity Pulumi.Group Azure Native. Compute. Inputs. Sub Resource Response 
- The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- IpConfigurations []VirtualMachine Network Interface IPConfiguration Response 
- Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- DeleteOption string
- Specify what happens to the network interface when the VM is deleted
- DisableTcp boolState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- DnsSettings VirtualMachine Network Interface Dns Settings Configuration Response 
- The dns settings to be applied on the network interfaces.
- DscpConfiguration SubResource Response 
- EnableAccelerated boolNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- EnableFpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- EnableIPForwarding bool
- Whether IP forwarding enabled on this NIC.
- NetworkSecurity SubGroup Resource Response 
- The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations List<VirtualMachine Network Interface IPConfiguration Response> 
- Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- deleteOption String
- Specify what happens to the network interface when the VM is deleted
- disableTcp BooleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings VirtualMachine Network Interface Dns Settings Configuration Response 
- The dns settings to be applied on the network interfaces.
- dscpConfiguration SubResource Response 
- enableAccelerated BooleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga Boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding Boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity SubGroup Resource Response 
- The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations VirtualMachine Network Interface IPConfiguration Response[] 
- Specifies the IP configurations of the network interface.
- name string
- The network interface configuration name.
- deleteOption string
- Specify what happens to the network interface when the VM is deleted
- disableTcp booleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings VirtualMachine Network Interface Dns Settings Configuration Response 
- The dns settings to be applied on the network interfaces.
- dscpConfiguration SubResource Response 
- enableAccelerated booleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity SubGroup Resource Response 
- The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_configurations Sequence[VirtualMachine Network Interface IPConfiguration Response] 
- Specifies the IP configurations of the network interface.
- name str
- The network interface configuration name.
- delete_option str
- Specify what happens to the network interface when the VM is deleted
- disable_tcp_ boolstate_ tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dns_settings VirtualMachine Network Interface Dns Settings Configuration Response 
- The dns settings to be applied on the network interfaces.
- dscp_configuration SubResource Response 
- enable_accelerated_ boolnetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enable_fpga bool
- Specifies whether the network interface is FPGA networking-enabled.
- enable_ip_ boolforwarding 
- Whether IP forwarding enabled on this NIC.
- network_security_ Subgroup Resource Response 
- The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ipConfigurations List<Property Map>
- Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- deleteOption String
- Specify what happens to the network interface when the VM is deleted
- disableTcp BooleanState Tracking 
- Specifies whether the network interface is disabled for tcp state tracking.
- dnsSettings Property Map
- The dns settings to be applied on the network interfaces.
- dscpConfiguration Property Map
- enableAccelerated BooleanNetworking 
- Specifies whether the network interface is accelerated networking-enabled.
- enableFpga Boolean
- Specifies whether the network interface is FPGA networking-enabled.
- enableIPForwarding Boolean
- Whether IP forwarding enabled on this NIC.
- networkSecurity Property MapGroup 
- The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineNetworkInterfaceDnsSettingsConfiguration, VirtualMachineNetworkInterfaceDnsSettingsConfigurationArgs              
- DnsServers List<string>
- List of DNS servers IP addresses
- DnsServers []string
- List of DNS servers IP addresses
- dnsServers List<String>
- List of DNS servers IP addresses
- dnsServers string[]
- List of DNS servers IP addresses
- dns_servers Sequence[str]
- List of DNS servers IP addresses
- dnsServers List<String>
- List of DNS servers IP addresses
VirtualMachineNetworkInterfaceDnsSettingsConfigurationResponse, VirtualMachineNetworkInterfaceDnsSettingsConfigurationResponseArgs                
- DnsServers List<string>
- List of DNS servers IP addresses
- DnsServers []string
- List of DNS servers IP addresses
- dnsServers List<String>
- List of DNS servers IP addresses
- dnsServers string[]
- List of DNS servers IP addresses
- dns_servers Sequence[str]
- List of DNS servers IP addresses
- dnsServers List<String>
- List of DNS servers IP addresses
VirtualMachineNetworkInterfaceIPConfiguration, VirtualMachineNetworkInterfaceIPConfigurationArgs          
- Name string
- The IP configuration name.
- ApplicationGateway List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource> 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- ApplicationSecurity List<Pulumi.Groups Azure Native. Compute. Inputs. Sub Resource> 
- Specifies an array of references to application security group.
- LoadBalancer List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource> 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- PrivateIPAddress string | Pulumi.Version Azure Native. Compute. IPVersions 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAddress Pulumi.Configuration Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Configuration 
- The publicIPAddressConfiguration.
- Subnet
Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- Specifies the identifier of the subnet.
- Name string
- The IP configuration name.
- ApplicationGateway []SubBackend Address Pools Resource 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- ApplicationSecurity []SubGroups Resource 
- Specifies an array of references to application security group.
- LoadBalancer []SubBackend Address Pools Resource 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- PrivateIPAddress string | IPVersionsVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAddress VirtualConfiguration Machine Public IPAddress Configuration 
- The publicIPAddressConfiguration.
- Subnet
SubResource 
- Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- applicationGateway List<SubBackend Address Pools Resource> 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity List<SubGroups Resource> 
- Specifies an array of references to application security group.
- loadBalancer List<SubBackend Address Pools Resource> 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress String | IPVersionsVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress VirtualConfiguration Machine Public IPAddress Configuration 
- The publicIPAddressConfiguration.
- subnet
SubResource 
- Specifies the identifier of the subnet.
- name string
- The IP configuration name.
- applicationGateway SubBackend Address Pools Resource[] 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity SubGroups Resource[] 
- Specifies an array of references to application security group.
- loadBalancer SubBackend Address Pools Resource[] 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress string | IPVersionsVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress VirtualConfiguration Machine Public IPAddress Configuration 
- The publicIPAddressConfiguration.
- subnet
SubResource 
- Specifies the identifier of the subnet.
- name str
- The IP configuration name.
- application_gateway_ Sequence[Subbackend_ address_ pools Resource] 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application_security_ Sequence[Subgroups Resource] 
- Specifies an array of references to application security group.
- load_balancer_ Sequence[Subbackend_ address_ pools Resource] 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_ip_ str | IPVersionsaddress_ version 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_ip_ Virtualaddress_ configuration Machine Public IPAddress Configuration 
- The publicIPAddressConfiguration.
- subnet
SubResource 
- Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- applicationGateway List<Property Map>Backend Address Pools 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity List<Property Map>Groups 
- Specifies an array of references to application security group.
- loadBalancer List<Property Map>Backend Address Pools 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress String | "IPv4" | "IPv6"Version 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress Property MapConfiguration 
- The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachineNetworkInterfaceIPConfigurationResponse, VirtualMachineNetworkInterfaceIPConfigurationResponseArgs            
- Name string
- The IP configuration name.
- ApplicationGateway List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource Response> 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- ApplicationSecurity List<Pulumi.Groups Azure Native. Compute. Inputs. Sub Resource Response> 
- Specifies an array of references to application security group.
- LoadBalancer List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource Response> 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- PrivateIPAddress stringVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAddress Pulumi.Configuration Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Configuration Response 
- The publicIPAddressConfiguration.
- Subnet
Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- Specifies the identifier of the subnet.
- Name string
- The IP configuration name.
- ApplicationGateway []SubBackend Address Pools Resource Response 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- ApplicationSecurity []SubGroups Resource Response 
- Specifies an array of references to application security group.
- LoadBalancer []SubBackend Address Pools Resource Response 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- PrivateIPAddress stringVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAddress VirtualConfiguration Machine Public IPAddress Configuration Response 
- The publicIPAddressConfiguration.
- Subnet
SubResource Response 
- Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- applicationGateway List<SubBackend Address Pools Resource Response> 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity List<SubGroups Resource Response> 
- Specifies an array of references to application security group.
- loadBalancer List<SubBackend Address Pools Resource Response> 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress StringVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress VirtualConfiguration Machine Public IPAddress Configuration Response 
- The publicIPAddressConfiguration.
- subnet
SubResource Response 
- Specifies the identifier of the subnet.
- name string
- The IP configuration name.
- applicationGateway SubBackend Address Pools Resource Response[] 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity SubGroups Resource Response[] 
- Specifies an array of references to application security group.
- loadBalancer SubBackend Address Pools Resource Response[] 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress stringVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress VirtualConfiguration Machine Public IPAddress Configuration Response 
- The publicIPAddressConfiguration.
- subnet
SubResource Response 
- Specifies the identifier of the subnet.
- name str
- The IP configuration name.
- application_gateway_ Sequence[Subbackend_ address_ pools Resource Response] 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application_security_ Sequence[Subgroups Resource Response] 
- Specifies an array of references to application security group.
- load_balancer_ Sequence[Subbackend_ address_ pools Resource Response] 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_ip_ straddress_ version 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_ip_ Virtualaddress_ configuration Machine Public IPAddress Configuration Response 
- The publicIPAddressConfiguration.
- subnet
SubResource Response 
- Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- applicationGateway List<Property Map>Backend Address Pools 
- Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- applicationSecurity List<Property Map>Groups 
- Specifies an array of references to application security group.
- loadBalancer List<Property Map>Backend Address Pools 
- Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- privateIPAddress StringVersion 
- Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAddress Property MapConfiguration 
- The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachinePatchStatusResponse, VirtualMachinePatchStatusResponseArgs          
- ConfigurationStatuses List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The enablement status of the specified patchMode
- AvailablePatch Pulumi.Summary Azure Native. Compute. Inputs. Available Patch Summary Response 
- The available patch summary of the latest assessment operation for the virtual machine.
- LastPatch Pulumi.Installation Summary Azure Native. Compute. Inputs. Last Patch Installation Summary Response 
- The installation summary of the latest installation operation for the virtual machine.
- ConfigurationStatuses []InstanceView Status Response 
- The enablement status of the specified patchMode
- AvailablePatch AvailableSummary Patch Summary Response 
- The available patch summary of the latest assessment operation for the virtual machine.
- LastPatch LastInstallation Summary Patch Installation Summary Response 
- The installation summary of the latest installation operation for the virtual machine.
- configurationStatuses List<InstanceView Status Response> 
- The enablement status of the specified patchMode
- availablePatch AvailableSummary Patch Summary Response 
- The available patch summary of the latest assessment operation for the virtual machine.
- lastPatch LastInstallation Summary Patch Installation Summary Response 
- The installation summary of the latest installation operation for the virtual machine.
- configurationStatuses InstanceView Status Response[] 
- The enablement status of the specified patchMode
- availablePatch AvailableSummary Patch Summary Response 
- The available patch summary of the latest assessment operation for the virtual machine.
- lastPatch LastInstallation Summary Patch Installation Summary Response 
- The installation summary of the latest installation operation for the virtual machine.
- configuration_statuses Sequence[InstanceView Status Response] 
- The enablement status of the specified patchMode
- available_patch_ Availablesummary Patch Summary Response 
- The available patch summary of the latest assessment operation for the virtual machine.
- last_patch_ Lastinstallation_ summary Patch Installation Summary Response 
- The installation summary of the latest installation operation for the virtual machine.
- configurationStatuses List<Property Map>
- The enablement status of the specified patchMode
- availablePatch Property MapSummary 
- The available patch summary of the latest assessment operation for the virtual machine.
- lastPatch Property MapInstallation Summary 
- The installation summary of the latest installation operation for the virtual machine.
VirtualMachinePriorityTypes, VirtualMachinePriorityTypesArgs        
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- VirtualMachine Priority Types Regular 
- Regular
- VirtualMachine Priority Types Low 
- Low
- VirtualMachine Priority Types Spot 
- Spot
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- REGULAR
- Regular
- LOW
- Low
- SPOT
- Spot
- "Regular"
- Regular
- "Low"
- Low
- "Spot"
- Spot
VirtualMachinePublicIPAddressConfiguration, VirtualMachinePublicIPAddressConfigurationArgs          
- Name string
- The publicIP address configuration name.
- DeleteOption string | Pulumi.Azure Native. Compute. Delete Options 
- Specify what happens to the public IP address when the VM is deleted
- DnsSettings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Dns Settings Configuration 
- The dns settings to be applied on the publicIP addresses .
- IdleTimeout intIn Minutes 
- The idle timeout of the public IP address.
- 
List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Ip Tag> 
- The list of IP tags associated with the public IP address.
- PublicIPAddress string | Pulumi.Version Azure Native. Compute. IPVersions 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAllocation string | Pulumi.Method Azure Native. Compute. Public IPAllocation Method 
- Specify the public IP allocation type
- PublicIPPrefix Pulumi.Azure Native. Compute. Inputs. Sub Resource 
- The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Pulumi.Azure Native. Compute. Inputs. Public IPAddress Sku 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- Name string
- The publicIP address configuration name.
- DeleteOption string | DeleteOptions 
- Specify what happens to the public IP address when the VM is deleted
- DnsSettings VirtualMachine Public IPAddress Dns Settings Configuration 
- The dns settings to be applied on the publicIP addresses .
- IdleTimeout intIn Minutes 
- The idle timeout of the public IP address.
- 
[]VirtualMachine Ip Tag 
- The list of IP tags associated with the public IP address.
- PublicIPAddress string | IPVersionsVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAllocation string | PublicMethod IPAllocation Method 
- Specify the public IP allocation type
- PublicIPPrefix SubResource 
- The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
PublicIPAddress Sku 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- deleteOption String | DeleteOptions 
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings VirtualMachine Public IPAddress Dns Settings Configuration 
- The dns settings to be applied on the publicIP addresses .
- idleTimeout IntegerIn Minutes 
- The idle timeout of the public IP address.
- 
List<VirtualMachine Ip Tag> 
- The list of IP tags associated with the public IP address.
- publicIPAddress String | IPVersionsVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation String | PublicMethod IPAllocation Method 
- Specify the public IP allocation type
- publicIPPrefix SubResource 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name string
- The publicIP address configuration name.
- deleteOption string | DeleteOptions 
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings VirtualMachine Public IPAddress Dns Settings Configuration 
- The dns settings to be applied on the publicIP addresses .
- idleTimeout numberIn Minutes 
- The idle timeout of the public IP address.
- 
VirtualMachine Ip Tag[] 
- The list of IP tags associated with the public IP address.
- publicIPAddress string | IPVersionsVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation string | PublicMethod IPAllocation Method 
- Specify the public IP allocation type
- publicIPPrefix SubResource 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name str
- The publicIP address configuration name.
- delete_option str | DeleteOptions 
- Specify what happens to the public IP address when the VM is deleted
- dns_settings VirtualMachine Public IPAddress Dns Settings Configuration 
- The dns settings to be applied on the publicIP addresses .
- idle_timeout_ intin_ minutes 
- The idle timeout of the public IP address.
- 
Sequence[VirtualMachine Ip Tag] 
- The list of IP tags associated with the public IP address.
- public_ip_ str | IPVersionsaddress_ version 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_ip_ str | Publicallocation_ method IPAllocation Method 
- Specify the public IP allocation type
- public_ip_ Subprefix Resource 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- deleteOption String | "Delete" | "Detach"
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings Property Map
- The dns settings to be applied on the publicIP addresses .
- idleTimeout NumberIn Minutes 
- The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- publicIPAddress String | "IPv4" | "IPv6"Version 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation String | "Dynamic" | "Static"Method 
- Specify the public IP allocation type
- publicIPPrefix Property Map
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku Property Map
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
VirtualMachinePublicIPAddressConfigurationResponse, VirtualMachinePublicIPAddressConfigurationResponseArgs            
- Name string
- The publicIP address configuration name.
- DeleteOption string
- Specify what happens to the public IP address when the VM is deleted
- DnsSettings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Dns Settings Configuration Response 
- The dns settings to be applied on the publicIP addresses .
- IdleTimeout intIn Minutes 
- The idle timeout of the public IP address.
- 
List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Ip Tag Response> 
- The list of IP tags associated with the public IP address.
- PublicIPAddress stringVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAllocation stringMethod 
- Specify the public IP allocation type
- PublicIPPrefix Pulumi.Azure Native. Compute. Inputs. Sub Resource Response 
- The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Pulumi.Azure Native. Compute. Inputs. Public IPAddress Sku Response 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- Name string
- The publicIP address configuration name.
- DeleteOption string
- Specify what happens to the public IP address when the VM is deleted
- DnsSettings VirtualMachine Public IPAddress Dns Settings Configuration Response 
- The dns settings to be applied on the publicIP addresses .
- IdleTimeout intIn Minutes 
- The idle timeout of the public IP address.
- 
[]VirtualMachine Ip Tag Response 
- The list of IP tags associated with the public IP address.
- PublicIPAddress stringVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- PublicIPAllocation stringMethod 
- Specify the public IP allocation type
- PublicIPPrefix SubResource Response 
- The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
PublicIPAddress Sku Response 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- deleteOption String
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings VirtualMachine Public IPAddress Dns Settings Configuration Response 
- The dns settings to be applied on the publicIP addresses .
- idleTimeout IntegerIn Minutes 
- The idle timeout of the public IP address.
- 
List<VirtualMachine Ip Tag Response> 
- The list of IP tags associated with the public IP address.
- publicIPAddress StringVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation StringMethod 
- Specify the public IP allocation type
- publicIPPrefix SubResource Response 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku Response 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name string
- The publicIP address configuration name.
- deleteOption string
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings VirtualMachine Public IPAddress Dns Settings Configuration Response 
- The dns settings to be applied on the publicIP addresses .
- idleTimeout numberIn Minutes 
- The idle timeout of the public IP address.
- 
VirtualMachine Ip Tag Response[] 
- The list of IP tags associated with the public IP address.
- publicIPAddress stringVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation stringMethod 
- Specify the public IP allocation type
- publicIPPrefix SubResource Response 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku Response 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name str
- The publicIP address configuration name.
- delete_option str
- Specify what happens to the public IP address when the VM is deleted
- dns_settings VirtualMachine Public IPAddress Dns Settings Configuration Response 
- The dns settings to be applied on the publicIP addresses .
- idle_timeout_ intin_ minutes 
- The idle timeout of the public IP address.
- 
Sequence[VirtualMachine Ip Tag Response] 
- The list of IP tags associated with the public IP address.
- public_ip_ straddress_ version 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_ip_ strallocation_ method 
- Specify the public IP allocation type
- public_ip_ Subprefix Resource Response 
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku
PublicIPAddress Sku Response 
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
- name String
- The publicIP address configuration name.
- deleteOption String
- Specify what happens to the public IP address when the VM is deleted
- dnsSettings Property Map
- The dns settings to be applied on the publicIP addresses .
- idleTimeout NumberIn Minutes 
- The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- publicIPAddress StringVersion 
- Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- publicIPAllocation StringMethod 
- Specify the public IP allocation type
- publicIPPrefix Property Map
- The PublicIPPrefix from which to allocate publicIP addresses.
- sku Property Map
- Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.
VirtualMachinePublicIPAddressDnsSettingsConfiguration, VirtualMachinePublicIPAddressDnsSettingsConfigurationArgs              
- DomainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- DomainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName StringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain_name_ strlabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName StringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
VirtualMachinePublicIPAddressDnsSettingsConfigurationResponse, VirtualMachinePublicIPAddressDnsSettingsConfigurationResponseArgs                
- DomainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- DomainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName StringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName stringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain_name_ strlabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domainName StringLabel 
- The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
VirtualMachineSizeTypes, VirtualMachineSizeTypesArgs        
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_v2 
- Standard_A1_v2
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- Standard_A8_v2 
- Standard_A8_v2
- Standard_A2m_v2 
- Standard_A2m_v2
- Standard_A4m_v2 
- Standard_A4m_v2
- Standard_A8m_v2 
- Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_v2 
- Standard_D1_v2
- Standard_D2_v2 
- Standard_D2_v2
- Standard_D3_v2 
- Standard_D3_v2
- Standard_D4_v2 
- Standard_D4_v2
- Standard_D5_v2 
- Standard_D5_v2
- Standard_D2_v3 
- Standard_D2_v3
- Standard_D4_v3 
- Standard_D4_v3
- Standard_D8_v3 
- Standard_D8_v3
- Standard_D16_v3 
- Standard_D16_v3
- Standard_D32_v3 
- Standard_D32_v3
- Standard_D64_v3 
- Standard_D64_v3
- Standard_D2s_v3 
- Standard_D2s_v3
- Standard_D4s_v3 
- Standard_D4s_v3
- Standard_D8s_v3 
- Standard_D8s_v3
- Standard_D16s_v3 
- Standard_D16s_v3
- Standard_D32s_v3 
- Standard_D32s_v3
- Standard_D64s_v3 
- Standard_D64s_v3
- Standard_D11_v2 
- Standard_D11_v2
- Standard_D12_v2 
- Standard_D12_v2
- Standard_D13_v2 
- Standard_D13_v2
- Standard_D14_v2 
- Standard_D14_v2
- Standard_D15_v2 
- Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_v2 
- Standard_DS1_v2
- Standard_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS11_v2 
- Standard_DS11_v2
- Standard_DS12_v2 
- Standard_DS12_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_DS14_v2 
- Standard_DS14_v2
- Standard_DS15_v2 
- Standard_DS15_v2
- Standard_DS13_4_v2 
- Standard_DS13-4_v2
- Standard_DS13_2_v2 
- Standard_DS13-2_v2
- Standard_DS14_8_v2 
- Standard_DS14-8_v2
- Standard_DS14_4_v2 
- Standard_DS14-4_v2
- Standard_E2_v3 
- Standard_E2_v3
- Standard_E4_v3 
- Standard_E4_v3
- Standard_E8_v3 
- Standard_E8_v3
- Standard_E16_v3 
- Standard_E16_v3
- Standard_E32_v3 
- Standard_E32_v3
- Standard_E64_v3 
- Standard_E64_v3
- Standard_E2s_v3 
- Standard_E2s_v3
- Standard_E4s_v3 
- Standard_E4s_v3
- Standard_E8s_v3 
- Standard_E8s_v3
- Standard_E16s_v3 
- Standard_E16s_v3
- Standard_E32s_v3 
- Standard_E32s_v3
- Standard_E64s_v3 
- Standard_E64s_v3
- Standard_E32_16_v3 
- Standard_E32-16_v3
- Standard_E32_8s_v3 
- Standard_E32-8s_v3
- Standard_E64_32s_v3 
- Standard_E64-32s_v3
- Standard_E64_16s_v3 
- Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_v2 
- Standard_F2s_v2
- Standard_F4s_v2 
- Standard_F4s_v2
- Standard_F8s_v2 
- Standard_F8s_v2
- Standard_F16s_v2 
- Standard_F16s_v2
- Standard_F32s_v2 
- Standard_F32s_v2
- Standard_F64s_v2 
- Standard_F64s_v2
- Standard_F72s_v2 
- Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS4_8
- Standard_GS4-8
- Standard_GS4_4
- Standard_GS4-4
- Standard_GS5_16
- Standard_GS5-16
- Standard_GS5_8
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M64_32ms
- Standard_M64-32ms
- Standard_M64_16ms
- Standard_M64-16ms
- Standard_M128_64ms
- Standard_M128-64ms
- Standard_M128_32ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_v2 
- Standard_NC6s_v2
- Standard_NC12s_v2 
- Standard_NC12s_v2
- Standard_NC24s_v2 
- Standard_NC24s_v2
- Standard_NC24rs_v2 
- Standard_NC24rs_v2
- Standard_NC6s_v3 
- Standard_NC6s_v3
- Standard_NC12s_v3 
- Standard_NC12s_v3
- Standard_NC24s_v3 
- Standard_NC24s_v3
- Standard_NC24rs_v3 
- Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- VirtualMachine Size Types_Basic_A0 
- Basic_A0
- VirtualMachine Size Types_Basic_A1 
- Basic_A1
- VirtualMachine Size Types_Basic_A2 
- Basic_A2
- VirtualMachine Size Types_Basic_A3 
- Basic_A3
- VirtualMachine Size Types_Basic_A4 
- Basic_A4
- VirtualMachine Size Types_Standard_A0 
- Standard_A0
- VirtualMachine Size Types_Standard_A1 
- Standard_A1
- VirtualMachine Size Types_Standard_A2 
- Standard_A2
- VirtualMachine Size Types_Standard_A3 
- Standard_A3
- VirtualMachine Size Types_Standard_A4 
- Standard_A4
- VirtualMachine Size Types_Standard_A5 
- Standard_A5
- VirtualMachine Size Types_Standard_A6 
- Standard_A6
- VirtualMachine Size Types_Standard_A7 
- Standard_A7
- VirtualMachine Size Types_Standard_A8 
- Standard_A8
- VirtualMachine Size Types_Standard_A9 
- Standard_A9
- VirtualMachine Size Types_Standard_A10 
- Standard_A10
- VirtualMachine Size Types_Standard_A11 
- Standard_A11
- VirtualMachine Size Types_Standard_A1_ v2 
- Standard_A1_v2
- VirtualMachine Size Types_Standard_A2_ v2 
- Standard_A2_v2
- VirtualMachine Size Types_Standard_A4_ v2 
- Standard_A4_v2
- VirtualMachine Size Types_Standard_A8_ v2 
- Standard_A8_v2
- VirtualMachine Size Types_Standard_A2m_ v2 
- Standard_A2m_v2
- VirtualMachine Size Types_Standard_A4m_ v2 
- Standard_A4m_v2
- VirtualMachine Size Types_Standard_A8m_ v2 
- Standard_A8m_v2
- VirtualMachine Size Types_Standard_B1s 
- Standard_B1s
- VirtualMachine Size Types_Standard_B1ms 
- Standard_B1ms
- VirtualMachine Size Types_Standard_B2s 
- Standard_B2s
- VirtualMachine Size Types_Standard_B2ms 
- Standard_B2ms
- VirtualMachine Size Types_Standard_B4ms 
- Standard_B4ms
- VirtualMachine Size Types_Standard_B8ms 
- Standard_B8ms
- VirtualMachine Size Types_Standard_D1 
- Standard_D1
- VirtualMachine Size Types_Standard_D2 
- Standard_D2
- VirtualMachine Size Types_Standard_D3 
- Standard_D3
- VirtualMachine Size Types_Standard_D4 
- Standard_D4
- VirtualMachine Size Types_Standard_D11 
- Standard_D11
- VirtualMachine Size Types_Standard_D12 
- Standard_D12
- VirtualMachine Size Types_Standard_D13 
- Standard_D13
- VirtualMachine Size Types_Standard_D14 
- Standard_D14
- VirtualMachine Size Types_Standard_D1_ v2 
- Standard_D1_v2
- VirtualMachine Size Types_Standard_D2_ v2 
- Standard_D2_v2
- VirtualMachine Size Types_Standard_D3_ v2 
- Standard_D3_v2
- VirtualMachine Size Types_Standard_D4_ v2 
- Standard_D4_v2
- VirtualMachine Size Types_Standard_D5_ v2 
- Standard_D5_v2
- VirtualMachine Size Types_Standard_D2_ v3 
- Standard_D2_v3
- VirtualMachine Size Types_Standard_D4_ v3 
- Standard_D4_v3
- VirtualMachine Size Types_Standard_D8_ v3 
- Standard_D8_v3
- VirtualMachine Size Types_Standard_D16_ v3 
- Standard_D16_v3
- VirtualMachine Size Types_Standard_D32_ v3 
- Standard_D32_v3
- VirtualMachine Size Types_Standard_D64_ v3 
- Standard_D64_v3
- VirtualMachine Size Types_Standard_D2s_ v3 
- Standard_D2s_v3
- VirtualMachine Size Types_Standard_D4s_ v3 
- Standard_D4s_v3
- VirtualMachine Size Types_Standard_D8s_ v3 
- Standard_D8s_v3
- VirtualMachine Size Types_Standard_D16s_ v3 
- Standard_D16s_v3
- VirtualMachine Size Types_Standard_D32s_ v3 
- Standard_D32s_v3
- VirtualMachine Size Types_Standard_D64s_ v3 
- Standard_D64s_v3
- VirtualMachine Size Types_Standard_D11_ v2 
- Standard_D11_v2
- VirtualMachine Size Types_Standard_D12_ v2 
- Standard_D12_v2
- VirtualMachine Size Types_Standard_D13_ v2 
- Standard_D13_v2
- VirtualMachine Size Types_Standard_D14_ v2 
- Standard_D14_v2
- VirtualMachine Size Types_Standard_D15_ v2 
- Standard_D15_v2
- VirtualMachine Size Types_Standard_DS1 
- Standard_DS1
- VirtualMachine Size Types_Standard_DS2 
- Standard_DS2
- VirtualMachine Size Types_Standard_DS3 
- Standard_DS3
- VirtualMachine Size Types_Standard_DS4 
- Standard_DS4
- VirtualMachine Size Types_Standard_DS11 
- Standard_DS11
- VirtualMachine Size Types_Standard_DS12 
- Standard_DS12
- VirtualMachine Size Types_Standard_DS13 
- Standard_DS13
- VirtualMachine Size Types_Standard_DS14 
- Standard_DS14
- VirtualMachine Size Types_Standard_DS1_ v2 
- Standard_DS1_v2
- VirtualMachine Size Types_Standard_DS2_ v2 
- Standard_DS2_v2
- VirtualMachine Size Types_Standard_DS3_ v2 
- Standard_DS3_v2
- VirtualMachine Size Types_Standard_DS4_ v2 
- Standard_DS4_v2
- VirtualMachine Size Types_Standard_DS5_ v2 
- Standard_DS5_v2
- VirtualMachine Size Types_Standard_DS11_ v2 
- Standard_DS11_v2
- VirtualMachine Size Types_Standard_DS12_ v2 
- Standard_DS12_v2
- VirtualMachine Size Types_Standard_DS13_ v2 
- Standard_DS13_v2
- VirtualMachine Size Types_Standard_DS14_ v2 
- Standard_DS14_v2
- VirtualMachine Size Types_Standard_DS15_ v2 
- Standard_DS15_v2
- VirtualMachine Size Types_Standard_DS13_4_ v2 
- Standard_DS13-4_v2
- VirtualMachine Size Types_Standard_DS13_2_ v2 
- Standard_DS13-2_v2
- VirtualMachine Size Types_Standard_DS14_8_ v2 
- Standard_DS14-8_v2
- VirtualMachine Size Types_Standard_DS14_4_ v2 
- Standard_DS14-4_v2
- VirtualMachine Size Types_Standard_E2_ v3 
- Standard_E2_v3
- VirtualMachine Size Types_Standard_E4_ v3 
- Standard_E4_v3
- VirtualMachine Size Types_Standard_E8_ v3 
- Standard_E8_v3
- VirtualMachine Size Types_Standard_E16_ v3 
- Standard_E16_v3
- VirtualMachine Size Types_Standard_E32_ v3 
- Standard_E32_v3
- VirtualMachine Size Types_Standard_E64_ v3 
- Standard_E64_v3
- VirtualMachine Size Types_Standard_E2s_ v3 
- Standard_E2s_v3
- VirtualMachine Size Types_Standard_E4s_ v3 
- Standard_E4s_v3
- VirtualMachine Size Types_Standard_E8s_ v3 
- Standard_E8s_v3
- VirtualMachine Size Types_Standard_E16s_ v3 
- Standard_E16s_v3
- VirtualMachine Size Types_Standard_E32s_ v3 
- Standard_E32s_v3
- VirtualMachine Size Types_Standard_E64s_ v3 
- Standard_E64s_v3
- VirtualMachine Size Types_Standard_E32_16_ v3 
- Standard_E32-16_v3
- VirtualMachine Size Types_Standard_E32_8s_ v3 
- Standard_E32-8s_v3
- VirtualMachine Size Types_Standard_E64_32s_ v3 
- Standard_E64-32s_v3
- VirtualMachine Size Types_Standard_E64_16s_ v3 
- Standard_E64-16s_v3
- VirtualMachine Size Types_Standard_F1 
- Standard_F1
- VirtualMachine Size Types_Standard_F2 
- Standard_F2
- VirtualMachine Size Types_Standard_F4 
- Standard_F4
- VirtualMachine Size Types_Standard_F8 
- Standard_F8
- VirtualMachine Size Types_Standard_F16 
- Standard_F16
- VirtualMachine Size Types_Standard_F1s 
- Standard_F1s
- VirtualMachine Size Types_Standard_F2s 
- Standard_F2s
- VirtualMachine Size Types_Standard_F4s 
- Standard_F4s
- VirtualMachine Size Types_Standard_F8s 
- Standard_F8s
- VirtualMachine Size Types_Standard_F16s 
- Standard_F16s
- VirtualMachine Size Types_Standard_F2s_ v2 
- Standard_F2s_v2
- VirtualMachine Size Types_Standard_F4s_ v2 
- Standard_F4s_v2
- VirtualMachine Size Types_Standard_F8s_ v2 
- Standard_F8s_v2
- VirtualMachine Size Types_Standard_F16s_ v2 
- Standard_F16s_v2
- VirtualMachine Size Types_Standard_F32s_ v2 
- Standard_F32s_v2
- VirtualMachine Size Types_Standard_F64s_ v2 
- Standard_F64s_v2
- VirtualMachine Size Types_Standard_F72s_ v2 
- Standard_F72s_v2
- VirtualMachine Size Types_Standard_G1 
- Standard_G1
- VirtualMachine Size Types_Standard_G2 
- Standard_G2
- VirtualMachine Size Types_Standard_G3 
- Standard_G3
- VirtualMachine Size Types_Standard_G4 
- Standard_G4
- VirtualMachine Size Types_Standard_G5 
- Standard_G5
- VirtualMachine Size Types_Standard_GS1 
- Standard_GS1
- VirtualMachine Size Types_Standard_GS2 
- Standard_GS2
- VirtualMachine Size Types_Standard_GS3 
- Standard_GS3
- VirtualMachine Size Types_Standard_GS4 
- Standard_GS4
- VirtualMachine Size Types_Standard_GS5 
- Standard_GS5
- VirtualMachine Size Types_Standard_GS4_8 
- Standard_GS4-8
- VirtualMachine Size Types_Standard_GS4_4 
- Standard_GS4-4
- VirtualMachine Size Types_Standard_GS5_16 
- Standard_GS5-16
- VirtualMachine Size Types_Standard_GS5_8 
- Standard_GS5-8
- VirtualMachine Size Types_Standard_H8 
- Standard_H8
- VirtualMachine Size Types_Standard_H16 
- Standard_H16
- VirtualMachine Size Types_Standard_H8m 
- Standard_H8m
- VirtualMachine Size Types_Standard_H16m 
- Standard_H16m
- VirtualMachine Size Types_Standard_H16r 
- Standard_H16r
- VirtualMachine Size Types_Standard_H16mr 
- Standard_H16mr
- VirtualMachine Size Types_Standard_L4s 
- Standard_L4s
- VirtualMachine Size Types_Standard_L8s 
- Standard_L8s
- VirtualMachine Size Types_Standard_L16s 
- Standard_L16s
- VirtualMachine Size Types_Standard_L32s 
- Standard_L32s
- VirtualMachine Size Types_Standard_M64s 
- Standard_M64s
- VirtualMachine Size Types_Standard_M64ms 
- Standard_M64ms
- VirtualMachine Size Types_Standard_M128s 
- Standard_M128s
- VirtualMachine Size Types_Standard_M128ms 
- Standard_M128ms
- VirtualMachine Size Types_Standard_M64_32ms 
- Standard_M64-32ms
- VirtualMachine Size Types_Standard_M64_16ms 
- Standard_M64-16ms
- VirtualMachine Size Types_Standard_M128_64ms 
- Standard_M128-64ms
- VirtualMachine Size Types_Standard_M128_32ms 
- Standard_M128-32ms
- VirtualMachine Size Types_Standard_NC6 
- Standard_NC6
- VirtualMachine Size Types_Standard_NC12 
- Standard_NC12
- VirtualMachine Size Types_Standard_NC24 
- Standard_NC24
- VirtualMachine Size Types_Standard_NC24r 
- Standard_NC24r
- VirtualMachine Size Types_Standard_NC6s_ v2 
- Standard_NC6s_v2
- VirtualMachine Size Types_Standard_NC12s_ v2 
- Standard_NC12s_v2
- VirtualMachine Size Types_Standard_NC24s_ v2 
- Standard_NC24s_v2
- VirtualMachine Size Types_Standard_NC24rs_ v2 
- Standard_NC24rs_v2
- VirtualMachine Size Types_Standard_NC6s_ v3 
- Standard_NC6s_v3
- VirtualMachine Size Types_Standard_NC12s_ v3 
- Standard_NC12s_v3
- VirtualMachine Size Types_Standard_NC24s_ v3 
- Standard_NC24s_v3
- VirtualMachine Size Types_Standard_NC24rs_ v3 
- Standard_NC24rs_v3
- VirtualMachine Size Types_Standard_ND6s 
- Standard_ND6s
- VirtualMachine Size Types_Standard_ND12s 
- Standard_ND12s
- VirtualMachine Size Types_Standard_ND24s 
- Standard_ND24s
- VirtualMachine Size Types_Standard_ND24rs 
- Standard_ND24rs
- VirtualMachine Size Types_Standard_NV6 
- Standard_NV6
- VirtualMachine Size Types_Standard_NV12 
- Standard_NV12
- VirtualMachine Size Types_Standard_NV24 
- Standard_NV24
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_v2 
- Standard_A1_v2
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- Standard_A8_v2 
- Standard_A8_v2
- Standard_A2m_v2 
- Standard_A2m_v2
- Standard_A4m_v2 
- Standard_A4m_v2
- Standard_A8m_v2 
- Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_v2 
- Standard_D1_v2
- Standard_D2_v2 
- Standard_D2_v2
- Standard_D3_v2 
- Standard_D3_v2
- Standard_D4_v2 
- Standard_D4_v2
- Standard_D5_v2 
- Standard_D5_v2
- Standard_D2_v3 
- Standard_D2_v3
- Standard_D4_v3 
- Standard_D4_v3
- Standard_D8_v3 
- Standard_D8_v3
- Standard_D16_v3 
- Standard_D16_v3
- Standard_D32_v3 
- Standard_D32_v3
- Standard_D64_v3 
- Standard_D64_v3
- Standard_D2s_v3 
- Standard_D2s_v3
- Standard_D4s_v3 
- Standard_D4s_v3
- Standard_D8s_v3 
- Standard_D8s_v3
- Standard_D16s_v3 
- Standard_D16s_v3
- Standard_D32s_v3 
- Standard_D32s_v3
- Standard_D64s_v3 
- Standard_D64s_v3
- Standard_D11_v2 
- Standard_D11_v2
- Standard_D12_v2 
- Standard_D12_v2
- Standard_D13_v2 
- Standard_D13_v2
- Standard_D14_v2 
- Standard_D14_v2
- Standard_D15_v2 
- Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_v2 
- Standard_DS1_v2
- Standard_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS11_v2 
- Standard_DS11_v2
- Standard_DS12_v2 
- Standard_DS12_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_DS14_v2 
- Standard_DS14_v2
- Standard_DS15_v2 
- Standard_DS15_v2
- Standard_DS134_v2 
- Standard_DS13-4_v2
- Standard_DS132_v2 
- Standard_DS13-2_v2
- Standard_DS148_v2 
- Standard_DS14-8_v2
- Standard_DS144_v2 
- Standard_DS14-4_v2
- Standard_E2_v3 
- Standard_E2_v3
- Standard_E4_v3 
- Standard_E4_v3
- Standard_E8_v3 
- Standard_E8_v3
- Standard_E16_v3 
- Standard_E16_v3
- Standard_E32_v3 
- Standard_E32_v3
- Standard_E64_v3 
- Standard_E64_v3
- Standard_E2s_v3 
- Standard_E2s_v3
- Standard_E4s_v3 
- Standard_E4s_v3
- Standard_E8s_v3 
- Standard_E8s_v3
- Standard_E16s_v3 
- Standard_E16s_v3
- Standard_E32s_v3 
- Standard_E32s_v3
- Standard_E64s_v3 
- Standard_E64s_v3
- Standard_E3216_v3 
- Standard_E32-16_v3
- Standard_E328s_v3 
- Standard_E32-8s_v3
- Standard_E6432s_v3 
- Standard_E64-32s_v3
- Standard_E6416s_v3 
- Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_v2 
- Standard_F2s_v2
- Standard_F4s_v2 
- Standard_F4s_v2
- Standard_F8s_v2 
- Standard_F8s_v2
- Standard_F16s_v2 
- Standard_F16s_v2
- Standard_F32s_v2 
- Standard_F32s_v2
- Standard_F64s_v2 
- Standard_F64s_v2
- Standard_F72s_v2 
- Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS48
- Standard_GS4-8
- Standard_GS44
- Standard_GS4-4
- Standard_GS516
- Standard_GS5-16
- Standard_GS58
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M6432ms
- Standard_M64-32ms
- Standard_M6416ms
- Standard_M64-16ms
- Standard_M12864ms
- Standard_M128-64ms
- Standard_M12832ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_v2 
- Standard_NC6s_v2
- Standard_NC12s_v2 
- Standard_NC12s_v2
- Standard_NC24s_v2 
- Standard_NC24s_v2
- Standard_NC24rs_v2 
- Standard_NC24rs_v2
- Standard_NC6s_v3 
- Standard_NC6s_v3
- Standard_NC12s_v3 
- Standard_NC12s_v3
- Standard_NC24s_v3 
- Standard_NC24s_v3
- Standard_NC24rs_v3 
- Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_v2 
- Standard_A1_v2
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- Standard_A8_v2 
- Standard_A8_v2
- Standard_A2m_v2 
- Standard_A2m_v2
- Standard_A4m_v2 
- Standard_A4m_v2
- Standard_A8m_v2 
- Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_v2 
- Standard_D1_v2
- Standard_D2_v2 
- Standard_D2_v2
- Standard_D3_v2 
- Standard_D3_v2
- Standard_D4_v2 
- Standard_D4_v2
- Standard_D5_v2 
- Standard_D5_v2
- Standard_D2_v3 
- Standard_D2_v3
- Standard_D4_v3 
- Standard_D4_v3
- Standard_D8_v3 
- Standard_D8_v3
- Standard_D16_v3 
- Standard_D16_v3
- Standard_D32_v3 
- Standard_D32_v3
- Standard_D64_v3 
- Standard_D64_v3
- Standard_D2s_v3 
- Standard_D2s_v3
- Standard_D4s_v3 
- Standard_D4s_v3
- Standard_D8s_v3 
- Standard_D8s_v3
- Standard_D16s_v3 
- Standard_D16s_v3
- Standard_D32s_v3 
- Standard_D32s_v3
- Standard_D64s_v3 
- Standard_D64s_v3
- Standard_D11_v2 
- Standard_D11_v2
- Standard_D12_v2 
- Standard_D12_v2
- Standard_D13_v2 
- Standard_D13_v2
- Standard_D14_v2 
- Standard_D14_v2
- Standard_D15_v2 
- Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_v2 
- Standard_DS1_v2
- Standard_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS11_v2 
- Standard_DS11_v2
- Standard_DS12_v2 
- Standard_DS12_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_DS14_v2 
- Standard_DS14_v2
- Standard_DS15_v2 
- Standard_DS15_v2
- Standard_DS13_4_v2 
- Standard_DS13-4_v2
- Standard_DS13_2_v2 
- Standard_DS13-2_v2
- Standard_DS14_8_v2 
- Standard_DS14-8_v2
- Standard_DS14_4_v2 
- Standard_DS14-4_v2
- Standard_E2_v3 
- Standard_E2_v3
- Standard_E4_v3 
- Standard_E4_v3
- Standard_E8_v3 
- Standard_E8_v3
- Standard_E16_v3 
- Standard_E16_v3
- Standard_E32_v3 
- Standard_E32_v3
- Standard_E64_v3 
- Standard_E64_v3
- Standard_E2s_v3 
- Standard_E2s_v3
- Standard_E4s_v3 
- Standard_E4s_v3
- Standard_E8s_v3 
- Standard_E8s_v3
- Standard_E16s_v3 
- Standard_E16s_v3
- Standard_E32s_v3 
- Standard_E32s_v3
- Standard_E64s_v3 
- Standard_E64s_v3
- Standard_E32_16_v3 
- Standard_E32-16_v3
- Standard_E32_8s_v3 
- Standard_E32-8s_v3
- Standard_E64_32s_v3 
- Standard_E64-32s_v3
- Standard_E64_16s_v3 
- Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_v2 
- Standard_F2s_v2
- Standard_F4s_v2 
- Standard_F4s_v2
- Standard_F8s_v2 
- Standard_F8s_v2
- Standard_F16s_v2 
- Standard_F16s_v2
- Standard_F32s_v2 
- Standard_F32s_v2
- Standard_F64s_v2 
- Standard_F64s_v2
- Standard_F72s_v2 
- Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS4_8
- Standard_GS4-8
- Standard_GS4_4
- Standard_GS4-4
- Standard_GS5_16
- Standard_GS5-16
- Standard_GS5_8
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M64_32ms
- Standard_M64-32ms
- Standard_M64_16ms
- Standard_M64-16ms
- Standard_M128_64ms
- Standard_M128-64ms
- Standard_M128_32ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_v2 
- Standard_NC6s_v2
- Standard_NC12s_v2 
- Standard_NC12s_v2
- Standard_NC24s_v2 
- Standard_NC24s_v2
- Standard_NC24rs_v2 
- Standard_NC24rs_v2
- Standard_NC6s_v3 
- Standard_NC6s_v3
- Standard_NC12s_v3 
- Standard_NC12s_v3
- Standard_NC24s_v3 
- Standard_NC24s_v3
- Standard_NC24rs_v3 
- Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- BASIC_A0
- Basic_A0
- BASIC_A1
- Basic_A1
- BASIC_A2
- Basic_A2
- BASIC_A3
- Basic_A3
- BASIC_A4
- Basic_A4
- STANDARD_A0
- Standard_A0
- STANDARD_A1
- Standard_A1
- STANDARD_A2
- Standard_A2
- STANDARD_A3
- Standard_A3
- STANDARD_A4
- Standard_A4
- STANDARD_A5
- Standard_A5
- STANDARD_A6
- Standard_A6
- STANDARD_A7
- Standard_A7
- STANDARD_A8
- Standard_A8
- STANDARD_A9
- Standard_A9
- STANDARD_A10
- Standard_A10
- STANDARD_A11
- Standard_A11
- STANDARD_A1_V2
- Standard_A1_v2
- STANDARD_A2_V2
- Standard_A2_v2
- STANDARD_A4_V2
- Standard_A4_v2
- STANDARD_A8_V2
- Standard_A8_v2
- STANDARD_A2M_V2
- Standard_A2m_v2
- STANDARD_A4M_V2
- Standard_A4m_v2
- STANDARD_A8M_V2
- Standard_A8m_v2
- STANDARD_B1S
- Standard_B1s
- STANDARD_B1MS
- Standard_B1ms
- STANDARD_B2S
- Standard_B2s
- STANDARD_B2MS
- Standard_B2ms
- STANDARD_B4MS
- Standard_B4ms
- STANDARD_B8MS
- Standard_B8ms
- STANDARD_D1
- Standard_D1
- STANDARD_D2
- Standard_D2
- STANDARD_D3
- Standard_D3
- STANDARD_D4
- Standard_D4
- STANDARD_D11
- Standard_D11
- STANDARD_D12
- Standard_D12
- STANDARD_D13
- Standard_D13
- STANDARD_D14
- Standard_D14
- STANDARD_D1_V2
- Standard_D1_v2
- STANDARD_D2_V2
- Standard_D2_v2
- STANDARD_D3_V2
- Standard_D3_v2
- STANDARD_D4_V2
- Standard_D4_v2
- STANDARD_D5_V2
- Standard_D5_v2
- STANDARD_D2_V3
- Standard_D2_v3
- STANDARD_D4_V3
- Standard_D4_v3
- STANDARD_D8_V3
- Standard_D8_v3
- STANDARD_D16_V3
- Standard_D16_v3
- STANDARD_D32_V3
- Standard_D32_v3
- STANDARD_D64_V3
- Standard_D64_v3
- STANDARD_D2S_V3
- Standard_D2s_v3
- STANDARD_D4S_V3
- Standard_D4s_v3
- STANDARD_D8S_V3
- Standard_D8s_v3
- STANDARD_D16S_V3
- Standard_D16s_v3
- STANDARD_D32S_V3
- Standard_D32s_v3
- STANDARD_D64S_V3
- Standard_D64s_v3
- STANDARD_D11_V2
- Standard_D11_v2
- STANDARD_D12_V2
- Standard_D12_v2
- STANDARD_D13_V2
- Standard_D13_v2
- STANDARD_D14_V2
- Standard_D14_v2
- STANDARD_D15_V2
- Standard_D15_v2
- STANDARD_DS1
- Standard_DS1
- STANDARD_DS2
- Standard_DS2
- STANDARD_DS3
- Standard_DS3
- STANDARD_DS4
- Standard_DS4
- STANDARD_DS11
- Standard_DS11
- STANDARD_DS12
- Standard_DS12
- STANDARD_DS13
- Standard_DS13
- STANDARD_DS14
- Standard_DS14
- STANDARD_DS1_V2
- Standard_DS1_v2
- STANDARD_DS2_V2
- Standard_DS2_v2
- STANDARD_DS3_V2
- Standard_DS3_v2
- STANDARD_DS4_V2
- Standard_DS4_v2
- STANDARD_DS5_V2
- Standard_DS5_v2
- STANDARD_DS11_V2
- Standard_DS11_v2
- STANDARD_DS12_V2
- Standard_DS12_v2
- STANDARD_DS13_V2
- Standard_DS13_v2
- STANDARD_DS14_V2
- Standard_DS14_v2
- STANDARD_DS15_V2
- Standard_DS15_v2
- STANDARD_DS13_4_V2
- Standard_DS13-4_v2
- STANDARD_DS13_2_V2
- Standard_DS13-2_v2
- STANDARD_DS14_8_V2
- Standard_DS14-8_v2
- STANDARD_DS14_4_V2
- Standard_DS14-4_v2
- STANDARD_E2_V3
- Standard_E2_v3
- STANDARD_E4_V3
- Standard_E4_v3
- STANDARD_E8_V3
- Standard_E8_v3
- STANDARD_E16_V3
- Standard_E16_v3
- STANDARD_E32_V3
- Standard_E32_v3
- STANDARD_E64_V3
- Standard_E64_v3
- STANDARD_E2S_V3
- Standard_E2s_v3
- STANDARD_E4S_V3
- Standard_E4s_v3
- STANDARD_E8S_V3
- Standard_E8s_v3
- STANDARD_E16S_V3
- Standard_E16s_v3
- STANDARD_E32S_V3
- Standard_E32s_v3
- STANDARD_E64S_V3
- Standard_E64s_v3
- STANDARD_E32_16_V3
- Standard_E32-16_v3
- STANDARD_E32_8S_V3
- Standard_E32-8s_v3
- STANDARD_E64_32S_V3
- Standard_E64-32s_v3
- STANDARD_E64_16S_V3
- Standard_E64-16s_v3
- STANDARD_F1
- Standard_F1
- STANDARD_F2
- Standard_F2
- STANDARD_F4
- Standard_F4
- STANDARD_F8
- Standard_F8
- STANDARD_F16
- Standard_F16
- STANDARD_F1S
- Standard_F1s
- STANDARD_F2S
- Standard_F2s
- STANDARD_F4S
- Standard_F4s
- STANDARD_F8S
- Standard_F8s
- STANDARD_F16S
- Standard_F16s
- STANDARD_F2S_V2
- Standard_F2s_v2
- STANDARD_F4S_V2
- Standard_F4s_v2
- STANDARD_F8S_V2
- Standard_F8s_v2
- STANDARD_F16S_V2
- Standard_F16s_v2
- STANDARD_F32S_V2
- Standard_F32s_v2
- STANDARD_F64S_V2
- Standard_F64s_v2
- STANDARD_F72S_V2
- Standard_F72s_v2
- STANDARD_G1
- Standard_G1
- STANDARD_G2
- Standard_G2
- STANDARD_G3
- Standard_G3
- STANDARD_G4
- Standard_G4
- STANDARD_G5
- Standard_G5
- STANDARD_GS1
- Standard_GS1
- STANDARD_GS2
- Standard_GS2
- STANDARD_GS3
- Standard_GS3
- STANDARD_GS4
- Standard_GS4
- STANDARD_GS5
- Standard_GS5
- STANDARD_GS4_8
- Standard_GS4-8
- STANDARD_GS4_4
- Standard_GS4-4
- STANDARD_GS5_16
- Standard_GS5-16
- STANDARD_GS5_8
- Standard_GS5-8
- STANDARD_H8
- Standard_H8
- STANDARD_H16
- Standard_H16
- STANDARD_H8M
- Standard_H8m
- STANDARD_H16M
- Standard_H16m
- STANDARD_H16R
- Standard_H16r
- STANDARD_H16MR
- Standard_H16mr
- STANDARD_L4S
- Standard_L4s
- STANDARD_L8S
- Standard_L8s
- STANDARD_L16S
- Standard_L16s
- STANDARD_L32S
- Standard_L32s
- STANDARD_M64S
- Standard_M64s
- STANDARD_M64MS
- Standard_M64ms
- STANDARD_M128S
- Standard_M128s
- STANDARD_M128MS
- Standard_M128ms
- STANDARD_M64_32MS
- Standard_M64-32ms
- STANDARD_M64_16MS
- Standard_M64-16ms
- STANDARD_M128_64MS
- Standard_M128-64ms
- STANDARD_M128_32MS
- Standard_M128-32ms
- STANDARD_NC6
- Standard_NC6
- STANDARD_NC12
- Standard_NC12
- STANDARD_NC24
- Standard_NC24
- STANDARD_NC24R
- Standard_NC24r
- STANDARD_NC6S_V2
- Standard_NC6s_v2
- STANDARD_NC12S_V2
- Standard_NC12s_v2
- STANDARD_NC24S_V2
- Standard_NC24s_v2
- STANDARD_NC24RS_V2
- Standard_NC24rs_v2
- STANDARD_NC6S_V3
- Standard_NC6s_v3
- STANDARD_NC12S_V3
- Standard_NC12s_v3
- STANDARD_NC24S_V3
- Standard_NC24s_v3
- STANDARD_NC24RS_V3
- Standard_NC24rs_v3
- STANDARD_ND6S
- Standard_ND6s
- STANDARD_ND12S
- Standard_ND12s
- STANDARD_ND24S
- Standard_ND24s
- STANDARD_ND24RS
- Standard_ND24rs
- STANDARD_NV6
- Standard_NV6
- STANDARD_NV12
- Standard_NV12
- STANDARD_NV24
- Standard_NV24
- "Basic_A0"
- Basic_A0
- "Basic_A1"
- Basic_A1
- "Basic_A2"
- Basic_A2
- "Basic_A3"
- Basic_A3
- "Basic_A4"
- Basic_A4
- "Standard_A0"
- Standard_A0
- "Standard_A1"
- Standard_A1
- "Standard_A2"
- Standard_A2
- "Standard_A3"
- Standard_A3
- "Standard_A4"
- Standard_A4
- "Standard_A5"
- Standard_A5
- "Standard_A6"
- Standard_A6
- "Standard_A7"
- Standard_A7
- "Standard_A8"
- Standard_A8
- "Standard_A9"
- Standard_A9
- "Standard_A10"
- Standard_A10
- "Standard_A11"
- Standard_A11
- "Standard_A1_v2" 
- Standard_A1_v2
- "Standard_A2_v2" 
- Standard_A2_v2
- "Standard_A4_v2" 
- Standard_A4_v2
- "Standard_A8_v2" 
- Standard_A8_v2
- "Standard_A2m_v2" 
- Standard_A2m_v2
- "Standard_A4m_v2" 
- Standard_A4m_v2
- "Standard_A8m_v2" 
- Standard_A8m_v2
- "Standard_B1s"
- Standard_B1s
- "Standard_B1ms"
- Standard_B1ms
- "Standard_B2s"
- Standard_B2s
- "Standard_B2ms"
- Standard_B2ms
- "Standard_B4ms"
- Standard_B4ms
- "Standard_B8ms"
- Standard_B8ms
- "Standard_D1"
- Standard_D1
- "Standard_D2"
- Standard_D2
- "Standard_D3"
- Standard_D3
- "Standard_D4"
- Standard_D4
- "Standard_D11"
- Standard_D11
- "Standard_D12"
- Standard_D12
- "Standard_D13"
- Standard_D13
- "Standard_D14"
- Standard_D14
- "Standard_D1_v2" 
- Standard_D1_v2
- "Standard_D2_v2" 
- Standard_D2_v2
- "Standard_D3_v2" 
- Standard_D3_v2
- "Standard_D4_v2" 
- Standard_D4_v2
- "Standard_D5_v2" 
- Standard_D5_v2
- "Standard_D2_v3" 
- Standard_D2_v3
- "Standard_D4_v3" 
- Standard_D4_v3
- "Standard_D8_v3" 
- Standard_D8_v3
- "Standard_D16_v3" 
- Standard_D16_v3
- "Standard_D32_v3" 
- Standard_D32_v3
- "Standard_D64_v3" 
- Standard_D64_v3
- "Standard_D2s_v3" 
- Standard_D2s_v3
- "Standard_D4s_v3" 
- Standard_D4s_v3
- "Standard_D8s_v3" 
- Standard_D8s_v3
- "Standard_D16s_v3" 
- Standard_D16s_v3
- "Standard_D32s_v3" 
- Standard_D32s_v3
- "Standard_D64s_v3" 
- Standard_D64s_v3
- "Standard_D11_v2" 
- Standard_D11_v2
- "Standard_D12_v2" 
- Standard_D12_v2
- "Standard_D13_v2" 
- Standard_D13_v2
- "Standard_D14_v2" 
- Standard_D14_v2
- "Standard_D15_v2" 
- Standard_D15_v2
- "Standard_DS1"
- Standard_DS1
- "Standard_DS2"
- Standard_DS2
- "Standard_DS3"
- Standard_DS3
- "Standard_DS4"
- Standard_DS4
- "Standard_DS11"
- Standard_DS11
- "Standard_DS12"
- Standard_DS12
- "Standard_DS13"
- Standard_DS13
- "Standard_DS14"
- Standard_DS14
- "Standard_DS1_v2" 
- Standard_DS1_v2
- "Standard_DS2_v2" 
- Standard_DS2_v2
- "Standard_DS3_v2" 
- Standard_DS3_v2
- "Standard_DS4_v2" 
- Standard_DS4_v2
- "Standard_DS5_v2" 
- Standard_DS5_v2
- "Standard_DS11_v2" 
- Standard_DS11_v2
- "Standard_DS12_v2" 
- Standard_DS12_v2
- "Standard_DS13_v2" 
- Standard_DS13_v2
- "Standard_DS14_v2" 
- Standard_DS14_v2
- "Standard_DS15_v2" 
- Standard_DS15_v2
- "Standard_DS13-4_v2" 
- Standard_DS13-4_v2
- "Standard_DS13-2_v2" 
- Standard_DS13-2_v2
- "Standard_DS14-8_v2" 
- Standard_DS14-8_v2
- "Standard_DS14-4_v2" 
- Standard_DS14-4_v2
- "Standard_E2_v3" 
- Standard_E2_v3
- "Standard_E4_v3" 
- Standard_E4_v3
- "Standard_E8_v3" 
- Standard_E8_v3
- "Standard_E16_v3" 
- Standard_E16_v3
- "Standard_E32_v3" 
- Standard_E32_v3
- "Standard_E64_v3" 
- Standard_E64_v3
- "Standard_E2s_v3" 
- Standard_E2s_v3
- "Standard_E4s_v3" 
- Standard_E4s_v3
- "Standard_E8s_v3" 
- Standard_E8s_v3
- "Standard_E16s_v3" 
- Standard_E16s_v3
- "Standard_E32s_v3" 
- Standard_E32s_v3
- "Standard_E64s_v3" 
- Standard_E64s_v3
- "Standard_E32-16_v3" 
- Standard_E32-16_v3
- "Standard_E32-8s_v3" 
- Standard_E32-8s_v3
- "Standard_E64-32s_v3" 
- Standard_E64-32s_v3
- "Standard_E64-16s_v3" 
- Standard_E64-16s_v3
- "Standard_F1"
- Standard_F1
- "Standard_F2"
- Standard_F2
- "Standard_F4"
- Standard_F4
- "Standard_F8"
- Standard_F8
- "Standard_F16"
- Standard_F16
- "Standard_F1s"
- Standard_F1s
- "Standard_F2s"
- Standard_F2s
- "Standard_F4s"
- Standard_F4s
- "Standard_F8s"
- Standard_F8s
- "Standard_F16s"
- Standard_F16s
- "Standard_F2s_v2" 
- Standard_F2s_v2
- "Standard_F4s_v2" 
- Standard_F4s_v2
- "Standard_F8s_v2" 
- Standard_F8s_v2
- "Standard_F16s_v2" 
- Standard_F16s_v2
- "Standard_F32s_v2" 
- Standard_F32s_v2
- "Standard_F64s_v2" 
- Standard_F64s_v2
- "Standard_F72s_v2" 
- Standard_F72s_v2
- "Standard_G1"
- Standard_G1
- "Standard_G2"
- Standard_G2
- "Standard_G3"
- Standard_G3
- "Standard_G4"
- Standard_G4
- "Standard_G5"
- Standard_G5
- "Standard_GS1"
- Standard_GS1
- "Standard_GS2"
- Standard_GS2
- "Standard_GS3"
- Standard_GS3
- "Standard_GS4"
- Standard_GS4
- "Standard_GS5"
- Standard_GS5
- "Standard_GS4-8"
- Standard_GS4-8
- "Standard_GS4-4"
- Standard_GS4-4
- "Standard_GS5-16"
- Standard_GS5-16
- "Standard_GS5-8"
- Standard_GS5-8
- "Standard_H8"
- Standard_H8
- "Standard_H16"
- Standard_H16
- "Standard_H8m"
- Standard_H8m
- "Standard_H16m"
- Standard_H16m
- "Standard_H16r"
- Standard_H16r
- "Standard_H16mr"
- Standard_H16mr
- "Standard_L4s"
- Standard_L4s
- "Standard_L8s"
- Standard_L8s
- "Standard_L16s"
- Standard_L16s
- "Standard_L32s"
- Standard_L32s
- "Standard_M64s"
- Standard_M64s
- "Standard_M64ms"
- Standard_M64ms
- "Standard_M128s"
- Standard_M128s
- "Standard_M128ms"
- Standard_M128ms
- "Standard_M64-32ms"
- Standard_M64-32ms
- "Standard_M64-16ms"
- Standard_M64-16ms
- "Standard_M128-64ms"
- Standard_M128-64ms
- "Standard_M128-32ms"
- Standard_M128-32ms
- "Standard_NC6"
- Standard_NC6
- "Standard_NC12"
- Standard_NC12
- "Standard_NC24"
- Standard_NC24
- "Standard_NC24r"
- Standard_NC24r
- "Standard_NC6s_v2" 
- Standard_NC6s_v2
- "Standard_NC12s_v2" 
- Standard_NC12s_v2
- "Standard_NC24s_v2" 
- Standard_NC24s_v2
- "Standard_NC24rs_v2" 
- Standard_NC24rs_v2
- "Standard_NC6s_v3" 
- Standard_NC6s_v3
- "Standard_NC12s_v3" 
- Standard_NC12s_v3
- "Standard_NC24s_v3" 
- Standard_NC24s_v3
- "Standard_NC24rs_v3" 
- Standard_NC24rs_v3
- "Standard_ND6s"
- Standard_ND6s
- "Standard_ND12s"
- Standard_ND12s
- "Standard_ND24s"
- Standard_ND24s
- "Standard_ND24rs"
- Standard_ND24rs
- "Standard_NV6"
- Standard_NV6
- "Standard_NV12"
- Standard_NV12
- "Standard_NV24"
- Standard_NV24
WinRMConfiguration, WinRMConfigurationArgs    
- Listeners
List<Pulumi.Azure Native. Compute. Inputs. Win RMListener> 
- The list of Windows Remote Management listeners
- Listeners
[]WinRMListener 
- The list of Windows Remote Management listeners
- listeners
List<WinRMListener> 
- The list of Windows Remote Management listeners
- listeners
WinRMListener[] 
- The list of Windows Remote Management listeners
- listeners
Sequence[WinRMListener] 
- The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMConfigurationResponse, WinRMConfigurationResponseArgs      
- Listeners
List<Pulumi.Azure Native. Compute. Inputs. Win RMListener Response> 
- The list of Windows Remote Management listeners
- Listeners
[]WinRMListener Response 
- The list of Windows Remote Management listeners
- listeners
List<WinRMListener Response> 
- The list of Windows Remote Management listeners
- listeners
WinRMListener Response[] 
- The list of Windows Remote Management listeners
- listeners
Sequence[WinRMListener Response] 
- The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMListener, WinRMListenerArgs    
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
Pulumi.Azure Native. Compute. Protocol Types 
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
ProtocolTypes 
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
ProtocolTypes 
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
ProtocolTypes 
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate_url str
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
ProtocolTypes 
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol "Http" | "Https"
- Specifies the protocol of WinRM listener. Possible values are: http, https.
WinRMListenerResponse, WinRMListenerResponseArgs      
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- CertificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl string
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol string
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificate_url str
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol str
- Specifies the protocol of WinRM listener. Possible values are: http, https.
- certificateUrl String
- This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http, https.
WindowsConfiguration, WindowsConfigurationArgs    
- AdditionalUnattend List<Pulumi.Content Azure Native. Compute. Inputs. Additional Unattend Content> 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- EnableAutomatic boolUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- PatchSettings Pulumi.Azure Native. Compute. Inputs. Patch Settings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- TimeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- WinRM Pulumi.Azure Native. Compute. Inputs. Win RMConfiguration 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- AdditionalUnattend []AdditionalContent Unattend Content 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- EnableAutomatic boolUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- PatchSettings PatchSettings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- TimeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- WinRM WinRMConfiguration 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend List<AdditionalContent Unattend Content> 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic BooleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings PatchSettings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone String
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM WinRMConfiguration 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend AdditionalContent Unattend Content[] 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic booleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent booleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings PatchSettings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM WinRMConfiguration 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_unattend_ Sequence[Additionalcontent Unattend Content] 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_automatic_ boolupdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable_vm_ boolagent_ platform_ updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch_settings PatchSettings 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_vm_ boolagent 
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_zone str
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_rm WinRMConfiguration 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend List<Property Map>Content 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic BooleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings Property Map
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone String
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM Property Map
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsConfigurationResponse, WindowsConfigurationResponseArgs      
- AdditionalUnattend List<Pulumi.Content Azure Native. Compute. Inputs. Additional Unattend Content Response> 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- EnableAutomatic boolUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- PatchSettings Pulumi.Azure Native. Compute. Inputs. Patch Settings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- TimeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- WinRM Pulumi.Azure Native. Compute. Inputs. Win RMConfiguration Response 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- AdditionalUnattend []AdditionalContent Unattend Content Response 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- EnableAutomatic boolUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- EnableVMAgent boolPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- PatchSettings PatchSettings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- ProvisionVMAgent bool
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- TimeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- WinRM WinRMConfiguration Response 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend List<AdditionalContent Unattend Content Response> 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic BooleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings PatchSettings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone String
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM WinRMConfiguration Response 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend AdditionalContent Unattend Content Response[] 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic booleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent booleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings PatchSettings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone string
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM WinRMConfiguration Response 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_unattend_ Sequence[Additionalcontent Unattend Content Response] 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_automatic_ boolupdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enable_vm_ boolagent_ platform_ updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patch_settings PatchSettings Response 
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_vm_ boolagent 
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_zone str
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_rm WinRMConfiguration Response 
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additionalUnattend List<Property Map>Content 
- Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enableAutomatic BooleanUpdates 
- Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- enableVMAgent BooleanPlatform Updates 
- Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false.
- patchSettings Property Map
- [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provisionVMAgent Boolean
- Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- timeZone String
- Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- winRM Property Map
- Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsPatchAssessmentMode, WindowsPatchAssessmentModeArgs        
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- WindowsPatch Assessment Mode Image Default 
- ImageDefault
- WindowsPatch Assessment Mode Automatic By Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- ImageDefault 
- ImageDefault
- AutomaticBy Platform 
- AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "ImageDefault" 
- ImageDefault
- "AutomaticBy Platform" 
- AutomaticByPlatform
WindowsVMGuestPatchAutomaticByPlatformRebootSetting, WindowsVMGuestPatchAutomaticByPlatformRebootSettingArgs                
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- WindowsVMGuest Patch Automatic By Platform Reboot Setting Unknown 
- Unknown
- WindowsVMGuest Patch Automatic By Platform Reboot Setting If Required 
- IfRequired
- WindowsVMGuest Patch Automatic By Platform Reboot Setting Never 
- Never
- WindowsVMGuest Patch Automatic By Platform Reboot Setting Always 
- Always
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- Unknown
- Unknown
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- UNKNOWN
- Unknown
- IF_REQUIRED
- IfRequired
- NEVER
- Never
- ALWAYS
- Always
- "Unknown"
- Unknown
- "IfRequired" 
- IfRequired
- "Never"
- Never
- "Always"
- Always
WindowsVMGuestPatchAutomaticByPlatformSettings, WindowsVMGuestPatchAutomaticByPlatformSettingsArgs              
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string | Pulumi.Azure Native. Compute. Windows VMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string | WindowsVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String | WindowsVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform booleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting string | WindowsVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_platform_ boolsafety_ checks_ on_ user_ schedule 
- Enables customer to schedule patching without accidental upgrades
- reboot_setting str | WindowsVMGuest Patch Automatic By Platform Reboot Setting 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String | "Unknown" | "IfRequired" | "Never" | "Always" 
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
WindowsVMGuestPatchAutomaticByPlatformSettingsResponse, WindowsVMGuestPatchAutomaticByPlatformSettingsResponseArgs                
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- BypassPlatform boolSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- RebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform booleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting string
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypass_platform_ boolsafety_ checks_ on_ user_ schedule 
- Enables customer to schedule patching without accidental upgrades
- reboot_setting str
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
- bypassPlatform BooleanSafety Checks On User Schedule 
- Enables customer to schedule patching without accidental upgrades
- rebootSetting String
- Specifies the reboot setting for all AutomaticByPlatform patch installation operations.
WindowsVMGuestPatchMode, WindowsVMGuestPatchModeArgs        
- Manual
- Manual
- AutomaticBy OS 
- AutomaticByOS
- AutomaticBy Platform 
- AutomaticByPlatform
- WindowsVMGuest Patch Mode Manual 
- Manual
- WindowsVMGuest Patch Mode Automatic By OS 
- AutomaticByOS
- WindowsVMGuest Patch Mode Automatic By Platform 
- AutomaticByPlatform
- Manual
- Manual
- AutomaticBy OS 
- AutomaticByOS
- AutomaticBy Platform 
- AutomaticByPlatform
- Manual
- Manual
- AutomaticBy OS 
- AutomaticByOS
- AutomaticBy Platform 
- AutomaticByPlatform
- MANUAL
- Manual
- AUTOMATIC_BY_OS
- AutomaticByOS
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "Manual"
- Manual
- "AutomaticBy OS" 
- AutomaticByOS
- "AutomaticBy Platform" 
- AutomaticByPlatform
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:VirtualMachine myVM /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0