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.
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=azure_native.azurestackhci.ExtendedLocationArgs(
name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
),
hardware_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs(
vm_size=azure_native.azurestackhci.VmSizeEnum.DEFAULT,
),
network_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs(
network_interfaces=[azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs(
id="test-nic",
)],
),
os_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs(
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=azure_native.azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs(
enable_tpm=True,
uefi_settings=azure_native.azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs(
secure_boot_enabled=True,
),
),
storage_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs(
image_reference=azure_native.azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs(
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=azure_native.azurestackhci.ExtendedLocationArgs(
name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
),
hardware_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs(
vm_size=azure_native.azurestackhci.VmSizeEnum.DEFAULT,
),
network_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs(
network_interfaces=[azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs(
id="test-nic",
)],
),
os_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs(
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=azure_native.azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs(
enable_tpm=True,
uefi_settings=azure_native.azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs(
secure_boot_enabled=True,
),
),
storage_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs(
image_reference=azure_native.azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs(
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=azure_native.azurestackhci.ExtendedLocationArgs(
name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
),
hardware_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs(
vm_size=azure_native.azurestackhci.VmSizeEnum.DEFAULT,
),
network_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs(
network_interfaces=[azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs(
id="test-nic",
)],
),
resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
security_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs(
enable_tpm=True,
uefi_settings=azure_native.azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs(
secure_boot_enabled=True,
),
),
storage_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs(
os_disk=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsDiskArgs(
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=azure_native.azurestackhci.ExtendedLocationArgs(
name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
),
hardware_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs(
vm_size=azure_native.azurestackhci.VmSizeEnum.DEFAULT,
),
network_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs(
network_interfaces=[azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs(
id="test-nic",
)],
),
os_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs(
admin_password="password",
admin_username="localadmin",
computer_name="luamaster",
windows_configuration=azure_native.azurestackhci.VirtualMachineInstancePropertiesWindowsConfigurationArgs(
provision_vm_config_agent=True,
),
),
resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/Microsoft.HybridCompute/machines/DemoVM",
security_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs(
enable_tpm=True,
uefi_settings=azure_native.azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs(
secure_boot_enabled=True,
),
),
storage_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs(
image_reference=azure_native.azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs(
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=azure_native.azurestackhci.ExtendedLocationArgs(
name="string",
type="string",
),
hardware_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesHardwareProfileArgs(
dynamic_memory_config=azure_native.azurestackhci.VirtualMachineInstancePropertiesDynamicMemoryConfigArgs(
maximum_memory_mb=0,
minimum_memory_mb=0,
target_memory_buffer=0,
),
memory_mb=0,
processors=0,
vm_size="string",
),
identity=azure_native.azurestackhci.IdentityArgs(
type=azure_native.azurestackhci.ResourceIdentityType.SYSTEM_ASSIGNED,
),
network_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkProfileArgs(
network_interfaces=[azure_native.azurestackhci.VirtualMachineInstancePropertiesNetworkInterfacesArgs(
id="string",
)],
),
os_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsProfileArgs(
admin_password="string",
admin_username="string",
computer_name="string",
linux_configuration=azure_native.azurestackhci.VirtualMachineInstancePropertiesLinuxConfigurationArgs(
disable_password_authentication=False,
provision_vm_agent=False,
provision_vm_config_agent=False,
ssh=azure_native.azurestackhci.SshConfigurationArgs(
public_keys=[azure_native.azurestackhci.SshPublicKeyArgs(
key_data="string",
path="string",
)],
),
),
windows_configuration=azure_native.azurestackhci.VirtualMachineInstancePropertiesWindowsConfigurationArgs(
enable_automatic_updates=False,
provision_vm_agent=False,
provision_vm_config_agent=False,
ssh=azure_native.azurestackhci.SshConfigurationArgs(
public_keys=[azure_native.azurestackhci.SshPublicKeyArgs(
key_data="string",
path="string",
)],
),
time_zone="string",
),
),
resource_uid="string",
security_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesSecurityProfileArgs(
enable_tpm=False,
security_type="string",
uefi_settings=azure_native.azurestackhci.VirtualMachineInstancePropertiesUefiSettingsArgs(
secure_boot_enabled=False,
),
),
storage_profile=azure_native.azurestackhci.VirtualMachineInstancePropertiesStorageProfileArgs(
data_disks=[azure_native.azurestackhci.VirtualMachineInstancePropertiesDataDisksArgs(
id="string",
)],
image_reference=azure_native.azurestackhci.VirtualMachineInstancePropertiesImageReferenceArgs(
id="string",
),
os_disk=azure_native.azurestackhci.VirtualMachineInstancePropertiesOsDiskArgs(
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
The VirtualMachineInstance resource accepts the following input properties:
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- Extended
Location Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location - The extendedLocation of the resource.
- Hardware
Profile 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.
- Network
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Network Profile - NetworkProfile - describes the network configuration the virtual machine instance
- Os
Profile 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
- Resource
Uid string - Unique identifier defined by ARC to identify the guest of the VM.
- Security
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Security Profile - SecurityProfile - Specifies the security settings for the virtual machine instance.
- Storage
Profile 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
- Resource
Uri string - 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
Identity
Args - 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 string - 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
- resource
Uri String - The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- hardware
Profile VirtualMachine Instance Properties Hardware Profile - HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Identity
- Identity for the resource.
- network
Profile VirtualMachine Instance Properties Network Profile - NetworkProfile - describes the network configuration the virtual machine instance
- os
Profile VirtualMachine Instance Properties Os Profile - OsProfile - describes the configuration of the operating system and sets login data
- resource
Uid String - Unique identifier defined by ARC to identify the guest of the VM.
- security
Profile VirtualMachine Instance Properties Security Profile - SecurityProfile - Specifies the security settings for the virtual machine instance.
- storage
Profile VirtualMachine Instance Properties Storage Profile - StorageProfile - contains information about the disks and storage information for the virtual machine instance
- resource
Uri string - The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- hardware
Profile VirtualMachine Instance Properties Hardware Profile - HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Identity
- Identity for the resource.
- network
Profile VirtualMachine Instance Properties Network Profile - NetworkProfile - describes the network configuration the virtual machine instance
- os
Profile VirtualMachine Instance Properties Os Profile - OsProfile - describes the configuration of the operating system and sets login data
- resource
Uid string - Unique identifier defined by ARC to identify the guest of the VM.
- security
Profile VirtualMachine Instance Properties Security Profile - SecurityProfile - Specifies the security settings for the virtual machine instance.
- storage
Profile 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
Identity
Args - 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
- resource
Uri String - The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended.
- extended
Location Property Map - The extendedLocation of the resource.
- hardware
Profile Property Map - HardwareProfile - Specifies the hardware settings for the virtual machine instance.
- identity Property Map
- Identity for the resource.
- network
Profile Property Map - NetworkProfile - describes the network configuration the virtual machine instance
- os
Profile Property Map - OsProfile - describes the configuration of the operating system and sets login data
- resource
Uid String - Unique identifier defined by ARC to identify the guest of the VM.
- security
Profile Property Map - SecurityProfile - Specifies the security settings for the virtual machine instance.
- storage
Profile 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.
- Instance
View Pulumi.Azure Native. Azure Stack HCI. Outputs. Virtual Machine Instance View Response - The virtual machine instance view.
- Name string
- The name of the resource
- Provisioning
State 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
- System
Data 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"
- Vm
Id string - Unique identifier for the vm resource.
- Guest
Agent 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.
- Instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the virtual machine instance.
- Status
Virtual
Machine Instance Status Response - The observed state of virtual machine instances
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Vm
Id string - 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.
- instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the virtual machine instance.
- status
Virtual
Machine Instance Status Response - The observed state of virtual machine instances
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Id String - 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.
- instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the virtual machine instance.
- status
Virtual
Machine Instance Status Response - The observed state of virtual machine instances
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Id string - Unique identifier for the vm resource.
- guest
Agent 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
Virtual
Machine 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.
- instance
View Property Map - The virtual machine instance view.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the virtual machine instance.
- status Property Map
- The observed state of virtual machine instances
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Id String - Unique identifier for the vm resource.
- guest
Agent Property MapInstall Status - Guest agent install status.
Supporting Types
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info 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.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail 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[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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 | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location - CustomLocation
- Extended
Location Types Custom Location - CustomLocation
- Custom
Location - CustomLocation
- Custom
Location - CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "Custom
Location" - CustomLocation
GuestAgentInstallStatusResponse, GuestAgentInstallStatusResponseArgs
- Agent
Version string - The hybrid machine agent full version.
- Error
Details List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Detail Response> - Details about the error state.
- Last
Status stringChange - The time of the last status change.
- Status string
- The installation status of the hybrid machine agent installation.
- Vm
Uuid string - Specifies the VM's unique SMBIOS ID.
- Agent
Version string - The hybrid machine agent full version.
- Error
Details []ErrorDetail Response - Details about the error state.
- Last
Status stringChange - The time of the last status change.
- Status string
- The installation status of the hybrid machine agent installation.
- Vm
Uuid string - Specifies the VM's unique SMBIOS ID.
- agent
Version String - The hybrid machine agent full version.
- error
Details List<ErrorDetail Response> - Details about the error state.
- last
Status StringChange - The time of the last status change.
- status String
- The installation status of the hybrid machine agent installation.
- vm
Uuid String - Specifies the VM's unique SMBIOS ID.
- agent
Version string - The hybrid machine agent full version.
- error
Details ErrorDetail Response[] - Details about the error state.
- last
Status stringChange - The time of the last status change.
- status string
- The installation status of the hybrid machine agent installation.
- vm
Uuid 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.
- agent
Version String - The hybrid machine agent full version.
- error
Details List<Property Map> - Details about the error state.
- last
Status StringChange - The time of the last status change.
- status String
- The installation status of the hybrid machine agent installation.
- vm
Uuid String - Specifies the VM's unique SMBIOS ID.
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Azure Stack HCI. Resource Identity Type - The identity type.
- Type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
"System
Assigned" - The identity type.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- principal
Id string - The principal ID of resource identity.
- tenant
Id 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.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs
- Code string
- The status code.
- Display
Status 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.
- Display
Status 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.
- display
Status 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.
- display
Status 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.
- display
Status 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
- Operating
System Types Linux - Linux
- Operating
System Types Windows - Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- Resource
Identity Type System Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "System
Assigned" - SystemAssigned
SecurityTypes, SecurityTypesArgs
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- Security
Types Trusted Launch - TrustedLaunch
- Security
Types Confidential VM - ConfidentialVM
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- Trusted
Launch - TrustedLaunch
- Confidential
VM - ConfidentialVM
- TRUSTED_LAUNCH
- TrustedLaunch
- CONFIDENTIAL_VM
- ConfidentialVM
- "Trusted
Launch" - TrustedLaunch
- "Confidential
VM" - ConfidentialVM
SshConfiguration, SshConfigurationArgs
- Public
Keys List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Ssh Public Key> - The list of SSH public keys used to authenticate with linux based VMs.
- Public
Keys []SshPublic Key - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<SshPublic Key> - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys 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.
- public
Keys List<Property Map> - The list of SSH public keys used to authenticate with linux based VMs.
SshConfigurationResponse, SshConfigurationResponseArgs
- Public
Keys 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.
- Public
Keys []SshPublic Key Response - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys List<SshPublic Key Response> - The list of SSH public keys used to authenticate with linux based VMs.
- public
Keys 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.
- public
Keys List<Property Map> - The list of SSH public keys used to authenticate with linux based VMs.
SshPublicKey, SshPublicKeyArgs
- Key
Data 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 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 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 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
- key
Data 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
- Key
Data 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 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 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 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
- key
Data 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
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
- Maximum
Memory doubleMB - Minimum
Memory doubleMB - 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.
- Maximum
Memory float64MB - Minimum
Memory float64MB - 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.
- maximum
Memory DoubleMB - minimum
Memory DoubleMB - target
Memory 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.
- maximum
Memory numberMB - minimum
Memory numberMB - target
Memory 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.
- maximum
Memory NumberMB - minimum
Memory NumberMB - target
Memory 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
- Dynamic
Memory Pulumi.Config Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Dynamic Memory Config - Memory
MB double - RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- Vm
Size string | Pulumi.Azure Native. Azure Stack HCI. Vm Size Enum
- Dynamic
Memory VirtualConfig Machine Instance Properties Dynamic Memory Config - Memory
MB float64 - RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- Vm
Size string | VmSize Enum
- dynamic
Memory VirtualConfig Machine Instance Properties Dynamic Memory Config - memory
MB Double - RAM in MB for the virtual machine instance
- processors Integer
- number of processors for the virtual machine instance
- vm
Size String | VmSize Enum
- dynamic
Memory VirtualConfig Machine Instance Properties Dynamic Memory Config - memory
MB number - RAM in MB for the virtual machine instance
- processors number
- number of processors for the virtual machine instance
- vm
Size 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
- dynamic
Memory Property MapConfig - memory
MB Number - RAM in MB for the virtual machine instance
- processors Number
- number of processors for the virtual machine instance
- vm
Size 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
- Disable
Password boolAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig 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.
- Disable
Password boolAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig boolAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig BooleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig booleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration - 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
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig 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
- Network
Interfaces 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
- Network
Interfaces []VirtualMachine Instance Properties Network Interfaces - NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network
Interfaces List<VirtualMachine Instance Properties Network Interfaces> - NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network
Interfaces 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
- network
Interfaces 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
- Os
Type 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
- 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
- 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
- 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 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
- os
Type "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
- Admin
Password string - AdminPassword - admin password
- Admin
Username string - AdminUsername - admin username
- Computer
Name string - ComputerName - name of the compute
- Linux
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Linux Configuration - LinuxConfiguration - linux specific configuration values for the virtual machine instance
- Windows
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Windows Configuration - Windows Configuration for the virtual machine instance
- Admin
Password string - AdminPassword - admin password
- Admin
Username string - AdminUsername - admin username
- Computer
Name string - 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
- admin
Password String - AdminPassword - admin password
- admin
Username String - AdminUsername - admin username
- computer
Name String - 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
- admin
Password string - AdminPassword - admin password
- admin
Username string - AdminUsername - admin username
- computer
Name string - 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
- 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
- admin
Password String - AdminPassword - admin password
- admin
Username String - AdminUsername - admin username
- computer
Name String - ComputerName - name of the compute
- linux
Configuration Property Map - LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windows
Configuration 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
- Maximum
Memory doubleMB - Minimum
Memory doubleMB - 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.
- Maximum
Memory float64MB - Minimum
Memory float64MB - 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.
- maximum
Memory DoubleMB - minimum
Memory DoubleMB - target
Memory 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.
- maximum
Memory numberMB - minimum
Memory numberMB - target
Memory 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.
- maximum
Memory NumberMB - minimum
Memory NumberMB - target
Memory 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
- Dynamic
Memory Pulumi.Config Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Dynamic Memory Config - Memory
MB double - RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- Vm
Size string
- Dynamic
Memory VirtualConfig Machine Instance Properties Response Dynamic Memory Config - Memory
MB float64 - RAM in MB for the virtual machine instance
- Processors int
- number of processors for the virtual machine instance
- Vm
Size string
- dynamic
Memory VirtualConfig Machine Instance Properties Response Dynamic Memory Config - memory
MB Double - RAM in MB for the virtual machine instance
- processors Integer
- number of processors for the virtual machine instance
- vm
Size String
- dynamic
Memory VirtualConfig Machine Instance Properties Response Dynamic Memory Config - memory
MB number - RAM in MB for the virtual machine instance
- processors number
- number of processors for the virtual machine instance
- vm
Size 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
- dynamic
Memory Property MapConfig - memory
MB Number - RAM in MB for the virtual machine instance
- processors Number
- number of processors for the virtual machine instance
- vm
Size 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
- Disable
Password boolAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig 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.
- Disable
Password boolAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig boolAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig BooleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig booleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration 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
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - DisablePasswordAuthentication - whether password authentication should be disabled
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig 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
- Network
Interfaces 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
- Network
Interfaces []VirtualMachine Instance Properties Response Network Interfaces - NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network
Interfaces List<VirtualMachine Instance Properties Response Network Interfaces> - NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
- network
Interfaces 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
- network
Interfaces List<Property Map> - NetworkInterfaces - list of network interfaces to be attached to the virtual machine instance
VirtualMachineInstancePropertiesResponseOsDisk, VirtualMachineInstancePropertiesResponseOsDiskArgs
VirtualMachineInstancePropertiesResponseOsProfile, VirtualMachineInstancePropertiesResponseOsProfileArgs
- Admin
Username string - AdminUsername - admin username
- Computer
Name string - ComputerName - name of the compute
- Linux
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Linux Configuration - LinuxConfiguration - linux specific configuration values for the virtual machine instance
- Windows
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Windows Configuration - Windows Configuration for the virtual machine instance
- Admin
Username string - AdminUsername - admin username
- Computer
Name string - 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
- admin
Username String - AdminUsername - admin username
- computer
Name String - 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
- admin
Username string - AdminUsername - admin username
- computer
Name string - 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
- 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
- admin
Username String - AdminUsername - admin username
- computer
Name String - ComputerName - name of the compute
- linux
Configuration Property Map - LinuxConfiguration - linux specific configuration values for the virtual machine instance
- windows
Configuration Property Map - Windows Configuration for the virtual machine instance
VirtualMachineInstancePropertiesResponseSecurityProfile, VirtualMachineInstancePropertiesResponseSecurityProfileArgs
- Enable
TPM bool - Security
Type string - Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- Uefi
Settings Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Uefi Settings
- Enable
TPM bool - Security
Type string - 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
- enable
TPM Boolean - security
Type String - 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
- enable
TPM boolean - security
Type string - 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
- 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
- enable
TPM Boolean - security
Type String - Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefi
Settings Property Map
VirtualMachineInstancePropertiesResponseStorageProfile, VirtualMachineInstancePropertiesResponseStorageProfileArgs
- Data
Disks List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Data Disks> - adds data disks to the virtual machine instance
- Image
Reference Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Image Reference - Which Image to use for the virtual machine instance
- Os
Disk Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Response Os Disk - VHD to attach as OS disk
- Vm
Config stringStorage Path Id - Id of the storage container that hosts the VM configuration file
- Data
Disks []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 stringStorage Path Id - Id of the storage container that hosts the VM configuration file
- data
Disks List<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 StringStorage Path Id - Id of the storage container that hosts the VM configuration file
- data
Disks 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 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
- data
Disks List<Property Map> - adds data disks to the virtual machine instance
- image
Reference Property Map - Which Image to use for the virtual machine instance
- os
Disk Property Map - VHD to attach as OS disk
- vm
Config StringStorage Path Id - Id of the storage container that hosts the VM configuration file
VirtualMachineInstancePropertiesResponseUefiSettings, VirtualMachineInstancePropertiesResponseUefiSettingsArgs
- Secure
Boot boolEnabled - 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.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine instance.
- secure
Boot 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.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine instance.
VirtualMachineInstancePropertiesResponseWindowsConfiguration, VirtualMachineInstancePropertiesResponseWindowsConfigurationArgs
- Enable
Automatic boolUpdates - Whether to EnableAutomaticUpdates on the machine
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig 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.
- Time
Zone string - TimeZone for the virtual machine instance
- Enable
Automatic boolUpdates - Whether to EnableAutomaticUpdates on the machine
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig boolAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Ssh
Configuration Response - Specifies the ssh key configuration for Windows OS.
- Time
Zone string - TimeZone for the virtual machine instance
- enable
Automatic BooleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig BooleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for Windows OS.
- time
Zone String - TimeZone for the virtual machine instance
- enable
Automatic booleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig booleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for Windows OS.
- time
Zone 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
Ssh
Configuration Response - Specifies the ssh key configuration for Windows OS.
- time_
zone str - TimeZone for the virtual machine instance
- enable
Automatic BooleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig 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.
- time
Zone String - TimeZone for the virtual machine instance
VirtualMachineInstancePropertiesSecurityProfile, VirtualMachineInstancePropertiesSecurityProfileArgs
- Enable
TPM bool - Security
Type 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.
- Uefi
Settings Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Uefi Settings
- Enable
TPM bool - Security
Type string | 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
- enable
TPM Boolean - security
Type String | 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
- enable
TPM boolean - security
Type string | 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
- 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
- enable
TPM Boolean - security
Type String | "TrustedLaunch" | "Confidential VM" - Specifies the SecurityType of the virtual machine. EnableTPM and SecureBootEnabled must be set to true for SecurityType to function.
- uefi
Settings Property Map
VirtualMachineInstancePropertiesStorageProfile, VirtualMachineInstancePropertiesStorageProfileArgs
- Data
Disks List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Data Disks> - adds data disks to the virtual machine instance
- Image
Reference Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Image Reference - Which Image to use for the virtual machine instance
- Os
Disk Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Properties Os Disk - VHD to attach as OS disk
- Vm
Config stringStorage Path Id - Id of the storage container that hosts the VM configuration file
- Data
Disks []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 stringStorage Path Id - Id of the storage container that hosts the VM configuration file
- data
Disks List<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 StringStorage Path Id - Id of the storage container that hosts the VM configuration file
- data
Disks 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 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
- data
Disks List<Property Map> - adds data disks to the virtual machine instance
- image
Reference Property Map - Which Image to use for the virtual machine instance
- os
Disk Property Map - VHD to attach as OS disk
- vm
Config StringStorage Path Id - Id of the storage container that hosts the VM configuration file
VirtualMachineInstancePropertiesUefiSettings, VirtualMachineInstancePropertiesUefiSettingsArgs
- Secure
Boot boolEnabled - 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.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine instance.
- secure
Boot 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.
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine instance.
VirtualMachineInstancePropertiesWindowsConfiguration, VirtualMachineInstancePropertiesWindowsConfigurationArgs
- Enable
Automatic boolUpdates - Whether to EnableAutomaticUpdates on the machine
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig 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.
- Time
Zone string - TimeZone for the virtual machine instance
- Enable
Automatic boolUpdates - Whether to EnableAutomaticUpdates on the machine
- Provision
VMAgent bool - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- Provision
VMConfig boolAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- Ssh
Ssh
Configuration - Specifies the ssh key configuration for Windows OS.
- Time
Zone string - TimeZone for the virtual machine instance
- enable
Automatic BooleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig BooleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for Windows OS.
- time
Zone String - TimeZone for the virtual machine instance
- enable
Automatic booleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig booleanAgent - Used to indicate whether the VM Config Agent should be installed during the virtual machine creation process.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for Windows OS.
- time
Zone 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
Ssh
Configuration - Specifies the ssh key configuration for Windows OS.
- time_
zone str - TimeZone for the virtual machine instance
- enable
Automatic BooleanUpdates - Whether to EnableAutomaticUpdates on the machine
- provision
VMAgent Boolean - Used to indicate whether Arc for Servers agent onboarding should be triggered during the virtual machine instance creation process.
- provision
VMConfig 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.
- time
Zone String - TimeZone for the virtual machine instance
VirtualMachineInstanceStatusResponse, VirtualMachineInstanceStatusResponseArgs
- Error
Code string - VirtualMachine provisioning error code
- Error
Message string - Descriptive error message
- Power
State string - The power state of the virtual machine instance
- Provisioning
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine Instance Status Response Provisioning Status
- Error
Code string - VirtualMachine provisioning error code
- Error
Message string - Descriptive error message
- Power
State string - The power state of the virtual machine instance
- Provisioning
Status VirtualMachine Instance Status Response Provisioning Status
- error
Code String - VirtualMachine provisioning error code
- error
Message String - Descriptive error message
- power
State String - The power state of the virtual machine instance
- provisioning
Status VirtualMachine Instance Status Response Provisioning Status
- error
Code string - VirtualMachine provisioning error code
- error
Message string - Descriptive error message
- power
State string - The power state of the virtual machine instance
- provisioning
Status 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
- error
Code String - VirtualMachine provisioning error code
- error
Message String - Descriptive error message
- power
State String - The power state of the virtual machine instance
- provisioning
Status Property Map
VirtualMachineInstanceStatusResponseProvisioningStatus, VirtualMachineInstanceStatusResponseProvisioningStatusArgs
- Operation
Id 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 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 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 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]
- operation
Id 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
- Vm
Agent Pulumi.Azure Native. Azure Stack HCI. Inputs. Virtual Machine 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.
- vm
Agent 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.
- vm_
agent VirtualMachine VMConfig Agent Instance View Response - The VM Config Agent running on the virtual machine.
- vm
Agent 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.
- Vm
VMConfig stringAgent Version - The VM Config Agent full version.
- Statuses
[]Instance
View Status Response - The resource status information.
- Vm
VMConfig stringAgent Version - The VM Config Agent full version.
- statuses
List<Instance
View Status Response> - The resource status information.
- vm
VMConfig StringAgent Version - The VM Config Agent full version.
- statuses
Instance
View Status Response[] - The resource status information.
- vm
VMConfig stringAgent Version - The VM Config Agent full version.
- statuses
Sequence[Instance
View 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.
- vm
VMConfig 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
- Vm
Size Enum Default - Default
- Vm
Size Enum_Standard_A2_ v2 - Standard_A2_v2
- Vm
Size Enum_Standard_A4_ v2 - Standard_A4_v2
- Vm
Size Enum_Standard_D2s_ v3 - Standard_D2s_v3
- Vm
Size Enum_Standard_D4s_ v3 - Standard_D4s_v3
- Vm
Size Enum_Standard_D8s_ v3 - Standard_D8s_v3
- Vm
Size Enum_Standard_D16s_ v3 - Standard_D16s_v3
- Vm
Size Enum_Standard_D32s_ v3 - Standard_D32s_v3
- Vm
Size Enum_Standard_DS2_ v2 - Standard_DS2_v2
- Vm
Size Enum_Standard_DS3_ v2 - Standard_DS3_v2
- Vm
Size Enum_Standard_DS4_ v2 - Standard_DS4_v2
- Vm
Size Enum_Standard_DS5_ v2 - Standard_DS5_v2
- Vm
Size Enum_Standard_DS13_ v2 - Standard_DS13_v2
- Vm
Size Enum_Standard_K8S_ v1 - Standard_K8S_v1
- Vm
Size Enum_Standard_K8S2_ v1 - Standard_K8S2_v1
- Vm
Size Enum_Standard_K8S3_ v1 - Standard_K8S3_v1
- Vm
Size Enum_Standard_K8S4_ v1 - Standard_K8S4_v1
- Vm
Size Enum_Standard_NK6 - Standard_NK6
- Vm
Size Enum_Standard_NK12 - Standard_NK12
- Vm
Size Enum_Standard_NV6 - Standard_NV6
- Vm
Size Enum_Standard_NV12 - Standard_NV12
- Vm
Size Enum_Standard_K8S5_ v1 - Standard_K8S5_v1
- Vm
Size 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