1. Packages
  2. Azure Native v2
  3. API Docs
  4. scvmm
  5. VirtualMachineTemplate
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.scvmm.VirtualMachineTemplate

Explore with Pulumi AI

The VirtualMachineTemplates resource definition. Azure REST API version: 2022-05-21-preview. Prior API version in Azure Native 1.x: 2020-06-05-preview.

Other available API versions: 2023-04-01-preview, 2023-10-07, 2024-06-01.

Example Usage

CreateVirtualMachineTemplate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var virtualMachineTemplate = new AzureNative.ScVmm.VirtualMachineTemplate("virtualMachineTemplate", new()
    {
        ExtendedLocation = new AzureNative.ScVmm.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
            Type = "customLocation",
        },
        Location = "East US",
        ResourceGroupName = "testrg",
        Uuid = "aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
        VirtualMachineTemplateName = "HRVirtualMachineTemplate",
        VmmServerId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer",
    });

});
Copy
package main

import (
	scvmm "github.com/pulumi/pulumi-azure-native-sdk/scvmm/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := scvmm.NewVirtualMachineTemplate(ctx, "virtualMachineTemplate", &scvmm.VirtualMachineTemplateArgs{
			ExtendedLocation: &scvmm.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso"),
				Type: pulumi.String("customLocation"),
			},
			Location:                   pulumi.String("East US"),
			ResourceGroupName:          pulumi.String("testrg"),
			Uuid:                       pulumi.String("aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"),
			VirtualMachineTemplateName: pulumi.String("HRVirtualMachineTemplate"),
			VmmServerId:                pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.scvmm.VirtualMachineTemplate;
