azure-native.azurestackhci.VirtualMachineInstance
Explore with Pulumi AI
The virtual machine instance resource definition. Azure REST API version: 2023-07-01-preview.
Other available API versions: 2023-09-01-preview, 2024-01-01, 2024-02-01-preview, 2024-05-01-preview, 2024-07-15-preview, 2024-08-01-preview.
Example Usage
PutVirtualMachineInstanceWithGalleryImage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachineInstance = new AzureNative.AzureStackHCI.VirtualMachineInstance("virtualMachineInstance", new()
    {
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
        },
        HardwareProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesHardwareProfileArgs
        {
            VmSize = AzureNative.AzureStackHCI.VmSizeEnum.Default,
        },
        NetworkProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkInterfacesArgs
                {
                    Id = "test-nic",
                },
            },
        },
        OsProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsProfileArgs
        {
            AdminPassword = "password",
            AdminUsername = "localadmin",
            ComputerName = "luamaster",
        },
        ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
        SecurityProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesSecurityProfileArgs
        {
            EnableTPM = true,
            UefiSettings = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesUefiSettingsArgs
            {
                SecureBootEnabled = true,
            },
        },
        StorageProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesStorageProfileArgs
        {
            ImageReference = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesImageReferenceArgs
            {
                Id = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
            },
            VmConfigStoragePathId = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
        },
    });
});
package main
import (
	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewVirtualMachineInstance(ctx, "virtualMachineInstance", &azurestackhci.VirtualMachineInstanceArgs{
			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
			},
			HardwareProfile: &azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs{
				VmSize: pulumi.String(azurestackhci.VmSizeEnumDefault),
			},
			NetworkProfile: &azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs{
				NetworkInterfaces: azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArray{
					&azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs{
						Id: pulumi.String("test-nic"),
					},
				},
			},
			OsProfile: &azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs{
				AdminPassword: pulumi.String("password"),
				AdminUsername: pulumi.String("localadmin"),
				ComputerName:  pulumi.String("luamaster"),
			},
			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM"),
			SecurityProfile: &azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs{
				EnableTPM: pulumi.Bool(true),
				UefiSettings: &azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
				},
			},
			StorageProfile: &azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs{
				ImageReference: &azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs{
					Id: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image"),
				},
				VmConfigStoragePathId: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container"),
			},
		})
		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.azurestackhci.VirtualMachineInstance;
import com.pulumi.azurenative.azurestackhci.VirtualMachineInstanceArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesHardwareProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesNetworkProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesOsProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesSecurityProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesUefiSettingsArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesStorageProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesImageReferenceArgs;
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 virtualMachineInstance = new VirtualMachineInstance("virtualMachineInstance", VirtualMachineInstanceArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                .type("CustomLocation")
                .build())
            .hardwareProfile(VirtualMachineInstancePropertiesHardwareProfileArgs.builder()
                .vmSize("Default")
                .build())
            .networkProfile(VirtualMachineInstancePropertiesNetworkProfileArgs.builder()
                .networkInterfaces(VirtualMachineInstancePropertiesNetworkInterfacesArgs.builder()
                    .id("test-nic")
                    .build())
                .build())
            .osProfile(VirtualMachineInstancePropertiesOsProfileArgs.builder()
                .adminPassword("password")
                .adminUsername("localadmin")
                .computerName("luamaster")
                .build())
            .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM")
            .securityProfile(VirtualMachineInstancePropertiesSecurityProfileArgs.builder()
                .enableTPM(true)
                .uefiSettings(VirtualMachineInstancePropertiesUefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .build())
                .build())
            .storageProfile(VirtualMachineInstancePropertiesStorageProfileArgs.builder()
                .imageReference(VirtualMachineInstancePropertiesImageReferenceArgs.builder()
                    .id("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image")
                    .build())
                .vmConfigStoragePathId("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container")
                .build())
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_instance = azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance",
    extended_location={
        "name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    hardware_profile={
        "vm_size": azure_native.azurestackhci.VmSizeEnum.DEFAULT,
    },
    network_profile={
        "network_interfaces": [{
            "id": "test-nic",
        }],
    },
    os_profile={
        "admin_password": "password",
        "admin_username": "localadmin",
        "computer_name": "luamaster",
    },
    resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    security_profile={
        "enable_tpm": True,
        "uefi_settings": {
            "secure_boot_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
        },
        "vm_config_storage_path_id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachineInstance = new azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance", {
    extendedLocation: {
        name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
    },
    hardwareProfile: {
        vmSize: azure_native.azurestackhci.VmSizeEnum.Default,
    },
    networkProfile: {
        networkInterfaces: [{
            id: "test-nic",
        }],
    },
    osProfile: {
        adminPassword: "password",
        adminUsername: "localadmin",
        computerName: "luamaster",
    },
    resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    securityProfile: {
        enableTPM: true,
        uefiSettings: {
            secureBootEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            id: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
        },
        vmConfigStoragePathId: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    },
});
resources:
  virtualMachineInstance:
    type: azure-native:azurestackhci:VirtualMachineInstance
    properties:
      extendedLocation:
        name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
        type: CustomLocation
      hardwareProfile:
        vmSize: Default
      networkProfile:
        networkInterfaces:
          - id: test-nic
      osProfile:
        adminPassword: password
        adminUsername: localadmin
        computerName: luamaster
      resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM
      securityProfile:
        enableTPM: true
        uefiSettings:
          secureBootEnabled: true
      storageProfile:
        imageReference:
          id: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image
        vmConfigStoragePathId: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container
PutVirtualMachineInstanceWithMarketplaceGalleryImage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachineInstance = new AzureNative.AzureStackHCI.VirtualMachineInstance("virtualMachineInstance", new()
    {
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
        },
        HardwareProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesHardwareProfileArgs
        {
            VmSize = AzureNative.AzureStackHCI.VmSizeEnum.Default,
        },
        NetworkProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkInterfacesArgs
                {
                    Id = "test-nic",
                },
            },
        },
        OsProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsProfileArgs
        {
            AdminPassword = "password",
            AdminUsername = "localadmin",
            ComputerName = "luamaster",
        },
        ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
        SecurityProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesSecurityProfileArgs
        {
            EnableTPM = true,
            UefiSettings = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesUefiSettingsArgs
            {
                SecureBootEnabled = true,
            },
        },
        StorageProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesStorageProfileArgs
        {
            ImageReference = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesImageReferenceArgs
            {
                Id = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image",
            },
            VmConfigStoragePathId = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
        },
    });
});
package main
import (
	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewVirtualMachineInstance(ctx, "virtualMachineInstance", &azurestackhci.VirtualMachineInstanceArgs{
			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
			},
			HardwareProfile: &azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs{
				VmSize: pulumi.String(azurestackhci.VmSizeEnumDefault),
			},
			NetworkProfile: &azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs{
				NetworkInterfaces: azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArray{
					&azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs{
						Id: pulumi.String("test-nic"),
					},
				},
			},
			OsProfile: &azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs{
				AdminPassword: pulumi.String("password"),
				AdminUsername: pulumi.String("localadmin"),
				ComputerName:  pulumi.String("luamaster"),
			},
			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM"),
			SecurityProfile: &azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs{
				EnableTPM: pulumi.Bool(true),
				UefiSettings: &azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
				},
			},
			StorageProfile: &azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs{
				ImageReference: &azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs{
					Id: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image"),
				},
				VmConfigStoragePathId: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container"),
			},
		})
		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.azurestackhci.VirtualMachineInstance;
import com.pulumi.azurenative.azurestackhci.VirtualMachineInstanceArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesHardwareProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesNetworkProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesOsProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesSecurityProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesUefiSettingsArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesStorageProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesImageReferenceArgs;
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 virtualMachineInstance = new VirtualMachineInstance("virtualMachineInstance", VirtualMachineInstanceArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                .type("CustomLocation")
                .build())
            .hardwareProfile(VirtualMachineInstancePropertiesHardwareProfileArgs.builder()
                .vmSize("Default")
                .build())
            .networkProfile(VirtualMachineInstancePropertiesNetworkProfileArgs.builder()
                .networkInterfaces(VirtualMachineInstancePropertiesNetworkInterfacesArgs.builder()
                    .id("test-nic")
                    .build())
                .build())
            .osProfile(VirtualMachineInstancePropertiesOsProfileArgs.builder()
                .adminPassword("password")
                .adminUsername("localadmin")
                .computerName("luamaster")
                .build())
            .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM")
            .securityProfile(VirtualMachineInstancePropertiesSecurityProfileArgs.builder()
                .enableTPM(true)
                .uefiSettings(VirtualMachineInstancePropertiesUefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .build())
                .build())
            .storageProfile(VirtualMachineInstancePropertiesStorageProfileArgs.builder()
                .imageReference(VirtualMachineInstancePropertiesImageReferenceArgs.builder()
                    .id("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image")
                    .build())
                .vmConfigStoragePathId("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container")
                .build())
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_instance = azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance",
    extended_location={
        "name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    hardware_profile={
        "vm_size": azure_native.azurestackhci.VmSizeEnum.DEFAULT,
    },
    network_profile={
        "network_interfaces": [{
            "id": "test-nic",
        }],
    },
    os_profile={
        "admin_password": "password",
        "admin_username": "localadmin",
        "computer_name": "luamaster",
    },
    resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    security_profile={
        "enable_tpm": True,
        "uefi_settings": {
            "secure_boot_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image",
        },
        "vm_config_storage_path_id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachineInstance = new azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance", {
    extendedLocation: {
        name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
    },
    hardwareProfile: {
        vmSize: azure_native.azurestackhci.VmSizeEnum.Default,
    },
    networkProfile: {
        networkInterfaces: [{
            id: "test-nic",
        }],
    },
    osProfile: {
        adminPassword: "password",
        adminUsername: "localadmin",
        computerName: "luamaster",
    },
    resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    securityProfile: {
        enableTPM: true,
        uefiSettings: {
            secureBootEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            id: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image",
        },
        vmConfigStoragePathId: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    },
});
resources:
  virtualMachineInstance:
    type: azure-native:azurestackhci:VirtualMachineInstance
    properties:
      extendedLocation:
        name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
        type: CustomLocation
      hardwareProfile:
        vmSize: Default
      networkProfile:
        networkInterfaces:
          - id: test-nic
      osProfile:
        adminPassword: password
        adminUsername: localadmin
        computerName: luamaster
      resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM
      securityProfile:
        enableTPM: true
        uefiSettings:
          secureBootEnabled: true
      storageProfile:
        imageReference:
          id: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/test-marketplace-gallery-image
        vmConfigStoragePathId: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container
