azure-native.scvmm.VirtualMachineTemplate
Explore with Pulumi AI
The VirtualMachineTemplates resource definition. API Version: 2020-06-05-preview.
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",
});
});
package main
import (
scvmm "github.com/pulumi/pulumi-azure-native-sdk/scvmm"
"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
})
}
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 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(Map.ofEntries(
Map.entry("name", "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso"),
Map.entry("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")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_template = azure_native.scvmm.VirtualMachineTemplate("virtualMachineTemplate",
extended_location=azure_native.scvmm.ExtendedLocationArgs(
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")
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",
});
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
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 string
- The unique name of the resource.
- args VirtualMachineTemplateArgs
- 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 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 string
- The unique name of the resource.
- args VirtualMachineTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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",
})
var azure_nativeVirtualMachineTemplateResource = new VirtualMachineTemplate("azure-nativeVirtualMachineTemplateResource", 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());
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)
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",
});
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
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
The VirtualMachineTemplate resource accepts the following input properties:
- Extended
Location Pulumi.Azure Native. Sc Vmm. Inputs. Extended Location - The extended location.
- Resource
Group stringName - The name of the resource group.
- Inventory
Item stringId - Gets or sets the inventory Item ID for the resource.
- Location string
- Gets or sets the location.
- Dictionary<string, string>
- Resource tags
- Uuid string
- Unique ID of the virtual machine template.
- Virtual
Machine stringTemplate Name - Name of the VirtualMachineTemplate.
- Vmm
Server stringId - ARM Id of the vmmServer resource in which this resource resides.
- Extended
Location ExtendedLocation Args - The extended location.
- Resource
Group stringName - The name of the resource group.
- Inventory
Item stringId - Gets or sets the inventory Item ID for the resource.
- Location string
- Gets or sets the location.
- map[string]string
- Resource tags
- Uuid string
- Unique ID of the virtual machine template.
- Virtual
Machine stringTemplate Name - Name of the VirtualMachineTemplate.
- Vmm
Server stringId - ARM Id of the vmmServer resource in which this resource resides.
- extended
Location ExtendedLocation - The extended location.
- resource
Group StringName - The name of the resource group.
- inventory
Item StringId - Gets or sets the inventory Item ID for the resource.
- location String
- Gets or sets the location.
- Map<String,String>
- Resource tags
- uuid String
- Unique ID of the virtual machine template.
- virtual
Machine StringTemplate Name - Name of the VirtualMachineTemplate.
- vmm
Server StringId - ARM Id of the vmmServer resource in which this resource resides.
- extended
Location ExtendedLocation - The extended location.
- resource
Group stringName - The name of the resource group.
- inventory
Item stringId - Gets or sets the inventory Item ID for the resource.
- location string
- Gets or sets the location.
- {[key: string]: string}
- Resource tags
- uuid string
- Unique ID of the virtual machine template.
- virtual
Machine stringTemplate Name - Name of the VirtualMachineTemplate.
- vmm
Server stringId - ARM Id of the vmmServer resource in which this resource resides.
- extended_
location ExtendedLocation Args - The extended location.
- resource_
group_ strname - The name of the resource group.
- inventory_
item_ strid - Gets or sets the inventory Item ID for the resource.
- location str
- Gets or sets the location.
- Mapping[str, str]
- Resource tags
- uuid str
- Unique ID of the virtual machine template.
- virtual_
machine_ strtemplate_ name - Name of the VirtualMachineTemplate.
- vmm_
server_ strid - ARM Id of the vmmServer resource in which this resource resides.
- extended
Location Property Map - The extended location.
- resource
Group StringName - The name of the resource group.
- inventory
Item StringId - Gets or sets the inventory Item ID for the resource.
- location String
- Gets or sets the location.
- Map<String>
- Resource tags
- uuid String
- Unique ID of the virtual machine template.
- virtual
Machine StringTemplate Name - Name of the VirtualMachineTemplate.
- vmm
Server StringId - 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:
- Computer
Name string - Gets or sets computer name.
- Cpu
Count int - Gets or sets the desired number of vCPUs for the vm.
- Disks
List<Pulumi.
Azure Native. Sc Vmm. Outputs. Virtual Disk Response> - Gets or sets the disks of the template.
- Dynamic
Memory stringEnabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- Dynamic
Memory intMax MB - Gets or sets the max dynamic memory for the vm.
- Dynamic
Memory intMin MB - Gets or sets the min dynamic memory for the vm.
- Generation int
- Gets or sets the generation for the vm.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Customizable string - Gets or sets a value indicating whether the vm template is customizable or not.
- Is
Highly stringAvailable - Gets highly available property.
- Limit
Cpu stringFor Migration - 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 string
- Resource Name
- Network
Interfaces List<Pulumi.Azure Native. Sc Vmm. Outputs. Network Interfaces Response> - Gets or sets the network interfaces of the template.
- Os
Name string - Gets or sets os name.
- Os
Type string - Gets or sets the type of the os.
- Provisioning
State string - Gets or sets the provisioning state.
- System
Data Pulumi.Azure Native. Sc Vmm. Outputs. System Data Response - The system data.
- Type string
- Resource Type
- Computer
Name string - Gets or sets computer name.
- Cpu
Count int - Gets or sets the desired number of vCPUs for the vm.
- Disks
[]Virtual
Disk Response - Gets or sets the disks of the template.
- Dynamic
Memory stringEnabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- Dynamic
Memory intMax MB - Gets or sets the max dynamic memory for the vm.
- Dynamic
Memory intMin MB - Gets or sets the min dynamic memory for the vm.
- Generation int
- Gets or sets the generation for the vm.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Customizable string - Gets or sets a value indicating whether the vm template is customizable or not.
- Is
Highly stringAvailable - Gets highly available property.
- Limit
Cpu stringFor Migration - 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 string
- Resource Name
- Network
Interfaces []NetworkInterfaces Response - Gets or sets the network interfaces of the template.
- Os
Name string - Gets or sets os name.
- Os
Type string - Gets or sets the type of the os.
- Provisioning
State string - Gets or sets the provisioning state.
- System
Data SystemData Response - The system data.
- Type string
- Resource Type
- computer
Name String - Gets or sets computer name.
- cpu
Count Integer - Gets or sets the desired number of vCPUs for the vm.
- disks
List<Virtual
Disk Response> - Gets or sets the disks of the template.
- dynamic
Memory StringEnabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic
Memory IntegerMax MB - Gets or sets the max dynamic memory for the vm.
- dynamic
Memory IntegerMin MB - 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.
- is
Customizable String - Gets or sets a value indicating whether the vm template is customizable or not.
- is
Highly StringAvailable - Gets highly available property.
- limit
Cpu StringFor Migration - Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory
MB Integer - MemoryMB is the desired size of a virtual machine's memory, in MB.
- name String
- Resource Name
- network
Interfaces List<NetworkInterfaces Response> - Gets or sets the network interfaces of the template.
- os
Name String - Gets or sets os name.
- os
Type String - Gets or sets the type of the os.
- provisioning
State String - Gets or sets the provisioning state.
- system
Data SystemData Response - The system data.
- type String
- Resource Type
- computer
Name string - Gets or sets computer name.
- cpu
Count number - Gets or sets the desired number of vCPUs for the vm.
- disks
Virtual
Disk Response[] - Gets or sets the disks of the template.
- dynamic
Memory stringEnabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic
Memory numberMax MB - Gets or sets the max dynamic memory for the vm.
- dynamic
Memory numberMin MB - 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.
- is
Customizable string - Gets or sets a value indicating whether the vm template is customizable or not.
- is
Highly stringAvailable - Gets highly available property.
- limit
Cpu stringFor Migration - Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory
MB number - MemoryMB is the desired size of a virtual machine's memory, in MB.
- name string
- Resource Name
- network
Interfaces NetworkInterfaces Response[] - Gets or sets the network interfaces of the template.
- os
Name string - Gets or sets os name.
- os
Type string - Gets or sets the type of the os.
- provisioning
State string - Gets or sets the provisioning state.
- system
Data SystemData Response - 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[Virtual
Disk Response] - Gets or sets the disks of the template.
- dynamic_
memory_ strenabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic_
memory_ intmax_ mb - Gets or sets the max dynamic memory for the vm.
- dynamic_
memory_ intmin_ mb - Gets or sets the min dynamic memory for the vm.
- 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_ stravailable - Gets highly available property.
- limit_
cpu_ strfor_ migration - Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory_
mb int - MemoryMB is the desired size of a virtual machine's memory, in MB.
- name str
- Resource Name
- network_
interfaces Sequence[NetworkInterfaces Response] - 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 SystemData Response - The system data.
- type str
- Resource Type
- computer
Name String - Gets or sets computer name.
- cpu
Count Number - Gets or sets the desired number of vCPUs for the vm.
- disks List<Property Map>
- Gets or sets the disks of the template.
- dynamic
Memory StringEnabled - Gets or sets a value indicating whether to enable dynamic memory or not.
- dynamic
Memory NumberMax MB - Gets or sets the max dynamic memory for the vm.
- dynamic
Memory NumberMin MB - 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.
- is
Customizable String - Gets or sets a value indicating whether the vm template is customizable or not.
- is
Highly StringAvailable - Gets highly available property.
- limit
Cpu StringFor Migration - Gets or sets a value indicating whether to enable processor compatibility mode for live migration of VMs.
- memory
MB Number - MemoryMB is the desired size of a virtual machine's memory, in MB.
- name String
- Resource Name
- network
Interfaces List<Property Map> - Gets or sets the network interfaces of the template.
- os
Name String - Gets or sets os name.
- os
Type String - Gets or sets the type of the os.
- provisioning
State String - Gets or sets the provisioning state.
- system
Data Property Map - The system data.
- type String
- Resource Type
Supporting Types
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
NetworkInterfacesResponse, NetworkInterfacesResponseArgs
- Display
Name string - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- Ipv4Addresses List<string>
- Gets or sets the nic ipv4 addresses.
- Ipv6Addresses List<string>
- Gets or sets the nic ipv6 addresses.
- Network
Name string - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- Ipv4Address
Type string - Gets or sets the ipv4 address type.
- Ipv6Address
Type string - Gets or sets the ipv6 address type.
- Mac
Address string - Gets or sets the nic MAC address.
- Mac
Address stringType - Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- Nic
Id string - Gets or sets the nic id.
- Virtual
Network stringId - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- Display
Name string - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- Ipv4Addresses []string
- Gets or sets the nic ipv4 addresses.
- Ipv6Addresses []string
- Gets or sets the nic ipv6 addresses.
- Network
Name string - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- Ipv4Address
Type string - Gets or sets the ipv4 address type.
- Ipv6Address
Type string - Gets or sets the ipv6 address type.
- Mac
Address string - Gets or sets the nic MAC address.
- Mac
Address stringType - Gets or sets the mac address type.
- Name string
- Gets or sets the name of the network interface.
- Nic
Id string - Gets or sets the nic id.
- Virtual
Network stringId - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- display
Name String - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses List<String>
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses List<String>
- Gets or sets the nic ipv6 addresses.
- network
Name String - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4Address
Type String - Gets or sets the ipv4 address type.
- ipv6Address
Type String - Gets or sets the ipv6 address type.
- mac
Address String - Gets or sets the nic MAC address.
- mac
Address StringType - Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nic
Id String - Gets or sets the nic id.
- virtual
Network StringId - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- display
Name string - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses string[]
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses string[]
- Gets or sets the nic ipv6 addresses.
- network
Name string - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4Address
Type string - Gets or sets the ipv4 address type.
- ipv6Address
Type string - Gets or sets the ipv6 address type.
- mac
Address string - Gets or sets the nic MAC address.
- mac
Address stringType - Gets or sets the mac address type.
- name string
- Gets or sets the name of the network interface.
- nic
Id string - Gets or sets the nic id.
- virtual
Network stringId - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- display_
name str - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4_
addresses Sequence[str] - Gets or sets the nic ipv4 addresses.
- ipv6_
addresses Sequence[str] - Gets or sets the nic ipv6 addresses.
- network_
name str - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4_
address_ strtype - Gets or sets the ipv4 address type.
- ipv6_
address_ strtype - Gets or sets the ipv6 address type.
- mac_
address str - Gets or sets the nic MAC address.
- mac_
address_ strtype - Gets or sets the mac address type.
- name str
- Gets or sets the name of the network interface.
- nic_
id str - Gets or sets the nic id.
- virtual_
network_ strid - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
- display
Name String - Gets the display name of the network interface as shown in the vmmServer. This is the fallback label for a NIC when the name is not set.
- ipv4Addresses List<String>
- Gets or sets the nic ipv4 addresses.
- ipv6Addresses List<String>
- Gets or sets the nic ipv6 addresses.
- network
Name String - Gets or sets the name of the virtual network in vmmServer that the nic is connected to.
- ipv4Address
Type String - Gets or sets the ipv4 address type.
- ipv6Address
Type String - Gets or sets the ipv6 address type.
- mac
Address String - Gets or sets the nic MAC address.
- mac
Address StringType - Gets or sets the mac address type.
- name String
- Gets or sets the name of the network interface.
- nic
Id String - Gets or sets the nic id.
- virtual
Network StringId - Gets or sets the ARM Id of the Microsoft.ScVmm/virtualNetwork resource to connect the nic.
StorageQoSPolicyDetailsResponse, StorageQoSPolicyDetailsResponseArgs
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.
VirtualDiskResponse, VirtualDiskResponseArgs
- Display
Name 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.
- Max
Disk intSize GB - Gets or sets the max disk size.
- Vhd
Format stringType - Gets the disk vhd format type.
- Volume
Type string - Gets or sets the disk volume type.
- Bus int
- Gets or sets the disk bus.
- Bus
Type string - Gets or sets the disk bus type.
- Create
Diff stringDisk - Gets or sets a value indicating diff disk.
- Disk
Id string - Gets or sets the disk id.
- Disk
Size intGB - Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- Storage
Qo Pulumi.SPolicy Azure Native. Sc Vmm. Inputs. Storage Qo SPolicy Details Response - The QoS policy for the disk.
- Template
Disk stringId - Gets or sets the disk id in the template.
- Vhd
Type string - Gets or sets the disk vhd type.
- Display
Name 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.
- Max
Disk intSize GB - Gets or sets the max disk size.
- Vhd
Format stringType - Gets the disk vhd format type.
- Volume
Type string - Gets or sets the disk volume type.
- Bus int
- Gets or sets the disk bus.
- Bus
Type string - Gets or sets the disk bus type.
- Create
Diff stringDisk - Gets or sets a value indicating diff disk.
- Disk
Id string - Gets or sets the disk id.
- Disk
Size intGB - Gets or sets the disk total size.
- Lun int
- Gets or sets the disk lun.
- Name string
- Gets or sets the name of the disk.
- Storage
Qo StorageSPolicy Qo SPolicy Details Response - The QoS policy for the disk.
- Template
Disk stringId - Gets or sets the disk id in the template.
- Vhd
Type string - Gets or sets the disk vhd type.
- display
Name 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.
- max
Disk IntegerSize GB - Gets or sets the max disk size.
- vhd
Format StringType - Gets the disk vhd format type.
- volume
Type String - Gets or sets the disk volume type.
- bus Integer
- Gets or sets the disk bus.
- bus
Type String - Gets or sets the disk bus type.
- create
Diff StringDisk - Gets or sets a value indicating diff disk.
- disk
Id String - Gets or sets the disk id.
- disk
Size IntegerGB - Gets or sets the disk total size.
- lun Integer
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storage
Qo StorageSPolicy Qo SPolicy Details Response - The QoS policy for the disk.
- template
Disk StringId - Gets or sets the disk id in the template.
- vhd
Type String - Gets or sets the disk vhd type.
- display
Name 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.
- max
Disk numberSize GB - Gets or sets the max disk size.
- vhd
Format stringType - Gets the disk vhd format type.
- volume
Type string - Gets or sets the disk volume type.
- bus number
- Gets or sets the disk bus.
- bus
Type string - Gets or sets the disk bus type.
- create
Diff stringDisk - Gets or sets a value indicating diff disk.
- disk
Id string - Gets or sets the disk id.
- disk
Size numberGB - Gets or sets the disk total size.
- lun number
- Gets or sets the disk lun.
- name string
- Gets or sets the name of the disk.
- storage
Qo StorageSPolicy Qo SPolicy Details Response - The QoS policy for the disk.
- template
Disk stringId - Gets or sets the disk id in the template.
- vhd
Type string - Gets or sets the disk vhd type.
- display_
name str - Gets the display name of the virtual disk as shown in the vmmServer. This is the fallback label for a disk when the name is not set.
- max_
disk_ intsize_ gb - Gets or sets the max disk size.
- vhd_
format_ strtype - Gets the disk vhd format type.
- volume_
type str - Gets or sets the disk volume type.
- bus int
- Gets or sets the disk bus.
- bus_
type str - Gets or sets the disk bus type.
- create_
diff_ strdisk - Gets or sets a value indicating diff disk.
- disk_
id str - Gets or sets the disk id.
- disk_
size_ intgb - Gets or sets the disk total size.
- lun int
- Gets or sets the disk lun.
- name str
- Gets or sets the name of the disk.
- storage_
qo_ Storages_ policy Qo SPolicy Details Response - The QoS policy for the disk.
- template_
disk_ strid - Gets or sets the disk id in the template.
- vhd_
type str - Gets or sets the disk vhd type.
- display
Name 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.
- max
Disk NumberSize GB - Gets or sets the max disk size.
- vhd
Format StringType - Gets the disk vhd format type.
- volume
Type String - Gets or sets the disk volume type.
- bus Number
- Gets or sets the disk bus.
- bus
Type String - Gets or sets the disk bus type.
- create
Diff StringDisk - Gets or sets a value indicating diff disk.
- disk
Id String - Gets or sets the disk id.
- disk
Size NumberGB - Gets or sets the disk total size.
- lun Number
- Gets or sets the disk lun.
- name String
- Gets or sets the name of the disk.
- storage
Qo Property MapSPolicy - The QoS policy for the disk.
- template
Disk StringId - Gets or sets the disk id in the template.
- vhd
Type 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/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VirtualMachineTemplates/HRVirtualMachineTemplate
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0