import com.pulumi.azurenative.scvmm.VirtualMachineTemplateArgs;
import com.pulumi.azurenative.scvmm.inputs.ExtendedLocationArgs;
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 virtualMachineTemplate = new VirtualMachineTemplate("virtualMachineTemplate", VirtualMachineTemplateArgs.builder()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso")
                .type("customLocation")
                .build())
            .location("East US")
            .resourceGroupName("testrg")
            .uuid("aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee")
            .virtualMachineTemplateName("HRVirtualMachineTemplate")
            .vmmServerId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const virtualMachineTemplate = new azure_native.scvmm.VirtualMachineTemplate("virtualMachineTemplate", {
    extendedLocation: {
        name: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
        type: "customLocation",
    },
    location: "East US",
    resourceGroupName: "testrg",
    uuid: "aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    virtualMachineTemplateName: "HRVirtualMachineTemplate",
    vmmServerId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

virtual_machine_template = azure_native.scvmm.VirtualMachineTemplate("virtualMachineTemplate",
    extended_location={
        "name": "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
        "type": "customLocation",
    },
    location="East US",
    resource_group_name="testrg",
    uuid="aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    virtual_machine_template_name="HRVirtualMachineTemplate",
    vmm_server_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer")
Copy
resources:
  virtualMachineTemplate:
    type: azure-native:scvmm:VirtualMachineTemplate
    properties:
      extendedLocation:
        name: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso
        type: customLocation
      location: East US
      resourceGroupName: testrg
      uuid: aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
      virtualMachineTemplateName: HRVirtualMachineTemplate
      vmmServerId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer
Copy

Create VirtualMachineTemplate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VirtualMachineTemplate(name: string, args: VirtualMachineTemplateArgs, opts?: CustomResourceOptions);
@overload
def VirtualMachineTemplate(resource_name: str,
                           args: VirtualMachineTemplateArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def VirtualMachineTemplate(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           extended_location: Optional[ExtendedLocationArgs] = None,
                           resource_group_name: Optional[str] = None,
                           inventory_item_id: Optional[str] = None,
                           location: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           uuid: Optional[str] = None,
                           virtual_machine_template_name: Optional[str] = None,
                           vmm_server_id: Optional[str] = None)
func NewVirtualMachineTemplate(ctx *Context, name string, args VirtualMachineTemplateArgs, opts ...ResourceOption) (*VirtualMachineTemplate, error)
public VirtualMachineTemplate(string name, VirtualMachineTemplateArgs args, CustomResourceOptions? opts = null)
public VirtualMachineTemplate(String name, VirtualMachineTemplateArgs args)
public VirtualMachineTemplate(String name, VirtualMachineTemplateArgs args, CustomResourceOptions options)
type: azure-native:scvmm:VirtualMachineTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VirtualMachineTemplateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineTemplateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VirtualMachineTemplateArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var azure_nativeVirtualMachineTemplateResource = new AzureNative.Scvmm.VirtualMachineTemplate("azure-nativeVirtualMachineTemplateResource", new()
{
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    ResourceGroupName = "string",
    InventoryItemId = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Uuid = "string",
    VirtualMachineTemplateName = "string",
    VmmServerId = "string",
});
Copy
example, err := scvmm.NewVirtualMachineTemplate(ctx, "azure-nativeVirtualMachineTemplateResource", &scvmm.VirtualMachineTemplateArgs{
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	ResourceGroupName: "string",
	InventoryItemId:   "string",
	Location:          "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	Uuid:                       "string",
	VirtualMachineTemplateName: "string",
	VmmServerId:                "string",
})
Copy
var azure_nativeVirtualMachineTemplateResource = new com.pulumi.azurenative.scvmm.VirtualMachineTemplate("azure-nativeVirtualMachineTemplateResource", com.pulumi.azurenative.scvmm.VirtualMachineTemplateArgs.builder()
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .inventoryItemId("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .uuid("string")
    .virtualMachineTemplateName("string")
    .vmmServerId("string")
    .build());
Copy
azure_native_virtual_machine_template_resource = azure_native.scvmm.VirtualMachineTemplate("azure-nativeVirtualMachineTemplateResource",
    extended_location={
        name: string,
        type: string,
    },
    resource_group_name=string,
    inventory_item_id=string,
    location=string,
    tags={
        string: string,
    },
    uuid=string,
    virtual_machine_template_name=string,
    vmm_server_id=string)
Copy
const azure_nativeVirtualMachineTemplateResource = new azure_native.scvmm.VirtualMachineTemplate("azure-nativeVirtualMachineTemplateResource", {
    extendedLocation: {
        name: "string",
        type: "string",
    },
    resourceGroupName: "string",
    inventoryItemId: "string",
    location: "string",
    tags: {
        string: "string",
    },
    uuid: "string",
    virtualMachineTemplateName: "string",
    vmmServerId: "string",
});
Copy
type: azure-native:scvmm:VirtualMachineTemplate
properties:
    extendedLocation:
        name: string
        type: string
    inventoryItemId: string
    location: string
    resourceGroupName: string
    tags:
        string: string
    uuid: string
    virtualMachineTemplateName: string
    vmmServerId: string
Copy

VirtualMachineTemplate Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VirtualMachineTemplate resource accepts the following input properties:

ExtendedLocation This property is required. Pulumi.AzureNative.ScVmm.Inputs.ExtendedLocation
The extended location.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
InventoryItemId string
Gets or sets the inventory Item ID for the resource.
Location Changes to this property will trigger replacement. string
Gets or sets the location.
Tags Dictionary<string, string>
Resource tags
Uuid string
Unique ID of the virtual machine template.
VirtualMachineTemplateName Changes to this property will trigger replacement. string
Name of the VirtualMachineTemplate.
VmmServerId string
ARM Id of the vmmServer resource in which this resource resides.
ExtendedLocation This property is required. ExtendedLocationArgs
The extended location.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
InventoryItemId string
Gets or sets the inventory Item ID for the resource.
Location Changes to this property will trigger replacement. string
Gets or sets the location.
Tags map[string]string
Resource tags
Uuid string
Unique ID of the virtual machine template.
VirtualMachineTemplateName Changes to this property will trigger replacement. string
Name of the VirtualMachineTemplate.
VmmServerId string
ARM Id of the vmmServer resource in which this resource resides.
extendedLocation This property is required. ExtendedLocation
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
inventoryItemId String
Gets or sets the inventory Item ID for the resource.
location Changes to this property will trigger replacement. String
Gets or sets the location.
tags Map<String,String>
Resource tags
uuid String
Unique ID of the virtual machine template.
virtualMachineTemplateName Changes to this property will trigger replacement. String
Name of the VirtualMachineTemplate.
vmmServerId String
ARM Id of the vmmServer resource in which this resource resides.
extendedLocation This property is required. ExtendedLocation
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
inventoryItemId string
Gets or sets the inventory Item ID for the resource.
location Changes to this property will trigger replacement. string
Gets or sets the location.
tags {[key: string]: string}
Resource tags
uuid string
Unique ID of the virtual machine template.
virtualMachineTemplateName Changes to this property will trigger replacement. string
Name of the VirtualMachineTemplate.
vmmServerId string
ARM Id of the vmmServer resource in which this resource resides.
extended_location This property is required. ExtendedLocationArgs
The extended location.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
inventory_item_id str
Gets or sets the inventory Item ID for the resource.
location Changes to this property will trigger replacement. str
Gets or sets the location.
tags Mapping[str, str]
Resource tags
uuid str
Unique ID of the virtual machine template.
virtual_machine_template_name Changes to this property will trigger replacement. str
Name of the VirtualMachineTemplate.
vmm_server_id str
ARM Id of the vmmServer resource in which this resource resides.
extendedLocation This property is required. Property Map
The extended location.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
inventoryItemId String
Gets or sets the inventory Item ID for the resource.
location Changes to this property will trigger replacement. String
Gets or sets the location.
tags Map<String>
Resource tags
uuid String
Unique ID of the virtual machine template.
virtualMachineTemplateName Changes to this property will trigger replacement. String
Name of the VirtualMachineTemplate.
vmmServerId String
ARM Id of the vmmServer resource in which this resource resides.

Outputs

All input properties are implicitly available as output properties. Additionally, the VirtualMachineTemplate resource produces the following output properties:

ComputerName string
Gets or sets computer name.
CpuCount int
Gets or sets the desired number of vCPUs for the vm.
Disks List<Pulumi.AzureNative.ScVmm.Outputs.VirtualDiskResponse>
Gets or sets the disks of the template.
DynamicMemoryEnabled string
Gets or sets a value indicating whether to enable dynamic memory or not.
DynamicMemoryMaxMB int
Gets or sets the max dynamic memory for the vm.
DynamicMemoryMinMB int
Gets or sets the min dynamic memory for the vm.
Generation int
Gets or sets the generation for the vm.
Id string
The provider-assigned unique ID for this managed resource.
IsCustomizable string
Gets or sets a value indicating whether the vm template is customizable or not.
IsHighlyAvailable string
Gets highly available property.
LimitCpuForMigration string
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
MemoryMB int
MemoryMB is the desired size of a virtual machine's memory, in MB.
Name string
Resource Name
NetworkInterfaces List<Pulumi.AzureNative.ScVmm.Outputs.NetworkInterfacesResponse>
Gets or sets the network interfaces of the template.
OsName string
Gets or sets os name.
OsType string
Gets or sets the type of the os.
ProvisioningState string
Gets or sets the provisioning state.
SystemData Pulumi.AzureNative.ScVmm.Outputs.SystemDataResponse
The system data.
Type string
Resource Type
ComputerName string
Gets or sets computer name.
CpuCount int
Gets or sets the desired number of vCPUs for the vm.
Disks []VirtualDiskResponse
Gets or sets the disks of the template.
DynamicMemoryEnabled string
Gets or sets a value indicating whether to enable dynamic memory or not.
DynamicMemoryMaxMB int
Gets or sets the max dynamic memory for the vm.
DynamicMemoryMinMB int
Gets or sets the min dynamic memory for the vm.
Generation int
Gets or sets the generation for the vm.
Id string
The provider-assigned unique ID for this managed resource.
IsCustomizable string
Gets or sets a value indicating whether the vm template is customizable or not.
IsHighlyAvailable string
Gets highly available property.
LimitCpuForMigration string
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
MemoryMB int
MemoryMB is the desired size of a virtual machine's memory, in MB.
Name string
Resource Name
NetworkInterfaces []NetworkInterfacesResponse
Gets or sets the network interfaces of the template.
OsName string
Gets or sets os name.
OsType string
Gets or sets the type of the os.
ProvisioningState string
Gets or sets the provisioning state.
SystemData SystemDataResponse
The system data.
Type string
Resource Type
computerName String
Gets or sets computer name.
cpuCount Integer
Gets or sets the desired number of vCPUs for the vm.
disks List<VirtualDiskResponse>
Gets or sets the disks of the template.
dynamicMemoryEnabled String
Gets or sets a value indicating whether to enable dynamic memory or not.
dynamicMemoryMaxMB Integer
Gets or sets the max dynamic memory for the vm.
dynamicMemoryMinMB Integer
Gets or sets the min dynamic memory for the vm.
generation Integer
Gets or sets the generation for the vm.
id String
The provider-assigned unique ID for this managed resource.
isCustomizable String
Gets or sets a value indicating whether the vm template is customizable or not.
isHighlyAvailable String
Gets highly available property.
limitCpuForMigration String
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
memoryMB Integer
MemoryMB is the desired size of a virtual machine's memory, in MB.
name String
Resource Name
networkInterfaces List<NetworkInterfacesResponse>
Gets or sets the network interfaces of the template.
osName String
Gets or sets os name.
osType String
Gets or sets the type of the os.
provisioningState String
Gets or sets the provisioning state.
systemData SystemDataResponse
The system data.
type String
Resource Type
computerName string
Gets or sets computer name.
cpuCount number
Gets or sets the desired number of vCPUs for the vm.
disks VirtualDiskResponse[]
Gets or sets the disks of the template.
dynamicMemoryEnabled string
Gets or sets a value indicating whether to enable dynamic memory or not.
dynamicMemoryMaxMB number
Gets or sets the max dynamic memory for the vm.
dynamicMemoryMinMB number
Gets or sets the min dynamic memory for the vm.
generation number
Gets or sets the generation for the vm.
id string
The provider-assigned unique ID for this managed resource.
isCustomizable string
Gets or sets a value indicating whether the vm template is customizable or not.
isHighlyAvailable string
Gets highly available property.
limitCpuForMigration string
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
memoryMB number
MemoryMB is the desired size of a virtual machine's memory, in MB.
name string
Resource Name
networkInterfaces NetworkInterfacesResponse[]
Gets or sets the network interfaces of the template.
osName string
Gets or sets os name.
osType string
Gets or sets the type of the os.
provisioningState string
Gets or sets the provisioning state.
systemData SystemDataResponse
The system data.
type string
Resource Type
computer_name str
Gets or sets computer name.
cpu_count int
Gets or sets the desired number of vCPUs for the vm.
disks Sequence[VirtualDiskResponse]
Gets or sets the disks of the template.
dynamic_memory_enabled str
Gets or sets a value indicating whether to enable dynamic memory or not.
dynamic_memory_max_mb int
Gets or sets the max dynamic memory for the vm.
dynamic_memory_min_mb int
Gets or sets the min dynamic memory for the vm.
generation int
Gets or sets the generation for the vm.
id str
The provider-assigned unique ID for this managed resource.
is_customizable str
Gets or sets a value indicating whether the vm template is customizable or not.
is_highly_available str
Gets highly available property.
limit_cpu_for_migration str
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
memory_mb int
MemoryMB is the desired size of a virtual machine's memory, in MB.
name str
Resource Name
network_interfaces Sequence[NetworkInterfacesResponse]
Gets or sets the network interfaces of the template.
os_name str
Gets or sets os name.
os_type str
Gets or sets the type of the os.
provisioning_state str
Gets or sets the provisioning state.
system_data SystemDataResponse
The system data.
type str
Resource Type
computerName String
Gets or sets computer name.
cpuCount Number
Gets or sets the desired number of vCPUs for the vm.
disks List<Property Map>
Gets or sets the disks of the template.
dynamicMemoryEnabled String
Gets or sets a value indicating whether to enable dynamic memory or not.
dynamicMemoryMaxMB Number
Gets or sets the max dynamic memory for the vm.
dynamicMemoryMinMB Number
Gets or sets the min dynamic memory for the vm.
generation Number
Gets or sets the generation for the vm.
id String
The provider-assigned unique ID for this managed resource.
isCustomizable String
Gets or sets a value indicating whether the vm template is customizable or not.
isHighlyAvailable String
Gets highly available property.
limitCpuForMigration String
Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
memoryMB Number
MemoryMB is the desired size of a virtual machine's memory, in MB.
name String
Resource Name
networkInterfaces List<Property Map>
Gets or sets the network interfaces of the template.
osName String
Gets or sets os name.
osType String
Gets or sets the type of the os.
provisioningState String
Gets or sets the provisioning state.
systemData Property Map
The system data.
type String
Resource Type

Supporting Types

ExtendedLocation
, ExtendedLocationArgs

Name string
The extended location name.
Type string
The extended location type.
Name string
The extended location name.
Type string
The extended location type.
name String
The extended location name.
type String
The extended location type.
name string
The extended location name.
type string
The extended location type.
name str
The extended location name.
type str
The extended location type.
name String
The extended location name.
type String
The extended location type.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name string
The extended location name.
Type string
The extended location type.
Name string
The extended location name.
Type string
The extended location type.
name String
The extended location name.
type String
The extended location type.
name string
The extended location name.
type string
The extended location type.
name str
The extended location name.
type str
The extended location type.
name String
The extended location name.
type String
The extended location type.

NetworkInterfacesResponse
, NetworkInterfacesResponseArgs

DisplayName This property is required. string
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
Ipv4Addresses This property is required. List<string>
Gets or sets the nic ipv4 addresses.
Ipv6Addresses This property is required. List<string>
Gets or sets the nic ipv6 addresses.
NetworkName This property is required. string
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
Ipv4AddressType string
Gets or sets the ipv4 address type.
Ipv6AddressType string
Gets or sets the ipv6 address type.
MacAddress string
Gets or sets the nic MAC address.
MacAddressType string
Gets or sets the mac address type.
Name string
Gets or sets the name of the network interface.
NicId string
Gets or sets the nic id.
VirtualNetworkId string
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
DisplayName This property is required. string
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
Ipv4Addresses This property is required. []string
Gets or sets the nic ipv4 addresses.
Ipv6Addresses This property is required. []string
Gets or sets the nic ipv6 addresses.
NetworkName This property is required. string
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
Ipv4AddressType string
Gets or sets the ipv4 address type.
Ipv6AddressType string
Gets or sets the ipv6 address type.
MacAddress string
Gets or sets the nic MAC address.
MacAddressType string
Gets or sets the mac address type.
Name string
Gets or sets the name of the network interface.
NicId string
Gets or sets the nic id.
VirtualNetworkId string
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
displayName This property is required. String
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
ipv4Addresses This property is required. List<String>
Gets or sets the nic ipv4 addresses.
ipv6Addresses This property is required. List<String>
Gets or sets the nic ipv6 addresses.
networkName This property is required. String
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
ipv4AddressType String
Gets or sets the ipv4 address type.
ipv6AddressType String
Gets or sets the ipv6 address type.
macAddress String
Gets or sets the nic MAC address.
macAddressType String
Gets or sets the mac address type.
name String
Gets or sets the name of the network interface.
nicId String
Gets or sets the nic id.
virtualNetworkId String
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
displayName This property is required. string
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
ipv4Addresses This property is required. string[]
Gets or sets the nic ipv4 addresses.
ipv6Addresses This property is required. string[]
Gets or sets the nic ipv6 addresses.
networkName This property is required. string
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
ipv4AddressType string
Gets or sets the ipv4 address type.
ipv6AddressType string
Gets or sets the ipv6 address type.
macAddress string
Gets or sets the nic MAC address.
macAddressType string
Gets or sets the mac address type.
name string
Gets or sets the name of the network interface.
nicId string
Gets or sets the nic id.
virtualNetworkId string
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
display_name This property is required. str
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
ipv4_addresses This property is required. Sequence[str]
Gets or sets the nic ipv4 addresses.
ipv6_addresses This property is required. Sequence[str]
Gets or sets the nic ipv6 addresses.
network_name This property is required. str
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
ipv4_address_type str
Gets or sets the ipv4 address type.
ipv6_address_type str
Gets or sets the ipv6 address type.
mac_address str
Gets or sets the nic MAC address.
mac_address_type str
Gets or sets the mac address type.
name str
Gets or sets the name of the network interface.
nic_id str
Gets or sets the nic id.
virtual_network_id str
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
displayName This property is required. String
Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
ipv4Addresses This property is required. List<String>
Gets or sets the nic ipv4 addresses.
ipv6Addresses This property is required. List<String>
Gets or sets the nic ipv6 addresses.
networkName This property is required. String
Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
ipv4AddressType String
Gets or sets the ipv4 address type.
ipv6AddressType String
Gets or sets the ipv6 address type.
macAddress String
Gets or sets the nic MAC address.
macAddressType String
Gets or sets the mac address type.
name String
Gets or sets the name of the network interface.
nicId String
Gets or sets the nic id.
virtualNetworkId String
Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.

StorageQoSPolicyDetailsResponse
, StorageQoSPolicyDetailsResponseArgs

Id string
The ID of the QoS policy.
Name string
The name of the policy.
Id string
The ID of the QoS policy.
Name string
The name of the policy.
id String
The ID of the QoS policy.
name String
The name of the policy.
id string
The ID of the QoS policy.
name string
The name of the policy.
id str
The ID of the QoS policy.
name str
The name of the policy.
id String
The ID of the QoS policy.
name String
The name of the policy.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

VirtualDiskResponse
, VirtualDiskResponseArgs

DisplayName This property is required. string
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
MaxDiskSizeGB This property is required. int
Gets or sets the max disk size.
VhdFormatType This property is required. string
Gets the disk vhd format type.
VolumeType This property is required. string
Gets or sets the disk volume type.
Bus int
Gets or sets the disk bus.
BusType string
Gets or sets the disk bus type.
CreateDiffDisk string
Gets or sets a value indicating diff disk.
DiskId string
Gets or sets the disk id.
DiskSizeGB int
Gets or sets the disk total size.
Lun int
Gets or sets the disk lun.
Name string
Gets or sets the name of the disk.
StorageQoSPolicy Pulumi.AzureNative.ScVmm.Inputs.StorageQoSPolicyDetailsResponse
The QoS policy for the disk.
TemplateDiskId string
Gets or sets the disk id in the template.
VhdType string
Gets or sets the disk vhd type.
DisplayName This property is required. string
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
MaxDiskSizeGB This property is required. int
Gets or sets the max disk size.
VhdFormatType This property is required. string
Gets the disk vhd format type.
VolumeType This property is required. string
Gets or sets the disk volume type.
Bus int
Gets or sets the disk bus.
BusType string
Gets or sets the disk bus type.
CreateDiffDisk string
Gets or sets a value indicating diff disk.
DiskId string
Gets or sets the disk id.
DiskSizeGB int
Gets or sets the disk total size.
Lun int
Gets or sets the disk lun.
Name string
Gets or sets the name of the disk.
StorageQoSPolicy StorageQoSPolicyDetailsResponse
The QoS policy for the disk.
TemplateDiskId string
Gets or sets the disk id in the template.
VhdType string
Gets or sets the disk vhd type.
displayName This property is required. String
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
maxDiskSizeGB This property is required. Integer
Gets or sets the max disk size.
vhdFormatType This property is required. String
Gets the disk vhd format type.
volumeType This property is required. String
Gets or sets the disk volume type.
bus Integer
Gets or sets the disk bus.
busType String
Gets or sets the disk bus type.
createDiffDisk String
Gets or sets a value indicating diff disk.
diskId String
Gets or sets the disk id.
diskSizeGB Integer
Gets or sets the disk total size.
lun Integer
Gets or sets the disk lun.
name String
Gets or sets the name of the disk.
storageQoSPolicy StorageQoSPolicyDetailsResponse
The QoS policy for the disk.
templateDiskId String
Gets or sets the disk id in the template.
vhdType String
Gets or sets the disk vhd type.
displayName This property is required. string
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
maxDiskSizeGB This property is required. number
Gets or sets the max disk size.
vhdFormatType This property is required. string
Gets the disk vhd format type.
volumeType This property is required. string
Gets or sets the disk volume type.
bus number
Gets or sets the disk bus.
busType string
Gets or sets the disk bus type.
createDiffDisk string
Gets or sets a value indicating diff disk.
diskId string
Gets or sets the disk id.
diskSizeGB number
Gets or sets the disk total size.
lun number
Gets or sets the disk lun.
name string
Gets or sets the name of the disk.
storageQoSPolicy StorageQoSPolicyDetailsResponse
The QoS policy for the disk.
templateDiskId string
Gets or sets the disk id in the template.
vhdType string
Gets or sets the disk vhd type.
display_name This property is required. str
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
max_disk_size_gb This property is required. int
Gets or sets the max disk size.
vhd_format_type This property is required. str
Gets the disk vhd format type.
volume_type This property is required. str
Gets or sets the disk volume type.
bus int
Gets or sets the disk bus.
bus_type str
Gets or sets the disk bus type.
create_diff_disk str
Gets or sets a value indicating diff disk.
disk_id str
Gets or sets the disk id.
disk_size_gb int
Gets or sets the disk total size.
lun int
Gets or sets the disk lun.
name str
Gets or sets the name of the disk.
storage_qo_s_policy StorageQoSPolicyDetailsResponse
The QoS policy for the disk.
template_disk_id str
Gets or sets the disk id in the template.
vhd_type str
Gets or sets the disk vhd type.
displayName This property is required. String
Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
maxDiskSizeGB This property is required. Number
Gets or sets the max disk size.
vhdFormatType This property is required. String
Gets the disk vhd format type.
volumeType This property is required. String
Gets or sets the disk volume type.
bus Number
Gets or sets the disk bus.
busType String
Gets or sets the disk bus type.
createDiffDisk String
Gets or sets a value indicating diff disk.
diskId String
Gets or sets the disk id.
diskSizeGB Number
Gets or sets the disk total size.
lun Number
Gets or sets the disk lun.
name String
Gets or sets the name of the disk.
storageQoSPolicy Property Map
The QoS policy for the disk.
templateDiskId String
Gets or sets the disk id in the template.
vhdType String
Gets or sets the disk vhd type.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:scvmm:VirtualMachineTemplate HRVirtualMachineTemplate /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ScVmm/virtualMachineTemplates/{virtualMachineTemplateName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0