PutVirtualMachineInstanceWithOsDisk
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachineInstance = new AzureNative.AzureStackHCI.VirtualMachineInstance("virtualMachineInstance", new()
    {
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
        },
        HardwareProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesHardwareProfileArgs
        {
            VmSize = AzureNative.AzureStackHCI.VmSizeEnum.Default,
        },
        NetworkProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkInterfacesArgs
                {
                    Id = "test-nic",
                },
            },
        },
        ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
        SecurityProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesSecurityProfileArgs
        {
            EnableTPM = true,
            UefiSettings = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesUefiSettingsArgs
            {
                SecureBootEnabled = true,
            },
        },
        StorageProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesStorageProfileArgs
        {
            OsDisk = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsDiskArgs
            {
                Id = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd",
            },
            VmConfigStoragePathId = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
        },
    });
});
package main
import (
	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewVirtualMachineInstance(ctx, "virtualMachineInstance", &azurestackhci.VirtualMachineInstanceArgs{
			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
			},
			HardwareProfile: &azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs{
				VmSize: pulumi.String(azurestackhci.VmSizeEnumDefault),
			},
			NetworkProfile: &azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs{
				NetworkInterfaces: azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArray{
					&azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs{
						Id: pulumi.String("test-nic"),
					},
				},
			},
			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM"),
			SecurityProfile: &azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs{
				EnableTPM: pulumi.Bool(true),
				UefiSettings: &azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
				},
			},
			StorageProfile: &azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs{
				OsDisk: &azurestackhci.VirtualMachineInstancePropertiesOsDiskArgs{
					Id: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd"),
				},
				VmConfigStoragePathId: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container"),
			},
		})
		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.azurestackhci.VirtualMachineInstance;
import com.pulumi.azurenative.azurestackhci.VirtualMachineInstanceArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesHardwareProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesNetworkProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesSecurityProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesUefiSettingsArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesStorageProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesOsDiskArgs;
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 virtualMachineInstance = new VirtualMachineInstance("virtualMachineInstance", VirtualMachineInstanceArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                .type("CustomLocation")
                .build())
            .hardwareProfile(VirtualMachineInstancePropertiesHardwareProfileArgs.builder()
                .vmSize("Default")
                .build())
            .networkProfile(VirtualMachineInstancePropertiesNetworkProfileArgs.builder()
                .networkInterfaces(VirtualMachineInstancePropertiesNetworkInterfacesArgs.builder()
                    .id("test-nic")
                    .build())
                .build())
            .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM")
            .securityProfile(VirtualMachineInstancePropertiesSecurityProfileArgs.builder()
                .enableTPM(true)
                .uefiSettings(VirtualMachineInstancePropertiesUefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .build())
                .build())
            .storageProfile(VirtualMachineInstancePropertiesStorageProfileArgs.builder()
                .osDisk(VirtualMachineInstancePropertiesOsDiskArgs.builder()
                    .id("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd")
                    .build())
                .vmConfigStoragePathId("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container")
                .build())
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_instance = azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance",
    extended_location={
        "name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    hardware_profile={
        "vm_size": azure_native.azurestackhci.VmSizeEnum.DEFAULT,
    },
    network_profile={
        "network_interfaces": [{
            "id": "test-nic",
        }],
    },
    resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    security_profile={
        "enable_tpm": True,
        "uefi_settings": {
            "secure_boot_enabled": True,
        },
    },
    storage_profile={
        "os_disk": {
            "id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd",
        },
        "vm_config_storage_path_id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachineInstance = new azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance", {
    extendedLocation: {
        name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
    },
    hardwareProfile: {
        vmSize: azure_native.azurestackhci.VmSizeEnum.Default,
    },
    networkProfile: {
        networkInterfaces: [{
            id: "test-nic",
        }],
    },
    resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    securityProfile: {
        enableTPM: true,
        uefiSettings: {
            secureBootEnabled: true,
        },
    },
    storageProfile: {
        osDisk: {
            id: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd",
        },
        vmConfigStoragePathId: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    },
});
resources:
  virtualMachineInstance:
    type: azure-native:azurestackhci:VirtualMachineInstance
    properties:
      extendedLocation:
        name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
        type: CustomLocation
      hardwareProfile:
        vmSize: Default
      networkProfile:
        networkInterfaces:
          - id: test-nic
      resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM
      securityProfile:
        enableTPM: true
        uefiSettings:
          secureBootEnabled: true
      storageProfile:
        osDisk:
          id: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/virtualHardDisks/test-vhd
        vmConfigStoragePathId: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container
PutVirtualMachineInstanceWithVMConfigAgent
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var virtualMachineInstance = new AzureNative.AzureStackHCI.VirtualMachineInstance("virtualMachineInstance", new()
    {
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
        },
        HardwareProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesHardwareProfileArgs
        {
            VmSize = AzureNative.AzureStackHCI.VmSizeEnum.Default,
        },
        NetworkProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkProfileArgs
        {
            NetworkInterfaces = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkInterfacesArgs
                {
                    Id = "test-nic",
                },
            },
        },
        OsProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsProfileArgs
        {
            AdminPassword = "password",
            AdminUsername = "localadmin",
            ComputerName = "luamaster",
            WindowsConfiguration = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesWindowsConfigurationArgs
            {
                ProvisionVMConfigAgent = true,
            },
        },
        ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
        SecurityProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesSecurityProfileArgs
        {
            EnableTPM = true,
            UefiSettings = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesUefiSettingsArgs
            {
                SecureBootEnabled = true,
            },
        },
        StorageProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesStorageProfileArgs
        {
            ImageReference = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesImageReferenceArgs
            {
                Id = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
            },
            VmConfigStoragePathId = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
        },
    });
});
package main
import (
	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewVirtualMachineInstance(ctx, "virtualMachineInstance", &azurestackhci.VirtualMachineInstanceArgs{
			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
			},
			HardwareProfile: &azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs{
				VmSize: pulumi.String(azurestackhci.VmSizeEnumDefault),
			},
			NetworkProfile: &azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs{
				NetworkInterfaces: azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArray{
					&azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs{
						Id: pulumi.String("test-nic"),
					},
				},
			},
			OsProfile: &azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs{
				AdminPassword: pulumi.String("password"),
				AdminUsername: pulumi.String("localadmin"),
				ComputerName:  pulumi.String("luamaster"),
				WindowsConfiguration: &azurestackhci.VirtualMachineInstancePropertiesWindowsConfigurationArgs{
					ProvisionVMConfigAgent: pulumi.Bool(true),
				},
			},
			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM"),
			SecurityProfile: &azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs{
				EnableTPM: pulumi.Bool(true),
				UefiSettings: &azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs{
					SecureBootEnabled: pulumi.Bool(true),
				},
			},
			StorageProfile: &azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs{
				ImageReference: &azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs{
					Id: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image"),
				},
				VmConfigStoragePathId: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container"),
			},
		})
		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.azurestackhci.VirtualMachineInstance;
import com.pulumi.azurenative.azurestackhci.VirtualMachineInstanceArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesHardwareProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesNetworkProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesOsProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesWindowsConfigurationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesSecurityProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesUefiSettingsArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesStorageProfileArgs;
import com.pulumi.azurenative.azurestackhci.inputs.VirtualMachineInstancePropertiesImageReferenceArgs;
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 virtualMachineInstance = new VirtualMachineInstance("virtualMachineInstance", VirtualMachineInstanceArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                .type("CustomLocation")
                .build())
            .hardwareProfile(VirtualMachineInstancePropertiesHardwareProfileArgs.builder()
                .vmSize("Default")
                .build())
            .networkProfile(VirtualMachineInstancePropertiesNetworkProfileArgs.builder()
                .networkInterfaces(VirtualMachineInstancePropertiesNetworkInterfacesArgs.builder()
                    .id("test-nic")
                    .build())
                .build())
            .osProfile(VirtualMachineInstancePropertiesOsProfileArgs.builder()
                .adminPassword("password")
                .adminUsername("localadmin")
                .computerName("luamaster")
                .windowsConfiguration(VirtualMachineInstancePropertiesWindowsConfigurationArgs.builder()
                    .provisionVMConfigAgent(true)
                    .build())
                .build())
            .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM")
            .securityProfile(VirtualMachineInstancePropertiesSecurityProfileArgs.builder()
                .enableTPM(true)
                .uefiSettings(VirtualMachineInstancePropertiesUefiSettingsArgs.builder()
                    .secureBootEnabled(true)
                    .build())
                .build())
            .storageProfile(VirtualMachineInstancePropertiesStorageProfileArgs.builder()
                .imageReference(VirtualMachineInstancePropertiesImageReferenceArgs.builder()
                    .id("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image")
                    .build())
                .vmConfigStoragePathId("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container")
                .build())
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_instance = azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance",
    extended_location={
        "name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    hardware_profile={
        "vm_size": azure_native.azurestackhci.VmSizeEnum.DEFAULT,
    },
    network_profile={
        "network_interfaces": [{
            "id": "test-nic",
        }],
    },
    os_profile={
        "admin_password": "password",
        "admin_username": "localadmin",
        "computer_name": "luamaster",
        "windows_configuration": {
            "provision_vm_config_agent": True,
        },
    },
    resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    security_profile={
        "enable_tpm": True,
        "uefi_settings": {
            "secure_boot_enabled": True,
        },
    },
    storage_profile={
        "image_reference": {
            "id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
        },
        "vm_config_storage_path_id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachineInstance = new azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstance", {
    extendedLocation: {
        name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
        type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
    },
    hardwareProfile: {
        vmSize: azure_native.azurestackhci.VmSizeEnum.Default,
    },
    networkProfile: {
        networkInterfaces: [{
            id: "test-nic",
        }],
    },
    osProfile: {
        adminPassword: "password",
        adminUsername: "localadmin",
        computerName: "luamaster",
        windowsConfiguration: {
            provisionVMConfigAgent: true,
        },
    },
    resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
    securityProfile: {
        enableTPM: true,
        uefiSettings: {
            secureBootEnabled: true,
        },
    },
    storageProfile: {
        imageReference: {
            id: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image",
        },
        vmConfigStoragePathId: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container",
    },
});
resources:
  virtualMachineInstance:
    type: azure-native:azurestackhci:VirtualMachineInstance
    properties:
      extendedLocation:
        name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
        type: CustomLocation
      hardwareProfile:
        vmSize: Default
      networkProfile:
        networkInterfaces:
          - id: test-nic
      osProfile:
        adminPassword: password
        adminUsername: localadmin
        computerName: luamaster
        windowsConfiguration:
          provisionVMConfigAgent: true
      resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM
      securityProfile:
        enableTPM: true
        uefiSettings:
          secureBootEnabled: true
      storageProfile:
        imageReference:
          id: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/galleryImages/test-gallery-image
        vmConfigStoragePathId: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.AzureStackHCI/storageContainers/test-container
Create VirtualMachineInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualMachineInstance(name: string, args: VirtualMachineInstanceArgs, opts?: CustomResourceOptions);@overload
def VirtualMachineInstance(resource_name: str,
                           args: VirtualMachineInstanceArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def VirtualMachineInstance(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_uri: Optional[str] = None,
                           extended_location: Optional[ExtendedLocationArgs] = None,
                           hardware_profile: Optional[VirtualMachineInstancePropertiesHardwareProfileArgs] = None,
                           identity: Optional[IdentityArgs] = None,
                           network_profile: Optional[VirtualMachineInstancePropertiesNetworkProfileArgs] = None,
                           os_profile: Optional[VirtualMachineInstancePropertiesOsProfileArgs] = None,
                           resource_uid: Optional[str] = None,
                           security_profile: Optional[VirtualMachineInstancePropertiesSecurityProfileArgs] = None,
                           storage_profile: Optional[VirtualMachineInstancePropertiesStorageProfileArgs] = None)func NewVirtualMachineInstance(ctx *Context, name string, args VirtualMachineInstanceArgs, opts ...ResourceOption) (*VirtualMachineInstance, error)public VirtualMachineInstance(string name, VirtualMachineInstanceArgs args, CustomResourceOptions? opts = null)
public VirtualMachineInstance(String name, VirtualMachineInstanceArgs args)
public VirtualMachineInstance(String name, VirtualMachineInstanceArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:VirtualMachineInstance
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 VirtualMachineInstanceArgs
- 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 VirtualMachineInstanceArgs
- 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 VirtualMachineInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualMachineInstanceArgs
- 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 virtualMachineInstanceResource = new AzureNative.AzureStackHCI.VirtualMachineInstance("virtualMachineInstanceResource", new()
{
    ResourceUri = "string",
    ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    HardwareProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesHardwareProfileArgs
    {
        DynamicMemoryConfig = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesDynamicMemoryConfigArgs
        {
            MaximumMemoryMB = 0,
            MinimumMemoryMB = 0,
            TargetMemoryBuffer = 0,
        },
        MemoryMB = 0,
        Processors = 0,
        VmSize = "string",
    },
    Identity = new AzureNative.AzureStackHCI.Inputs.IdentityArgs
    {
        Type = AzureNative.AzureStackHCI.ResourceIdentityType.SystemAssigned,
    },
    NetworkProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkProfileArgs
    {
        NetworkInterfaces = new[]
        {
            new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesNetworkInterfacesArgs
            {
                Id = "string",
            },
        },
    },
    OsProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsProfileArgs
    {
        AdminPassword = "string",
        AdminUsername = "string",
        ComputerName = "string",
        LinuxConfiguration = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesLinuxConfigurationArgs
        {
            DisablePasswordAuthentication = false,
            ProvisionVMAgent = false,
            ProvisionVMConfigAgent = false,
            Ssh = new AzureNative.AzureStackHCI.Inputs.SshConfigurationArgs
            {
                PublicKeys = new[]
                {
                    new AzureNative.AzureStackHCI.Inputs.SshPublicKeyArgs
                    {
                        KeyData = "string",
                        Path = "string",
                    },
                },
            },
        },
        WindowsConfiguration = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesWindowsConfigurationArgs
        {
            EnableAutomaticUpdates = false,
            ProvisionVMAgent = false,
            ProvisionVMConfigAgent = false,
            Ssh = new AzureNative.AzureStackHCI.Inputs.SshConfigurationArgs
            {
                PublicKeys = new[]
                {
                    new AzureNative.AzureStackHCI.Inputs.SshPublicKeyArgs
                    {
                        KeyData = "string",
                        Path = "string",
                    },
                },
            },
            TimeZone = "string",
        },
    },
    ResourceUid = "string",
    SecurityProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesSecurityProfileArgs
    {
        EnableTPM = false,
        SecurityType = "string",
        UefiSettings = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesUefiSettingsArgs
        {
            SecureBootEnabled = false,
        },
    },
    StorageProfile = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesStorageProfileArgs
    {
        DataDisks = new[]
        {
            new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesDataDisksArgs
            {
                Id = "string",
            },
        },
        ImageReference = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesImageReferenceArgs
        {
            Id = "string",
        },
        OsDisk = new AzureNative.AzureStackHCI.Inputs.VirtualMachineInstancePropertiesOsDiskArgs
        {
            Id = "string",
            OsType = AzureNative.AzureStackHCI.OperatingSystemTypes.Linux,
        },
        VmConfigStoragePathId = "string",
    },
});
example, err := azurestackhci.NewVirtualMachineInstance(ctx, "virtualMachineInstanceResource", &azurestackhci.VirtualMachineInstanceArgs{
	ResourceUri: pulumi.String("string"),
	ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	HardwareProfile: &azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs{
		DynamicMemoryConfig: &azurestackhci.VirtualMachineInstancePropertiesDynamicMemoryConfigArgs{
			MaximumMemoryMB:    pulumi.Float64(0),
			MinimumMemoryMB:    pulumi.Float64(0),
			TargetMemoryBuffer: pulumi.Int(0),
		},
		MemoryMB:   pulumi.Float64(0),
		Processors: pulumi.Int(0),
		VmSize:     pulumi.String("string"),
	},
	Identity: &azurestackhci.IdentityArgs{
		Type: azurestackhci.ResourceIdentityTypeSystemAssigned,
	},
	NetworkProfile: &azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs{
		NetworkInterfaces: azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArray{
			&azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs{
				Id: pulumi.String("string"),
			},
		},
	},
	OsProfile: &azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs{
		AdminPassword: pulumi.String("string"),
		AdminUsername: pulumi.String("string"),
		ComputerName:  pulumi.String("string"),
		LinuxConfiguration: &azurestackhci.VirtualMachineInstancePropertiesLinuxConfigurationArgs{
			DisablePasswordAuthentication: pulumi.Bool(false),
			ProvisionVMAgent:              pulumi.Bool(false),
			ProvisionVMConfigAgent:        pulumi.Bool(false),
			Ssh: &azurestackhci.SshConfigurationArgs{
				PublicKeys: azurestackhci.SshPublicKeyArray{
					&azurestackhci.SshPublicKeyArgs{
						KeyData: pulumi.String("string"),
						Path:    pulumi.String("string"),
					},
				},
			},
		},
		WindowsConfiguration: &azurestackhci.VirtualMachineInstancePropertiesWindowsConfigurationArgs{
			EnableAutomaticUpdates: pulumi.Bool(false),
			ProvisionVMAgent:       pulumi.Bool(false),
			ProvisionVMConfigAgent: pulumi.Bool(false),
			Ssh: &azurestackhci.SshConfigurationArgs{
				PublicKeys: azurestackhci.SshPublicKeyArray{
					&azurestackhci.SshPublicKeyArgs{
						KeyData: pulumi.String("string"),
						Path:    pulumi.String("string"),
					},
				},
			},
			TimeZone: pulumi.String("string"),
		},
	},
	ResourceUid: pulumi.String("string"),
	SecurityProfile: &azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs{
		EnableTPM:    pulumi.Bool(false),
		SecurityType: pulumi.String("string"),
		UefiSettings: &azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs{
			SecureBootEnabled: pulumi.Bool(false),
		},
	},
	StorageProfile: &azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs{
		DataDisks: azurestackhci.VirtualMachineInstancePropertiesDataDisksArray{
			&azurestackhci.VirtualMachineInstancePropertiesDataDisksArgs{
				Id: pulumi.String("string"),
			},
		},
		ImageReference: &azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs{
			Id: pulumi.String("string"),
		},
		OsDisk: &azurestackhci.VirtualMachineInstancePropertiesOsDiskArgs{
			Id:     pulumi.String("string"),
			OsType: azurestackhci.OperatingSystemTypesLinux,
		},
		VmConfigStoragePathId: pulumi.String("string"),
	},
})
var virtualMachineInstanceResource = new VirtualMachineInstance("virtualMachineInstanceResource", VirtualMachineInstanceArgs.builder()
    .resourceUri("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .hardwareProfile(VirtualMachineInstancePropertiesHardwareProfileArgs.builder()
        .dynamicMemoryConfig(VirtualMachineInstancePropertiesDynamicMemoryConfigArgs.builder()
            .maximumMemoryMB(0)
            .minimumMemoryMB(0)
            .targetMemoryBuffer(0)
            .build())
        .memoryMB(0)
        .processors(0)
        .vmSize("string")
        .build())
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .build())
    .networkProfile(VirtualMachineInstancePropertiesNetworkProfileArgs.builder()
        .networkInterfaces(VirtualMachineInstancePropertiesNetworkInterfacesArgs.builder()
            .id("string")
            .build())
        .build())
    .osProfile(VirtualMachineInstancePropertiesOsProfileArgs.builder()
        .adminPassword("string")
        .adminUsername("string")
        .computerName("string")
        .linuxConfiguration(VirtualMachineInstancePropertiesLinuxConfigurationArgs.builder()
            .disablePasswordAuthentication(false)
            .provisionVMAgent(false)
            .provisionVMConfigAgent(false)
            .ssh(SshConfigurationArgs.builder()
                .publicKeys(SshPublicKeyArgs.builder()
                    .keyData("string")
                    .path("string")
                    .build())
                .build())
            .build())
        .windowsConfiguration(VirtualMachineInstancePropertiesWindowsConfigurationArgs.builder()
            .enableAutomaticUpdates(false)
            .provisionVMAgent(false)
            .provisionVMConfigAgent(false)
            .ssh(SshConfigurationArgs.builder()
                .publicKeys(SshPublicKeyArgs.builder()
                    .keyData("string")
                    .path("string")
                    .build())
                .build())
            .timeZone("string")
            .build())
        .build())
    .resourceUid("string")
    .securityProfile(VirtualMachineInstancePropertiesSecurityProfileArgs.builder()
        .enableTPM(false)
        .securityType("string")
        .uefiSettings(VirtualMachineInstancePropertiesUefiSettingsArgs.builder()
            .secureBootEnabled(false)
            .build())
        .build())
    .storageProfile(VirtualMachineInstancePropertiesStorageProfileArgs.builder()
        .dataDisks(VirtualMachineInstancePropertiesDataDisksArgs.builder()
            .id("string")
            .build())
        .imageReference(VirtualMachineInstancePropertiesImageReferenceArgs.builder()
            .id("string")
            .build())
        .osDisk(VirtualMachineInstancePropertiesOsDiskArgs.builder()
            .id("string")
            .osType("Linux")
            .build())
        .vmConfigStoragePathId("string")
        .build())
    .build());
virtual_machine_instance_resource = azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstanceResource",
    resource_uri="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    hardware_profile={
        "dynamic_memory_config": {
            "maximum_memory_mb": 0,
            "minimum_memory_mb": 0,
            "target_memory_buffer": 0,
        },
        "memory_mb": 0,
        "processors": 0,
        "vm_size": "string",
    },
    identity={
        "type": azure_native.azurestackhci.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    network_profile={
        "network_interfaces": [{
            "id": "string",
        }],
    },
    os_profile={
        "admin_password": "string",
        "admin_username": "string",
        "computer_name": "string",
        "linux_configuration": {
            "disable_password_authentication": False,
            "provision_vm_agent": False,
            "provision_vm_config_agent": False,
            "ssh": {
                "public_keys": [{
                    "key_data": "string",
                    "path": "string",
                }],
            },
        },
        "windows_configuration": {
            "enable_automatic_updates": False,
            "provision_vm_agent": False,
            "provision_vm_config_agent": False,
            "ssh": {
                "public_keys": [{
                    "key_data": "string",
                    "path": "string",
                }],
            },
            "time_zone": "string",
        },
    },
    resource_uid="string",
    security_profile={
        "enable_tpm": False,
        "security_type": "string",
        "uefi_settings": {
            "secure_boot_enabled": False,
        },
    },
    storage_profile={
        "data_disks": [{
            "id": "string",
        }],
        "image_reference": {
            "id": "string",
        },
        "os_disk": {
            "id": "string",
            "os_type": azure_native.azurestackhci.OperatingSystemTypes.LINUX,
        },
        "vm_config_storage_path_id": "string",
    })
const virtualMachineInstanceResource = new azure_native.azurestackhci.VirtualMachineInstance("virtualMachineInstanceResource", {
    resourceUri: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    hardwareProfile: {
        dynamicMemoryConfig: {
            maximumMemoryMB: 0,
            minimumMemoryMB: 0,
            targetMemoryBuffer: 0,
        },
        memoryMB: 0,
        processors: 0,
        vmSize: "string",
    },
    identity: {
        type: azure_native.azurestackhci.ResourceIdentityType.SystemAssigned,
    },
    networkProfile: {
        networkInterfaces: [{
            id: "string",
        }],
    },
    osProfile: {
        adminPassword: "string",
        adminUsername: "string",
        computerName: "string",
        linuxConfiguration: {
            disablePasswordAuthentication: false,
            provisionVMAgent: false,
            provisionVMConfigAgent: false,
            ssh: {
                publicKeys: [{
                    keyData: "string",
                    path: "string",
                }],
            },
        },
        windowsConfiguration: {
            enableAutomaticUpdates: false,
            provisionVMAgent: false,
            provisionVMConfigAgent: false,
            ssh: {
                publicKeys: [{
                    keyData: "string",
                    path: "string",
                }],
            },
            timeZone: "string",
        },
    },
    resourceUid: "string",
    securityProfile: {
        enableTPM: false,
        securityType: "string",
        uefiSettings: {
            secureBootEnabled: false,
        },
    },
    storageProfile: {
        dataDisks: [{
            id: "string",
        }],
        imageReference: {
            id: "string",
        },
        osDisk: {
            id: "string",
            osType: azure_native.azurestackhci.OperatingSystemTypes.Linux,
        },
        vmConfigStoragePathId: "string",
    },
});
type: azure-native:azurestackhci:VirtualMachineInstance
properties:
    extendedLocation:
        name: string
        type: string
    hardwareProfile:
        dynamicMemoryConfig:
            maximumMemoryMB: 0
            minimumMemoryMB: 0
            targetMemoryBuffer: 0
        memoryMB: 0
        processors: 0
        vmSize: string
    identity:
        type: SystemAssigned
    networkProfile:
        networkInterfaces:
            - id: string
    osProfile:
        adminPassword: string
        adminUsername: string
        computerName: string
        linuxConfiguration:
            disablePasswordAuthentication: false
            provisionVMAgent: false
            provisionVMConfigAgent: false
            ssh:
                publicKeys:
                    - keyData: string
                      path: string
        windowsConfiguration:
            enableAutomaticUpdates: false
            provisionVMAgent: false
            provisionVMConfigAgent: false
            ssh:
                publicKeys:
                    - keyData: string
                      path: string
            timeZone: string
    resourceUid: string
    resourceUri: string
    securityProfile:
        enableTPM: false
        securityType: string
        uefiSettings:
            secureBootEnabled: false
    storageProfile:
        dataDisks:
            - id: string
        imageReference:
            id: string
        osDisk:
            id: string
            osType: Linux
        vmConfigStoragePathId: string
VirtualMachineInstance 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 VirtualMachineInstance resource accepts the following input properties:
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- ExtendedLocation Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location 
- The extendedLocation of the resource.
- HardwareProfile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Hardware Profile 
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- Identity
Pulumi.Azure Native. Azure Stack HCI. Inputs. Identity 
- Identity for the resource.
- NetworkProfile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Network Profile 
- NetworkProfile - describes the network configuration the virtual machine instance
- OsProfile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Os Profile 
- OsProfile - describes the configuration of the operating system and sets login data
- ResourceUid string
- Unique identifier defined by ARC to identify the guest of the VM.
- SecurityProfile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Security Profile 
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- StorageProfile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Storage Profile 
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- ExtendedLocation ExtendedLocation Args 
- The extendedLocation of the resource.
- HardwareProfile VirtualMachine Instance Properties Hardware Profile Args 
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- Identity
IdentityArgs 
- Identity for the resource.
- NetworkProfile VirtualMachine Instance Properties Network Profile Args 
- NetworkProfile - describes the network configuration the virtual machine instance
- OsProfile VirtualMachine Instance Properties Os Profile Args 
- OsProfile - describes the configuration of the operating system and sets login data
- ResourceUid string
- Unique identifier defined by ARC to identify the guest of the VM.
- SecurityProfile VirtualMachine Instance Properties Security Profile Args 
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- StorageProfile VirtualMachine Instance Properties Storage Profile Args 
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
- resourceUri String
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- hardwareProfile VirtualMachine Instance Properties Hardware Profile 
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Identity
- Identity for the resource.
- networkProfile VirtualMachine Instance Properties Network Profile 
- NetworkProfile - describes the network configuration the virtual machine instance
- osProfile VirtualMachine Instance Properties Os Profile 
- OsProfile - describes the configuration of the operating system and sets login data
- resourceUid String
- Unique identifier defined by ARC to identify the guest of the VM.
- securityProfile VirtualMachine Instance Properties Security Profile 
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- storageProfile VirtualMachine Instance Properties Storage Profile 
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
- resourceUri string
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- hardwareProfile VirtualMachine Instance Properties Hardware Profile 
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Identity
- Identity for the resource.
- networkProfile VirtualMachine Instance Properties Network Profile 
- NetworkProfile - describes the network configuration the virtual machine instance
- osProfile VirtualMachine Instance Properties Os Profile 
- OsProfile - describes the configuration of the operating system and sets login data
- resourceUid string
- Unique identifier defined by ARC to identify the guest of the VM.
- securityProfile VirtualMachine Instance Properties Security Profile 
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- storageProfile VirtualMachine Instance Properties Storage Profile 
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
- resource_uri str
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extended_location ExtendedLocation Args 
- The extendedLocation of the resource.
- hardware_profile VirtualMachine Instance Properties Hardware Profile Args 
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity
IdentityArgs 
- Identity for the resource.
- network_profile VirtualMachine Instance Properties Network Profile Args 
- NetworkProfile - describes the network configuration the virtual machine instance
- os_profile VirtualMachine Instance Properties Os Profile Args 
- OsProfile - describes the configuration of the operating system and sets login data
- resource_uid str
- Unique identifier defined by ARC to identify the guest of the VM.
- security_profile VirtualMachine Instance Properties Security Profile Args 
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- storage_profile VirtualMachine Instance Properties Storage Profile Args 
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
- resourceUri String
- The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extendedLocation Property Map
- The extendedLocation of the resource.
- hardwareProfile Property Map
- HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Property Map
- Identity for the resource.
- networkProfile Property Map
- NetworkProfile - describes the network configuration the virtual machine instance
- osProfile Property Map
- OsProfile - describes the configuration of the operating system and sets login data
- resourceUid String
- Unique identifier defined by ARC to identify the guest of the VM.
- securityProfile Property Map
- SecurityProfile - Specifies the security settings for the virtual machine instance.
- storageProfile Property Map
- StorageProfile - contains information about the disks and storage information for the virtual machine instance
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualMachineInstance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceView Pulumi.Azure Native. Azure Stack HCI. Outputs. Virtual Machine Instance View Response 
- The virtual machine instance view.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the virtual machine instance.
- Status
Pulumi.Azure Native. Azure Stack HCI. Outputs. Virtual Machine Instance Status Response 
- The observed state of virtual machine instances
- SystemData Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VmId string
- Unique identifier for the vm resource.
- GuestAgent Pulumi.Install Status Azure Native. Azure Stack HCI. Outputs. Guest Agent Install Status Response 
- Guest agent install status.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the virtual machine instance.
- Status
VirtualMachine Instance Status Response 
- The observed state of virtual machine instances
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VmId string
- Unique identifier for the vm resource.
- GuestAgent GuestInstall Status Agent Install Status Response 
- Guest agent install status.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the virtual machine instance.
- status
VirtualMachine Instance Status Response 
- The observed state of virtual machine instances
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vmId String
- Unique identifier for the vm resource.
- guestAgent GuestInstall Status Agent Install Status Response 
- Guest agent install status.
- id string
- The provider-assigned unique ID for this managed resource.
- instanceView VirtualMachine Instance View Response 
- The virtual machine instance view.
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the virtual machine instance.
- status
VirtualMachine Instance Status Response 
- The observed state of virtual machine instances
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vmId string
- Unique identifier for the vm resource.
- guestAgent GuestInstall Status Agent Install Status Response 
- Guest agent install status.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_view VirtualMachine Instance View Response 
- The virtual machine instance view.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the virtual machine instance.
- status
VirtualMachine Instance Status Response 
- The observed state of virtual machine instances
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm_id str
- Unique identifier for the vm resource.
- guest_agent_ Guestinstall_ status Agent Install Status Response 
- Guest agent install status.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView Property Map
- The virtual machine instance view.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the virtual machine instance.
- status Property Map
- The observed state of virtual machine instances
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vmId String
- Unique identifier for the vm resource.
- guestAgent Property MapInstall Status 
- Guest agent install status.
Supporting Types
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs        
ErrorDetailResponse, ErrorDetailResponseArgs      
- AdditionalInfo List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Additional Info Response> 
- The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Detail Response> 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- AdditionalInfo []ErrorAdditional Info Response 
- The error additional info.
- Code string
- The error code.
- Details
[]ErrorDetail Response 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- additionalInfo List<ErrorAdditional Info Response> 
- The error additional info.
- code String
- The error code.
- details
List<ErrorDetail Response> 
- The error details.
- message String
- The error message.
- target String
- The error target.
- additionalInfo ErrorAdditional Info Response[] 
- The error additional info.
- code string
- The error code.
- details
ErrorDetail Response[] 
- The error details.
- message string
- The error message.
- target string
- The error target.
- additional_info Sequence[ErrorAdditional Info Response] 
- The error additional info.
- code str
- The error code.
- details
Sequence[ErrorDetail Response] 
- The error details.
- message str
- The error message.
- target str
- The error target.
- additionalInfo List<Property Map>
- The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Azure Stack HCI. 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 | "CustomLocation" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- CustomLocation 
- CustomLocation
- ExtendedLocation Types Custom Location 
- CustomLocation
- CustomLocation 
- CustomLocation
- CustomLocation 
- CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "CustomLocation" 
- CustomLocation
GuestAgentInstallStatusResponse, GuestAgentInstallStatusResponseArgs          
- AgentVersion string
- The hybrid machine agent full version.
- ErrorDetails List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Detail Response> 
- Details about the error state.
- LastStatus stringChange 
- The time of the last status change.
- Status string
- The installation status of the hybrid machine agent installation.
- VmUuid string
- Specifies the VM's unique SMBIOS ID.
- AgentVersion string
- The hybrid machine agent full version.
- ErrorDetails []ErrorDetail Response 
- Details about the error state.
- LastStatus stringChange 
- The time of the last status change.
- Status string
- The installation status of the hybrid machine agent installation.
- VmUuid string
- Specifies the VM's unique SMBIOS ID.
- agentVersion String
- The hybrid machine agent full version.
- errorDetails List<ErrorDetail Response> 
- Details about the error state.
- lastStatus StringChange 
- The time of the last status change.
- status String
- The installation status of the hybrid machine agent installation.
- vmUuid String
- Specifies the VM's unique SMBIOS ID.
- agentVersion string
- The hybrid machine agent full version.
- errorDetails ErrorDetail Response[] 
- Details about the error state.
- lastStatus stringChange 
- The time of the last status change.
- status string
- The installation status of the hybrid machine agent installation.
- vmUuid string
- Specifies the VM's unique SMBIOS ID.
- agent_version str
- The hybrid machine agent full version.
- error_details Sequence[ErrorDetail Response] 
- Details about the error state.
- last_status_ strchange 
- The time of the last status change.
- status str
- The installation status of the hybrid machine agent installation.
- vm_uuid str
- Specifies the VM's unique SMBIOS ID.
- agentVersion String
- The hybrid machine agent full version.
- errorDetails List<Property Map>
- Details about the error state.
- lastStatus StringChange 
- The time of the last status change.
- status String
- The installation status of the hybrid machine agent installation.
- vmUuid String
- Specifies the VM's unique SMBIOS ID.
Identity, IdentityArgs  
- Type
Pulumi.Azure Native. Azure Stack HCI. Resource Identity Type 
- The identity type.
- Type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
"SystemAssigned" 
- The identity type.
IdentityResponse, IdentityResponseArgs    
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- principalId string
- The principal ID of resource identity.
- tenantId string
- The tenant ID of resource.
- type string
- The identity type.
- principal_id str
- The principal ID of resource identity.
- tenant_id str
- The tenant ID of resource.
- type str
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity 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.
OperatingSystemTypes, OperatingSystemTypesArgs      
- Linux
- Linux
- Windows
- Windows
- OperatingSystem Types Linux 
- Linux
- OperatingSystem Types Windows 
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- ResourceIdentity Type System Assigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "SystemAssigned" 
- SystemAssigned
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
SshConfiguration, SshConfigurationArgs    
- PublicKeys List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Public 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.
- 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. Azure Stack HCI. 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
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
VirtualMachineInstancePropertiesDataDisks, VirtualMachineInstancePropertiesDataDisksArgs            
- Id string
- Resource ID of the data disk
- Id string
- Resource ID of the data disk
- id String
- Resource ID of the data disk
- id string
- Resource ID of the data disk
- id str
- Resource ID of the data disk
- id String
- Resource ID of the data disk
VirtualMachineInstancePropertiesDynamicMemoryConfig, VirtualMachineInstancePropertiesDynamicMemoryConfigArgs              
- MaximumMemory doubleMB 
- MinimumMemory doubleMB 
- TargetMemory intBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- MaximumMemory float64MB 
- MinimumMemory float64MB 
- TargetMemory intBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory DoubleMB 
- minimumMemory DoubleMB 
- targetMemory IntegerBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory numberMB 
- minimumMemory numberMB 
- targetMemory numberBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximum_memory_ floatmb 
- minimum_memory_ floatmb 
- target_memory_ intbuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory NumberMB 
- minimumMemory NumberMB 
- targetMemory NumberBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
VirtualMachineInstancePropertiesHardwareProfile, VirtualMachineInstancePropertiesHardwareProfileArgs            
- DynamicMemory Pulumi.Config Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Dynamic Memory Config 
- MemoryMB double
- RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- VmSize string | Pulumi.Azure Native. Azure Stack HCI. Vm Size Enum 
- DynamicMemory VirtualConfig Machine Instance Properties Dynamic Memory Config 
- MemoryMB float64
- RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- VmSize string | VmSize Enum 
- dynamicMemory VirtualConfig Machine Instance Properties Dynamic Memory Config 
- memoryMB Double
- RAM in MB for the virtual machine instance
- processors Integer
- number of processors for the virtual machine instance
- vmSize String | VmSize Enum 
- dynamicMemory VirtualConfig Machine Instance Properties Dynamic Memory Config 
- memoryMB number
- RAM in MB for the virtual machine instance
- processors number
- number of processors for the virtual machine instance
- vmSize string | VmSize Enum 
- dynamic_memory_ Virtualconfig Machine Instance Properties Dynamic Memory Config 
- memory_mb float
- RAM in MB for the virtual machine instance
- processors int
- number of processors for the virtual machine instance
- vm_size str | VmSize Enum 
- dynamicMemory Property MapConfig 
- memoryMB Number
- RAM in MB for the virtual machine instance
- processors Number
- number of processors for the virtual machine instance
- vmSize String | "Default" | "Standard_A2_v2" | "Standard_A4_ v2" | "Standard_D2s_ v3" | "Standard_D4s_ v3" | "Standard_D8s_ v3" | "Standard_D16s_ v3" | "Standard_D32s_ v3" | "Standard_DS2_ v2" | "Standard_DS3_ v2" | "Standard_DS4_ v2" | "Standard_DS5_ v2" | "Standard_DS13_ v2" | "Standard_K8S_ v1" | "Standard_K8S2_ v1" | "Standard_K8S3_ v1" | "Standard_K8S4_ v1" | "Standard_NK6" | "Standard_NK12" | "Standard_NV6" | "Standard_NV12" | "Standard_K8S5_ v1" | "Custom" 
VirtualMachineInstancePropertiesImageReference, VirtualMachineInstancePropertiesImageReferenceArgs            
- Id string
- Resource ID of the image
- Id string
- Resource ID of the image
- id String
- Resource ID of the image
- id string
- Resource ID of the image
- id str
- Resource ID of the image
- id String
- Resource ID of the image
VirtualMachineInstancePropertiesLinuxConfiguration, VirtualMachineInstancePropertiesLinuxConfigurationArgs            
- DisablePassword boolAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Configuration 
- Specifies the ssh key configuration for a Linux OS.
- DisablePassword boolAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword booleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig booleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disable_password_ boolauthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provision_vm_ boolagent 
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision_vm_ boolconfig_ agent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
VirtualMachineInstancePropertiesNetworkInterfaces, VirtualMachineInstancePropertiesNetworkInterfacesArgs            
- Id string
- ID - Resource Id of the network interface
- Id string
- ID - Resource Id of the network interface
- id String
- ID - Resource Id of the network interface
- id string
- ID - Resource Id of the network interface
- id str
- ID - Resource Id of the network interface
- id String
- ID - Resource Id of the network interface
VirtualMachineInstancePropertiesNetworkProfile, VirtualMachineInstancePropertiesNetworkProfileArgs            
- NetworkInterfaces List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Network Interfaces> 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- NetworkInterfaces []VirtualMachine Instance Properties Network Interfaces 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces List<VirtualMachine Instance Properties Network Interfaces> 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces VirtualMachine Instance Properties Network Interfaces[] 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network_interfaces Sequence[VirtualMachine Instance Properties Network Interfaces] 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces List<Property Map>
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
VirtualMachineInstancePropertiesOsDisk, VirtualMachineInstancePropertiesOsDiskArgs            
- Id string
- Resource ID of the OS disk
- OsType Pulumi.Azure Native. Azure Stack HCI. 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.
- Id string
- Resource ID of the OS disk
- 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.
- id String
- Resource ID of the OS disk
- 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.
- id string
- Resource ID of the OS disk
- 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.
- id str
- Resource ID of the OS disk
- 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.
- id String
- Resource ID of the OS disk
- osType "Linux" | "Windows"
- 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.
VirtualMachineInstancePropertiesOsProfile, VirtualMachineInstancePropertiesOsProfileArgs            
- AdminPassword string
- AdminPassword - admin password
- AdminUsername string
- AdminUsername - admin username
- ComputerName string
- ComputerName - name of the compute
- LinuxConfiguration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- WindowsConfiguration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Windows Configuration 
- Windows Configuration for the virtual machine instance
- AdminPassword string
- AdminPassword - admin password
- AdminUsername string
- AdminUsername - admin username
- ComputerName string
- ComputerName - name of the compute
- LinuxConfiguration VirtualMachine Instance Properties Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- WindowsConfiguration VirtualMachine Instance Properties Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminPassword String
- AdminPassword - admin password
- adminUsername String
- AdminUsername - admin username
- computerName String
- ComputerName - name of the compute
- linuxConfiguration VirtualMachine Instance Properties Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration VirtualMachine Instance Properties Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminPassword string
- AdminPassword - admin password
- adminUsername string
- AdminUsername - admin username
- computerName string
- ComputerName - name of the compute
- linuxConfiguration VirtualMachine Instance Properties Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration VirtualMachine Instance Properties Windows Configuration 
- Windows Configuration for the virtual machine instance
- admin_password str
- AdminPassword - admin password
- admin_username str
- AdminUsername - admin username
- computer_name str
- ComputerName - name of the compute
- linux_configuration VirtualMachine Instance Properties Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windows_configuration VirtualMachine Instance Properties Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminPassword String
- AdminPassword - admin password
- adminUsername String
- AdminUsername - admin username
- computerName String
- ComputerName - name of the compute
- linuxConfiguration Property Map
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration Property Map
- Windows Configuration for the virtual machine instance
VirtualMachineInstancePropertiesResponseDataDisks, VirtualMachineInstancePropertiesResponseDataDisksArgs              
- Id string
- Resource ID of the data disk
- Id string
- Resource ID of the data disk
- id String
- Resource ID of the data disk
- id string
- Resource ID of the data disk
- id str
- Resource ID of the data disk
- id String
- Resource ID of the data disk
VirtualMachineInstancePropertiesResponseDynamicMemoryConfig, VirtualMachineInstancePropertiesResponseDynamicMemoryConfigArgs                
- MaximumMemory doubleMB 
- MinimumMemory doubleMB 
- TargetMemory intBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- MaximumMemory float64MB 
- MinimumMemory float64MB 
- TargetMemory intBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory DoubleMB 
- minimumMemory DoubleMB 
- targetMemory IntegerBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory numberMB 
- minimumMemory numberMB 
- targetMemory numberBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximum_memory_ floatmb 
- minimum_memory_ floatmb 
- target_memory_ intbuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
- maximumMemory NumberMB 
- minimumMemory NumberMB 
- targetMemory NumberBuffer 
- Defines the amount of extra memory that should be reserved for a virtual machine instance at runtime, as a percentage of the total memory that the virtual machine instance is thought to need. This only applies to virtual systems with dynamic memory enabled. This property can be in the range of 5 to 2000.
VirtualMachineInstancePropertiesResponseHardwareProfile, VirtualMachineInstancePropertiesResponseHardwareProfileArgs              
- DynamicMemory Pulumi.Config Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Dynamic Memory Config 
- MemoryMB double
- RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- VmSize string
- DynamicMemory VirtualConfig Machine Instance Properties Response Dynamic Memory Config 
- MemoryMB float64
- RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- VmSize string
- dynamicMemory VirtualConfig Machine Instance Properties Response Dynamic Memory Config 
- memoryMB Double
- RAM in MB for the virtual machine instance
- processors Integer
- number of processors for the virtual machine instance
- vmSize String
- dynamicMemory VirtualConfig Machine Instance Properties Response Dynamic Memory Config 
- memoryMB number
- RAM in MB for the virtual machine instance
- processors number
- number of processors for the virtual machine instance
- vmSize string
- dynamic_memory_ Virtualconfig Machine Instance Properties Response Dynamic Memory Config 
- memory_mb float
- RAM in MB for the virtual machine instance
- processors int
- number of processors for the virtual machine instance
- vm_size str
- dynamicMemory Property MapConfig 
- memoryMB Number
- RAM in MB for the virtual machine instance
- processors Number
- number of processors for the virtual machine instance
- vmSize String
VirtualMachineInstancePropertiesResponseImageReference, VirtualMachineInstancePropertiesResponseImageReferenceArgs              
- Id string
- Resource ID of the image
- Id string
- Resource ID of the image
- id String
- Resource ID of the image
- id string
- Resource ID of the image
- id str
- Resource ID of the image
- id String
- Resource ID of the image
VirtualMachineInstancePropertiesResponseLinuxConfiguration, VirtualMachineInstancePropertiesResponseLinuxConfigurationArgs              
- DisablePassword boolAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Configuration Response 
- Specifies the ssh key configuration for a Linux OS.
- DisablePassword boolAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword booleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig booleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disable_password_ boolauthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provision_vm_ boolagent 
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision_vm_ boolconfig_ agent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for a Linux OS.
- disablePassword BooleanAuthentication 
- DisablePasswordAuthentication - whether password authentication should be disabled
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
VirtualMachineInstancePropertiesResponseNetworkInterfaces, VirtualMachineInstancePropertiesResponseNetworkInterfacesArgs              
- Id string
- ID - Resource Id of the network interface
- Id string
- ID - Resource Id of the network interface
- id String
- ID - Resource Id of the network interface
- id string
- ID - Resource Id of the network interface
- id str
- ID - Resource Id of the network interface
- id String
- ID - Resource Id of the network interface
VirtualMachineInstancePropertiesResponseNetworkProfile, VirtualMachineInstancePropertiesResponseNetworkProfileArgs              
- NetworkInterfaces List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Network Interfaces> 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- NetworkInterfaces []VirtualMachine Instance Properties Response Network Interfaces 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces List<VirtualMachine Instance Properties Response Network Interfaces> 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces VirtualMachine Instance Properties Response Network Interfaces[] 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network_interfaces Sequence[VirtualMachine Instance Properties Response Network Interfaces] 
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- networkInterfaces List<Property Map>
- NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
VirtualMachineInstancePropertiesResponseOsDisk, VirtualMachineInstancePropertiesResponseOsDiskArgs              
VirtualMachineInstancePropertiesResponseOsProfile, VirtualMachineInstancePropertiesResponseOsProfileArgs              
- AdminUsername string
- AdminUsername - admin username
- ComputerName string
- ComputerName - name of the compute
- LinuxConfiguration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- WindowsConfiguration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Windows Configuration 
- Windows Configuration for the virtual machine instance
- AdminUsername string
- AdminUsername - admin username
- ComputerName string
- ComputerName - name of the compute
- LinuxConfiguration VirtualMachine Instance Properties Response Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- WindowsConfiguration VirtualMachine Instance Properties Response Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminUsername String
- AdminUsername - admin username
- computerName String
- ComputerName - name of the compute
- linuxConfiguration VirtualMachine Instance Properties Response Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration VirtualMachine Instance Properties Response Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminUsername string
- AdminUsername - admin username
- computerName string
- ComputerName - name of the compute
- linuxConfiguration VirtualMachine Instance Properties Response Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration VirtualMachine Instance Properties Response Windows Configuration 
- Windows Configuration for the virtual machine instance
- admin_username str
- AdminUsername - admin username
- computer_name str
- ComputerName - name of the compute
- linux_configuration VirtualMachine Instance Properties Response Linux Configuration 
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windows_configuration VirtualMachine Instance Properties Response Windows Configuration 
- Windows Configuration for the virtual machine instance
- adminUsername String
- AdminUsername - admin username
- computerName String
- ComputerName - name of the compute
- linuxConfiguration Property Map
- LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windowsConfiguration Property Map
- Windows Configuration for the virtual machine instance
VirtualMachineInstancePropertiesResponseSecurityProfile, VirtualMachineInstancePropertiesResponseSecurityProfileArgs              
- EnableTPM bool
- SecurityType string
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- UefiSettings Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Uefi Settings 
- EnableTPM bool
- SecurityType string
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- UefiSettings VirtualMachine Instance Properties Response Uefi Settings 
- enableTPM Boolean
- securityType String
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings VirtualMachine Instance Properties Response Uefi Settings 
- enableTPM boolean
- securityType string
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings VirtualMachine Instance Properties Response Uefi Settings 
- enable_tpm bool
- security_type str
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefi_settings VirtualMachine Instance Properties Response Uefi Settings 
- enableTPM Boolean
- securityType String
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings Property Map
VirtualMachineInstancePropertiesResponseStorageProfile, VirtualMachineInstancePropertiesResponseStorageProfileArgs              
- DataDisks List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Data Disks> 
- adds data disks to the virtual machine instance
- ImageReference Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Image Reference 
- Which Image to use for the virtual machine instance
- OsDisk Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Os Disk 
- VHD to attach as OS disk
- VmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- DataDisks []VirtualMachine Instance Properties Response Data Disks 
- adds data disks to the virtual machine instance
- ImageReference VirtualMachine Instance Properties Response Image Reference 
- Which Image to use for the virtual machine instance
- OsDisk VirtualMachine Instance Properties Response Os Disk 
- VHD to attach as OS disk
- VmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- dataDisks List<VirtualMachine Instance Properties Response Data Disks> 
- adds data disks to the virtual machine instance
- imageReference VirtualMachine Instance Properties Response Image Reference 
- Which Image to use for the virtual machine instance
- osDisk VirtualMachine Instance Properties Response Os Disk 
- VHD to attach as OS disk
- vmConfig StringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- dataDisks VirtualMachine Instance Properties Response Data Disks[] 
- adds data disks to the virtual machine instance
- imageReference VirtualMachine Instance Properties Response Image Reference 
- Which Image to use for the virtual machine instance
- osDisk VirtualMachine Instance Properties Response Os Disk 
- VHD to attach as OS disk
- vmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- data_disks Sequence[VirtualMachine Instance Properties Response Data Disks] 
- adds data disks to the virtual machine instance
- image_reference VirtualMachine Instance Properties Response Image Reference 
- Which Image to use for the virtual machine instance
- os_disk VirtualMachine Instance Properties Response Os Disk 
- VHD to attach as OS disk
- vm_config_ strstorage_ path_ id 
- Id of the storage container that hosts the VM configuration file
- dataDisks List<Property Map>
- adds data disks to the virtual machine instance
- imageReference Property Map
- Which Image to use for the virtual machine instance
- osDisk Property Map
- VHD to attach as OS disk
- vmConfig StringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
VirtualMachineInstancePropertiesResponseUefiSettings, VirtualMachineInstancePropertiesResponseUefiSettingsArgs              
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot booleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secure_boot_ boolenabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
VirtualMachineInstancePropertiesResponseWindowsConfiguration, VirtualMachineInstancePropertiesResponseWindowsConfigurationArgs              
- EnableAutomatic boolUpdates 
- Whether to EnableAutomaticUpdates on the machine
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Configuration Response 
- Specifies the ssh key configuration for Windows OS.
- TimeZone string
- TimeZone for the virtual machine instance
- EnableAutomatic boolUpdates 
- Whether to EnableAutomaticUpdates on the machine
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
SshConfiguration Response 
- Specifies the ssh key configuration for Windows OS.
- TimeZone string
- TimeZone for the virtual machine instance
- enableAutomatic BooleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for Windows OS.
- timeZone String
- TimeZone for the virtual machine instance
- enableAutomatic booleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig booleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for Windows OS.
- timeZone string
- TimeZone for the virtual machine instance
- enable_automatic_ boolupdates 
- Whether to EnableAutomaticUpdates on the machine
- provision_vm_ boolagent 
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision_vm_ boolconfig_ agent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration Response 
- Specifies the ssh key configuration for Windows OS.
- time_zone str
- TimeZone for the virtual machine instance
- enableAutomatic BooleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh Property Map
- Specifies the ssh key configuration for Windows OS.
- timeZone String
- TimeZone for the virtual machine instance
VirtualMachineInstancePropertiesSecurityProfile, VirtualMachineInstancePropertiesSecurityProfileArgs            
- EnableTPM bool
- SecurityType string | Pulumi.Azure Native. Azure Stack HCI. Security Types 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- UefiSettings Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Uefi Settings 
- EnableTPM bool
- SecurityType string | SecurityTypes 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- UefiSettings VirtualMachine Instance Properties Uefi Settings 
- enableTPM Boolean
- securityType String | SecurityTypes 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings VirtualMachine Instance Properties Uefi Settings 
- enableTPM boolean
- securityType string | SecurityTypes 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings VirtualMachine Instance Properties Uefi Settings 
- enable_tpm bool
- security_type str | SecurityTypes 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefi_settings VirtualMachine Instance Properties Uefi Settings 
- enableTPM Boolean
- securityType String | "TrustedLaunch" | "Confidential VM" 
- Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefiSettings Property Map
VirtualMachineInstancePropertiesStorageProfile, VirtualMachineInstancePropertiesStorageProfileArgs            
- DataDisks List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Data Disks> 
- adds data disks to the virtual machine instance
- ImageReference Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Image Reference 
- Which Image to use for the virtual machine instance
- OsDisk Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Os Disk 
- VHD to attach as OS disk
- VmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- DataDisks []VirtualMachine Instance Properties Data Disks 
- adds data disks to the virtual machine instance
- ImageReference VirtualMachine Instance Properties Image Reference 
- Which Image to use for the virtual machine instance
- OsDisk VirtualMachine Instance Properties Os Disk 
- VHD to attach as OS disk
- VmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- dataDisks List<VirtualMachine Instance Properties Data Disks> 
- adds data disks to the virtual machine instance
- imageReference VirtualMachine Instance Properties Image Reference 
- Which Image to use for the virtual machine instance
- osDisk VirtualMachine Instance Properties Os Disk 
- VHD to attach as OS disk
- vmConfig StringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- dataDisks VirtualMachine Instance Properties Data Disks[] 
- adds data disks to the virtual machine instance
- imageReference VirtualMachine Instance Properties Image Reference 
- Which Image to use for the virtual machine instance
- osDisk VirtualMachine Instance Properties Os Disk 
- VHD to attach as OS disk
- vmConfig stringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
- data_disks Sequence[VirtualMachine Instance Properties Data Disks] 
- adds data disks to the virtual machine instance
- image_reference VirtualMachine Instance Properties Image Reference 
- Which Image to use for the virtual machine instance
- os_disk VirtualMachine Instance Properties Os Disk 
- VHD to attach as OS disk
- vm_config_ strstorage_ path_ id 
- Id of the storage container that hosts the VM configuration file
- dataDisks List<Property Map>
- adds data disks to the virtual machine instance
- imageReference Property Map
- Which Image to use for the virtual machine instance
- osDisk Property Map
- VHD to attach as OS disk
- vmConfig StringStorage Path Id 
- Id of the storage container that hosts the VM configuration file
VirtualMachineInstancePropertiesUefiSettings, VirtualMachineInstancePropertiesUefiSettingsArgs            
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- SecureBoot boolEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot booleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secure_boot_ boolenabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
- secureBoot BooleanEnabled 
- Specifies whether secure boot should be enabled on the virtual machine instance.
VirtualMachineInstancePropertiesWindowsConfiguration, VirtualMachineInstancePropertiesWindowsConfigurationArgs            
- EnableAutomatic boolUpdates 
- Whether to EnableAutomaticUpdates on the machine
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Configuration 
- Specifies the ssh key configuration for Windows OS.
- TimeZone string
- TimeZone for the virtual machine instance
- EnableAutomatic boolUpdates 
- Whether to EnableAutomaticUpdates on the machine
- ProvisionVMAgent bool
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- ProvisionVMConfig boolAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
SshConfiguration 
- Specifies the ssh key configuration for Windows OS.
- TimeZone string
- TimeZone for the virtual machine instance
- enableAutomatic BooleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for Windows OS.
- timeZone String
- TimeZone for the virtual machine instance
- enableAutomatic booleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig booleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for Windows OS.
- timeZone string
- TimeZone for the virtual machine instance
- enable_automatic_ boolupdates 
- Whether to EnableAutomaticUpdates on the machine
- provision_vm_ boolagent 
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision_vm_ boolconfig_ agent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
SshConfiguration 
- Specifies the ssh key configuration for Windows OS.
- time_zone str
- TimeZone for the virtual machine instance
- enableAutomatic BooleanUpdates 
- Whether to EnableAutomaticUpdates on the machine
- provisionVMAgent Boolean
- Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provisionVMConfig BooleanAgent 
- Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh Property Map
- Specifies the ssh key configuration for Windows OS.
- timeZone String
- TimeZone for the virtual machine instance
VirtualMachineInstanceStatusResponse, VirtualMachineInstanceStatusResponseArgs          
- ErrorCode string
- VirtualMachine provisioning error code
- ErrorMessage string
- Descriptive error message
- PowerState string
- The power state of the virtual machine instance
- ProvisioningStatus Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Status Response Provisioning Status 
- ErrorCode string
- VirtualMachine provisioning error code
- ErrorMessage string
- Descriptive error message
- PowerState string
- The power state of the virtual machine instance
- ProvisioningStatus VirtualMachine Instance Status Response Provisioning Status 
- errorCode String
- VirtualMachine provisioning error code
- errorMessage String
- Descriptive error message
- powerState String
- The power state of the virtual machine instance
- provisioningStatus VirtualMachine Instance Status Response Provisioning Status 
- errorCode string
- VirtualMachine provisioning error code
- errorMessage string
- Descriptive error message
- powerState string
- The power state of the virtual machine instance
- provisioningStatus VirtualMachine Instance Status Response Provisioning Status 
- error_code str
- VirtualMachine provisioning error code
- error_message str
- Descriptive error message
- power_state str
- The power state of the virtual machine instance
- provisioning_status VirtualMachine Instance Status Response Provisioning Status 
- errorCode String
- VirtualMachine provisioning error code
- errorMessage String
- Descriptive error message
- powerState String
- The power state of the virtual machine instance
- provisioningStatus Property Map
VirtualMachineInstanceStatusResponseProvisioningStatus, VirtualMachineInstanceStatusResponseProvisioningStatusArgs              
- OperationId string
- The ID of the operation performed on the virtual machine instance
- Status string
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
- OperationId string
- The ID of the operation performed on the virtual machine instance
- Status string
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
- operationId String
- The ID of the operation performed on the virtual machine instance
- status String
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
- operationId string
- The ID of the operation performed on the virtual machine instance
- status string
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
- operation_id str
- The ID of the operation performed on the virtual machine instance
- status str
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
- operationId String
- The ID of the operation performed on the virtual machine instance
- status String
- The status of the operation performed on the virtual machine instance [Succeeded, Failed, InProgress]
VirtualMachineInstanceViewResponse, VirtualMachineInstanceViewResponseArgs          
- VmAgent Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine VMConfig Agent Instance View Response 
- The VM Config Agent running on the virtual machine.
- VmAgent VirtualMachine VMConfig Agent Instance View Response 
- The VM Config Agent running on the virtual machine.
- vmAgent VirtualMachine VMConfig Agent Instance View Response 
- The VM Config Agent running on the virtual machine.
- vmAgent VirtualMachine VMConfig Agent Instance View Response 
- The VM Config Agent running on the virtual machine.
- vm_agent VirtualMachine VMConfig Agent Instance View Response 
- The VM Config Agent running on the virtual machine.
- vmAgent Property Map
- The VM Config Agent running on the virtual machine.
VirtualMachineVMConfigAgentInstanceViewResponse, VirtualMachineVMConfigAgentInstanceViewResponseArgs              
- Statuses
List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Instance View Status Response> 
- The resource status information.
- VmVMConfig stringAgent Version 
- The VM Config Agent full version.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- VmVMConfig stringAgent Version 
- The VM Config Agent full version.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- vmVMConfig StringAgent Version 
- The VM Config Agent full version.
- statuses
InstanceView Status Response[] 
- The resource status information.
- vmVMConfig stringAgent Version 
- The VM Config Agent full version.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- vm_vm_ strconfig_ agent_ version 
- The VM Config Agent full version.
- statuses List<Property Map>
- The resource status information.
- vmVMConfig StringAgent Version 
- The VM Config Agent full version.
VmSizeEnum, VmSizeEnumArgs      
- Default
- Default
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- 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_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_K8S_v1 
- Standard_K8S_v1
- Standard_K8S2_v1 
- Standard_K8S2_v1
- Standard_K8S3_v1 
- Standard_K8S3_v1
- Standard_K8S4_v1 
- Standard_K8S4_v1
- Standard_NK6
- Standard_NK6
- Standard_NK12
- Standard_NK12
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_K8S5_v1 
- Standard_K8S5_v1
- Custom
- Custom
- VmSize Enum Default 
- Default
- VmSize Enum_Standard_A2_ v2 
- Standard_A2_v2
- VmSize Enum_Standard_A4_ v2 
- Standard_A4_v2
- VmSize Enum_Standard_D2s_ v3 
- Standard_D2s_v3
- VmSize Enum_Standard_D4s_ v3 
- Standard_D4s_v3
- VmSize Enum_Standard_D8s_ v3 
- Standard_D8s_v3
- VmSize Enum_Standard_D16s_ v3 
- Standard_D16s_v3
- VmSize Enum_Standard_D32s_ v3 
- Standard_D32s_v3
- VmSize Enum_Standard_DS2_ v2 
- Standard_DS2_v2
- VmSize Enum_Standard_DS3_ v2 
- Standard_DS3_v2
- VmSize Enum_Standard_DS4_ v2 
- Standard_DS4_v2
- VmSize Enum_Standard_DS5_ v2 
- Standard_DS5_v2
- VmSize Enum_Standard_DS13_ v2 
- Standard_DS13_v2
- VmSize Enum_Standard_K8S_ v1 
- Standard_K8S_v1
- VmSize Enum_Standard_K8S2_ v1 
- Standard_K8S2_v1
- VmSize Enum_Standard_K8S3_ v1 
- Standard_K8S3_v1
- VmSize Enum_Standard_K8S4_ v1 
- Standard_K8S4_v1
- VmSize Enum_Standard_NK6 
- Standard_NK6
- VmSize Enum_Standard_NK12 
- Standard_NK12
- VmSize Enum_Standard_NV6 
- Standard_NV6
- VmSize Enum_Standard_NV12 
- Standard_NV12
- VmSize Enum_Standard_K8S5_ v1 
- Standard_K8S5_v1
- VmSize Enum Custom 
- Custom
- Default
- Default
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- 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_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_K8S_v1 
- Standard_K8S_v1
- Standard_K8S2_v1 
- Standard_K8S2_v1
- Standard_K8S3_v1 
- Standard_K8S3_v1
- Standard_K8S4_v1 
- Standard_K8S4_v1
- Standard_NK6
- Standard_NK6
- Standard_NK12
- Standard_NK12
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_K8S5_v1 
- Standard_K8S5_v1
- Custom
- Custom
- Default
- Default
- Standard_A2_v2 
- Standard_A2_v2
- Standard_A4_v2 
- Standard_A4_v2
- 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_DS2_v2 
- Standard_DS2_v2
- Standard_DS3_v2 
- Standard_DS3_v2
- Standard_DS4_v2 
- Standard_DS4_v2
- Standard_DS5_v2 
- Standard_DS5_v2
- Standard_DS13_v2 
- Standard_DS13_v2
- Standard_K8S_v1 
- Standard_K8S_v1
- Standard_K8S2_v1 
- Standard_K8S2_v1
- Standard_K8S3_v1 
- Standard_K8S3_v1
- Standard_K8S4_v1 
- Standard_K8S4_v1
- Standard_NK6
- Standard_NK6
- Standard_NK12
- Standard_NK12
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_K8S5_v1 
- Standard_K8S5_v1
- Custom
- Custom
- DEFAULT
- Default
- STANDARD_A2_V2
- Standard_A2_v2
- STANDARD_A4_V2
- Standard_A4_v2
- 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_DS2_V2
- Standard_DS2_v2
- STANDARD_DS3_V2
- Standard_DS3_v2
- STANDARD_DS4_V2
- Standard_DS4_v2
- STANDARD_DS5_V2
- Standard_DS5_v2
- STANDARD_DS13_V2
- Standard_DS13_v2
- STANDARD_K8_S_V1
- Standard_K8S_v1
- STANDARD_K8_S2_V1
- Standard_K8S2_v1
- STANDARD_K8_S3_V1
- Standard_K8S3_v1
- STANDARD_K8_S4_V1
- Standard_K8S4_v1
- STANDARD_NK6
- Standard_NK6
- STANDARD_NK12
- Standard_NK12
- STANDARD_NV6
- Standard_NV6
- STANDARD_NV12
- Standard_NV12
- STANDARD_K8_S5_V1
- Standard_K8S5_v1
- CUSTOM
- Custom
- "Default"
- Default
- "Standard_A2_v2" 
- Standard_A2_v2
- "Standard_A4_v2" 
- Standard_A4_v2
- "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_DS2_v2" 
- Standard_DS2_v2
- "Standard_DS3_v2" 
- Standard_DS3_v2
- "Standard_DS4_v2" 
- Standard_DS4_v2
- "Standard_DS5_v2" 
- Standard_DS5_v2
- "Standard_DS13_v2" 
- Standard_DS13_v2
- "Standard_K8S_v1" 
- Standard_K8S_v1
- "Standard_K8S2_v1" 
- Standard_K8S2_v1
- "Standard_K8S3_v1" 
- Standard_K8S3_v1
- "Standard_K8S4_v1" 
- Standard_K8S4_v1
- "Standard_NK6"
- Standard_NK6
- "Standard_NK12"
- Standard_NK12
- "Standard_NV6"
- Standard_NV6
- "Standard_NV12"
- Standard_NV12
- "Standard_K8S5_v1" 
- Standard_K8S5_v1
- "Custom"
- Custom
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:VirtualMachineInstance myresource1 /{resourceUri}/providers/Microsoft.AzureStackHCI/virtualMachineInstances/default 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0