azure-native.compute.VirtualMachine
Explore with Pulumi AI
Describes a Virtual Machine. API Version: 2021-03-01.
Example Usage
Create a Linux vm with a patch setting assessmentMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2s_v3",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
{
PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
{
AssessmentMode = "ImageDefault",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "UbuntuServer",
Publisher = "Canonical",
Sku = "16.04-LTS",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2s_v3"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("linuxConfiguration", Map.ofEntries(
Map.entry("patchSettings", Map.of("assessmentMode", "ImageDefault")),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "UbuntuServer"),
Map.entry("publisher", "Canonical"),
Map.entry("sku", "16.04-LTS"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2s_v3",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
linux_configuration={
"patchSettings": azure_native.compute.LinuxPatchSettingsArgs(
assessment_mode="ImageDefault",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="UbuntuServer",
publisher="Canonical",
sku="16.04-LTS",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2s_v3",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
linuxConfiguration: {
patchSettings: {
assessmentMode: "ImageDefault",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "UbuntuServer",
publisher: "Canonical",
sku: "16.04-LTS",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2s_v3
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
linuxConfiguration:
patchSettings:
assessmentMode: ImageDefault
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: UbuntuServer
publisher: Canonical
sku: 16.04-LTS
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Linux vm with a patch setting patchMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2s_v3",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
{
PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
{
PatchMode = "ImageDefault",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "UbuntuServer",
Publisher = "Canonical",
Sku = "16.04-LTS",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2s_v3"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("linuxConfiguration", Map.ofEntries(
Map.entry("patchSettings", Map.of("patchMode", "ImageDefault")),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "UbuntuServer"),
Map.entry("publisher", "Canonical"),
Map.entry("sku", "16.04-LTS"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2s_v3",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
linux_configuration={
"patchSettings": azure_native.compute.LinuxPatchSettingsArgs(
patch_mode="ImageDefault",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="UbuntuServer",
publisher="Canonical",
sku="16.04-LTS",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2s_v3",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
linuxConfiguration: {
patchSettings: {
patchMode: "ImageDefault",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "UbuntuServer",
publisher: "Canonical",
sku: "16.04-LTS",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2s_v3
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
linuxConfiguration:
patchSettings:
patchMode: ImageDefault
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: UbuntuServer
publisher: Canonical
sku: 16.04-LTS
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Linux vm with a patch settings patchMode and assessmentMode set to AutomaticByPlatform.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2s_v3",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
{
PatchSettings = new AzureNative.Compute.Inputs.LinuxPatchSettingsArgs
{
AssessmentMode = "AutomaticByPlatform",
PatchMode = "AutomaticByPlatform",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "UbuntuServer",
Publisher = "Canonical",
Sku = "16.04-LTS",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2s_v3"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("linuxConfiguration", Map.ofEntries(
Map.entry("patchSettings", Map.ofEntries(
Map.entry("assessmentMode", "AutomaticByPlatform"),
Map.entry("patchMode", "AutomaticByPlatform")
)),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "UbuntuServer"),
Map.entry("publisher", "Canonical"),
Map.entry("sku", "16.04-LTS"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2s_v3",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
linux_configuration={
"patchSettings": azure_native.compute.LinuxPatchSettingsArgs(
assessment_mode="AutomaticByPlatform",
patch_mode="AutomaticByPlatform",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="UbuntuServer",
publisher="Canonical",
sku="16.04-LTS",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2s_v3",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
linuxConfiguration: {
patchSettings: {
assessmentMode: "AutomaticByPlatform",
patchMode: "AutomaticByPlatform",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "UbuntuServer",
publisher: "Canonical",
sku: "16.04-LTS",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2s_v3
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
linuxConfiguration:
patchSettings:
assessmentMode: AutomaticByPlatform
patchMode: AutomaticByPlatform
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: UbuntuServer
publisher: Canonical
sku: 16.04-LTS
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a VM with Uefi Settings of secureBoot and vTPM.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2s_v3",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
{
SecurityType = "TrustedLaunch",
UefiSettings = new AzureNative.Compute.Inputs.UefiSettingsArgs
{
SecureBootEnabled = true,
VTpmEnabled = true,
},
},
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windowsserver-gen2preview-preview",
Publisher = "MicrosoftWindowsServer",
Sku = "windows10-tvm",
Version = "18363.592.2001092016",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadOnly,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "StandardSSD_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2s_v3"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.securityProfile(Map.ofEntries(
Map.entry("securityType", "TrustedLaunch"),
Map.entry("uefiSettings", Map.ofEntries(
Map.entry("secureBootEnabled", true),
Map.entry("vTpmEnabled", true)
))
))
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windowsserver-gen2preview-preview"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "windows10-tvm"),
Map.entry("version", "18363.592.2001092016")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadOnly"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "StandardSSD_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2s_v3",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
security_profile=azure_native.compute.SecurityProfileResponseArgs(
security_type="TrustedLaunch",
uefi_settings=azure_native.compute.UefiSettingsArgs(
secure_boot_enabled=True,
v_tpm_enabled=True,
),
),
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windowsserver-gen2preview-preview",
publisher="MicrosoftWindowsServer",
sku="windows10-tvm",
version="18363.592.2001092016",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_ONLY,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="StandardSSD_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2s_v3",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
securityProfile: {
securityType: "TrustedLaunch",
uefiSettings: {
secureBootEnabled: true,
vTpmEnabled: true,
},
},
storageProfile: {
imageReference: {
offer: "windowsserver-gen2preview-preview",
publisher: "MicrosoftWindowsServer",
sku: "windows10-tvm",
version: "18363.592.2001092016",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadOnly,
createOption: "FromImage",
managedDisk: {
storageAccountType: "StandardSSD_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2s_v3
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
securityProfile:
securityType: TrustedLaunch
uefiSettings:
secureBootEnabled: true
vTpmEnabled: true
storageProfile:
imageReference:
offer: windowsserver-gen2preview-preview
publisher: MicrosoftWindowsServer
sku: windows10-tvm
version: 18363.592.2001092016
osDisk:
caching: ReadOnly
createOption: FromImage
managedDisk:
storageAccountType: StandardSSD_LRS
name: myVMosdisk
vmName: myVM
Create a VM with UserData
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
{
BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
{
Enabled = true,
StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "{vm-name}",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "vmOSdisk",
},
},
UserData = "RXhhbXBsZSBVc2VyRGF0YQ==",
VmName = "{vm-name}",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.diagnosticsProfile(Map.of("bootDiagnostics", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("storageUri", "http://{existing-storage-account-name}.blob.core.windows.net")
)))
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "{vm-name}")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "vmOSdisk")
))
))
.userData("RXhhbXBsZSBVc2VyRGF0YQ==")
.vmName("{vm-name}")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
diagnostics_profile=azure_native.compute.DiagnosticsProfileResponseArgs(
boot_diagnostics=azure_native.compute.BootDiagnosticsArgs(
enabled=True,
storage_uri="http://{existing-storage-account-name}.blob.core.windows.net",
),
),
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="{vm-name}",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "vmOSdisk",
},
),
user_data="RXhhbXBsZSBVc2VyRGF0YQ==",
vm_name="{vm-name}")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
diagnosticsProfile: {
bootDiagnostics: {
enabled: true,
storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "{vm-name}",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "vmOSdisk",
},
},
userData: "RXhhbXBsZSBVc2VyRGF0YQ==",
vmName: "{vm-name}",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
diagnosticsProfile:
bootDiagnostics:
enabled: true
storageUri: http://{existing-storage-account-name}.blob.core.windows.net
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: '{vm-name}'
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: vmOSdisk
userData: RXhhbXBsZSBVc2VyRGF0YQ==
vmName: '{vm-name}'
Create a VM with network interface configuration
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkApiVersion = "2020-11-01",
NetworkInterfaceConfigurations = new[]
{
new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceConfigurationArgs
{
DeleteOption = "Delete",
IpConfigurations = new[]
{
new AzureNative.Compute.Inputs.VirtualMachineNetworkInterfaceIPConfigurationArgs
{
Name = "{ip-config-name}",
Primary = true,
PublicIPAddressConfiguration = new AzureNative.Compute.Inputs.VirtualMachinePublicIPAddressConfigurationArgs
{
DeleteOption = "Detach",
Name = "{publicIP-config-name}",
PublicIPAllocationMethod = "Static",
Sku = new AzureNative.Compute.Inputs.PublicIPAddressSkuArgs
{
Name = "Basic",
Tier = "Global",
},
},
},
},
Name = "{nic-config-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.ofEntries(
Map.entry("networkApiVersion", "2020-11-01"),
Map.entry("networkInterfaceConfigurations", Map.ofEntries(
Map.entry("deleteOption", "Delete"),
Map.entry("ipConfigurations", Map.ofEntries(
Map.entry("name", "{ip-config-name}"),
Map.entry("primary", true),
Map.entry("publicIPAddressConfiguration", Map.ofEntries(
Map.entry("deleteOption", "Detach"),
Map.entry("name", "{publicIP-config-name}"),
Map.entry("publicIPAllocationMethod", "Static"),
Map.entry("sku", Map.ofEntries(
Map.entry("name", "Basic"),
Map.entry("tier", "Global")
))
))
)),
Map.entry("name", "{nic-config-name}"),
Map.entry("primary", true)
))
))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_api_version="2020-11-01",
network_interface_configurations=[{
"deleteOption": "Delete",
"ipConfigurations": [{
"name": "{ip-config-name}",
"primary": True,
"publicIPAddressConfiguration": {
"deleteOption": "Detach",
"name": "{publicIP-config-name}",
"publicIPAllocationMethod": "Static",
"sku": azure_native.compute.PublicIPAddressSkuArgs(
name="Basic",
tier="Global",
),
},
}],
"name": "{nic-config-name}",
"primary": True,
}],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkApiVersion: "2020-11-01",
networkInterfaceConfigurations: [{
deleteOption: "Delete",
ipConfigurations: [{
name: "{ip-config-name}",
primary: true,
publicIPAddressConfiguration: {
deleteOption: "Detach",
name: "{publicIP-config-name}",
publicIPAllocationMethod: "Static",
sku: {
name: "Basic",
tier: "Global",
},
},
}],
name: "{nic-config-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkApiVersion: 2020-11-01
networkInterfaceConfigurations:
- deleteOption: Delete
ipConfigurations:
- name: '{ip-config-name}'
primary: true
publicIPAddressConfiguration:
deleteOption: Detach
name: '{publicIP-config-name}'
publicIPAllocationMethod: Static
sku:
name: Basic
tier: Global
name: '{nic-config-name}'
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a Windows vm with a patch setting assessmentMode of ImageDefault.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
{
EnableAutomaticUpdates = true,
PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
{
AssessmentMode = "ImageDefault",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("windowsConfiguration", Map.ofEntries(
Map.entry("enableAutomaticUpdates", true),
Map.entry("patchSettings", Map.of("assessmentMode", "ImageDefault")),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
windows_configuration={
"enableAutomaticUpdates": True,
"patchSettings": azure_native.compute.PatchSettingsArgs(
assessment_mode="ImageDefault",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
windowsConfiguration: {
enableAutomaticUpdates: true,
patchSettings: {
assessmentMode: "ImageDefault",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
windowsConfiguration:
enableAutomaticUpdates: true
patchSettings:
assessmentMode: ImageDefault
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Windows vm with a patch setting patchMode of AutomaticByOS.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
{
EnableAutomaticUpdates = true,
PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
{
PatchMode = "AutomaticByOS",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("windowsConfiguration", Map.ofEntries(
Map.entry("enableAutomaticUpdates", true),
Map.entry("patchSettings", Map.of("patchMode", "AutomaticByOS")),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
windows_configuration={
"enableAutomaticUpdates": True,
"patchSettings": azure_native.compute.PatchSettingsArgs(
patch_mode="AutomaticByOS",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
windowsConfiguration: {
enableAutomaticUpdates: true,
patchSettings: {
patchMode: "AutomaticByOS",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/nsgExistingNic
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
windowsConfiguration:
enableAutomaticUpdates: true
patchSettings:
patchMode: AutomaticByOS
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Windows vm with a patch setting patchMode of AutomaticByPlatform and enableHotpatching set to true.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
{
EnableAutomaticUpdates = true,
PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
{
EnableHotpatching = true,
PatchMode = "AutomaticByPlatform",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("windowsConfiguration", Map.ofEntries(
Map.entry("enableAutomaticUpdates", true),
Map.entry("patchSettings", Map.ofEntries(
Map.entry("enableHotpatching", true),
Map.entry("patchMode", "AutomaticByPlatform")
)),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
windows_configuration={
"enableAutomaticUpdates": True,
"patchSettings": azure_native.compute.PatchSettingsArgs(
enable_hotpatching=True,
patch_mode="AutomaticByPlatform",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
windowsConfiguration: {
enableAutomaticUpdates: true,
patchSettings: {
enableHotpatching: true,
patchMode: "AutomaticByPlatform",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
windowsConfiguration:
enableAutomaticUpdates: true
patchSettings:
enableHotpatching: true
patchMode: AutomaticByPlatform
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Windows vm with a patch setting patchMode of Manual.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
{
EnableAutomaticUpdates = true,
PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
{
PatchMode = "Manual",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("windowsConfiguration", Map.ofEntries(
Map.entry("enableAutomaticUpdates", true),
Map.entry("patchSettings", Map.of("patchMode", "Manual")),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
windows_configuration={
"enableAutomaticUpdates": True,
"patchSettings": azure_native.compute.PatchSettingsArgs(
patch_mode="Manual",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
windowsConfiguration: {
enableAutomaticUpdates: true,
patchSettings: {
patchMode: "Manual",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
windowsConfiguration:
enableAutomaticUpdates: true
patchSettings:
patchMode: Manual
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a Windows vm with patch settings patchMode and assessmentMode set to AutomaticByPlatform.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
WindowsConfiguration = new AzureNative.Compute.Inputs.WindowsConfigurationArgs
{
EnableAutomaticUpdates = true,
PatchSettings = new AzureNative.Compute.Inputs.PatchSettingsArgs
{
AssessmentMode = "AutomaticByPlatform",
PatchMode = "AutomaticByPlatform",
},
ProvisionVMAgent = true,
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("windowsConfiguration", Map.ofEntries(
Map.entry("enableAutomaticUpdates", true),
Map.entry("patchSettings", Map.ofEntries(
Map.entry("assessmentMode", "AutomaticByPlatform"),
Map.entry("patchMode", "AutomaticByPlatform")
)),
Map.entry("provisionVMAgent", true)
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
windows_configuration={
"enableAutomaticUpdates": True,
"patchSettings": azure_native.compute.PatchSettingsArgs(
assessment_mode="AutomaticByPlatform",
patch_mode="AutomaticByPlatform",
),
"provisionVMAgent": True,
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
windowsConfiguration: {
enableAutomaticUpdates: true,
patchSettings: {
assessmentMode: "AutomaticByPlatform",
patchMode: "AutomaticByPlatform",
},
provisionVMAgent: true,
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
windowsConfiguration:
enableAutomaticUpdates: true
patchSettings:
assessmentMode: AutomaticByPlatform
patchMode: AutomaticByPlatform
provisionVMAgent: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a custom-image vm from an unmanaged generalized os image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
Image = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
{
Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
},
Name = "myVMosdisk",
OsType = AzureNative.Compute.OperatingSystemTypes.Windows,
Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
{
Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
},
},
},
VmName = "{vm-name}",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.of("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("image", Map.of("uri", "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd")),
Map.entry("name", "myVMosdisk"),
Map.entry("osType", "Windows"),
Map.entry("vhd", Map.of("uri", "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd"))
)))
.vmName("{vm-name}")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"image": azure_native.compute.VirtualHardDiskArgs(
uri="http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
),
"name": "myVMosdisk",
"osType": azure_native.compute.OperatingSystemTypes.WINDOWS,
"vhd": azure_native.compute.VirtualHardDiskArgs(
uri="http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
),
},
),
vm_name="{vm-name}")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
image: {
uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd",
},
name: "myVMosdisk",
osType: azure_native.compute.OperatingSystemTypes.Windows,
vhd: {
uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
},
},
},
vmName: "{vm-name}",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
osDisk:
caching: ReadWrite
createOption: FromImage
image:
uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/{existing-generalized-os-image-blob-name}.vhd
name: myVMosdisk
osType: Windows
vhd:
uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd
vmName: '{vm-name}'
Create a platform-image vm with unmanaged os and data disks.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
DataDisks = new[]
{
new AzureNative.Compute.Inputs.DataDiskArgs
{
CreateOption = "Empty",
DiskSizeGB = 1023,
Lun = 0,
Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
{
Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
},
},
new AzureNative.Compute.Inputs.DataDiskArgs
{
CreateOption = "Empty",
DiskSizeGB = 1023,
Lun = 1,
Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
{
Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
},
},
},
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
Name = "myVMosdisk",
Vhd = new AzureNative.Compute.Inputs.VirtualHardDiskArgs
{
Uri = "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
},
},
},
VmName = "{vm-name}",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("dataDisks",
Map.ofEntries(
Map.entry("createOption", "Empty"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 0),
Map.entry("vhd", Map.of("uri", "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd"))
),
Map.ofEntries(
Map.entry("createOption", "Empty"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 1),
Map.entry("vhd", Map.of("uri", "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd"))
)),
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("name", "myVMosdisk"),
Map.entry("vhd", Map.of("uri", "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd"))
))
))
.vmName("{vm-name}")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
data_disks=[
{
"createOption": "Empty",
"diskSizeGB": 1023,
"lun": 0,
"vhd": azure_native.compute.VirtualHardDiskArgs(
uri="http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
),
},
{
"createOption": "Empty",
"diskSizeGB": 1023,
"lun": 1,
"vhd": azure_native.compute.VirtualHardDiskArgs(
uri="http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
),
},
],
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"name": "myVMosdisk",
"vhd": azure_native.compute.VirtualHardDiskArgs(
uri="http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
),
},
),
vm_name="{vm-name}")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
dataDisks: [
{
createOption: "Empty",
diskSizeGB: 1023,
lun: 0,
vhd: {
uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd",
},
},
{
createOption: "Empty",
diskSizeGB: 1023,
lun: 1,
vhd: {
uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd",
},
},
],
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
name: "myVMosdisk",
vhd: {
uri: "http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd",
},
},
},
vmName: "{vm-name}",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
dataDisks:
- createOption: Empty
diskSizeGB: 1023
lun: 0
vhd:
uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk0.vhd
- createOption: Empty
diskSizeGB: 1023
lun: 1
vhd:
uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk1.vhd
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
name: myVMosdisk
vhd:
uri: http://{existing-storage-account-name}.blob.core.windows.net/{existing-container-name}/myDisk.vhd
vmName: '{vm-name}'
Create a vm from a custom image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}")),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm from a generalized shared image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage")),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm from a specialized shared image.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage")),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/galleries/mySharedGallery/images/mySharedImage
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm in a Virtual Machine Scale Set with customer assigned platformFaultDomain.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
PlatformFaultDomain = 1,
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VirtualMachineScaleSet = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.platformFaultDomain(1)
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.virtualMachineScaleSet(Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}"))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
platform_fault_domain=1,
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
virtual_machine_scale_set=azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
platformFaultDomain: 1,
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
virtualMachineScaleSet: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}",
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
platformFaultDomain: 1
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
virtualMachineScaleSet:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/{existing-flex-vmss-name-with-platformFaultDomainCount-greater-than-1}
vmName: myVM
Create a vm in an availability set.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
AvailabilitySet = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
},
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.availabilitySet(Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}"))
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
availability_set=azure_native.compute.SubResourceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
),
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
availabilitySet: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}",
},
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
availabilitySet:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/availabilitySets/{existing-availability-set-name}
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with DiskEncryptionSet resource id in the os disk and data disk.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
DataDisks = new[]
{
new AzureNative.Compute.Inputs.DataDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "Empty",
DiskSizeGB = 1023,
Lun = 0,
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
StorageAccountType = "Standard_LRS",
},
},
new AzureNative.Compute.Inputs.DataDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "Attach",
DiskSizeGB = 1023,
Lun = 1,
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
StorageAccountType = "Standard_LRS",
},
},
},
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
DiskEncryptionSet = new AzureNative.Compute.Inputs.DiskEncryptionSetParametersArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("dataDisks",
Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "Empty"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 0),
Map.entry("managedDisk", Map.ofEntries(
Map.entry("diskEncryptionSet", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")),
Map.entry("storageAccountType", "Standard_LRS")
))
),
Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "Attach"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 1),
Map.entry("managedDisk", Map.ofEntries(
Map.entry("diskEncryptionSet", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")),
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}"),
Map.entry("storageAccountType", "Standard_LRS")
))
)),
Map.entry("imageReference", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}")),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.ofEntries(
Map.entry("diskEncryptionSet", Map.of("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}")),
Map.entry("storageAccountType", "Standard_LRS")
)),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
data_disks=[
{
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "Empty",
"diskSizeGB": 1023,
"lun": 0,
"managedDisk": {
"diskEncryptionSet": azure_native.compute.DiskEncryptionSetParametersArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
),
"storageAccountType": "Standard_LRS",
},
},
{
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "Attach",
"diskSizeGB": 1023,
"lun": 1,
"managedDisk": {
"diskEncryptionSet": azure_native.compute.DiskEncryptionSetParametersArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
),
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
"storageAccountType": "Standard_LRS",
},
},
],
image_reference=azure_native.compute.ImageReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": {
"diskEncryptionSet": azure_native.compute.DiskEncryptionSetParametersArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
),
"storageAccountType": "Standard_LRS",
},
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
dataDisks: [
{
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "Empty",
diskSizeGB: 1023,
lun: 0,
managedDisk: {
diskEncryptionSet: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
storageAccountType: "Standard_LRS",
},
},
{
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "Attach",
diskSizeGB: 1023,
lun: 1,
managedDisk: {
diskEncryptionSet: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}",
storageAccountType: "Standard_LRS",
},
},
],
imageReference: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
diskEncryptionSet: {
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}",
},
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
dataDisks:
- caching: ReadWrite
createOption: Empty
diskSizeGB: 1023
lun: 0
managedDisk:
diskEncryptionSet:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
storageAccountType: Standard_LRS
- caching: ReadWrite
createOption: Attach
diskSizeGB: 1023
lun: 1
managedDisk:
diskEncryptionSet:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/disks/{existing-managed-disk-name}
storageAccountType: Standard_LRS
imageReference:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/images/{existing-custom-image-name}
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
diskEncryptionSet:
id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/{existing-diskEncryptionSet-name}
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with Host Encryption using encryptionAtHost property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_DS1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
Plan = new AzureNative.Compute.Inputs.PlanArgs
{
Name = "windows2016",
Product = "windows-data-science-vm",
Publisher = "microsoft-ads",
},
ResourceGroupName = "myResourceGroup",
SecurityProfile = new AzureNative.Compute.Inputs.SecurityProfileArgs
{
EncryptionAtHost = true,
},
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windows-data-science-vm",
Publisher = "microsoft-ads",
Sku = "windows2016",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadOnly,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_DS1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.plan(Map.ofEntries(
Map.entry("name", "windows2016"),
Map.entry("product", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads")
))
.resourceGroupName("myResourceGroup")
.securityProfile(Map.of("encryptionAtHost", true))
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads"),
Map.entry("sku", "windows2016"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadOnly"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_DS1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
plan=azure_native.compute.PlanArgs(
name="windows2016",
product="windows-data-science-vm",
publisher="microsoft-ads",
),
resource_group_name="myResourceGroup",
security_profile=azure_native.compute.SecurityProfileArgs(
encryption_at_host=True,
),
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windows-data-science-vm",
publisher="microsoft-ads",
sku="windows2016",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_ONLY,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_DS1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
plan: {
name: "windows2016",
product: "windows-data-science-vm",
publisher: "microsoft-ads",
},
resourceGroupName: "myResourceGroup",
securityProfile: {
encryptionAtHost: true,
},
storageProfile: {
imageReference: {
offer: "windows-data-science-vm",
publisher: "microsoft-ads",
sku: "windows2016",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadOnly,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_DS1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
plan:
name: windows2016
product: windows-data-science-vm
publisher: microsoft-ads
resourceGroupName: myResourceGroup
securityProfile:
encryptionAtHost: true
storageProfile:
imageReference:
offer: windows-data-science-vm
publisher: microsoft-ads
sku: windows2016
version: latest
osDisk:
caching: ReadOnly
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with Scheduled Events Profile
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
{
BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
{
Enabled = true,
StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
ScheduledEventsProfile = new AzureNative.Compute.Inputs.ScheduledEventsProfileArgs
{
TerminateNotificationProfile = new AzureNative.Compute.Inputs.TerminateNotificationProfileArgs
{
Enable = true,
NotBeforeTimeout = "PT10M",
},
},
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.diagnosticsProfile(Map.of("bootDiagnostics", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("storageUri", "http://{existing-storage-account-name}.blob.core.windows.net")
)))
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.scheduledEventsProfile(Map.of("terminateNotificationProfile", Map.ofEntries(
Map.entry("enable", true),
Map.entry("notBeforeTimeout", "PT10M")
)))
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
diagnostics_profile=azure_native.compute.DiagnosticsProfileResponseArgs(
boot_diagnostics=azure_native.compute.BootDiagnosticsArgs(
enabled=True,
storage_uri="http://{existing-storage-account-name}.blob.core.windows.net",
),
),
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
scheduled_events_profile=azure_native.compute.ScheduledEventsProfileResponseArgs(
terminate_notification_profile=azure_native.compute.TerminateNotificationProfileArgs(
enable=True,
not_before_timeout="PT10M",
),
),
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
diagnosticsProfile: {
bootDiagnostics: {
enabled: true,
storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
scheduledEventsProfile: {
terminateNotificationProfile: {
enable: true,
notBeforeTimeout: "PT10M",
},
},
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
diagnosticsProfile:
bootDiagnostics:
enabled: true
storageUri: http://{existing-storage-account-name}.blob.core.windows.net
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
scheduledEventsProfile:
terminateNotificationProfile:
enable: true
notBeforeTimeout: PT10M
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with a marketplace image plan.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
Plan = new AzureNative.Compute.Inputs.PlanArgs
{
Name = "windows2016",
Product = "windows-data-science-vm",
Publisher = "microsoft-ads",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windows-data-science-vm",
Publisher = "microsoft-ads",
Sku = "windows2016",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.plan(Map.ofEntries(
Map.entry("name", "windows2016"),
Map.entry("product", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads"),
Map.entry("sku", "windows2016"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
plan=azure_native.compute.PlanArgs(
name="windows2016",
product="windows-data-science-vm",
publisher="microsoft-ads",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windows-data-science-vm",
publisher="microsoft-ads",
sku="windows2016",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
plan: {
name: "windows2016",
product: "windows-data-science-vm",
publisher: "microsoft-ads",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "windows-data-science-vm",
publisher: "microsoft-ads",
sku: "windows2016",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
plan:
name: windows2016
product: windows-data-science-vm
publisher: microsoft-ads
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: windows-data-science-vm
publisher: microsoft-ads
sku: windows2016
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with an extensions time budget.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
{
BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
{
Enabled = true,
StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
ExtensionsTimeBudget = "PT30M",
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.diagnosticsProfile(Map.of("bootDiagnostics", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("storageUri", "http://{existing-storage-account-name}.blob.core.windows.net")
)))
.extensionsTimeBudget("PT30M")
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
diagnostics_profile=azure_native.compute.DiagnosticsProfileResponseArgs(
boot_diagnostics=azure_native.compute.BootDiagnosticsArgs(
enabled=True,
storage_uri="http://{existing-storage-account-name}.blob.core.windows.net",
),
),
extensions_time_budget="PT30M",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
diagnosticsProfile: {
bootDiagnostics: {
enabled: true,
storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
extensionsTimeBudget: "PT30M",
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
diagnosticsProfile:
bootDiagnostics:
enabled: true
storageUri: http://{existing-storage-account-name}.blob.core.windows.net
extensionsTimeBudget: PT30M
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with boot diagnostics.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
{
BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
{
Enabled = true,
StorageUri = "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.diagnosticsProfile(Map.of("bootDiagnostics", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("storageUri", "http://{existing-storage-account-name}.blob.core.windows.net")
)))
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
diagnostics_profile=azure_native.compute.DiagnosticsProfileResponseArgs(
boot_diagnostics=azure_native.compute.BootDiagnosticsArgs(
enabled=True,
storage_uri="http://{existing-storage-account-name}.blob.core.windows.net",
),
),
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
diagnosticsProfile: {
bootDiagnostics: {
enabled: true,
storageUri: "http://{existing-storage-account-name}.blob.core.windows.net",
},
},
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
diagnosticsProfile:
bootDiagnostics:
enabled: true
storageUri: http://{existing-storage-account-name}.blob.core.windows.net
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with empty data disks.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D2_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
DataDisks = new[]
{
new AzureNative.Compute.Inputs.DataDiskArgs
{
CreateOption = "Empty",
DiskSizeGB = 1023,
Lun = 0,
},
new AzureNative.Compute.Inputs.DataDiskArgs
{
CreateOption = "Empty",
DiskSizeGB = 1023,
Lun = 1,
},
},
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D2_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("dataDisks",
Map.ofEntries(
Map.entry("createOption", "Empty"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 0)
),
Map.ofEntries(
Map.entry("createOption", "Empty"),
Map.entry("diskSizeGB", 1023),
Map.entry("lun", 1)
)),
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D2_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
data_disks=[
azure_native.compute.DataDiskArgs(
create_option="Empty",
disk_size_gb=1023,
lun=0,
),
azure_native.compute.DataDiskArgs(
create_option="Empty",
disk_size_gb=1023,
lun=1,
),
],
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D2_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
dataDisks: [
{
createOption: "Empty",
diskSizeGB: 1023,
lun: 0,
},
{
createOption: "Empty",
diskSizeGB: 1023,
lun: 1,
},
],
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D2_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
dataDisks:
- createOption: Empty
diskSizeGB: 1023
lun: 0
- createOption: Empty
diskSizeGB: 1023
lun: 1
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with ephemeral os disk provisioning in Cache disk using placement property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_DS1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
Plan = new AzureNative.Compute.Inputs.PlanArgs
{
Name = "windows2016",
Product = "windows-data-science-vm",
Publisher = "microsoft-ads",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windows-data-science-vm",
Publisher = "microsoft-ads",
Sku = "windows2016",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadOnly,
CreateOption = "FromImage",
DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
{
Option = "Local",
Placement = "CacheDisk",
},
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_DS1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.plan(Map.ofEntries(
Map.entry("name", "windows2016"),
Map.entry("product", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads"),
Map.entry("sku", "windows2016"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadOnly"),
Map.entry("createOption", "FromImage"),
Map.entry("diffDiskSettings", Map.ofEntries(
Map.entry("option", "Local"),
Map.entry("placement", "CacheDisk")
)),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_DS1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
plan=azure_native.compute.PlanArgs(
name="windows2016",
product="windows-data-science-vm",
publisher="microsoft-ads",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windows-data-science-vm",
publisher="microsoft-ads",
sku="windows2016",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_ONLY,
"createOption": "FromImage",
"diffDiskSettings": azure_native.compute.DiffDiskSettingsArgs(
option="Local",
placement="CacheDisk",
),
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_DS1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
plan: {
name: "windows2016",
product: "windows-data-science-vm",
publisher: "microsoft-ads",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "windows-data-science-vm",
publisher: "microsoft-ads",
sku: "windows2016",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadOnly,
createOption: "FromImage",
diffDiskSettings: {
option: "Local",
placement: "CacheDisk",
},
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_DS1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
plan:
name: windows2016
product: windows-data-science-vm
publisher: microsoft-ads
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: windows-data-science-vm
publisher: microsoft-ads
sku: windows2016
version: latest
osDisk:
caching: ReadOnly
createOption: FromImage
diffDiskSettings:
option: Local
placement: CacheDisk
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with ephemeral os disk provisioning in Resource disk using placement property.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_DS1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
Plan = new AzureNative.Compute.Inputs.PlanArgs
{
Name = "windows2016",
Product = "windows-data-science-vm",
Publisher = "microsoft-ads",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windows-data-science-vm",
Publisher = "microsoft-ads",
Sku = "windows2016",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadOnly,
CreateOption = "FromImage",
DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
{
Option = "Local",
Placement = "ResourceDisk",
},
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_DS1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.plan(Map.ofEntries(
Map.entry("name", "windows2016"),
Map.entry("product", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads"),
Map.entry("sku", "windows2016"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadOnly"),
Map.entry("createOption", "FromImage"),
Map.entry("diffDiskSettings", Map.ofEntries(
Map.entry("option", "Local"),
Map.entry("placement", "ResourceDisk")
)),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_DS1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
plan=azure_native.compute.PlanArgs(
name="windows2016",
product="windows-data-science-vm",
publisher="microsoft-ads",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windows-data-science-vm",
publisher="microsoft-ads",
sku="windows2016",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_ONLY,
"createOption": "FromImage",
"diffDiskSettings": azure_native.compute.DiffDiskSettingsArgs(
option="Local",
placement="ResourceDisk",
),
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_DS1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
plan: {
name: "windows2016",
product: "windows-data-science-vm",
publisher: "microsoft-ads",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "windows-data-science-vm",
publisher: "microsoft-ads",
sku: "windows2016",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadOnly,
createOption: "FromImage",
diffDiskSettings: {
option: "Local",
placement: "ResourceDisk",
},
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_DS1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
plan:
name: windows2016
product: windows-data-science-vm
publisher: microsoft-ads
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: windows-data-science-vm
publisher: microsoft-ads
sku: windows2016
version: latest
osDisk:
caching: ReadOnly
createOption: FromImage
diffDiskSettings:
option: Local
placement: ResourceDisk
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with ephemeral os disk.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_DS1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
Plan = new AzureNative.Compute.Inputs.PlanArgs
{
Name = "windows2016",
Product = "windows-data-science-vm",
Publisher = "microsoft-ads",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "windows-data-science-vm",
Publisher = "microsoft-ads",
Sku = "windows2016",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadOnly,
CreateOption = "FromImage",
DiffDiskSettings = new AzureNative.Compute.Inputs.DiffDiskSettingsArgs
{
Option = "Local",
},
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_DS1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.plan(Map.ofEntries(
Map.entry("name", "windows2016"),
Map.entry("product", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "windows-data-science-vm"),
Map.entry("publisher", "microsoft-ads"),
Map.entry("sku", "windows2016"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadOnly"),
Map.entry("createOption", "FromImage"),
Map.entry("diffDiskSettings", Map.of("option", "Local")),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_DS1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
plan=azure_native.compute.PlanArgs(
name="windows2016",
product="windows-data-science-vm",
publisher="microsoft-ads",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="windows-data-science-vm",
publisher="microsoft-ads",
sku="windows2016",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_ONLY,
"createOption": "FromImage",
"diffDiskSettings": azure_native.compute.DiffDiskSettingsArgs(
option="Local",
),
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_DS1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
plan: {
name: "windows2016",
product: "windows-data-science-vm",
publisher: "microsoft-ads",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "windows-data-science-vm",
publisher: "microsoft-ads",
sku: "windows2016",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadOnly,
createOption: "FromImage",
diffDiskSettings: {
option: "Local",
},
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_DS1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
plan:
name: windows2016
product: windows-data-science-vm
publisher: microsoft-ads
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: windows-data-science-vm
publisher: microsoft-ads
sku: windows2016
version: latest
osDisk:
caching: ReadOnly
createOption: FromImage
diffDiskSettings:
option: Local
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with managed boot diagnostics.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
DiagnosticsProfile = new AzureNative.Compute.Inputs.DiagnosticsProfileArgs
{
BootDiagnostics = new AzureNative.Compute.Inputs.BootDiagnosticsArgs
{
Enabled = true,
},
},
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.diagnosticsProfile(Map.of("bootDiagnostics", Map.of("enabled", true)))
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
diagnostics_profile=azure_native.compute.DiagnosticsProfileResponseArgs(
boot_diagnostics=azure_native.compute.BootDiagnosticsArgs(
enabled=True,
),
),
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
diagnosticsProfile: {
bootDiagnostics: {
enabled: true,
},
},
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
diagnosticsProfile:
bootDiagnostics:
enabled: true
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with password authentication.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create a vm with premium storage.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminPassword = "{your-password}",
AdminUsername = "{your-username}",
ComputerName = "myVM",
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "WindowsServer",
Publisher = "MicrosoftWindowsServer",
Sku = "2016-Datacenter",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Premium_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminPassword", "{your-password}"),
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM")
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "WindowsServer"),
Map.entry("publisher", "MicrosoftWindowsServer"),
Map.entry("sku", "2016-Datacenter"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Premium_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileArgs(
admin_password="{your-password}",
admin_username="{your-username}",
computer_name="myVM",
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="WindowsServer",
publisher="MicrosoftWindowsServer",
sku="2016-Datacenter",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Premium_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminPassword: "{your-password}",
adminUsername: "{your-username}",
computerName: "myVM",
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "WindowsServer",
publisher: "MicrosoftWindowsServer",
sku: "2016-Datacenter",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Premium_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminPassword: '{your-password}'
adminUsername: '{your-username}'
computerName: myVM
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: WindowsServer
publisher: MicrosoftWindowsServer
sku: 2016-Datacenter
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Premium_LRS
name: myVMosdisk
vmName: myVM
Create a vm with ssh authentication.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachine = new AzureNative.Compute.VirtualMachine("virtualMachine", new()
{
HardwareProfile = new AzureNative.Compute.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D1_v2",
},
Location = "westus",
NetworkProfile = new AzureNative.Compute.Inputs.NetworkProfileArgs
{
NetworkInterfaces = new[]
{
new AzureNative.Compute.Inputs.NetworkInterfaceReferenceArgs
{
Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
Primary = true,
},
},
},
OsProfile = new AzureNative.Compute.Inputs.OSProfileArgs
{
AdminUsername = "{your-username}",
ComputerName = "myVM",
LinuxConfiguration = new AzureNative.Compute.Inputs.LinuxConfigurationArgs
{
DisablePasswordAuthentication = true,
Ssh = new AzureNative.Compute.Inputs.SshConfigurationArgs
{
PublicKeys = new[]
{
new AzureNative.Compute.Inputs.SshPublicKeyArgs
{
KeyData = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
Path = "/home/{your-username}/.ssh/authorized_keys",
},
},
},
},
},
ResourceGroupName = "myResourceGroup",
StorageProfile = new AzureNative.Compute.Inputs.StorageProfileArgs
{
ImageReference = new AzureNative.Compute.Inputs.ImageReferenceArgs
{
Offer = "{image_offer}",
Publisher = "{image_publisher}",
Sku = "{image_sku}",
Version = "latest",
},
OsDisk = new AzureNative.Compute.Inputs.OSDiskArgs
{
Caching = AzureNative.Compute.CachingTypes.ReadWrite,
CreateOption = "FromImage",
ManagedDisk = new AzureNative.Compute.Inputs.ManagedDiskParametersArgs
{
StorageAccountType = "Standard_LRS",
},
Name = "myVMosdisk",
},
},
VmName = "myVM",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachine;
import com.pulumi.azurenative.compute.VirtualMachineArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
.hardwareProfile(Map.of("vmSize", "Standard_D1_v2"))
.location("westus")
.networkProfile(Map.of("networkInterfaces", Map.ofEntries(
Map.entry("id", "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}"),
Map.entry("primary", true)
)))
.osProfile(Map.ofEntries(
Map.entry("adminUsername", "{your-username}"),
Map.entry("computerName", "myVM"),
Map.entry("linuxConfiguration", Map.ofEntries(
Map.entry("disablePasswordAuthentication", true),
Map.entry("ssh", Map.of("publicKeys", Map.ofEntries(
Map.entry("keyData", "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1"),
Map.entry("path", "/home/{your-username}/.ssh/authorized_keys")
)))
))
))
.resourceGroupName("myResourceGroup")
.storageProfile(Map.ofEntries(
Map.entry("imageReference", Map.ofEntries(
Map.entry("offer", "{image_offer}"),
Map.entry("publisher", "{image_publisher}"),
Map.entry("sku", "{image_sku}"),
Map.entry("version", "latest")
)),
Map.entry("osDisk", Map.ofEntries(
Map.entry("caching", "ReadWrite"),
Map.entry("createOption", "FromImage"),
Map.entry("managedDisk", Map.of("storageAccountType", "Standard_LRS")),
Map.entry("name", "myVMosdisk")
))
))
.vmName("myVM")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine = azure_native.compute.VirtualMachine("virtualMachine",
hardware_profile=azure_native.compute.HardwareProfileArgs(
vm_size="Standard_D1_v2",
),
location="westus",
network_profile=azure_native.compute.NetworkProfileResponseArgs(
network_interfaces=[azure_native.compute.NetworkInterfaceReferenceArgs(
id="/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary=True,
)],
),
os_profile=azure_native.compute.OSProfileResponseArgs(
admin_username="{your-username}",
computer_name="myVM",
linux_configuration={
"disablePasswordAuthentication": True,
"ssh": {
"publicKeys": [azure_native.compute.SshPublicKeyArgs(
key_data="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
path="/home/{your-username}/.ssh/authorized_keys",
)],
},
},
),
resource_group_name="myResourceGroup",
storage_profile=azure_native.compute.StorageProfileResponseArgs(
image_reference=azure_native.compute.ImageReferenceArgs(
offer="{image_offer}",
publisher="{image_publisher}",
sku="{image_sku}",
version="latest",
),
os_disk={
"caching": azure_native.compute.CachingTypes.READ_WRITE,
"createOption": "FromImage",
"managedDisk": azure_native.compute.ManagedDiskParametersArgs(
storage_account_type="Standard_LRS",
),
"name": "myVMosdisk",
},
),
vm_name="myVM")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachine = new azure_native.compute.VirtualMachine("virtualMachine", {
hardwareProfile: {
vmSize: "Standard_D1_v2",
},
location: "westus",
networkProfile: {
networkInterfaces: [{
id: "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}",
primary: true,
}],
},
osProfile: {
adminUsername: "{your-username}",
computerName: "myVM",
linuxConfiguration: {
disablePasswordAuthentication: true,
ssh: {
publicKeys: [{
keyData: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1",
path: "/home/{your-username}/.ssh/authorized_keys",
}],
},
},
},
resourceGroupName: "myResourceGroup",
storageProfile: {
imageReference: {
offer: "{image_offer}",
publisher: "{image_publisher}",
sku: "{image_sku}",
version: "latest",
},
osDisk: {
caching: azure_native.compute.CachingTypes.ReadWrite,
createOption: "FromImage",
managedDisk: {
storageAccountType: "Standard_LRS",
},
name: "myVMosdisk",
},
},
vmName: "myVM",
});
resources:
virtualMachine:
type: azure-native:compute:VirtualMachine
properties:
hardwareProfile:
vmSize: Standard_D1_v2
location: westus
networkProfile:
networkInterfaces:
- id: /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkInterfaces/{existing-nic-name}
primary: true
osProfile:
adminUsername: '{your-username}'
computerName: myVM
linuxConfiguration:
disablePasswordAuthentication: true
ssh:
publicKeys:
- keyData: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeClRAk2ipUs/l5voIsDC5q9RI+YSRd1Bvd/O+axgY4WiBzG+4FwJWZm/mLLe5DoOdHQwmU2FrKXZSW4w2sYE70KeWnrFViCOX5MTVvJgPE8ClugNl8RWth/tU849DvM9sT7vFgfVSHcAS2yDRyDlueii+8nF2ym8XWAPltFVCyLHRsyBp5YPqK8JFYIa1eybKsY3hEAxRCA+/7bq8et+Gj3coOsuRmrehav7rE6N12Pb80I6ofa6SM5XNYq4Xk0iYNx7R3kdz0Jj9XgZYWjAHjJmT0gTRoOnt6upOuxK7xI/ykWrllgpXrCPu3Ymz+c+ujaqcxDopnAl2lmf69/J1
path: /home/{your-username}/.ssh/authorized_keys
resourceGroupName: myResourceGroup
storageProfile:
imageReference:
offer: '{image_offer}'
publisher: '{image_publisher}'
sku: '{image_sku}'
version: latest
osDisk:
caching: ReadWrite
createOption: FromImage
managedDisk:
storageAccountType: Standard_LRS
name: myVMosdisk
vmName: myVM
Create VirtualMachine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualMachine(name: string, args: VirtualMachineArgs, opts?: CustomResourceOptions);
@overload
def VirtualMachine(resource_name: str,
args: VirtualMachineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualMachine(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
os_profile: Optional[OSProfileArgs] = None,
zones: Optional[Sequence[str]] = None,
network_profile: Optional[NetworkProfileArgs] = None,
eviction_policy: Optional[Union[str, VirtualMachineEvictionPolicyTypes]] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
extensions_time_budget: Optional[str] = None,
hardware_profile: Optional[HardwareProfileArgs] = None,
host: Optional[SubResourceArgs] = None,
host_group: Optional[SubResourceArgs] = None,
identity: Optional[VirtualMachineIdentityArgs] = None,
license_type: Optional[str] = None,
location: Optional[str] = None,
diagnostics_profile: Optional[DiagnosticsProfileArgs] = None,
billing_profile: Optional[BillingProfileArgs] = None,
storage_profile: Optional[StorageProfileArgs] = None,
platform_fault_domain: Optional[int] = None,
priority: Optional[Union[str, VirtualMachinePriorityTypes]] = None,
proximity_placement_group: Optional[SubResourceArgs] = None,
availability_set: Optional[SubResourceArgs] = None,
scheduled_events_profile: Optional[ScheduledEventsProfileArgs] = None,
security_profile: Optional[SecurityProfileArgs] = None,
plan: Optional[PlanArgs] = None,
tags: Optional[Mapping[str, str]] = None,
user_data: Optional[str] = None,
virtual_machine_scale_set: Optional[SubResourceArgs] = None,
vm_name: Optional[str] = None,
additional_capabilities: Optional[AdditionalCapabilitiesArgs] = None)
func NewVirtualMachine(ctx *Context, name string, args VirtualMachineArgs, opts ...ResourceOption) (*VirtualMachine, error)
public VirtualMachine(string name, VirtualMachineArgs args, CustomResourceOptions? opts = null)
public VirtualMachine(String name, VirtualMachineArgs args)
public VirtualMachine(String name, VirtualMachineArgs args, CustomResourceOptions options)
type: azure-native:compute:VirtualMachine
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualMachineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var virtualMachineResource = new AzureNative.Compute.VirtualMachine("virtualMachineResource", new()
{
ResourceGroupName = "string",
OsProfile =
{
{ "adminPassword", "string" },
{ "adminUsername", "string" },
{ "allowExtensionOperations", false },
{ "computerName", "string" },
{ "customData", "string" },
{ "linuxConfiguration",
{
{ "disablePasswordAuthentication", false },
{ "patchSettings",
{
{ "assessmentMode", "string" },
{ "patchMode", "string" },
} },
{ "provisionVMAgent", false },
{ "ssh",
{
{ "publicKeys", new[]
{
{
{ "keyData", "string" },
{ "path", "string" },
},
} },
} },
} },
{ "requireGuestProvisionSignal", false },
{ "secrets", new[]
{
{
{ "sourceVault",
{
{ "id", "string" },
} },
{ "vaultCertificates", new[]
{
{
{ "certificateStore", "string" },
{ "certificateUrl", "string" },
},
} },
},
} },
{ "windowsConfiguration",
{
{ "additionalUnattendContent", new[]
{
{
{ "componentName", "Microsoft-Windows-Shell-Setup" },
{ "content", "string" },
{ "passName", "OobeSystem" },
{ "settingName", "AutoLogon" },
},
} },
{ "enableAutomaticUpdates", false },
{ "patchSettings",
{
{ "assessmentMode", "string" },
{ "enableHotpatching", false },
{ "patchMode", "string" },
} },
{ "provisionVMAgent", false },
{ "timeZone", "string" },
{ "winRM",
{
{ "listeners", new[]
{
{
{ "certificateUrl", "string" },
{ "protocol", "Http" },
},
} },
} },
} },
},
Zones = new[]
{
"string",
},
NetworkProfile =
{
{ "networkApiVersion", "string" },
{ "networkInterfaceConfigurations", new[]
{
{
{ "ipConfigurations", new[]
{
{
{ "name", "string" },
{ "applicationGatewayBackendAddressPools", new[]
{
{
{ "id", "string" },
},
} },
{ "applicationSecurityGroups", new[]
{
{
{ "id", "string" },
},
} },
{ "loadBalancerBackendAddressPools", new[]
{
{
{ "id", "string" },
},
} },
{ "primary", false },
{ "privateIPAddressVersion", "string" },
{ "publicIPAddressConfiguration",
{
{ "name", "string" },
{ "deleteOption", "string" },
{ "dnsSettings",
{
{ "domainNameLabel", "string" },
} },
{ "idleTimeoutInMinutes", 0 },
{ "ipTags", new[]
{
{
{ "ipTagType", "string" },
{ "tag", "string" },
},
} },
{ "publicIPAddressVersion", "string" },
{ "publicIPAllocationMethod", "string" },
{ "publicIPPrefix",
{
{ "id", "string" },
} },
{ "sku",
{
{ "name", "string" },
{ "tier", "string" },
} },
} },
{ "subnet",
{
{ "id", "string" },
} },
},
} },
{ "name", "string" },
{ "deleteOption", "string" },
{ "dnsSettings",
{
{ "dnsServers", new[]
{
"string",
} },
} },
{ "dscpConfiguration",
{
{ "id", "string" },
} },
{ "enableAcceleratedNetworking", false },
{ "enableFpga", false },
{ "enableIPForwarding", false },
{ "networkSecurityGroup",
{
{ "id", "string" },
} },
{ "primary", false },
},
} },
{ "networkInterfaces", new[]
{
{
{ "deleteOption", "string" },
{ "id", "string" },
{ "primary", false },
},
} },
},
EvictionPolicy = "string",
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
ExtensionsTimeBudget = "string",
HardwareProfile =
{
{ "vmSize", "string" },
},
Host =
{
{ "id", "string" },
},
HostGroup =
{
{ "id", "string" },
},
Identity =
{
{ "type", "SystemAssigned" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
LicenseType = "string",
Location = "string",
DiagnosticsProfile =
{
{ "bootDiagnostics",
{
{ "enabled", false },
{ "storageUri", "string" },
} },
},
BillingProfile =
{
{ "maxPrice", 0 },
},
StorageProfile =
{
{ "dataDisks", new[]
{
{
{ "createOption", "string" },
{ "lun", 0 },
{ "caching", "None" },
{ "deleteOption", "string" },
{ "detachOption", "string" },
{ "diskSizeGB", 0 },
{ "image",
{
{ "uri", "string" },
} },
{ "managedDisk",
{
{ "diskEncryptionSet",
{
{ "id", "string" },
} },
{ "id", "string" },
{ "storageAccountType", "string" },
} },
{ "name", "string" },
{ "toBeDetached", false },
{ "vhd",
{
{ "uri", "string" },
} },
{ "writeAcceleratorEnabled", false },
},
} },
{ "imageReference",
{
{ "id", "string" },
{ "offer", "string" },
{ "publisher", "string" },
{ "sku", "string" },
{ "version", "string" },
} },
{ "osDisk",
{
{ "createOption", "string" },
{ "caching", "None" },
{ "deleteOption", "string" },
{ "diffDiskSettings",
{
{ "option", "string" },
{ "placement", "string" },
} },
{ "diskSizeGB", 0 },
{ "encryptionSettings",
{
{ "diskEncryptionKey",
{
{ "secretUrl", "string" },
{ "sourceVault",
{
{ "id", "string" },
} },
} },
{ "enabled", false },
{ "keyEncryptionKey",
{
{ "keyUrl", "string" },
{ "sourceVault",
{
{ "id", "string" },
} },
} },
} },
{ "image",
{
{ "uri", "string" },
} },
{ "managedDisk",
{
{ "diskEncryptionSet",
{
{ "id", "string" },
} },
{ "id", "string" },
{ "storageAccountType", "string" },
} },
{ "name", "string" },
{ "osType", "Windows" },
{ "vhd",
{
{ "uri", "string" },
} },
{ "writeAcceleratorEnabled", false },
} },
},
PlatformFaultDomain = 0,
Priority = "string",
ProximityPlacementGroup =
{
{ "id", "string" },
},
AvailabilitySet =
{
{ "id", "string" },
},
ScheduledEventsProfile =
{
{ "terminateNotificationProfile",
{
{ "enable", false },
{ "notBeforeTimeout", "string" },
} },
},
SecurityProfile =
{
{ "encryptionAtHost", false },
{ "securityType", "string" },
{ "uefiSettings",
{
{ "secureBootEnabled", false },
{ "vTpmEnabled", false },
} },
},
Plan =
{
{ "name", "string" },
{ "product", "string" },
{ "promotionCode", "string" },
{ "publisher", "string" },
},
Tags =
{
{ "string", "string" },
},
UserData = "string",
VirtualMachineScaleSet =
{
{ "id", "string" },
},
VmName = "string",
AdditionalCapabilities =
{
{ "ultraSSDEnabled", false },
},
});
example, err := compute.NewVirtualMachine(ctx, "virtualMachineResource", &compute.VirtualMachineArgs{
ResourceGroupName: "string",
OsProfile: map[string]interface{}{
"adminPassword": "string",
"adminUsername": "string",
"allowExtensionOperations": false,
"computerName": "string",
"customData": "string",
"linuxConfiguration": map[string]interface{}{
"disablePasswordAuthentication": false,
"patchSettings": map[string]interface{}{
"assessmentMode": "string",
"patchMode": "string",
},
"provisionVMAgent": false,
"ssh": map[string]interface{}{
"publicKeys": []map[string]interface{}{
map[string]interface{}{
"keyData": "string",
"path": "string",
},
},
},
},
"requireGuestProvisionSignal": false,
"secrets": []map[string]interface{}{
map[string]interface{}{
"sourceVault": map[string]interface{}{
"id": "string",
},
"vaultCertificates": []map[string]interface{}{
map[string]interface{}{
"certificateStore": "string",
"certificateUrl": "string",
},
},
},
},
"windowsConfiguration": map[string]interface{}{
"additionalUnattendContent": []map[string]interface{}{
map[string]interface{}{
"componentName": "Microsoft-Windows-Shell-Setup",
"content": "string",
"passName": "OobeSystem",
"settingName": "AutoLogon",
},
},
"enableAutomaticUpdates": false,
"patchSettings": map[string]interface{}{
"assessmentMode": "string",
"enableHotpatching": false,
"patchMode": "string",
},
"provisionVMAgent": false,
"timeZone": "string",
"winRM": map[string]interface{}{
"listeners": []map[string]interface{}{
map[string]interface{}{
"certificateUrl": "string",
"protocol": "Http",
},
},
},
},
},
Zones: []string{
"string",
},
NetworkProfile: map[string]interface{}{
"networkApiVersion": "string",
"networkInterfaceConfigurations": []map[string]interface{}{
map[string]interface{}{
"ipConfigurations": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"applicationGatewayBackendAddressPools": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"applicationSecurityGroups": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"loadBalancerBackendAddressPools": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"primary": false,
"privateIPAddressVersion": "string",
"publicIPAddressConfiguration": map[string]interface{}{
"name": "string",
"deleteOption": "string",
"dnsSettings": map[string]interface{}{
"domainNameLabel": "string",
},
"idleTimeoutInMinutes": 0,
"ipTags": []map[string]interface{}{
map[string]interface{}{
"ipTagType": "string",
"tag": "string",
},
},
"publicIPAddressVersion": "string",
"publicIPAllocationMethod": "string",
"publicIPPrefix": map[string]interface{}{
"id": "string",
},
"sku": map[string]interface{}{
"name": "string",
"tier": "string",
},
},
"subnet": map[string]interface{}{
"id": "string",
},
},
},
"name": "string",
"deleteOption": "string",
"dnsSettings": map[string]interface{}{
"dnsServers": []string{
"string",
},
},
"dscpConfiguration": map[string]interface{}{
"id": "string",
},
"enableAcceleratedNetworking": false,
"enableFpga": false,
"enableIPForwarding": false,
"networkSecurityGroup": map[string]interface{}{
"id": "string",
},
"primary": false,
},
},
"networkInterfaces": []map[string]interface{}{
map[string]interface{}{
"deleteOption": "string",
"id": "string",
"primary": false,
},
},
},
EvictionPolicy: "string",
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
ExtensionsTimeBudget: "string",
HardwareProfile: map[string]interface{}{
"vmSize": "string",
},
Host: map[string]interface{}{
"id": "string",
},
HostGroup: map[string]interface{}{
"id": "string",
},
Identity: map[string]interface{}{
"type": "SystemAssigned",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
LicenseType: "string",
Location: "string",
DiagnosticsProfile: map[string]interface{}{
"bootDiagnostics": map[string]interface{}{
"enabled": false,
"storageUri": "string",
},
},
BillingProfile: map[string]interface{}{
"maxPrice": 0,
},
StorageProfile: map[string]interface{}{
"dataDisks": []map[string]interface{}{
map[string]interface{}{
"createOption": "string",
"lun": 0,
"caching": "None",
"deleteOption": "string",
"detachOption": "string",
"diskSizeGB": 0,
"image": map[string]interface{}{
"uri": "string",
},
"managedDisk": map[string]interface{}{
"diskEncryptionSet": map[string]interface{}{
"id": "string",
},
"id": "string",
"storageAccountType": "string",
},
"name": "string",
"toBeDetached": false,
"vhd": map[string]interface{}{
"uri": "string",
},
"writeAcceleratorEnabled": false,
},
},
"imageReference": map[string]interface{}{
"id": "string",
"offer": "string",
"publisher": "string",
"sku": "string",
"version": "string",
},
"osDisk": map[string]interface{}{
"createOption": "string",
"caching": "None",
"deleteOption": "string",
"diffDiskSettings": map[string]interface{}{
"option": "string",
"placement": "string",
},
"diskSizeGB": 0,
"encryptionSettings": map[string]interface{}{
"diskEncryptionKey": map[string]interface{}{
"secretUrl": "string",
"sourceVault": map[string]interface{}{
"id": "string",
},
},
"enabled": false,
"keyEncryptionKey": map[string]interface{}{
"keyUrl": "string",
"sourceVault": map[string]interface{}{
"id": "string",
},
},
},
"image": map[string]interface{}{
"uri": "string",
},
"managedDisk": map[string]interface{}{
"diskEncryptionSet": map[string]interface{}{
"id": "string",
},
"id": "string",
"storageAccountType": "string",
},
"name": "string",
"osType": "Windows",
"vhd": map[string]interface{}{
"uri": "string",
},
"writeAcceleratorEnabled": false,
},
},
PlatformFaultDomain: 0,
Priority: "string",
ProximityPlacementGroup: map[string]interface{}{
"id": "string",
},
AvailabilitySet: map[string]interface{}{
"id": "string",
},
ScheduledEventsProfile: map[string]interface{}{
"terminateNotificationProfile": map[string]interface{}{
"enable": false,
"notBeforeTimeout": "string",
},
},
SecurityProfile: map[string]interface{}{
"encryptionAtHost": false,
"securityType": "string",
"uefiSettings": map[string]interface{}{
"secureBootEnabled": false,
"vTpmEnabled": false,
},
},
Plan: map[string]interface{}{
"name": "string",
"product": "string",
"promotionCode": "string",
"publisher": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
UserData: "string",
VirtualMachineScaleSet: map[string]interface{}{
"id": "string",
},
VmName: "string",
AdditionalCapabilities: map[string]interface{}{
"ultraSSDEnabled": false,
},
})
var virtualMachineResource = new VirtualMachine("virtualMachineResource", VirtualMachineArgs.builder()
.resourceGroupName("string")
.osProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.zones("string")
.networkProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.evictionPolicy("string")
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.extensionsTimeBudget("string")
.hardwareProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.host(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.hostGroup(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.licenseType("string")
.location("string")
.diagnosticsProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.billingProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.storageProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.platformFaultDomain(0)
.priority("string")
.proximityPlacementGroup(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.availabilitySet(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.scheduledEventsProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.securityProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.plan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.userData("string")
.virtualMachineScaleSet(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vmName("string")
.additionalCapabilities(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
virtual_machine_resource = azure_native.compute.VirtualMachine("virtualMachineResource",
resource_group_name=string,
os_profile={
adminPassword: string,
adminUsername: string,
allowExtensionOperations: False,
computerName: string,
customData: string,
linuxConfiguration: {
disablePasswordAuthentication: False,
patchSettings: {
assessmentMode: string,
patchMode: string,
},
provisionVMAgent: False,
ssh: {
publicKeys: [{
keyData: string,
path: string,
}],
},
},
requireGuestProvisionSignal: False,
secrets: [{
sourceVault: {
id: string,
},
vaultCertificates: [{
certificateStore: string,
certificateUrl: string,
}],
}],
windowsConfiguration: {
additionalUnattendContent: [{
componentName: Microsoft-Windows-Shell-Setup,
content: string,
passName: OobeSystem,
settingName: AutoLogon,
}],
enableAutomaticUpdates: False,
patchSettings: {
assessmentMode: string,
enableHotpatching: False,
patchMode: string,
},
provisionVMAgent: False,
timeZone: string,
winRM: {
listeners: [{
certificateUrl: string,
protocol: Http,
}],
},
},
},
zones=[string],
network_profile={
networkApiVersion: string,
networkInterfaceConfigurations: [{
ipConfigurations: [{
name: string,
applicationGatewayBackendAddressPools: [{
id: string,
}],
applicationSecurityGroups: [{
id: string,
}],
loadBalancerBackendAddressPools: [{
id: string,
}],
primary: False,
privateIPAddressVersion: string,
publicIPAddressConfiguration: {
name: string,
deleteOption: string,
dnsSettings: {
domainNameLabel: string,
},
idleTimeoutInMinutes: 0,
ipTags: [{
ipTagType: string,
tag: string,
}],
publicIPAddressVersion: string,
publicIPAllocationMethod: string,
publicIPPrefix: {
id: string,
},
sku: {
name: string,
tier: string,
},
},
subnet: {
id: string,
},
}],
name: string,
deleteOption: string,
dnsSettings: {
dnsServers: [string],
},
dscpConfiguration: {
id: string,
},
enableAcceleratedNetworking: False,
enableFpga: False,
enableIPForwarding: False,
networkSecurityGroup: {
id: string,
},
primary: False,
}],
networkInterfaces: [{
deleteOption: string,
id: string,
primary: False,
}],
},
eviction_policy=string,
extended_location={
name: string,
type: string,
},
extensions_time_budget=string,
hardware_profile={
vmSize: string,
},
host={
id: string,
},
host_group={
id: string,
},
identity={
type: SystemAssigned,
userAssignedIdentities: {
string: any,
},
},
license_type=string,
location=string,
diagnostics_profile={
bootDiagnostics: {
enabled: False,
storageUri: string,
},
},
billing_profile={
maxPrice: 0,
},
storage_profile={
dataDisks: [{
createOption: string,
lun: 0,
caching: None,
deleteOption: string,
detachOption: string,
diskSizeGB: 0,
image: {
uri: string,
},
managedDisk: {
diskEncryptionSet: {
id: string,
},
id: string,
storageAccountType: string,
},
name: string,
toBeDetached: False,
vhd: {
uri: string,
},
writeAcceleratorEnabled: False,
}],
imageReference: {
id: string,
offer: string,
publisher: string,
sku: string,
version: string,
},
osDisk: {
createOption: string,
caching: None,
deleteOption: string,
diffDiskSettings: {
option: string,
placement: string,
},
diskSizeGB: 0,
encryptionSettings: {
diskEncryptionKey: {
secretUrl: string,
sourceVault: {
id: string,
},
},
enabled: False,
keyEncryptionKey: {
keyUrl: string,
sourceVault: {
id: string,
},
},
},
image: {
uri: string,
},
managedDisk: {
diskEncryptionSet: {
id: string,
},
id: string,
storageAccountType: string,
},
name: string,
osType: Windows,
vhd: {
uri: string,
},
writeAcceleratorEnabled: False,
},
},
platform_fault_domain=0,
priority=string,
proximity_placement_group={
id: string,
},
availability_set={
id: string,
},
scheduled_events_profile={
terminateNotificationProfile: {
enable: False,
notBeforeTimeout: string,
},
},
security_profile={
encryptionAtHost: False,
securityType: string,
uefiSettings: {
secureBootEnabled: False,
vTpmEnabled: False,
},
},
plan={
name: string,
product: string,
promotionCode: string,
publisher: string,
},
tags={
string: string,
},
user_data=string,
virtual_machine_scale_set={
id: string,
},
vm_name=string,
additional_capabilities={
ultraSSDEnabled: False,
})
const virtualMachineResource = new azure_native.compute.VirtualMachine("virtualMachineResource", {
resourceGroupName: "string",
osProfile: {
adminPassword: "string",
adminUsername: "string",
allowExtensionOperations: false,
computerName: "string",
customData: "string",
linuxConfiguration: {
disablePasswordAuthentication: false,
patchSettings: {
assessmentMode: "string",
patchMode: "string",
},
provisionVMAgent: false,
ssh: {
publicKeys: [{
keyData: "string",
path: "string",
}],
},
},
requireGuestProvisionSignal: false,
secrets: [{
sourceVault: {
id: "string",
},
vaultCertificates: [{
certificateStore: "string",
certificateUrl: "string",
}],
}],
windowsConfiguration: {
additionalUnattendContent: [{
componentName: "Microsoft-Windows-Shell-Setup",
content: "string",
passName: "OobeSystem",
settingName: "AutoLogon",
}],
enableAutomaticUpdates: false,
patchSettings: {
assessmentMode: "string",
enableHotpatching: false,
patchMode: "string",
},
provisionVMAgent: false,
timeZone: "string",
winRM: {
listeners: [{
certificateUrl: "string",
protocol: "Http",
}],
},
},
},
zones: ["string"],
networkProfile: {
networkApiVersion: "string",
networkInterfaceConfigurations: [{
ipConfigurations: [{
name: "string",
applicationGatewayBackendAddressPools: [{
id: "string",
}],
applicationSecurityGroups: [{
id: "string",
}],
loadBalancerBackendAddressPools: [{
id: "string",
}],
primary: false,
privateIPAddressVersion: "string",
publicIPAddressConfiguration: {
name: "string",
deleteOption: "string",
dnsSettings: {
domainNameLabel: "string",
},
idleTimeoutInMinutes: 0,
ipTags: [{
ipTagType: "string",
tag: "string",
}],
publicIPAddressVersion: "string",
publicIPAllocationMethod: "string",
publicIPPrefix: {
id: "string",
},
sku: {
name: "string",
tier: "string",
},
},
subnet: {
id: "string",
},
}],
name: "string",
deleteOption: "string",
dnsSettings: {
dnsServers: ["string"],
},
dscpConfiguration: {
id: "string",
},
enableAcceleratedNetworking: false,
enableFpga: false,
enableIPForwarding: false,
networkSecurityGroup: {
id: "string",
},
primary: false,
}],
networkInterfaces: [{
deleteOption: "string",
id: "string",
primary: false,
}],
},
evictionPolicy: "string",
extendedLocation: {
name: "string",
type: "string",
},
extensionsTimeBudget: "string",
hardwareProfile: {
vmSize: "string",
},
host: {
id: "string",
},
hostGroup: {
id: "string",
},
identity: {
type: "SystemAssigned",
userAssignedIdentities: {
string: "any",
},
},
licenseType: "string",
location: "string",
diagnosticsProfile: {
bootDiagnostics: {
enabled: false,
storageUri: "string",
},
},
billingProfile: {
maxPrice: 0,
},
storageProfile: {
dataDisks: [{
createOption: "string",
lun: 0,
caching: "None",
deleteOption: "string",
detachOption: "string",
diskSizeGB: 0,
image: {
uri: "string",
},
managedDisk: {
diskEncryptionSet: {
id: "string",
},
id: "string",
storageAccountType: "string",
},
name: "string",
toBeDetached: false,
vhd: {
uri: "string",
},
writeAcceleratorEnabled: false,
}],
imageReference: {
id: "string",
offer: "string",
publisher: "string",
sku: "string",
version: "string",
},
osDisk: {
createOption: "string",
caching: "None",
deleteOption: "string",
diffDiskSettings: {
option: "string",
placement: "string",
},
diskSizeGB: 0,
encryptionSettings: {
diskEncryptionKey: {
secretUrl: "string",
sourceVault: {
id: "string",
},
},
enabled: false,
keyEncryptionKey: {
keyUrl: "string",
sourceVault: {
id: "string",
},
},
},
image: {
uri: "string",
},
managedDisk: {
diskEncryptionSet: {
id: "string",
},
id: "string",
storageAccountType: "string",
},
name: "string",
osType: "Windows",
vhd: {
uri: "string",
},
writeAcceleratorEnabled: false,
},
},
platformFaultDomain: 0,
priority: "string",
proximityPlacementGroup: {
id: "string",
},
availabilitySet: {
id: "string",
},
scheduledEventsProfile: {
terminateNotificationProfile: {
enable: false,
notBeforeTimeout: "string",
},
},
securityProfile: {
encryptionAtHost: false,
securityType: "string",
uefiSettings: {
secureBootEnabled: false,
vTpmEnabled: false,
},
},
plan: {
name: "string",
product: "string",
promotionCode: "string",
publisher: "string",
},
tags: {
string: "string",
},
userData: "string",
virtualMachineScaleSet: {
id: "string",
},
vmName: "string",
additionalCapabilities: {
ultraSSDEnabled: false,
},
});
type: azure-native:compute:VirtualMachine
properties:
additionalCapabilities:
ultraSSDEnabled: false
availabilitySet:
id: string
billingProfile:
maxPrice: 0
diagnosticsProfile:
bootDiagnostics:
enabled: false
storageUri: string
evictionPolicy: string
extendedLocation:
name: string
type: string
extensionsTimeBudget: string
hardwareProfile:
vmSize: string
host:
id: string
hostGroup:
id: string
identity:
type: SystemAssigned
userAssignedIdentities:
string: any
licenseType: string
location: string
networkProfile:
networkApiVersion: string
networkInterfaceConfigurations:
- deleteOption: string
dnsSettings:
dnsServers:
- string
dscpConfiguration:
id: string
enableAcceleratedNetworking: false
enableFpga: false
enableIPForwarding: false
ipConfigurations:
- applicationGatewayBackendAddressPools:
- id: string
applicationSecurityGroups:
- id: string
loadBalancerBackendAddressPools:
- id: string
name: string
primary: false
privateIPAddressVersion: string
publicIPAddressConfiguration:
deleteOption: string
dnsSettings:
domainNameLabel: string
idleTimeoutInMinutes: 0
ipTags:
- ipTagType: string
tag: string
name: string
publicIPAddressVersion: string
publicIPAllocationMethod: string
publicIPPrefix:
id: string
sku:
name: string
tier: string
subnet:
id: string
name: string
networkSecurityGroup:
id: string
primary: false
networkInterfaces:
- deleteOption: string
id: string
primary: false
osProfile:
adminPassword: string
adminUsername: string
allowExtensionOperations: false
computerName: string
customData: string
linuxConfiguration:
disablePasswordAuthentication: false
patchSettings:
assessmentMode: string
patchMode: string
provisionVMAgent: false
ssh:
publicKeys:
- keyData: string
path: string
requireGuestProvisionSignal: false
secrets:
- sourceVault:
id: string
vaultCertificates:
- certificateStore: string
certificateUrl: string
windowsConfiguration:
additionalUnattendContent:
- componentName: Microsoft-Windows-Shell-Setup
content: string
passName: OobeSystem
settingName: AutoLogon
enableAutomaticUpdates: false
patchSettings:
assessmentMode: string
enableHotpatching: false
patchMode: string
provisionVMAgent: false
timeZone: string
winRM:
listeners:
- certificateUrl: string
protocol: Http
plan:
name: string
product: string
promotionCode: string
publisher: string
platformFaultDomain: 0
priority: string
proximityPlacementGroup:
id: string
resourceGroupName: string
scheduledEventsProfile:
terminateNotificationProfile:
enable: false
notBeforeTimeout: string
securityProfile:
encryptionAtHost: false
securityType: string
uefiSettings:
secureBootEnabled: false
vTpmEnabled: false
storageProfile:
dataDisks:
- caching: None
createOption: string
deleteOption: string
detachOption: string
diskSizeGB: 0
image:
uri: string
lun: 0
managedDisk:
diskEncryptionSet:
id: string
id: string
storageAccountType: string
name: string
toBeDetached: false
vhd:
uri: string
writeAcceleratorEnabled: false
imageReference:
id: string
offer: string
publisher: string
sku: string
version: string
osDisk:
caching: None
createOption: string
deleteOption: string
diffDiskSettings:
option: string
placement: string
diskSizeGB: 0
encryptionSettings:
diskEncryptionKey:
secretUrl: string
sourceVault:
id: string
enabled: false
keyEncryptionKey:
keyUrl: string
sourceVault:
id: string
image:
uri: string
managedDisk:
diskEncryptionSet:
id: string
id: string
storageAccountType: string
name: string
osType: Windows
vhd:
uri: string
writeAcceleratorEnabled: false
tags:
string: string
userData: string
virtualMachineScaleSet:
id: string
vmName: string
zones:
- string
VirtualMachine Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VirtualMachine resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Additional
Capabilities Pulumi.Azure Native. Compute. Inputs. Additional Capabilities - Specifies additional capabilities enabled or disabled on the virtual machine.
- Availability
Set Pulumi.Azure Native. Compute. Inputs. Sub Resource - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- Billing
Profile Pulumi.Azure Native. Compute. Inputs. Billing Profile - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- Diagnostics
Profile Pulumi.Azure Native. Compute. Inputs. Diagnostics Profile - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- Eviction
Policy string | Pulumi.Azure Native. Compute. Virtual Machine Eviction Policy Types - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- Extended
Location Pulumi.Azure Native. Compute. Inputs. Extended Location - The extended location of the Virtual Machine.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- Hardware
Profile Pulumi.Azure Native. Compute. Inputs. Hardware Profile - Specifies the hardware settings for the virtual machine.
- Host
Pulumi.
Azure Native. Compute. Inputs. Sub Resource - Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- Host
Group Pulumi.Azure Native. Compute. Inputs. Sub Resource - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- Identity
Pulumi.
Azure Native. Compute. Inputs. Virtual Machine Identity - The identity of the virtual machine, if configured.
- License
Type string - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- Location string
- Resource location
- Network
Profile Pulumi.Azure Native. Compute. Inputs. Network Profile - Specifies the network interfaces of the virtual machine.
- Os
Profile Pulumi.Azure Native. Compute. Inputs. OSProfile - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- Plan
Pulumi.
Azure Native. Compute. Inputs. Plan - Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- Platform
Fault intDomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- Priority
string | Pulumi.
Azure Native. Compute. Virtual Machine Priority Types - Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- Proximity
Placement Pulumi.Group Azure Native. Compute. Inputs. Sub Resource - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- Scheduled
Events Pulumi.Profile Azure Native. Compute. Inputs. Scheduled Events Profile - Specifies Scheduled Event related configurations.
- Security
Profile Pulumi.Azure Native. Compute. Inputs. Security Profile - Specifies the Security related profile settings for the virtual machine.
- Storage
Profile Pulumi.Azure Native. Compute. Inputs. Storage Profile - Specifies the storage settings for the virtual machine disks.
- Dictionary<string, string>
- Resource tags
- User
Data string - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- Virtual
Machine Pulumi.Scale Set Azure Native. Compute. Inputs. Sub Resource - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- Vm
Name string - The name of the virtual machine.
- Zones List<string>
- The virtual machine zones.
- Resource
Group stringName - The name of the resource group.
- Additional
Capabilities AdditionalCapabilities Args - Specifies additional capabilities enabled or disabled on the virtual machine.
- Availability
Set SubResource Args - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- Billing
Profile BillingProfile Args - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- Diagnostics
Profile DiagnosticsProfile Args - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- Eviction
Policy string | VirtualMachine Eviction Policy Types - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- Extended
Location ExtendedLocation Args - The extended location of the Virtual Machine.
- Extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- Hardware
Profile HardwareProfile Args - Specifies the hardware settings for the virtual machine.
- Host
Sub
Resource Args - Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- Host
Group SubResource Args - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- Identity
Virtual
Machine Identity Args - The identity of the virtual machine, if configured.
- License
Type string - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- Location string
- Resource location
- Network
Profile NetworkProfile Args - Specifies the network interfaces of the virtual machine.
- Os
Profile OSProfileArgs - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- Plan
Plan
Args - Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- Platform
Fault intDomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- Priority
string | Virtual
Machine Priority Types - Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- Proximity
Placement SubGroup Resource Args - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- Scheduled
Events ScheduledProfile Events Profile Args - Specifies Scheduled Event related configurations.
- Security
Profile SecurityProfile Args - Specifies the Security related profile settings for the virtual machine.
- Storage
Profile StorageProfile Args - Specifies the storage settings for the virtual machine disks.
- map[string]string
- Resource tags
- User
Data string - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- Virtual
Machine SubScale Set Resource Args - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- Vm
Name string - The name of the virtual machine.
- Zones []string
- The virtual machine zones.
- resource
Group StringName - The name of the resource group.
- additional
Capabilities AdditionalCapabilities - Specifies additional capabilities enabled or disabled on the virtual machine.
- availability
Set SubResource - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billing
Profile BillingProfile - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- diagnostics
Profile DiagnosticsProfile - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- eviction
Policy String | VirtualMachine Eviction Policy Types - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extended
Location ExtendedLocation - The extended location of the Virtual Machine.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- hardware
Profile HardwareProfile - Specifies the hardware settings for the virtual machine.
- host
Sub
Resource - Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- host
Group SubResource - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- identity
Virtual
Machine Identity - The identity of the virtual machine, if configured.
- license
Type String - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location String
- Resource location
- network
Profile NetworkProfile - Specifies the network interfaces of the virtual machine.
- os
Profile OSProfile - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Plan
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platform
Fault IntegerDomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- priority
String | Virtual
Machine Priority Types - Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximity
Placement SubGroup Resource - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduled
Events ScheduledProfile Events Profile - Specifies Scheduled Event related configurations.
- security
Profile SecurityProfile - Specifies the Security related profile settings for the virtual machine.
- storage
Profile StorageProfile - Specifies the storage settings for the virtual machine disks.
- Map<String,String>
- Resource tags
- user
Data String - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- virtual
Machine SubScale Set Resource - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- vm
Name String - The name of the virtual machine.
- zones List<String>
- The virtual machine zones.
- resource
Group stringName - The name of the resource group.
- additional
Capabilities AdditionalCapabilities - Specifies additional capabilities enabled or disabled on the virtual machine.
- availability
Set SubResource - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billing
Profile BillingProfile - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- diagnostics
Profile DiagnosticsProfile - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- eviction
Policy string | VirtualMachine Eviction Policy Types - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extended
Location ExtendedLocation - The extended location of the Virtual Machine.
- extensions
Time stringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- hardware
Profile HardwareProfile - Specifies the hardware settings for the virtual machine.
- host
Sub
Resource - Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- host
Group SubResource - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- identity
Virtual
Machine Identity - The identity of the virtual machine, if configured.
- license
Type string - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location string
- Resource location
- network
Profile NetworkProfile - Specifies the network interfaces of the virtual machine.
- os
Profile OSProfile - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Plan
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platform
Fault numberDomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- priority
string | Virtual
Machine Priority Types - Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximity
Placement SubGroup Resource - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduled
Events ScheduledProfile Events Profile - Specifies Scheduled Event related configurations.
- security
Profile SecurityProfile - Specifies the Security related profile settings for the virtual machine.
- storage
Profile StorageProfile - Specifies the storage settings for the virtual machine disks.
- {[key: string]: string}
- Resource tags
- user
Data string - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- virtual
Machine SubScale Set Resource - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- vm
Name string - The name of the virtual machine.
- zones string[]
- The virtual machine zones.
- resource_
group_ strname - The name of the resource group.
- additional_
capabilities AdditionalCapabilities Args - Specifies additional capabilities enabled or disabled on the virtual machine.
- availability_
set SubResource Args - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billing_
profile BillingProfile Args - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- diagnostics_
profile DiagnosticsProfile Args - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- eviction_
policy str | VirtualMachine Eviction Policy Types - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extended_
location ExtendedLocation Args - The extended location of the Virtual Machine.
- extensions_
time_ strbudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- hardware_
profile HardwareProfile Args - Specifies the hardware settings for the virtual machine.
- host
Sub
Resource Args - Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- host_
group SubResource Args - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- identity
Virtual
Machine Identity Args - The identity of the virtual machine, if configured.
- license_
type str - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location str
- Resource location
- network_
profile NetworkProfile Args - Specifies the network interfaces of the virtual machine.
- os_
profile OSProfileArgs - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan
Plan
Args - Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platform_
fault_ intdomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- priority
str | Virtual
Machine Priority Types - Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximity_
placement_ Subgroup Resource Args - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduled_
events_ Scheduledprofile Events Profile Args - Specifies Scheduled Event related configurations.
- security_
profile SecurityProfile Args - Specifies the Security related profile settings for the virtual machine.
- storage_
profile StorageProfile Args - Specifies the storage settings for the virtual machine disks.
- Mapping[str, str]
- Resource tags
- user_
data str - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- virtual_
machine_ Subscale_ set Resource Args - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- vm_
name str - The name of the virtual machine.
- zones Sequence[str]
- The virtual machine zones.
- resource
Group StringName - The name of the resource group.
- additional
Capabilities Property Map - Specifies additional capabilities enabled or disabled on the virtual machine.
- availability
Set Property Map - Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see Availability sets overview. For more information on Azure planned maintenance, see Maintenance and updates for Virtual Machines in Azure Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
- billing
Profile Property Map - Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.
- diagnostics
Profile Property Map - Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
- eviction
Policy String | "Deallocate" | "Delete" - Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.
- extended
Location Property Map - The extended location of the Virtual Machine.
- extensions
Time StringBudget - Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01
- hardware
Profile Property Map - Specifies the hardware settings for the virtual machine.
- host Property Map
- Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.
- host
Group Property Map - Specifies information about the dedicated host group that the virtual machine resides in. Minimum api-version: 2020-06-01. NOTE: User cannot specify both host and hostGroup properties.
- identity Property Map
- The identity of the virtual machine, if configured.
- license
Type String - Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see Azure Hybrid Use Benefit for Windows Server Azure Hybrid Use Benefit for Linux Server Minimum api-version: 2015-06-15
- location String
- Resource location
- network
Profile Property Map - Specifies the network interfaces of the virtual machine.
- os
Profile Property Map - Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.
- plan Property Map
- Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click Want to deploy programmatically, Get Started ->. Enter any required information and then click Save.
- platform
Fault NumberDomain - Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains.This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set.The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' > 1.This property cannot be updated once the Virtual Machine is created.Fault domain assignment can be viewed in the Virtual Machine Instance View.Minimum api‐version: 2020‐12‐01
- priority String | "Regular" | "Low" | "Spot"
- Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01
- proximity
Placement Property MapGroup - Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.
- scheduled
Events Property MapProfile - Specifies Scheduled Event related configurations.
- security
Profile Property Map - Specifies the Security related profile settings for the virtual machine.
- storage
Profile Property Map - Specifies the storage settings for the virtual machine disks.
- Map<String>
- Resource tags
- user
Data String - UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01
- virtual
Machine Property MapScale Set - Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01
- vm
Name String - The name of the virtual machine.
- zones List<String>
- The virtual machine zones.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualMachine resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
View Pulumi.Azure Native. Compute. Outputs. Virtual Machine Instance View Response - The virtual machine instance view.
- Name string
- Resource name
- Provisioning
State string - The provisioning state, which only appears in the response.
- Resources
List<Pulumi.
Azure Native. Compute. Outputs. Virtual Machine Extension Response> - The virtual machine child extension resources.
- Type string
- Resource type
- Vm
Id string - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- Name string
- Resource name
- Provisioning
State string - The provisioning state, which only appears in the response.
- Resources
[]Virtual
Machine Extension Response - The virtual machine child extension resources.
- Type string
- Resource type
- Vm
Id string - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- name String
- Resource name
- provisioning
State String - The provisioning state, which only appears in the response.
- resources
List<Virtual
Machine Extension Response> - The virtual machine child extension resources.
- type String
- Resource type
- vm
Id String - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
View VirtualMachine Instance View Response - The virtual machine instance view.
- name string
- Resource name
- provisioning
State string - The provisioning state, which only appears in the response.
- resources
Virtual
Machine Extension Response[] - The virtual machine child extension resources.
- type string
- Resource type
- vm
Id string - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
view VirtualMachine Instance View Response - The virtual machine instance view.
- name str
- Resource name
- provisioning_
state str - The provisioning state, which only appears in the response.
- resources
Sequence[Virtual
Machine Extension Response] - The virtual machine child extension resources.
- type str
- Resource type
- vm_
id str - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
View Property Map - The virtual machine instance view.
- name String
- Resource name
- provisioning
State String - The provisioning state, which only appears in the response.
- resources List<Property Map>
- The virtual machine child extension resources.
- type String
- Resource type
- vm
Id String - Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
Supporting Types
AdditionalCapabilities, AdditionalCapabilitiesArgs
- Ultra
SSDEnabled bool - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- Ultra
SSDEnabled bool - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled Boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra_
ssd_ boolenabled - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled Boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
AdditionalCapabilitiesResponse, AdditionalCapabilitiesResponseArgs
- Ultra
SSDEnabled bool - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- Ultra
SSDEnabled bool - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled Boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra_
ssd_ boolenabled - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
- ultra
SSDEnabled Boolean - The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.
AdditionalUnattendContent, AdditionalUnattendContentArgs
- Component
Name Pulumi.Azure Native. Compute. Component Names - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- Pass
Name Pulumi.Azure Native. Compute. Pass Names - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name Pulumi.Azure Native. Compute. Setting Names - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- Component
Name ComponentNames - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- Pass
Name PassNames - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name SettingNames - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name ComponentNames - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name PassNames - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name SettingNames - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name ComponentNames - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name PassNames - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name SettingNames - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component_
name ComponentNames - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content str
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass_
name PassNames - The pass name. Currently, the only allowable value is OobeSystem.
- setting_
name SettingNames - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name "Microsoft-Windows-Shell-Setup" - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name "OobeSystem" - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name "AutoLogon" | "First Logon Commands" - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
AdditionalUnattendContentResponse, AdditionalUnattendContentResponseArgs
- Component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- Pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name string - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- Component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- Content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- Pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- Setting
Name string - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name String - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name String - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name String - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name string - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content string
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name string - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name string - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component_
name str - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content str
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass_
name str - The pass name. Currently, the only allowable value is OobeSystem.
- setting_
name str - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
- component
Name String - The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.
- content String
- Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.
- pass
Name String - The pass name. Currently, the only allowable value is OobeSystem.
- setting
Name String - Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.
ApiErrorBaseResponse, ApiErrorBaseResponseArgs
ApiErrorResponse, ApiErrorResponseArgs
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Compute. Inputs. Api Error Base Response> - The Api error details
- Innererror
Pulumi.
Azure Native. Compute. Inputs. Inner Error Response - The Api inner error
- Message string
- The error message.
- Target string
- The target of the particular error.
- Code string
- The error code.
- Details
[]Api
Error Base Response - The Api error details
- Innererror
Inner
Error Response - The Api inner error
- Message string
- The error message.
- Target string
- The target of the particular error.
- code String
- The error code.
- details
List<Api
Error Base Response> - The Api error details
- innererror
Inner
Error Response - The Api inner error
- message String
- The error message.
- target String
- The target of the particular error.
- code string
- The error code.
- details
Api
Error Base Response[] - The Api error details
- innererror
Inner
Error Response - The Api inner error
- message string
- The error message.
- target string
- The target of the particular error.
- code str
- The error code.
- details
Sequence[Api
Error Base Response] - The Api error details
- innererror
Inner
Error Response - The Api inner error
- message str
- The error message.
- target str
- The target of the particular error.
- code String
- The error code.
- details List<Property Map>
- The Api error details
- innererror Property Map
- The Api inner error
- message String
- The error message.
- target String
- The target of the particular error.
AvailablePatchSummaryResponse, AvailablePatchSummaryResponseArgs
- Assessment
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- Critical
And intSecurity Patch Count - The number of critical or security patches that have been detected as available and not yet installed.
- Error
Pulumi.
Azure Native. Compute. Inputs. Api Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- Last
Modified stringTime - The UTC timestamp when the operation began.
- Other
Patch intCount - The number of all available patches excluding critical and security.
- Reboot
Pending bool - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- Start
Time string - The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- Assessment
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- Critical
And intSecurity Patch Count - The number of critical or security patches that have been detected as available and not yet installed.
- Error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- Last
Modified stringTime - The UTC timestamp when the operation began.
- Other
Patch intCount - The number of all available patches excluding critical and security.
- Reboot
Pending bool - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- Start
Time string - The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessment
Activity StringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- critical
And IntegerSecurity Patch Count - The number of critical or security patches that have been detected as available and not yet installed.
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- last
Modified StringTime - The UTC timestamp when the operation began.
- other
Patch IntegerCount - The number of all available patches excluding critical and security.
- reboot
Pending Boolean - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- start
Time String - The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessment
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- critical
And numberSecurity Patch Count - The number of critical or security patches that have been detected as available and not yet installed.
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- last
Modified stringTime - The UTC timestamp when the operation began.
- other
Patch numberCount - The number of all available patches excluding critical and security.
- reboot
Pending boolean - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- start
Time string - The UTC timestamp when the operation began.
- status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessment_
activity_ strid - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- critical_
and_ intsecurity_ patch_ count - The number of critical or security patches that have been detected as available and not yet installed.
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- last_
modified_ strtime - The UTC timestamp when the operation began.
- other_
patch_ intcount - The number of all available patches excluding critical and security.
- reboot_
pending bool - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- start_
time str - The UTC timestamp when the operation began.
- status str
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- assessment
Activity StringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- critical
And NumberSecurity Patch Count - The number of critical or security patches that have been detected as available and not yet installed.
- error Property Map
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- last
Modified StringTime - The UTC timestamp when the operation began.
- other
Patch NumberCount - The number of all available patches excluding critical and security.
- reboot
Pending Boolean - The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.
- start
Time String - The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
BillingProfile, BillingProfileArgs
- Max
Price double - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- Max
Price float64 - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price Double - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price number - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max_
price float - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price Number - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
BillingProfileResponse, BillingProfileResponseArgs
- Max
Price double - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- Max
Price float64 - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price Double - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price number - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max_
price float - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
- max
Price Number - Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars. This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price. The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS. Possible values are: - Any decimal value greater than zero. Example: 0.01538 -1 – indicates default price to be up-to on-demand. You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you. Minimum api-version: 2019-03-01.
BootDiagnostics, BootDiagnosticsArgs
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- Storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- Storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri String - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage_
uri str - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri String - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
BootDiagnosticsInstanceViewResponse, BootDiagnosticsInstanceViewResponseArgs
- Console
Screenshot stringBlob Uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- Serial
Console stringLog Blob Uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- Status
Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response - The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
- Console
Screenshot stringBlob Uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- Serial
Console stringLog Blob Uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- Status
Instance
View Status Response - The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
- console
Screenshot StringBlob Uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- serial
Console StringLog Blob Uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
Instance
View Status Response - The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
- console
Screenshot stringBlob Uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- serial
Console stringLog Blob Uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
Instance
View Status Response - The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
- console_
screenshot_ strblob_ uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- serial_
console_ strlog_ blob_ uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- status
Instance
View Status Response - The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
- console
Screenshot StringBlob Uri - The console screenshot blob URI. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- serial
Console StringLog Blob Uri - The serial console log blob Uri. NOTE: This will not be set if boot diagnostics is currently enabled with managed storage.
- status Property Map
- The boot diagnostics status information for the VM. NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.
BootDiagnosticsResponse, BootDiagnosticsResponseArgs
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- Storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- Enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- Storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri String - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri string - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled bool
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage_
uri str - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
- enabled Boolean
- Whether boot diagnostics should be enabled on the Virtual Machine.
- storage
Uri String - Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.
CachingTypes, CachingTypesArgs
- None
- None
- Read
Only - ReadOnly
- Read
Write - ReadWrite
- Caching
Types None - None
- Caching
Types Read Only - ReadOnly
- Caching
Types Read Write - ReadWrite
- None
- None
- Read
Only - ReadOnly
- Read
Write - ReadWrite
- None
- None
- Read
Only - ReadOnly
- Read
Write - ReadWrite
- NONE
- None
- READ_ONLY
- ReadOnly
- READ_WRITE
- ReadWrite
- "None"
- None
- "Read
Only" - ReadOnly
- "Read
Write" - ReadWrite
ComponentNames, ComponentNamesArgs
- Microsoft_Windows_Shell_Setup
- Microsoft-Windows-Shell-Setup
- Component
Names_Microsoft_Windows_Shell_Setup - Microsoft-Windows-Shell-Setup
- Microsoft
Windows Shell Setup - Microsoft-Windows-Shell-Setup
- Microsoft_Windows_Shell_Setup
- Microsoft-Windows-Shell-Setup
- MICROSOFT_WINDOWS_SHELL_SETUP
- Microsoft-Windows-Shell-Setup
- "Microsoft-Windows-Shell-Setup"
- Microsoft-Windows-Shell-Setup
DataDisk, DataDiskArgs
- Create
Option string | Pulumi.Azure Native. Compute. Disk Create Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching
Pulumi.
Azure Native. Compute. Caching Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- Delete
Option string | Pulumi.Azure Native. Compute. Disk Delete Option Types - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- Detach
Option string | Pulumi.Azure Native. Compute. Disk Detach Option Types - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Image
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- To
Be boolDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- Delete
Option string | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- Detach
Option string | DiskDetach Option Types - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk ManagedDisk Parameters - The managed disk parameters.
- Name string
- The disk name.
- To
Be boolDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Virtual
Hard Disk - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- lun Integer
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option String | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option String | DiskDetach Option Types - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters - The managed disk parameters.
- name String
- The disk name.
- to
Be BooleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- lun number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option string | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option string | DiskDetach Option Types - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters - The managed disk parameters.
- name string
- The disk name.
- to
Be booleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete_
option str | DiskDelete Option Types - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach_
option str | DiskDetach Option Types - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_
disk ManagedDisk Parameters - The managed disk parameters.
- name str
- The disk name.
- to_
be_ booldetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | "FromImage" | "Empty" | "Attach" - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- lun Number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching
"None" | "Read
Only" | "Read Write" - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option String | "Delete" | "Detach" - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option String | "ForceDetach" - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- to
Be BooleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd Property Map
- The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
DataDiskResponse, DataDiskResponseArgs
- Create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Disk
IOPSRead doubleWrite - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- Disk
MBps doubleRead Write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- Delete
Option string - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- Detach
Option string - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Image
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- To
Be boolDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk Response - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Disk
IOPSRead float64Write - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- Disk
MBps float64Read Write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- Lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- Caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- Delete
Option string - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- Detach
Option string - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- To
Be boolDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- Vhd
Virtual
Hard Disk Response - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- disk
IOPSRead DoubleWrite - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- disk
MBps DoubleRead Write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- lun Integer
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching String
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option String - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option String - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- name String
- The disk name.
- to
Be BooleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- disk
IOPSRead numberWrite - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- disk
MBps numberRead Write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- lun number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option string - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option string - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- name string
- The disk name.
- to
Be booleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- disk_
iops_ floatread_ write - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- disk_
m_ floatbps_ read_ write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- lun int
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching str
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete_
option str - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach_
option str - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_
disk ManagedDisk Parameters Response - The managed disk parameters.
- name str
- The disk name.
- to_
be_ booldetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- disk
IOPSRead NumberWrite - Specifies the Read-Write IOPS for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- disk
MBps NumberRead Write - Specifies the bandwidth in MB per second for the managed disk when StorageAccountType is UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. Can be updated only via updates to the VirtualMachine Scale Set.
- lun Number
- Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
- caching String
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage
- delete
Option String - Specifies whether data disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the data disk is deleted when VM is deleted. Detach If this value is used, the data disk is retained after VM is deleted. The default value is set to detach
- detach
Option String - Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: ForceDetach. detachOption: ForceDetach is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- to
Be BooleanDetached - Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset
- vhd Property Map
- The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
DeleteOptions, DeleteOptionsArgs
- Delete
- Delete
- Detach
- Detach
- Delete
Options Delete - Delete
- Delete
Options Detach - Detach
- Delete
- Delete
- Detach
- Detach
- Delete
- Delete
- Detach
- Detach
- DELETE
- Delete
- DETACH
- Detach
- "Delete"
- Delete
- "Detach"
- Detach
DiagnosticsProfile, DiagnosticsProfileArgs
- Boot
Diagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- Boot
Diagnostics BootDiagnostics - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics BootDiagnostics - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics BootDiagnostics - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot_
diagnostics BootDiagnostics - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics Property Map - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
DiagnosticsProfileResponse, DiagnosticsProfileResponseArgs
- Boot
Diagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- Boot
Diagnostics BootDiagnostics Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics BootDiagnostics Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics BootDiagnostics Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot_
diagnostics BootDiagnostics Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- boot
Diagnostics Property Map - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
DiffDiskOptions, DiffDiskOptionsArgs
- Local
- Local
- Diff
Disk Options Local - Local
- Local
- Local
- Local
- Local
- LOCAL
- Local
- "Local"
- Local
DiffDiskPlacement, DiffDiskPlacementArgs
- Cache
Disk - CacheDisk
- Resource
Disk - ResourceDisk
- Diff
Disk Placement Cache Disk - CacheDisk
- Diff
Disk Placement Resource Disk - ResourceDisk
- Cache
Disk - CacheDisk
- Resource
Disk - ResourceDisk
- Cache
Disk - CacheDisk
- Resource
Disk - ResourceDisk
- CACHE_DISK
- CacheDisk
- RESOURCE_DISK
- ResourceDisk
- "Cache
Disk" - CacheDisk
- "Resource
Disk" - ResourceDisk
DiffDiskSettings, DiffDiskSettingsArgs
- Option
string | Pulumi.
Azure Native. Compute. Diff Disk Options - Specifies the ephemeral disk settings for operating system disk.
- Placement
string | Pulumi.
Azure Native. Compute. Diff Disk Placement - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- Option
string | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- Placement
string | Diff
Disk Placement - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
String | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
String | Diff
Disk Placement - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
string | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
string | Diff
Disk Placement - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option
str | Diff
Disk Options - Specifies the ephemeral disk settings for operating system disk.
- placement
str | Diff
Disk Placement - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String | "Local"
- Specifies the ephemeral disk settings for operating system disk.
- placement
String | "Cache
Disk" | "Resource Disk" - Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
DiffDiskSettingsResponse, DiffDiskSettingsResponseArgs
- Option string
- Specifies the ephemeral disk settings for operating system disk.
- Placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- Option string
- Specifies the ephemeral disk settings for operating system disk.
- Placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String
- Specifies the ephemeral disk settings for operating system disk.
- placement String
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option string
- Specifies the ephemeral disk settings for operating system disk.
- placement string
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option str
- Specifies the ephemeral disk settings for operating system disk.
- placement str
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
- option String
- Specifies the ephemeral disk settings for operating system disk.
- placement String
- Specifies the ephemeral disk placement for operating system disk. Possible values are: CacheDisk ResourceDisk Default: CacheDisk if one is configured for the VM size otherwise ResourceDisk is used. Refer to VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk.
DiskCreateOptionTypes, DiskCreateOptionTypesArgs
- From
Image - FromImage
- Empty
- Empty
- Attach
- Attach
- Disk
Create Option Types From Image - FromImage
- Disk
Create Option Types Empty - Empty
- Disk
Create Option Types Attach - Attach
- From
Image - FromImage
- Empty
- Empty
- Attach
- Attach
- From
Image - FromImage
- Empty
- Empty
- Attach
- Attach
- FROM_IMAGE
- FromImage
- EMPTY
- Empty
- ATTACH
- Attach
- "From
Image" - FromImage
- "Empty"
- Empty
- "Attach"
- Attach
DiskDeleteOptionTypes, DiskDeleteOptionTypesArgs
- Delete
- Delete
- Detach
- Detach
- Disk
Delete Option Types Delete - Delete
- Disk
Delete Option Types Detach - Detach
- Delete
- Delete
- Detach
- Detach
- Delete
- Delete
- Detach
- Detach
- DELETE
- Delete
- DETACH
- Detach
- "Delete"
- Delete
- "Detach"
- Detach
DiskDetachOptionTypes, DiskDetachOptionTypesArgs
- Force
Detach - ForceDetach
- Disk
Detach Option Types Force Detach - ForceDetach
- Force
Detach - ForceDetach
- Force
Detach - ForceDetach
- FORCE_DETACH
- ForceDetach
- "Force
Detach" - ForceDetach
DiskEncryptionSetParameters, DiskEncryptionSetParametersArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
DiskEncryptionSetParametersResponse, DiskEncryptionSetParametersResponseArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
DiskEncryptionSettings, DiskEncryptionSettingsArgs
- Disk
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Secret Reference - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Key Reference - Specifies the location of the key encryption key in Key Vault.
- Disk
Encryption KeyKey Vault Secret Reference - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption KeyKey Vault Key Reference - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference - Specifies the location of the key encryption key in Key Vault.
- disk_
encryption_ Keykey Vault Secret Reference - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- key_
encryption_ Keykey Vault Key Reference - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption Property MapKey - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption Property MapKey - Specifies the location of the key encryption key in Key Vault.
DiskEncryptionSettingsResponse, DiskEncryptionSettingsResponseArgs
- Disk
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption Pulumi.Key Azure Native. Compute. Inputs. Key Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- Disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- Enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- Key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption KeyKey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption KeyKey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk_
encryption_ Keykey Vault Secret Reference Response - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled bool
- Specifies whether disk encryption should be enabled on the virtual machine.
- key_
encryption_ Keykey Vault Key Reference Response - Specifies the location of the key encryption key in Key Vault.
- disk
Encryption Property MapKey - Specifies the location of the disk encryption key, which is a Key Vault Secret.
- enabled Boolean
- Specifies whether disk encryption should be enabled on the virtual machine.
- key
Encryption Property MapKey - Specifies the location of the key encryption key in Key Vault.
DiskInstanceViewResponse, DiskInstanceViewResponseArgs
- Encryption
Settings List<Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings Response> - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Name string
- The disk name.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Encryption
Settings []DiskEncryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Name string
- The disk name.
- Statuses
[]Instance
View Status Response - The resource status information.
- encryption
Settings List<DiskEncryption Settings Response> - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name String
- The disk name.
- statuses
List<Instance
View Status Response> - The resource status information.
- encryption
Settings DiskEncryption Settings Response[] - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name string
- The disk name.
- statuses
Instance
View Status Response[] - The resource status information.
- encryption_
settings Sequence[DiskEncryption Settings Response] - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name str
- The disk name.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- encryption
Settings List<Property Map> - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- name String
- The disk name.
- statuses List<Property Map>
- The resource status information.
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Compute. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | 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 | "Edge
Zone" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Edge
Zone - EdgeZone
- Extended
Location Types Edge Zone - EdgeZone
- Edge
Zone - EdgeZone
- Edge
Zone - EdgeZone
- EDGE_ZONE
- EdgeZone
- "Edge
Zone" - EdgeZone
HardwareProfile, HardwareProfileArgs
- Vm
Size string | Pulumi.Azure Native. Compute. Virtual Machine Size Types - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- Vm
Size string | VirtualMachine Size Types - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size String | VirtualMachine Size Types - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size string | VirtualMachine Size Types - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm_
size str | VirtualMachine Size Types - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size String | "Basic_A0" | "Basic_A1" | "Basic_A2" | "Basic_A3" | "Basic_A4" | "Standard_A0" | "Standard_A1" | "Standard_A2" | "Standard_A3" | "Standard_A4" | "Standard_A5" | "Standard_A6" | "Standard_A7" | "Standard_A8" | "Standard_A9" | "Standard_A10" | "Standard_A11" | "Standard_A1_v2" | "Standard_A2_ v2" | "Standard_A4_ v2" | "Standard_A8_ v2" | "Standard_A2m_ v2" | "Standard_A4m_ v2" | "Standard_A8m_ v2" | "Standard_B1s" | "Standard_B1ms" | "Standard_B2s" | "Standard_B2ms" | "Standard_B4ms" | "Standard_B8ms" | "Standard_D1" | "Standard_D2" | "Standard_D3" | "Standard_D4" | "Standard_D11" | "Standard_D12" | "Standard_D13" | "Standard_D14" | "Standard_D1_ v2" | "Standard_D2_ v2" | "Standard_D3_ v2" | "Standard_D4_ v2" | "Standard_D5_ v2" | "Standard_D2_ v3" | "Standard_D4_ v3" | "Standard_D8_ v3" | "Standard_D16_ v3" | "Standard_D32_ v3" | "Standard_D64_ v3" | "Standard_D2s_ v3" | "Standard_D4s_ v3" | "Standard_D8s_ v3" | "Standard_D16s_ v3" | "Standard_D32s_ v3" | "Standard_D64s_ v3" | "Standard_D11_ v2" | "Standard_D12_ v2" | "Standard_D13_ v2" | "Standard_D14_ v2" | "Standard_D15_ v2" | "Standard_DS1" | "Standard_DS2" | "Standard_DS3" | "Standard_DS4" | "Standard_DS11" | "Standard_DS12" | "Standard_DS13" | "Standard_DS14" | "Standard_DS1_ v2" | "Standard_DS2_ v2" | "Standard_DS3_ v2" | "Standard_DS4_ v2" | "Standard_DS5_ v2" | "Standard_DS11_ v2" | "Standard_DS12_ v2" | "Standard_DS13_ v2" | "Standard_DS14_ v2" | "Standard_DS15_ v2" | "Standard_DS13-4_ v2" | "Standard_DS13-2_ v2" | "Standard_DS14-8_ v2" | "Standard_DS14-4_ v2" | "Standard_E2_ v3" | "Standard_E4_ v3" | "Standard_E8_ v3" | "Standard_E16_ v3" | "Standard_E32_ v3" | "Standard_E64_ v3" | "Standard_E2s_ v3" | "Standard_E4s_ v3" | "Standard_E8s_ v3" | "Standard_E16s_ v3" | "Standard_E32s_ v3" | "Standard_E64s_ v3" | "Standard_E32-16_ v3" | "Standard_E32-8s_ v3" | "Standard_E64-32s_ v3" | "Standard_E64-16s_ v3" | "Standard_F1" | "Standard_F2" | "Standard_F4" | "Standard_F8" | "Standard_F16" | "Standard_F1s" | "Standard_F2s" | "Standard_F4s" | "Standard_F8s" | "Standard_F16s" | "Standard_F2s_ v2" | "Standard_F4s_ v2" | "Standard_F8s_ v2" | "Standard_F16s_ v2" | "Standard_F32s_ v2" | "Standard_F64s_ v2" | "Standard_F72s_ v2" | "Standard_G1" | "Standard_G2" | "Standard_G3" | "Standard_G4" | "Standard_G5" | "Standard_GS1" | "Standard_GS2" | "Standard_GS3" | "Standard_GS4" | "Standard_GS5" | "Standard_GS4-8" | "Standard_GS4-4" | "Standard_GS5-16" | "Standard_GS5-8" | "Standard_H8" | "Standard_H16" | "Standard_H8m" | "Standard_H16m" | "Standard_H16r" | "Standard_H16mr" | "Standard_L4s" | "Standard_L8s" | "Standard_L16s" | "Standard_L32s" | "Standard_M64s" | "Standard_M64ms" | "Standard_M128s" | "Standard_M128ms" | "Standard_M64-32ms" | "Standard_M64-16ms" | "Standard_M128-64ms" | "Standard_M128-32ms" | "Standard_NC6" | "Standard_NC12" | "Standard_NC24" | "Standard_NC24r" | "Standard_NC6s_ v2" | "Standard_NC12s_ v2" | "Standard_NC24s_ v2" | "Standard_NC24rs_ v2" | "Standard_NC6s_ v3" | "Standard_NC12s_ v3" | "Standard_NC24s_ v3" | "Standard_NC24rs_ v3" | "Standard_ND6s" | "Standard_ND12s" | "Standard_ND24s" | "Standard_ND24rs" | "Standard_NV6" | "Standard_NV12" | "Standard_NV24" - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
HardwareProfileResponse, HardwareProfileResponseArgs
- Vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- Vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size String - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size string - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm_
size str - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
- vm
Size String - Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. Recommended way to get the list of available sizes is using these APIs: List all available virtual machine sizes in an availability set List all available virtual machine sizes in a region List all available virtual machine sizes for resizing. For more information about virtual machine sizes, see Sizes for virtual machines. The available VM sizes depend on region and availability set.
IPVersions, IPVersionsArgs
- IPv4
- IPv4
- IPv6
- IPv6
- IPVersions
IPv4 - IPv4
- IPVersions
IPv6 - IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- I_PV4
- IPv4
- I_PV6
- IPv6
- "IPv4"
- IPv4
- "IPv6"
- IPv6
ImageReference, ImageReferenceArgs
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- id string
- Resource Id
- offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher string
- The image publisher.
- sku string
- The image SKU.
- version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- id str
- Resource Id
- offer str
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher str
- The image publisher.
- sku str
- The image SKU.
- version str
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
ImageReferenceResponse, ImageReferenceResponseArgs
- Exact
Version string - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- Exact
Version string - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- Id string
- Resource Id
- Offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- Publisher string
- The image publisher.
- Sku string
- The image SKU.
- Version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- exact
Version String - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- exact
Version string - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- id string
- Resource Id
- offer string
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher string
- The image publisher.
- sku string
- The image SKU.
- version string
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- exact_
version str - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- id str
- Resource Id
- offer str
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher str
- The image publisher.
- sku str
- The image SKU.
- version str
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
- exact
Version String - Specifies in decimal numbers, the version of platform image or marketplace image used to create the virtual machine. This readonly field differs from 'version', only if the value specified in 'version' field is 'latest'.
- id String
- Resource Id
- offer String
- Specifies the offer of the platform image or marketplace image used to create the virtual machine.
- publisher String
- The image publisher.
- sku String
- The image SKU.
- version String
- Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available.
InnerErrorResponse, InnerErrorResponseArgs
- Errordetail string
- The internal error message or exception dump.
- Exceptiontype string
- The exception type.
- Errordetail string
- The internal error message or exception dump.
- Exceptiontype string
- The exception type.
- errordetail String
- The internal error message or exception dump.
- exceptiontype String
- The exception type.
- errordetail string
- The internal error message or exception dump.
- exceptiontype string
- The exception type.
- errordetail str
- The internal error message or exception dump.
- exceptiontype str
- The exception type.
- errordetail String
- The internal error message or exception dump.
- exceptiontype String
- The exception type.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs
- Code string
- The status code.
- 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.
KeyVaultKeyReference, KeyVaultKeyReferenceArgs
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource - The relative URL of the Key Vault containing the key.
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault SubResource - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the key.
- key
Url string - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the key.
- key_
url str - The URL referencing a key encryption key in Key Vault.
- source_
vault SubResource - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the key.
KeyVaultKeyReferenceResponse, KeyVaultKeyReferenceResponseArgs
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing the key.
- Key
Url string - The URL referencing a key encryption key in Key Vault.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url string - The URL referencing a key encryption key in Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the key.
- key_
url str - The URL referencing a key encryption key in Key Vault.
- source_
vault SubResource Response - The relative URL of the Key Vault containing the key.
- key
Url String - The URL referencing a key encryption key in Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the key.
KeyVaultSecretReference, KeyVaultSecretReferenceArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret_
url str - The URL referencing a secret in a Key Vault.
- source_
vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret_
url str - The URL referencing a secret in a Key Vault.
- source_
vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
LastPatchInstallationSummaryResponse, LastPatchInstallationSummaryResponseArgs
- Error
Pulumi.
Azure Native. Compute. Inputs. Api Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- Excluded
Patch intCount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- Failed
Patch intCount - The count of patches that failed installation.
- Installation
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- Installed
Patch intCount - The count of patches that successfully installed.
- Last
Modified stringTime - The UTC timestamp when the operation began.
- Maintenance
Window boolExceeded - Describes whether the operation ran out of time before it completed all its intended actions
- Not
Selected intPatch Count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- Pending
Patch intCount - The number of all available patches expected to be installed over the course of the patch installation operation.
- Start
Time string - The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- Error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- Excluded
Patch intCount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- Failed
Patch intCount - The count of patches that failed installation.
- Installation
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- Installed
Patch intCount - The count of patches that successfully installed.
- Last
Modified stringTime - The UTC timestamp when the operation began.
- Maintenance
Window boolExceeded - Describes whether the operation ran out of time before it completed all its intended actions
- Not
Selected intPatch Count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- Pending
Patch intCount - The number of all available patches expected to be installed over the course of the patch installation operation.
- Start
Time string - The UTC timestamp when the operation began.
- Status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- excluded
Patch IntegerCount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failed
Patch IntegerCount - The count of patches that failed installation.
- installation
Activity StringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installed
Patch IntegerCount - The count of patches that successfully installed.
- last
Modified StringTime - The UTC timestamp when the operation began.
- maintenance
Window BooleanExceeded - Describes whether the operation ran out of time before it completed all its intended actions
- not
Selected IntegerPatch Count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pending
Patch IntegerCount - The number of all available patches expected to be installed over the course of the patch installation operation.
- start
Time String - The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- excluded
Patch numberCount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failed
Patch numberCount - The count of patches that failed installation.
- installation
Activity stringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installed
Patch numberCount - The count of patches that successfully installed.
- last
Modified stringTime - The UTC timestamp when the operation began.
- maintenance
Window booleanExceeded - Describes whether the operation ran out of time before it completed all its intended actions
- not
Selected numberPatch Count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pending
Patch numberCount - The number of all available patches expected to be installed over the course of the patch installation operation.
- start
Time string - The UTC timestamp when the operation began.
- status string
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error
Api
Error Response - The errors that were encountered during execution of the operation. The details array contains the list of them.
- excluded_
patch_ intcount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failed_
patch_ intcount - The count of patches that failed installation.
- installation_
activity_ strid - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installed_
patch_ intcount - The count of patches that successfully installed.
- last_
modified_ strtime - The UTC timestamp when the operation began.
- maintenance_
window_ boolexceeded - Describes whether the operation ran out of time before it completed all its intended actions
- not_
selected_ intpatch_ count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pending_
patch_ intcount - The number of all available patches expected to be installed over the course of the patch installation operation.
- start_
time str - The UTC timestamp when the operation began.
- status str
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
- error Property Map
- The errors that were encountered during execution of the operation. The details array contains the list of them.
- excluded
Patch NumberCount - The number of all available patches but excluded explicitly by a customer-specified exclusion list match.
- failed
Patch NumberCount - The count of patches that failed installation.
- installation
Activity StringId - The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.
- installed
Patch NumberCount - The count of patches that successfully installed.
- last
Modified StringTime - The UTC timestamp when the operation began.
- maintenance
Window BooleanExceeded - Describes whether the operation ran out of time before it completed all its intended actions
- not
Selected NumberPatch Count - The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.
- pending
Patch NumberCount - The number of all available patches expected to be installed over the course of the patch installation operation.
- start
Time String - The UTC timestamp when the operation began.
- status String
- The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings."
LinuxConfiguration, LinuxConfigurationArgs
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Patch
Settings Pulumi.Azure Native. Compute. Inputs. Linux Patch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Pulumi.
Azure Native. Compute. Inputs. Ssh Configuration - Specifies the ssh key configuration for a Linux OS.
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable_
password_ boolauthentication - Specifies whether password authentication should be disabled.
- patch_
settings LinuxPatch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
LinuxConfigurationResponse, LinuxConfigurationResponseArgs
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Patch
Settings Pulumi.Azure Native. Compute. Inputs. Linux Patch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Pulumi.
Azure Native. Compute. Inputs. Ssh Configuration Response - Specifies the ssh key configuration for a Linux OS.
- Disable
Password boolAuthentication - Specifies whether password authentication should be disabled.
- Patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password booleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable_
password_ boolauthentication - Specifies whether password authentication should be disabled.
- patch_
settings LinuxPatch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh
Ssh
Configuration Response - Specifies the ssh key configuration for a Linux OS.
- disable
Password BooleanAuthentication - Specifies whether password authentication should be disabled.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Linux.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- ssh Property Map
- Specifies the ssh key configuration for a Linux OS.
LinuxPatchAssessmentMode, LinuxPatchAssessmentModeArgs
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Linux
Patch Assessment Mode Image Default - ImageDefault
- Linux
Patch Assessment Mode Automatic By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "Image
Default" - ImageDefault
- "Automatic
By Platform" - AutomaticByPlatform
LinuxPatchSettings, LinuxPatchSettingsArgs
- Assessment
Mode string | Pulumi.Azure Native. Compute. Linux Patch Assessment Mode - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Patch
Mode string | Pulumi.Azure Native. Compute. Linux VMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- Assessment
Mode string | LinuxPatch Assessment Mode - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Patch
Mode string | LinuxVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode String | LinuxPatch Assessment Mode - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode String | LinuxVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode string | LinuxPatch Assessment Mode - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode string | LinuxVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment_
mode str | LinuxPatch Assessment Mode - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch_
mode str | LinuxVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode String | "ImageDefault" | "Automatic By Platform" - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode String | "ImageDefault" | "Automatic By Platform" - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
LinuxPatchSettingsResponse, LinuxPatchSettingsResponseArgs
- Assessment
Mode string - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- Assessment
Mode string - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode String - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode String - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode string - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment_
mode str - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch_
mode str - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
- assessment
Mode String - Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- patch
Mode String - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: ImageDefault - The virtual machine's default patching configuration is used. AutomaticByPlatform - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true
LinuxVMGuestPatchMode, LinuxVMGuestPatchModeArgs
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Linux
VMGuest Patch Mode Image Default - ImageDefault
- Linux
VMGuest Patch Mode Automatic By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "Image
Default" - ImageDefault
- "Automatic
By Platform" - AutomaticByPlatform
MaintenanceRedeployStatusResponse, MaintenanceRedeployStatusResponseArgs
- Is
Customer boolInitiated Maintenance Allowed - True, if customer is allowed to perform Maintenance.
- Last
Operation stringMessage - Message returned for the last Maintenance Operation.
- Last
Operation stringResult Code - The Last Maintenance Operation Result Code.
- Maintenance
Window stringEnd Time - End Time for the Maintenance Window.
- Maintenance
Window stringStart Time - Start Time for the Maintenance Window.
- Pre
Maintenance stringWindow End Time - End Time for the Pre Maintenance Window.
- Pre
Maintenance stringWindow Start Time - Start Time for the Pre Maintenance Window.
- Is
Customer boolInitiated Maintenance Allowed - True, if customer is allowed to perform Maintenance.
- Last
Operation stringMessage - Message returned for the last Maintenance Operation.
- Last
Operation stringResult Code - The Last Maintenance Operation Result Code.
- Maintenance
Window stringEnd Time - End Time for the Maintenance Window.
- Maintenance
Window stringStart Time - Start Time for the Maintenance Window.
- Pre
Maintenance stringWindow End Time - End Time for the Pre Maintenance Window.
- Pre
Maintenance stringWindow Start Time - Start Time for the Pre Maintenance Window.
- is
Customer BooleanInitiated Maintenance Allowed - True, if customer is allowed to perform Maintenance.
- last
Operation StringMessage - Message returned for the last Maintenance Operation.
- last
Operation StringResult Code - The Last Maintenance Operation Result Code.
- maintenance
Window StringEnd Time - End Time for the Maintenance Window.
- maintenance
Window StringStart Time - Start Time for the Maintenance Window.
- pre
Maintenance StringWindow End Time - End Time for the Pre Maintenance Window.
- pre
Maintenance StringWindow Start Time - Start Time for the Pre Maintenance Window.
- is
Customer booleanInitiated Maintenance Allowed - True, if customer is allowed to perform Maintenance.
- last
Operation stringMessage - Message returned for the last Maintenance Operation.
- last
Operation stringResult Code - The Last Maintenance Operation Result Code.
- maintenance
Window stringEnd Time - End Time for the Maintenance Window.
- maintenance
Window stringStart Time - Start Time for the Maintenance Window.
- pre
Maintenance stringWindow End Time - End Time for the Pre Maintenance Window.
- pre
Maintenance stringWindow Start Time - Start Time for the Pre Maintenance Window.
- is_
customer_ boolinitiated_ maintenance_ allowed - True, if customer is allowed to perform Maintenance.
- last_
operation_ strmessage - Message returned for the last Maintenance Operation.
- last_
operation_ strresult_ code - The Last Maintenance Operation Result Code.
- maintenance_
window_ strend_ time - End Time for the Maintenance Window.
- maintenance_
window_ strstart_ time - Start Time for the Maintenance Window.
- pre_
maintenance_ strwindow_ end_ time - End Time for the Pre Maintenance Window.
- pre_
maintenance_ strwindow_ start_ time - Start Time for the Pre Maintenance Window.
- is
Customer BooleanInitiated Maintenance Allowed - True, if customer is allowed to perform Maintenance.
- last
Operation StringMessage - Message returned for the last Maintenance Operation.
- last
Operation StringResult Code - The Last Maintenance Operation Result Code.
- maintenance
Window StringEnd Time - End Time for the Maintenance Window.
- maintenance
Window StringStart Time - Start Time for the Maintenance Window.
- pre
Maintenance StringWindow End Time - End Time for the Pre Maintenance Window.
- pre
Maintenance StringWindow Start Time - Start Time for the Pre Maintenance Window.
ManagedDiskParameters, ManagedDiskParametersArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Storage
Account string | Pulumi.Type Azure Native. Compute. Storage Account Types - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- Disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Storage
Account string | StorageType Account Types - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- storage
Account String | StorageType Account Types - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- id string
- Resource Id
- storage
Account string | StorageType Account Types - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_
encryption_ Diskset Encryption Set Parameters - Specifies the customer managed disk encryption set resource id for the managed disk.
- id str
- Resource Id
- storage_
account_ str | Storagetype Account Types - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- storage
Account String | "Standard_LRS" | "Premium_LRS" | "StandardType SSD_LRS" | "Ultra SSD_LRS" | "Premium_ZRS" | "Standard SSD_ZRS" - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
ManagedDiskParametersResponse, ManagedDiskParametersResponseArgs
- Disk
Encryption Pulumi.Set Azure Native. Compute. Inputs. Disk Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Storage
Account stringType - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- Disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- Id string
- Resource Id
- Storage
Account stringType - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- storage
Account StringType - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption DiskSet Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- id string
- Resource Id
- storage
Account stringType - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk_
encryption_ Diskset Encryption Set Parameters Response - Specifies the customer managed disk encryption set resource id for the managed disk.
- id str
- Resource Id
- storage_
account_ strtype - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
- disk
Encryption Property MapSet - Specifies the customer managed disk encryption set resource id for the managed disk.
- id String
- Resource Id
- storage
Account StringType - Specifies the storage account type for the managed disk. Managed OS disk storage account type can only be set when you create the scale set. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.
NetworkApiVersion, NetworkApiVersionArgs
- Network
Api Version_2020_11_01 - 2020-11-01
- Network
Api Version_2020_11_01 - 2020-11-01
- _20201101
- 2020-11-01
- Network
Api Version_2020_11_01 - 2020-11-01
- NETWORK_API_VERSION_2020_11_01
- 2020-11-01
- "2020-11-01"
- 2020-11-01
NetworkInterfaceReference, NetworkInterfaceReferenceArgs
- Delete
Option string | Pulumi.Azure Native. Compute. Delete Options - Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option String | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- id string
- Resource Id
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete_
option str | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- id str
- Resource Id
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option String | "Delete" | "Detach" - Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
NetworkInterfaceReferenceResponse, NetworkInterfaceReferenceResponseArgs
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Id string
- Resource Id
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option string - Specify what happens to the network interface when the VM is deleted
- id string
- Resource Id
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete_
option str - Specify what happens to the network interface when the VM is deleted
- id str
- Resource Id
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- id String
- Resource Id
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
NetworkProfile, NetworkProfileArgs
- Network
Api string | Pulumi.Version Azure Native. Compute. Network Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- Network
Interface List<Pulumi.Configurations Azure Native. Compute. Inputs. Virtual Machine Network Interface Configuration> - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- Network
Interfaces List<Pulumi.Azure Native. Compute. Inputs. Network Interface Reference> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- Network
Api string | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- Network
Interface []VirtualConfigurations Machine Network Interface Configuration - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- Network
Interfaces []NetworkInterface Reference - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api String | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface List<VirtualConfigurations Machine Network Interface Configuration> - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces List<NetworkInterface Reference> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api string | NetworkVersion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface VirtualConfigurations Machine Network Interface Configuration[] - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces NetworkInterface Reference[] - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network_
api_ str | Networkversion Api Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network_
interface_ Sequence[Virtualconfigurations Machine Network Interface Configuration] - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network_
interfaces Sequence[NetworkInterface Reference] - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api String | "2020-11-01"Version - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface List<Property Map>Configurations - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces List<Property Map> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
NetworkProfileResponse, NetworkProfileResponseArgs
- Network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- Network
Interface List<Pulumi.Configurations Azure Native. Compute. Inputs. Virtual Machine Network Interface Configuration Response> - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- Network
Interfaces List<Pulumi.Azure Native. Compute. Inputs. Network Interface Reference Response> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- Network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- Network
Interface []VirtualConfigurations Machine Network Interface Configuration Response - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- Network
Interfaces []NetworkInterface Reference Response - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api StringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface List<VirtualConfigurations Machine Network Interface Configuration Response> - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces List<NetworkInterface Reference Response> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api stringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface VirtualConfigurations Machine Network Interface Configuration Response[] - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces NetworkInterface Reference Response[] - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network_
api_ strversion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network_
interface_ Sequence[Virtualconfigurations Machine Network Interface Configuration Response] - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network_
interfaces Sequence[NetworkInterface Reference Response] - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
- network
Api StringVersion - specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations
- network
Interface List<Property Map>Configurations - Specifies the networking configurations that will be used to create the virtual machine networking resources.
- network
Interfaces List<Property Map> - Specifies the list of resource Ids for the network interfaces associated with the virtual machine.
OSDisk, OSDiskArgs
- Create
Option string | Pulumi.Azure Native. Compute. Disk Create Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Caching
Pulumi.
Azure Native. Compute. Caching Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | Pulumi.Azure Native. Compute. Disk Delete Option Types - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- Diff
Disk Pulumi.Settings Azure Native. Compute. Inputs. Diff Disk Settings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Encryption
Settings Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Image
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Os
Type Pulumi.Azure Native. Compute. Operating System Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- Vhd
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- Diff
Disk DiffSettings Disk Settings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Encryption
Settings DiskEncryption Settings - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk ManagedDisk Parameters - The managed disk parameters.
- Name string
- The disk name.
- Os
Type OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- Vhd
Virtual
Hard Disk - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings DiskEncryption Settings - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters - The managed disk parameters.
- name String
- The disk name.
- os
Type OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings DiskEncryption Settings - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters - The managed disk parameters.
- name string
- The disk name.
- os
Type OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str | DiskCreate Option Types - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching
Caching
Types - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str | DiskDelete Option Types - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff_
disk_ Diffsettings Disk Settings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption_
settings DiskEncryption Settings - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_
disk ManagedDisk Parameters - The managed disk parameters.
- name str
- The disk name.
- os_
type OperatingSystem Types - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk - The virtual hard disk.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String | "FromImage" | "Empty" | "Attach" - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching
"None" | "Read
Only" | "Read Write" - Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String | "Delete" | "Detach" - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk Property MapSettings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings Property Map - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- os
Type "Windows" | "Linux" - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd Property Map
- The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
OSDiskResponse, OSDiskResponseArgs
- Create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- Diff
Disk Pulumi.Settings Azure Native. Compute. Inputs. Diff Disk Settings Response - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Encryption
Settings Pulumi.Azure Native. Compute. Inputs. Disk Encryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Image
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk Pulumi.Azure Native. Compute. Inputs. Managed Disk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- Vhd
Pulumi.
Azure Native. Compute. Inputs. Virtual Hard Disk Response - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- Create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- Caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- Delete
Option string - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- Diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- Disk
Size intGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- Encryption
Settings DiskEncryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- Image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- Managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- Name string
- The disk name.
- Os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- Vhd
Virtual
Hard Disk Response - The virtual hard disk.
- Write
Accelerator boolEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching String
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size IntegerGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings DiskEncryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- name String
- The disk name.
- os
Type String - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option string - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching string
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option string - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk DiffSettings Disk Settings Response - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size numberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings DiskEncryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk ManagedDisk Parameters Response - The managed disk parameters.
- name string
- The disk name.
- os
Type string - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write
Accelerator booleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create_
option str - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching str
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete_
option str - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff_
disk_ Diffsettings Disk Settings Response - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk_
size_ intgb - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption_
settings DiskEncryption Settings Response - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image
Virtual
Hard Disk Response - The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed_
disk ManagedDisk Parameters Response - The managed disk parameters.
- name str
- The disk name.
- os_
type str - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd
Virtual
Hard Disk Response - The virtual hard disk.
- write_
accelerator_ boolenabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
- create
Option String - Specifies how the virtual machine should be created. Possible values are: Attach \u2013 This value is used when you are using a specialized disk to create the virtual machine. FromImage \u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described.
- caching String
- Specifies the caching requirements. Possible values are: None ReadOnly ReadWrite Default: None for Standard storage. ReadOnly for Premium storage.
- delete
Option String - Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values: Delete If this value is used, the OS disk is deleted when VM is deleted. Detach If this value is used, the os disk is retained after VM is deleted. The default value is set to detach. For an ephemeral OS Disk, the default value is set to Delete. User cannot change the delete option for ephemeral OS Disk.
- diff
Disk Property MapSettings - Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.
- disk
Size NumberGB - Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. This value cannot be larger than 1023 GB
- encryption
Settings Property Map - Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15
- image Property Map
- The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
- managed
Disk Property Map - The managed disk parameters.
- name String
- The disk name.
- os
Type String - This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: Windows Linux
- vhd Property Map
- The virtual hard disk.
- write
Accelerator BooleanEnabled - Specifies whether writeAccelerator should be enabled or disabled on the disk.
OSProfile, OSProfileArgs
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration Pulumi.Azure Native. Compute. Inputs. Linux Configuration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- Secrets
List<Pulumi.
Azure Native. Compute. Inputs. Vault Secret Group> - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration Pulumi.Azure Native. Compute. Inputs. Windows Configuration - Specifies Windows operating system settings on the virtual machine.
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- Secrets
[]Vault
Secret Group - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
List<Vault
Secret Group> - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension booleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest booleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
Vault
Secret Group[] - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin_
password str - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin_
username str - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow_
extension_ booloperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer_
name str - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom_
data str - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux_
configuration LinuxConfiguration - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_
guest_ boolprovision_ signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
Sequence[Vault
Secret Group] - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_
configuration WindowsConfiguration - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration Property Map - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration Property Map - Specifies Windows operating system settings on the virtual machine.
OSProfileResponse, OSProfileResponseArgs
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration Pulumi.Azure Native. Compute. Inputs. Linux Configuration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- Secrets
List<Pulumi.
Azure Native. Compute. Inputs. Vault Secret Group Response> - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration Pulumi.Azure Native. Compute. Inputs. Windows Configuration Response - Specifies Windows operating system settings on the virtual machine.
- Admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- Admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- Allow
Extension boolOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- Computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- Custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- Linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- Require
Guest boolProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- Secrets
[]Vault
Secret Group Response - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
List<Vault
Secret Group Response> - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Password string - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username string - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension booleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name string - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data string - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest booleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
Vault
Secret Group Response[] - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin_
password str - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin_
username str - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow_
extension_ booloperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer_
name str - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom_
data str - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux_
configuration LinuxConfiguration Response - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require_
guest_ boolprovision_ signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets
Sequence[Vault
Secret Group Response] - Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows_
configuration WindowsConfiguration Response - Specifies Windows operating system settings on the virtual machine.
- admin
Password String - Specifies the password of the administrator account. Minimum-length (Windows): 8 characters Minimum-length (Linux): 6 characters Max-length (Windows): 123 characters Max-length (Linux): 72 characters Complexity requirements: 3 out of 4 conditions below need to be fulfilled Has lower characters Has upper characters Has a digit Has a special character (Regex match [\W_]) **Disallowed values:** "abc@123", "P@$$w0rd", "P@ssw0rd", "P@ssword123", "Pa$$word", "pass@word1", "Password!", "Password1", "Password22", "iloveyou!" For resetting the password, see How to reset the Remote Desktop service or its login password in a Windows VM For resetting root password, see Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension
- admin
Username String - Specifies the name of the administrator account. This property cannot be updated after the VM is created. Windows-only restriction: Cannot end in "." Disallowed values: "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5". Minimum-length (Linux): 1 character Max-length (Linux): 64 characters Max-length (Windows): 20 characters.
- allow
Extension BooleanOperations - Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.
- computer
Name String - Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. Max-length (Windows): 15 characters Max-length (Linux): 64 characters. For naming conventions and restrictions see Azure infrastructure services implementation guidelines.
- custom
Data String - Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. Note: Do not pass any secrets or passwords in customData property This property cannot be updated after the VM is created. customData is passed to the VM to be saved as a file, for more information see Custom Data on Azure VMs For using cloud-init for your Linux VM, see Using cloud-init to customize a Linux VM during creation
- linux
Configuration Property Map - Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see Linux on Azure-Endorsed Distributions.
- require
Guest BooleanProvision Signal - Specifies whether the guest provision signal is required to infer provision success of the virtual machine. Note: This property is for private testing only, and all customers must not set the property to false.
- secrets List<Property Map>
- Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- windows
Configuration Property Map - Specifies Windows operating system settings on the virtual machine.
OperatingSystemTypes, OperatingSystemTypesArgs
- Windows
- Windows
- Linux
- Linux
- Operating
System Types Windows - Windows
- Operating
System Types Linux - Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- WINDOWS
- Windows
- LINUX
- Linux
- "Windows"
- Windows
- "Linux"
- Linux
PassNames, PassNamesArgs
- Oobe
System - OobeSystem
- Pass
Names Oobe System - OobeSystem
- Oobe
System - OobeSystem
- Oobe
System - OobeSystem
- OOBE_SYSTEM
- OobeSystem
- "Oobe
System" - OobeSystem
PatchSettings, PatchSettingsArgs
- Assessment
Mode string | Pulumi.Azure Native. Compute. Windows Patch Assessment Mode - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Enable
Hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- Patch
Mode string | Pulumi.Azure Native. Compute. Windows VMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- Assessment
Mode string | WindowsPatch Assessment Mode - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Enable
Hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- Patch
Mode string | WindowsVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode String | WindowsPatch Assessment Mode - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching Boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode String | WindowsVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode string | WindowsPatch Assessment Mode - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode string | WindowsVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment_
mode str | WindowsPatch Assessment Mode - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable_
hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch_
mode str | WindowsVMGuest Patch Mode - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode String | "ImageDefault" | "Automatic By Platform" - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching Boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode String | "Manual" | "AutomaticBy OS" | "Automatic By Platform" - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
PatchSettingsResponse, PatchSettingsResponseArgs
- Assessment
Mode string - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Enable
Hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- Patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- Assessment
Mode string - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- Enable
Hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- Patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode String - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching Boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode String - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode string - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode string - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment_
mode str - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable_
hotpatching bool - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch_
mode str - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
- assessment
Mode String - Specifies the mode of VM Guest patch assessment for the IaaS virtual machine. Possible values are: ImageDefault - You control the timing of patch assessments on a virtual machine. AutomaticByPlatform - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.
- enable
Hotpatching Boolean - Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.
- patch
Mode String - Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible. Possible values are: Manual - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false AutomaticByOS - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true. AutomaticByPlatform - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true
Plan, PlanArgs
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The publisher ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The publisher ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code string - The promotion code.
- publisher string
- The publisher ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_
code str - The promotion code.
- publisher str
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The publisher ID.
PlanResponse, PlanResponseArgs
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The publisher ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The publisher ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code string - The promotion code.
- publisher string
- The publisher ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_
code str - The promotion code.
- publisher str
- The publisher ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The publisher ID.
ProtocolTypes, ProtocolTypesArgs
- Http
- Http
- Https
- Https
- Protocol
Types Http - Http
- Protocol
Types Https - Https
- Http
- Http
- Https
- Https
- Http
- Http
- Https
- Https
- HTTP
- Http
- HTTPS
- Https
- "Http"
- Http
- "Https"
- Https
PublicIPAddressSku, PublicIPAddressSkuArgs
- Name
string | Pulumi.
Azure Native. Compute. Public IPAddress Sku Name - Specify public IP sku name
- Tier
string | Pulumi.
Azure Native. Compute. Public IPAddress Sku Tier - Specify public IP sku tier
- Name
string | Public
IPAddress Sku Name - Specify public IP sku name
- Tier
string | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
String | Public
IPAddress Sku Name - Specify public IP sku name
- tier
String | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
string | Public
IPAddress Sku Name - Specify public IP sku name
- tier
string | Public
IPAddress Sku Tier - Specify public IP sku tier
- name
str | Public
IPAddress Sku Name - Specify public IP sku name
- tier
str | Public
IPAddress Sku Tier - Specify public IP sku tier
- name String | "Basic" | "Standard"
- Specify public IP sku name
- tier String | "Regional" | "Global"
- Specify public IP sku tier
PublicIPAddressSkuName, PublicIPAddressSkuNameArgs
- Basic
- Basic
- Standard
- Standard
- Public
IPAddress Sku Name Basic - Basic
- Public
IPAddress Sku Name Standard - Standard
- Basic
- Basic
- Standard
- Standard
- Basic
- Basic
- Standard
- Standard
- BASIC
- Basic
- STANDARD
- Standard
- "Basic"
- Basic
- "Standard"
- Standard
PublicIPAddressSkuResponse, PublicIPAddressSkuResponseArgs
PublicIPAddressSkuTier, PublicIPAddressSkuTierArgs
- Regional
- Regional
- Global
- Global
- Public
IPAddress Sku Tier Regional - Regional
- Public
IPAddress Sku Tier Global - Global
- Regional
- Regional
- Global
- Global
- Regional
- Regional
- Global
- Global
- REGIONAL
- Regional
- GLOBAL_
- Global
- "Regional"
- Regional
- "Global"
- Global
PublicIPAllocationMethod, PublicIPAllocationMethodArgs
- Dynamic
- Dynamic
- Static
- Static
- Public
IPAllocation Method Dynamic - Dynamic
- Public
IPAllocation Method Static - Static
- Dynamic
- Dynamic
- Static
- Static
- Dynamic
- Dynamic
- Static
- Static
- DYNAMIC
- Dynamic
- STATIC
- Static
- "Dynamic"
- Dynamic
- "Static"
- Static
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
- "None"
- None
ScheduledEventsProfile, ScheduledEventsProfileArgs
- Terminate
Notification Pulumi.Profile Azure Native. Compute. Inputs. Terminate Notification Profile - Specifies Terminate Scheduled Event related configurations.
- Terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- terminate_
notification_ Terminateprofile Notification Profile - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification Property MapProfile - Specifies Terminate Scheduled Event related configurations.
ScheduledEventsProfileResponse, ScheduledEventsProfileResponseArgs
- Terminate
Notification Pulumi.Profile Azure Native. Compute. Inputs. Terminate Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- Terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification TerminateProfile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- terminate_
notification_ Terminateprofile Notification Profile Response - Specifies Terminate Scheduled Event related configurations.
- terminate
Notification Property MapProfile - Specifies Terminate Scheduled Event related configurations.
SecurityProfile, SecurityProfileArgs
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- Security
Type string | Pulumi.Azure Native. Compute. Security Types - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- Uefi
Settings Pulumi.Azure Native. Compute. Inputs. Uefi Settings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- Security
Type string | SecurityTypes - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- Uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type String | SecurityTypes - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At booleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type string | SecurityTypes - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption_
at_ boolhost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security_
type str | SecurityTypes - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi_
settings UefiSettings - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type String | "TrustedLaunch" - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings Property Map - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
SecurityProfileResponse, SecurityProfileResponseArgs
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- Security
Type string - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- Uefi
Settings Pulumi.Azure Native. Compute. Inputs. Uefi Settings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- Encryption
At boolHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- Security
Type string - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- Uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type String - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At booleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type string - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption_
at_ boolhost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security_
type str - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi_
settings UefiSettings Response - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
- encryption
At BooleanHost - This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. Default: The Encryption at host will be disabled unless this property is set to true for the resource.
- security
Type String - Specifies the SecurityType of the virtual machine. It is set as TrustedLaunch to enable UefiSettings. Default: UefiSettings will not be enabled unless this property is set as TrustedLaunch.
- uefi
Settings Property Map - Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01
SecurityTypes, SecurityTypesArgs
- Trusted
Launch - TrustedLaunch
- Security
Types Trusted Launch - TrustedLaunch
- Trusted
Launch - TrustedLaunch
- Trusted
Launch - TrustedLaunch
- TRUSTED_LAUNCH
- TrustedLaunch
- "Trusted
Launch" - TrustedLaunch
SettingNames, SettingNamesArgs
- Auto
Logon - AutoLogon
- First
Logon Commands - FirstLogonCommands
- Setting
Names Auto Logon - AutoLogon
- Setting
Names First Logon Commands - FirstLogonCommands
- Auto
Logon - AutoLogon
- First
Logon Commands - FirstLogonCommands
- Auto
Logon - AutoLogon
- First
Logon Commands - FirstLogonCommands
- AUTO_LOGON
- AutoLogon
- FIRST_LOGON_COMMANDS
- FirstLogonCommands
- "Auto
Logon" - AutoLogon
- "First
Logon Commands" - FirstLogonCommands
SshConfiguration, SshConfigurationArgs
- Public
Keys List<Pulumi.Azure Native. Compute. Inputs. Ssh Public Key> - The list of SSH public keys used to authenticate with linux based VMs.
- Public
Keys []SshPublic Key Type - 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. Compute. 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
StorageAccountTypes, StorageAccountTypesArgs
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Storage
Account Types_Standard_LRS - Standard_LRS
- Storage
Account Types_Premium_LRS - Premium_LRS
- Storage
Account Types_Standard SSD_LRS - StandardSSD_LRS
- Storage
Account Types_Ultra SSD_LRS - UltraSSD_LRS
- Storage
Account Types_Premium_ZRS - Premium_ZRS
- Storage
Account Types_Standard SSD_ZRS - StandardSSD_ZRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- Standard_LRS
- Standard_LRS
- Premium_LRS
- Premium_LRS
- Standard
SSD_LRS - StandardSSD_LRS
- Ultra
SSD_LRS - UltraSSD_LRS
- Premium_ZRS
- Premium_ZRS
- Standard
SSD_ZRS - StandardSSD_ZRS
- STANDARD_LRS
- Standard_LRS
- PREMIUM_LRS
- Premium_LRS
- STANDARD_SS_D_LRS
- StandardSSD_LRS
- ULTRA_SS_D_LRS
- UltraSSD_LRS
- PREMIUM_ZRS
- Premium_ZRS
- STANDARD_SS_D_ZRS
- StandardSSD_ZRS
- "Standard_LRS"
- Standard_LRS
- "Premium_LRS"
- Premium_LRS
- "Standard
SSD_LRS" - StandardSSD_LRS
- "Ultra
SSD_LRS" - UltraSSD_LRS
- "Premium_ZRS"
- Premium_ZRS
- "Standard
SSD_ZRS" - StandardSSD_ZRS
StorageProfile, StorageProfileArgs
- Data
Disks List<Pulumi.Azure Native. Compute. Inputs. Data Disk> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Image
Reference Pulumi.Azure Native. Compute. Inputs. Image Reference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk Pulumi.Azure Native. Compute. Inputs. OSDisk - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Data
Disks []DataDisk - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk OSDisk - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<DataDisk> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk OSDisk - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks DataDisk[] - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk OSDisk - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_
disks Sequence[DataDisk] - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image_
reference ImageReference - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_
disk OSDisk - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<Property Map> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference Property Map - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk Property Map - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
StorageProfileResponse, StorageProfileResponseArgs
- Data
Disks List<Pulumi.Azure Native. Compute. Inputs. Data Disk Response> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Image
Reference Pulumi.Azure Native. Compute. Inputs. Image Reference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk Pulumi.Azure Native. Compute. Inputs. OSDisk Response - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Data
Disks []DataDisk Response - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- Image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- Os
Disk OSDiskResponse - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<DataDisk Response> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk OSDiskResponse - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks DataDisk Response[] - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk OSDiskResponse - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data_
disks Sequence[DataDisk Response] - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image_
reference ImageReference Response - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os_
disk OSDiskResponse - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- data
Disks List<Property Map> - Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
- image
Reference Property Map - Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.
- os
Disk Property Map - Specifies information about the operating system disk used by the virtual machine. For more information about disks, see About disks and VHDs for Azure virtual machines.
SubResource, SubResourceArgs
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
TerminateNotificationProfile, TerminateNotificationProfileArgs
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_
before_ strtimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
TerminateNotificationProfileResponse, TerminateNotificationProfileResponseArgs
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- Enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- Not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before stringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable bool
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not_
before_ strtimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
- enable Boolean
- Specifies whether the Terminate Scheduled event is enabled or disabled.
- not
Before StringTimeout - Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)
UefiSettings, UefiSettingsArgs
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot booleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm booleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure_
boot_ boolenabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v_
tpm_ boolenabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
UefiSettingsResponse, UefiSettingsResponseArgs
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- Secure
Boot boolEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- VTpm
Enabled bool - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot booleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm booleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure_
boot_ boolenabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v_
tpm_ boolenabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- secure
Boot BooleanEnabled - Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01
- v
Tpm BooleanEnabled - Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01
VaultCertificate, VaultCertificateArgs
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_
store str - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultCertificateResponse, VaultCertificateResponseArgs
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store string - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate_
store str - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- certificate
Store String - For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
VaultSecretGroup, VaultSecretGroupArgs
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Compute. Inputs. Vault Certificate> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []VaultCertificate - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<VaultCertificate> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates VaultCertificate[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[VaultCertificate] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
VaultSecretGroupResponse, VaultSecretGroupResponseArgs
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates List<Pulumi.Azure Native. Compute. Inputs. Vault Certificate Response> - The list of key vault references in SourceVault which contain certificates.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- Vault
Certificates []VaultCertificate Response - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<VaultCertificate Response> - The list of key vault references in SourceVault which contain certificates.
- source
Vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates VaultCertificate Response[] - The list of key vault references in SourceVault which contain certificates.
- source_
vault SubResource Response - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault_
certificates Sequence[VaultCertificate Response] - The list of key vault references in SourceVault which contain certificates.
- source
Vault Property Map - The relative URL of the Key Vault containing all of the certificates in VaultCertificates.
- vault
Certificates List<Property Map> - The list of key vault references in SourceVault which contain certificates.
VirtualHardDisk, VirtualHardDiskArgs
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualHardDiskResponse, VirtualHardDiskResponseArgs
- Uri string
- Specifies the virtual hard disk's uri.
- Uri string
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
- uri string
- Specifies the virtual hard disk's uri.
- uri str
- Specifies the virtual hard disk's uri.
- uri String
- Specifies the virtual hard disk's uri.
VirtualMachineAgentInstanceViewResponse, VirtualMachineAgentInstanceViewResponseArgs
- Extension
Handlers List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Handler Instance View Response> - The virtual machine extension handler instance view.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Vm
Agent stringVersion - The VM Agent full version.
- Extension
Handlers []VirtualMachine Extension Handler Instance View Response - The virtual machine extension handler instance view.
- Statuses
[]Instance
View Status Response - The resource status information.
- Vm
Agent stringVersion - The VM Agent full version.
- extension
Handlers List<VirtualMachine Extension Handler Instance View Response> - The virtual machine extension handler instance view.
- statuses
List<Instance
View Status Response> - The resource status information.
- vm
Agent StringVersion - The VM Agent full version.
- extension
Handlers VirtualMachine Extension Handler Instance View Response[] - The virtual machine extension handler instance view.
- statuses
Instance
View Status Response[] - The resource status information.
- vm
Agent stringVersion - The VM Agent full version.
- extension_
handlers Sequence[VirtualMachine Extension Handler Instance View Response] - The virtual machine extension handler instance view.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- vm_
agent_ strversion - The VM Agent full version.
- extension
Handlers List<Property Map> - The virtual machine extension handler instance view.
- statuses List<Property Map>
- The resource status information.
- vm
Agent StringVersion - The VM Agent full version.
VirtualMachineEvictionPolicyTypes, VirtualMachineEvictionPolicyTypesArgs
- Deallocate
- Deallocate
- Delete
- Delete
- Virtual
Machine Eviction Policy Types Deallocate - Deallocate
- Virtual
Machine Eviction Policy Types Delete - Delete
- Deallocate
- Deallocate
- Delete
- Delete
- Deallocate
- Deallocate
- Delete
- Delete
- DEALLOCATE
- Deallocate
- DELETE
- Delete
- "Deallocate"
- Deallocate
- "Delete"
- Delete
VirtualMachineExtensionHandlerInstanceViewResponse, VirtualMachineExtensionHandlerInstanceViewResponseArgs
- Status
Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response - The extension handler status.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Status
Instance
View Status Response - The extension handler status.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- status
Instance
View Status Response - The extension handler status.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- status
Instance
View Status Response - The extension handler status.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- status
Instance
View Status Response - The extension handler status.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- status Property Map
- The extension handler status.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineExtensionInstanceViewResponse, VirtualMachineExtensionInstanceViewResponseArgs
- Name string
- The virtual machine extension name.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Substatuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Name string
- The virtual machine extension name.
- Statuses
[]Instance
View Status Response - The resource status information.
- Substatuses
[]Instance
View Status Response - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses
List<Instance
View Status Response> - The resource status information.
- substatuses
List<Instance
View Status Response> - The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- name string
- The virtual machine extension name.
- statuses
Instance
View Status Response[] - The resource status information.
- substatuses
Instance
View Status Response[] - The resource status information.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- name str
- The virtual machine extension name.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- substatuses
Sequence[Instance
View Status Response] - The resource status information.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses List<Property Map>
- The resource status information.
- substatuses List<Property Map>
- The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineExtensionResponse, VirtualMachineExtensionResponseArgs
- Id string
- Resource Id
- Location string
- Resource location
- Name string
- Resource name
- Provisioning
State string - The provisioning state, which only appears in the response.
- Type string
- Resource type
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- Instance
View Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Instance View Response - The virtual machine extension instance view.
- Protected
Settings object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Publisher string
- The name of the extension handler publisher.
- Settings object
- Json formatted public settings for the extension.
- Dictionary<string, string>
- Resource tags
- Type
Handler stringVersion - Specifies the version of the script handler.
- Id string
- Resource Id
- Location string
- Resource location
- Name string
- Resource name
- Provisioning
State string - The provisioning state, which only appears in the response.
- Type string
- Resource type
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- Instance
View VirtualMachine Extension Instance View Response - The virtual machine extension instance view.
- Protected
Settings interface{} - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Publisher string
- The name of the extension handler publisher.
- Settings interface{}
- Json formatted public settings for the extension.
- map[string]string
- Resource tags
- Type
Handler stringVersion - Specifies the version of the script handler.
- id String
- Resource Id
- location String
- Resource location
- name String
- Resource name
- provisioning
State String - The provisioning state, which only appears in the response.
- type String
- Resource type
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View VirtualMachine Extension Instance View Response - The virtual machine extension instance view.
- protected
Settings Object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- publisher String
- The name of the extension handler publisher.
- settings Object
- Json formatted public settings for the extension.
- Map<String,String>
- Resource tags
- type
Handler StringVersion - Specifies the version of the script handler.
- id string
- Resource Id
- location string
- Resource location
- name string
- Resource name
- provisioning
State string - The provisioning state, which only appears in the response.
- type string
- Resource type
- auto
Upgrade booleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic booleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View VirtualMachine Extension Instance View Response - The virtual machine extension instance view.
- protected
Settings any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- publisher string
- The name of the extension handler publisher.
- settings any
- Json formatted public settings for the extension.
- {[key: string]: string}
- Resource tags
- type
Handler stringVersion - Specifies the version of the script handler.
- id str
- Resource Id
- location str
- Resource location
- name str
- Resource name
- provisioning_
state str - The provisioning state, which only appears in the response.
- type str
- Resource type
- auto_
upgrade_ boolminor_ version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable_
automatic_ boolupgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force_
update_ strtag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance_
view VirtualMachine Extension Instance View Response - The virtual machine extension instance view.
- protected_
settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- publisher str
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- Mapping[str, str]
- Resource tags
- type_
handler_ strversion - Specifies the version of the script handler.
- id String
- Resource Id
- location String
- Resource location
- name String
- Resource name
- provisioning
State String - The provisioning state, which only appears in the response.
- type String
- Resource type
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View Property Map - The virtual machine extension instance view.
- protected
Settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- publisher String
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- Map<String>
- Resource tags
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineHealthStatusResponse, VirtualMachineHealthStatusResponseArgs
- Status
Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response - The health status information for the VM.
- Status
Instance
View Status Response - The health status information for the VM.
- status
Instance
View Status Response - The health status information for the VM.
- status
Instance
View Status Response - The health status information for the VM.
- status
Instance
View Status Response - The health status information for the VM.
- status Property Map
- The health status information for the VM.
VirtualMachineIdentity, VirtualMachineIdentityArgs
- Type
Pulumi.
Azure Native. Compute. Resource Identity Type - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- User
Assigned Dictionary<string, object>Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
Resource
Identity Type - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- User
Assigned map[string]interface{}Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned Map<String,Object>Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned {[key: string]: any}Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
Resource
Identity Type - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user_
assigned_ Mapping[str, Any]identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "None" - The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned Map<Any>Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
VirtualMachineIdentityResponse, VirtualMachineIdentityResponseArgs
- Principal
Id string - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Compute. Inputs. Virtual Machine Identity Response User Assigned Identities> - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Principal
Id string - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- Type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- User
Assigned map[string]VirtualIdentities Machine Identity Response User Assigned Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned Map<String,VirtualIdentities Machine Identity Response User Assigned Identities> - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id string - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type string
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned {[key: string]: VirtualIdentities Machine Identity Response User Assigned Identities} - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_
id str - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type str
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user_
assigned_ Mapping[str, Virtualidentities Machine Identity Response User Assigned Identities] - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal
Id String - The principal id of virtual machine identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant id associated with the virtual machine. This property will only be provided for a system assigned identity.
- type String
- The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the Virtual Machine. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
VirtualMachineIdentityResponseUserAssignedIdentities, VirtualMachineIdentityResponseUserAssignedIdentitiesArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
VirtualMachineInstanceViewResponse, VirtualMachineInstanceViewResponseArgs
- Assigned
Host string - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- Vm
Health Pulumi.Azure Native. Compute. Inputs. Virtual Machine Health Status Response - The health status for the VM.
- Boot
Diagnostics Pulumi.Azure Native. Compute. Inputs. Boot Diagnostics Instance View Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- Computer
Name string - The computer name assigned to the virtual machine.
- Disks
List<Pulumi.
Azure Native. Compute. Inputs. Disk Instance View Response> - The virtual machine disk information.
- Extensions
List<Pulumi.
Azure Native. Compute. Inputs. Virtual Machine Extension Instance View Response> - The extensions information.
- Hyper
VGeneration string - Specifies the HyperVGeneration Type associated with a resource
- Maintenance
Redeploy Pulumi.Status Azure Native. Compute. Inputs. Maintenance Redeploy Status Response - The Maintenance Operation status on the virtual machine.
- Os
Name string - The Operating System running on the virtual machine.
- Os
Version string - The version of Operating System running on the virtual machine.
- Patch
Status Pulumi.Azure Native. Compute. Inputs. Virtual Machine Patch Status Response - [Preview Feature] The status of virtual machine patch operations.
- Platform
Fault intDomain - Specifies the fault domain of the virtual machine.
- Platform
Update intDomain - Specifies the update domain of the virtual machine.
- Rdp
Thumb stringPrint - The Remote desktop certificate thumbprint.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Vm
Agent Pulumi.Azure Native. Compute. Inputs. Virtual Machine Agent Instance View Response - The VM Agent running on the virtual machine.
- Assigned
Host string - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- Vm
Health VirtualMachine Health Status Response - The health status for the VM.
- Boot
Diagnostics BootDiagnostics Instance View Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- Computer
Name string - The computer name assigned to the virtual machine.
- Disks
[]Disk
Instance View Response - The virtual machine disk information.
- Extensions
[]Virtual
Machine Extension Instance View Response - The extensions information.
- Hyper
VGeneration string - Specifies the HyperVGeneration Type associated with a resource
- Maintenance
Redeploy MaintenanceStatus Redeploy Status Response - The Maintenance Operation status on the virtual machine.
- Os
Name string - The Operating System running on the virtual machine.
- Os
Version string - The version of Operating System running on the virtual machine.
- Patch
Status VirtualMachine Patch Status Response - [Preview Feature] The status of virtual machine patch operations.
- Platform
Fault intDomain - Specifies the fault domain of the virtual machine.
- Platform
Update intDomain - Specifies the update domain of the virtual machine.
- Rdp
Thumb stringPrint - The Remote desktop certificate thumbprint.
- Statuses
[]Instance
View Status Response - The resource status information.
- Vm
Agent VirtualMachine Agent Instance View Response - The VM Agent running on the virtual machine.
- assigned
Host String - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vm
Health VirtualMachine Health Status Response - The health status for the VM.
- boot
Diagnostics BootDiagnostics Instance View Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computer
Name String - The computer name assigned to the virtual machine.
- disks
List<Disk
Instance View Response> - The virtual machine disk information.
- extensions
List<Virtual
Machine Extension Instance View Response> - The extensions information.
- hyper
VGeneration String - Specifies the HyperVGeneration Type associated with a resource
- maintenance
Redeploy MaintenanceStatus Redeploy Status Response - The Maintenance Operation status on the virtual machine.
- os
Name String - The Operating System running on the virtual machine.
- os
Version String - The version of Operating System running on the virtual machine.
- patch
Status VirtualMachine Patch Status Response - [Preview Feature] The status of virtual machine patch operations.
- platform
Fault IntegerDomain - Specifies the fault domain of the virtual machine.
- platform
Update IntegerDomain - Specifies the update domain of the virtual machine.
- rdp
Thumb StringPrint - The Remote desktop certificate thumbprint.
- statuses
List<Instance
View Status Response> - The resource status information.
- vm
Agent VirtualMachine Agent Instance View Response - The VM Agent running on the virtual machine.
- assigned
Host string - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vm
Health VirtualMachine Health Status Response - The health status for the VM.
- boot
Diagnostics BootDiagnostics Instance View Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computer
Name string - The computer name assigned to the virtual machine.
- disks
Disk
Instance View Response[] - The virtual machine disk information.
- extensions
Virtual
Machine Extension Instance View Response[] - The extensions information.
- hyper
VGeneration string - Specifies the HyperVGeneration Type associated with a resource
- maintenance
Redeploy MaintenanceStatus Redeploy Status Response - The Maintenance Operation status on the virtual machine.
- os
Name string - The Operating System running on the virtual machine.
- os
Version string - The version of Operating System running on the virtual machine.
- patch
Status VirtualMachine Patch Status Response - [Preview Feature] The status of virtual machine patch operations.
- platform
Fault numberDomain - Specifies the fault domain of the virtual machine.
- platform
Update numberDomain - Specifies the update domain of the virtual machine.
- rdp
Thumb stringPrint - The Remote desktop certificate thumbprint.
- statuses
Instance
View Status Response[] - The resource status information.
- vm
Agent VirtualMachine Agent Instance View Response - The VM Agent running on the virtual machine.
- assigned_
host str - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vm_
health VirtualMachine Health Status Response - The health status for the VM.
- boot_
diagnostics BootDiagnostics Instance View Response - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computer_
name str - The computer name assigned to the virtual machine.
- disks
Sequence[Disk
Instance View Response] - The virtual machine disk information.
- extensions
Sequence[Virtual
Machine Extension Instance View Response] - The extensions information.
- hyper_
v_ strgeneration - Specifies the HyperVGeneration Type associated with a resource
- maintenance_
redeploy_ Maintenancestatus Redeploy Status Response - The Maintenance Operation status on the virtual machine.
- os_
name str - The Operating System running on the virtual machine.
- os_
version str - The version of Operating System running on the virtual machine.
- patch_
status VirtualMachine Patch Status Response - [Preview Feature] The status of virtual machine patch operations.
- platform_
fault_ intdomain - Specifies the fault domain of the virtual machine.
- platform_
update_ intdomain - Specifies the update domain of the virtual machine.
- rdp_
thumb_ strprint - The Remote desktop certificate thumbprint.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- vm_
agent VirtualMachine Agent Instance View Response - The VM Agent running on the virtual machine.
- assigned
Host String - Resource id of the dedicated host, on which the virtual machine is allocated through automatic placement, when the virtual machine is associated with a dedicated host group that has automatic placement enabled. Minimum api-version: 2020-06-01.
- vm
Health Property Map - The health status for the VM.
- boot
Diagnostics Property Map - Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.
- computer
Name String - The computer name assigned to the virtual machine.
- disks List<Property Map>
- The virtual machine disk information.
- extensions List<Property Map>
- The extensions information.
- hyper
VGeneration String - Specifies the HyperVGeneration Type associated with a resource
- maintenance
Redeploy Property MapStatus - The Maintenance Operation status on the virtual machine.
- os
Name String - The Operating System running on the virtual machine.
- os
Version String - The version of Operating System running on the virtual machine.
- patch
Status Property Map - [Preview Feature] The status of virtual machine patch operations.
- platform
Fault NumberDomain - Specifies the fault domain of the virtual machine.
- platform
Update NumberDomain - Specifies the update domain of the virtual machine.
- rdp
Thumb StringPrint - The Remote desktop certificate thumbprint.
- statuses List<Property Map>
- The resource status information.
- vm
Agent Property Map - The VM Agent running on the virtual machine.
VirtualMachineIpTag, VirtualMachineIpTagArgs
- ip_
tag_ strtype - IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineIpTagResponse, VirtualMachineIpTagResponseArgs
- ip_
tag_ strtype - IP tag type. Example: FirstPartyUsage.
- tag str
- IP tag associated with the public IP. Example: SQL, Storage etc.
VirtualMachineNetworkInterfaceConfiguration, VirtualMachineNetworkInterfaceConfigurationArgs
- Ip
Configurations List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface IPConfiguration> - Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- Delete
Option string | Pulumi.Azure Native. Compute. Delete Options - Specify what happens to the network interface when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface Dns Settings Configuration - The dns settings to be applied on the network interfaces.
- Dscp
Configuration Pulumi.Azure Native. Compute. Inputs. Sub Resource - Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security Pulumi.Group Azure Native. Compute. Inputs. Sub Resource - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Ip
Configurations []VirtualMachine Network Interface IPConfiguration - Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- Delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- Dns
Settings VirtualMachine Network Interface Dns Settings Configuration - The dns settings to be applied on the network interfaces.
- Dscp
Configuration SubResource - Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security SubGroup Resource - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<VirtualMachine Network Interface IPConfiguration> - Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- delete
Option String | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- dns
Settings VirtualMachine Network Interface Dns Settings Configuration - The dns settings to be applied on the network interfaces.
- dscp
Configuration SubResource - enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations VirtualMachine Network Interface IPConfiguration[] - Specifies the IP configurations of the network interface.
- name string
- The network interface configuration name.
- delete
Option string | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- dns
Settings VirtualMachine Network Interface Dns Settings Configuration - The dns settings to be applied on the network interfaces.
- dscp
Configuration SubResource - enable
Accelerated booleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource - The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_
configurations Sequence[VirtualMachine Network Interface IPConfiguration] - Specifies the IP configurations of the network interface.
- name str
- The network interface configuration name.
- delete_
option str | DeleteOptions - Specify what happens to the network interface when the VM is deleted
- dns_
settings VirtualMachine Network Interface Dns Settings Configuration - The dns settings to be applied on the network interfaces.
- dscp_
configuration SubResource - enable_
accelerated_ boolnetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable_
fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- enable_
ip_ boolforwarding - Whether IP forwarding enabled on this NIC.
- network_
security_ Subgroup Resource - The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<Property Map> - Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- delete
Option String | "Delete" | "Detach" - Specify what happens to the network interface when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the network interfaces.
- dscp
Configuration Property Map - enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security Property MapGroup - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineNetworkInterfaceConfigurationResponse, VirtualMachineNetworkInterfaceConfigurationResponseArgs
- Ip
Configurations List<Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface IPConfiguration Response> - Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Network Interface Dns Settings Configuration Response - The dns settings to be applied on the network interfaces.
- Dscp
Configuration Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security Pulumi.Group Azure Native. Compute. Inputs. Sub Resource Response - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Ip
Configurations []VirtualMachine Network Interface IPConfiguration Response - Specifies the IP configurations of the network interface.
- Name string
- The network interface configuration name.
- Delete
Option string - Specify what happens to the network interface when the VM is deleted
- Dns
Settings VirtualMachine Network Interface Dns Settings Configuration Response - The dns settings to be applied on the network interfaces.
- Dscp
Configuration SubResource Response - Enable
Accelerated boolNetworking - Specifies whether the network interface is accelerated networking-enabled.
- Enable
Fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- Enable
IPForwarding bool - Whether IP forwarding enabled on this NIC.
- Network
Security SubGroup Resource Response - The network security group.
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<VirtualMachine Network Interface IPConfiguration Response> - Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- dns
Settings VirtualMachine Network Interface Dns Settings Configuration Response - The dns settings to be applied on the network interfaces.
- dscp
Configuration SubResource Response - enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource Response - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations VirtualMachine Network Interface IPConfiguration Response[] - Specifies the IP configurations of the network interface.
- name string
- The network interface configuration name.
- delete
Option string - Specify what happens to the network interface when the VM is deleted
- dns
Settings VirtualMachine Network Interface Dns Settings Configuration Response - The dns settings to be applied on the network interfaces.
- dscp
Configuration SubResource Response - enable
Accelerated booleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding boolean - Whether IP forwarding enabled on this NIC.
- network
Security SubGroup Resource Response - The network security group.
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip_
configurations Sequence[VirtualMachine Network Interface IPConfiguration Response] - Specifies the IP configurations of the network interface.
- name str
- The network interface configuration name.
- delete_
option str - Specify what happens to the network interface when the VM is deleted
- dns_
settings VirtualMachine Network Interface Dns Settings Configuration Response - The dns settings to be applied on the network interfaces.
- dscp_
configuration SubResource Response - enable_
accelerated_ boolnetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable_
fpga bool - Specifies whether the network interface is FPGA networking-enabled.
- enable_
ip_ boolforwarding - Whether IP forwarding enabled on this NIC.
- network_
security_ Subgroup Resource Response - The network security group.
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- ip
Configurations List<Property Map> - Specifies the IP configurations of the network interface.
- name String
- The network interface configuration name.
- delete
Option String - Specify what happens to the network interface when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the network interfaces.
- dscp
Configuration Property Map - enable
Accelerated BooleanNetworking - Specifies whether the network interface is accelerated networking-enabled.
- enable
Fpga Boolean - Specifies whether the network interface is FPGA networking-enabled.
- enable
IPForwarding Boolean - Whether IP forwarding enabled on this NIC.
- network
Security Property MapGroup - The network security group.
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
VirtualMachineNetworkInterfaceDnsSettingsConfiguration, VirtualMachineNetworkInterfaceDnsSettingsConfigurationArgs
- Dns
Servers List<string> - List of DNS servers IP addresses
- Dns
Servers []string - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
- dns
Servers string[] - List of DNS servers IP addresses
- dns_
servers Sequence[str] - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
VirtualMachineNetworkInterfaceDnsSettingsConfigurationResponse, VirtualMachineNetworkInterfaceDnsSettingsConfigurationResponseArgs
- Dns
Servers List<string> - List of DNS servers IP addresses
- Dns
Servers []string - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
- dns
Servers string[] - List of DNS servers IP addresses
- dns_
servers Sequence[str] - List of DNS servers IP addresses
- dns
Servers List<String> - List of DNS servers IP addresses
VirtualMachineNetworkInterfaceIPConfiguration, VirtualMachineNetworkInterfaceIPConfigurationArgs
- Name string
- The IP configuration name.
- Application
Gateway List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource> - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- Application
Security List<Pulumi.Groups Azure Native. Compute. Inputs. Sub Resource> - Specifies an array of references to application security group.
- Load
Balancer List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource> - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress string | Pulumi.Version Azure Native. Compute. IPVersions - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress Pulumi.Configuration Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Configuration - The publicIPAddressConfiguration.
- Subnet
Pulumi.
Azure Native. Compute. Inputs. Sub Resource - Specifies the identifier of the subnet.
- Name string
- The IP configuration name.
- Application
Gateway []SubBackend Address Pools Resource - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- Application
Security []SubGroups Resource - Specifies an array of references to application security group.
- Load
Balancer []SubBackend Address Pools Resource - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress string | IPVersionsVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration - The publicIPAddressConfiguration.
- Subnet
Sub
Resource - Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- application
Gateway List<SubBackend Address Pools Resource> - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security List<SubGroups Resource> - Specifies an array of references to application security group.
- load
Balancer List<SubBackend Address Pools Resource> - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress String | IPVersionsVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Sub
Resource - Specifies the identifier of the subnet.
- name string
- The IP configuration name.
- application
Gateway SubBackend Address Pools Resource[] - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security SubGroups Resource[] - Specifies an array of references to application security group.
- load
Balancer SubBackend Address Pools Resource[] - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress string | IPVersionsVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Sub
Resource - Specifies the identifier of the subnet.
- name str
- The IP configuration name.
- application_
gateway_ Sequence[Subbackend_ address_ pools Resource] - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application_
security_ Sequence[Subgroups Resource] - Specifies an array of references to application security group.
- load_
balancer_ Sequence[Subbackend_ address_ pools Resource] - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_
ip_ str | IPVersionsaddress_ version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Virtualaddress_ configuration Machine Public IPAddress Configuration - The publicIPAddressConfiguration.
- subnet
Sub
Resource - Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- application
Gateway List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security List<Property Map>Groups - Specifies an array of references to application security group.
- load
Balancer List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress String | "IPv4" | "IPv6"Version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress Property MapConfiguration - The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachineNetworkInterfaceIPConfigurationResponse, VirtualMachineNetworkInterfaceIPConfigurationResponseArgs
- Name string
- The IP configuration name.
- Application
Gateway List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource Response> - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- Application
Security List<Pulumi.Groups Azure Native. Compute. Inputs. Sub Resource Response> - Specifies an array of references to application security group.
- Load
Balancer List<Pulumi.Backend Address Pools Azure Native. Compute. Inputs. Sub Resource Response> - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress Pulumi.Configuration Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- Subnet
Pulumi.
Azure Native. Compute. Inputs. Sub Resource Response - Specifies the identifier of the subnet.
- Name string
- The IP configuration name.
- Application
Gateway []SubBackend Address Pools Resource Response - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- Application
Security []SubGroups Resource Response - Specifies an array of references to application security group.
- Load
Balancer []SubBackend Address Pools Resource Response - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- Primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- Private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- Subnet
Sub
Resource Response - Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- application
Gateway List<SubBackend Address Pools Resource Response> - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security List<SubGroups Resource Response> - Specifies an array of references to application security group.
- load
Balancer List<SubBackend Address Pools Resource Response> - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress StringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Sub
Resource Response - Specifies the identifier of the subnet.
- name string
- The IP configuration name.
- application
Gateway SubBackend Address Pools Resource Response[] - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security SubGroups Resource Response[] - Specifies an array of references to application security group.
- load
Balancer SubBackend Address Pools Resource Response[] - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress stringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress VirtualConfiguration Machine Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Sub
Resource Response - Specifies the identifier of the subnet.
- name str
- The IP configuration name.
- application_
gateway_ Sequence[Subbackend_ address_ pools Resource Response] - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application_
security_ Sequence[Subgroups Resource Response] - Specifies an array of references to application security group.
- load_
balancer_ Sequence[Subbackend_ address_ pools Resource Response] - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary bool
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private_
ip_ straddress_ version - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ Virtualaddress_ configuration Machine Public IPAddress Configuration Response - The publicIPAddressConfiguration.
- subnet
Sub
Resource Response - Specifies the identifier of the subnet.
- name String
- The IP configuration name.
- application
Gateway List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.
- application
Security List<Property Map>Groups - Specifies an array of references to application security group.
- load
Balancer List<Property Map>Backend Address Pools - Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].
- primary Boolean
- Specifies the primary network interface in case the virtual machine has more than 1 network interface.
- private
IPAddress StringVersion - Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAddress Property MapConfiguration - The publicIPAddressConfiguration.
- subnet Property Map
- Specifies the identifier of the subnet.
VirtualMachinePatchStatusResponse, VirtualMachinePatchStatusResponseArgs
- Configuration
Statuses List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> - The enablement status of the specified patchMode
- Available
Patch Pulumi.Summary Azure Native. Compute. Inputs. Available Patch Summary Response - The available patch summary of the latest assessment operation for the virtual machine.
- Last
Patch Pulumi.Installation Summary Azure Native. Compute. Inputs. Last Patch Installation Summary Response - The installation summary of the latest installation operation for the virtual machine.
- Configuration
Statuses []InstanceView Status Response - The enablement status of the specified patchMode
- Available
Patch AvailableSummary Patch Summary Response - The available patch summary of the latest assessment operation for the virtual machine.
- Last
Patch LastInstallation Summary Patch Installation Summary Response - The installation summary of the latest installation operation for the virtual machine.
- configuration
Statuses List<InstanceView Status Response> - The enablement status of the specified patchMode
- available
Patch AvailableSummary Patch Summary Response - The available patch summary of the latest assessment operation for the virtual machine.
- last
Patch LastInstallation Summary Patch Installation Summary Response - The installation summary of the latest installation operation for the virtual machine.
- configuration
Statuses InstanceView Status Response[] - The enablement status of the specified patchMode
- available
Patch AvailableSummary Patch Summary Response - The available patch summary of the latest assessment operation for the virtual machine.
- last
Patch LastInstallation Summary Patch Installation Summary Response - The installation summary of the latest installation operation for the virtual machine.
- configuration_
statuses Sequence[InstanceView Status Response] - The enablement status of the specified patchMode
- available_
patch_ Availablesummary Patch Summary Response - The available patch summary of the latest assessment operation for the virtual machine.
- last_
patch_ Lastinstallation_ summary Patch Installation Summary Response - The installation summary of the latest installation operation for the virtual machine.
- configuration
Statuses List<Property Map> - The enablement status of the specified patchMode
- available
Patch Property MapSummary - The available patch summary of the latest assessment operation for the virtual machine.
- last
Patch Property MapInstallation Summary - The installation summary of the latest installation operation for the virtual machine.
VirtualMachinePriorityTypes, VirtualMachinePriorityTypesArgs
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- Virtual
Machine Priority Types Regular - Regular
- Virtual
Machine Priority Types Low - Low
- Virtual
Machine Priority Types Spot - Spot
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- Regular
- Regular
- Low
- Low
- Spot
- Spot
- REGULAR
- Regular
- LOW
- Low
- SPOT
- Spot
- "Regular"
- Regular
- "Low"
- Low
- "Spot"
- Spot
VirtualMachinePublicIPAddressConfiguration, VirtualMachinePublicIPAddressConfigurationArgs
- Name string
- The publicIP address configuration name.
- Delete
Option string | Pulumi.Azure Native. Compute. Delete Options - Specify what happens to the public IP address when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Dns Settings Configuration - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- List<Pulumi.
Azure Native. Compute. Inputs. Virtual Machine Ip Tag> - The list of IP tags associated with the public IP address.
- Public
IPAddress string | Pulumi.Version Azure Native. Compute. IPVersions - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAllocation string | Pulumi.Method Azure Native. Compute. Public IPAllocation Method - Specify the public IP allocation type
- Public
IPPrefix Pulumi.Azure Native. Compute. Inputs. Sub Resource - The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Pulumi.
Azure Native. Compute. Inputs. Public IPAddress Sku - Describes the public IP Sku
- Name string
- The publicIP address configuration name.
- Delete
Option string | DeleteOptions - Specify what happens to the public IP address when the VM is deleted
- Dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- []Virtual
Machine Ip Tag - The list of IP tags associated with the public IP address.
- Public
IPAddress string | IPVersionsVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAllocation string | PublicMethod IPAllocation Method - Specify the public IP allocation type
- Public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Public
IPAddress Sku - Describes the public IP Sku
- name String
- The publicIP address configuration name.
- delete
Option String | DeleteOptions - Specify what happens to the public IP address when the VM is deleted
- dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration - The dns settings to be applied on the publicIP addresses .
- idle
Timeout IntegerIn Minutes - The idle timeout of the public IP address.
- List<Virtual
Machine Ip Tag> - The list of IP tags associated with the public IP address.
- public
IPAddress String | IPVersionsVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation String | PublicMethod IPAllocation Method - Specify the public IP allocation type
- public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku - Describes the public IP Sku
- name string
- The publicIP address configuration name.
- delete
Option string | DeleteOptions - Specify what happens to the public IP address when the VM is deleted
- dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration - The dns settings to be applied on the publicIP addresses .
- idle
Timeout numberIn Minutes - The idle timeout of the public IP address.
- Virtual
Machine Ip Tag[] - The list of IP tags associated with the public IP address.
- public
IPAddress string | IPVersionsVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation string | PublicMethod IPAllocation Method - Specify the public IP allocation type
- public
IPPrefix SubResource - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku - Describes the public IP Sku
- name str
- The publicIP address configuration name.
- delete_
option str | DeleteOptions - Specify what happens to the public IP address when the VM is deleted
- dns_
settings VirtualMachine Public IPAddress Dns Settings Configuration - The dns settings to be applied on the publicIP addresses .
- idle_
timeout_ intin_ minutes - The idle timeout of the public IP address.
- Sequence[Virtual
Machine Ip Tag] - The list of IP tags associated with the public IP address.
- public_
ip_ str | IPVersionsaddress_ version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ str | Publicallocation_ method IPAllocation Method - Specify the public IP allocation type
- public_
ip_ Subprefix Resource - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku - Describes the public IP Sku
- name String
- The publicIP address configuration name.
- delete
Option String | "Delete" | "Detach" - Specify what happens to the public IP address when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the publicIP addresses .
- idle
Timeout NumberIn Minutes - The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- public
IPAddress String | "IPv4" | "IPv6"Version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation String | "Dynamic" | "Static"Method - Specify the public IP allocation type
- public
IPPrefix Property Map - The PublicIPPrefix from which to allocate publicIP addresses.
- sku Property Map
- Describes the public IP Sku
VirtualMachinePublicIPAddressConfigurationResponse, VirtualMachinePublicIPAddressConfigurationResponseArgs
- Name string
- The publicIP address configuration name.
- Delete
Option string - Specify what happens to the public IP address when the VM is deleted
- Dns
Settings Pulumi.Azure Native. Compute. Inputs. Virtual Machine Public IPAddress Dns Settings Configuration Response - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- List<Pulumi.
Azure Native. Compute. Inputs. Virtual Machine Ip Tag Response> - The list of IP tags associated with the public IP address.
- Public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAllocation stringMethod - Specify the public IP allocation type
- Public
IPPrefix Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Pulumi.
Azure Native. Compute. Inputs. Public IPAddress Sku Response - Describes the public IP Sku
- Name string
- The publicIP address configuration name.
- Delete
Option string - Specify what happens to the public IP address when the VM is deleted
- Dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration Response - The dns settings to be applied on the publicIP addresses .
- Idle
Timeout intIn Minutes - The idle timeout of the public IP address.
- []Virtual
Machine Ip Tag Response - The list of IP tags associated with the public IP address.
- Public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- Public
IPAllocation stringMethod - Specify the public IP allocation type
- Public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- Sku
Public
IPAddress Sku Response - Describes the public IP Sku
- name String
- The publicIP address configuration name.
- delete
Option String - Specify what happens to the public IP address when the VM is deleted
- dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration Response - The dns settings to be applied on the publicIP addresses .
- idle
Timeout IntegerIn Minutes - The idle timeout of the public IP address.
- List<Virtual
Machine Ip Tag Response> - The list of IP tags associated with the public IP address.
- public
IPAddress StringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation StringMethod - Specify the public IP allocation type
- public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku Response - Describes the public IP Sku
- name string
- The publicIP address configuration name.
- delete
Option string - Specify what happens to the public IP address when the VM is deleted
- dns
Settings VirtualMachine Public IPAddress Dns Settings Configuration Response - The dns settings to be applied on the publicIP addresses .
- idle
Timeout numberIn Minutes - The idle timeout of the public IP address.
- Virtual
Machine Ip Tag Response[] - The list of IP tags associated with the public IP address.
- public
IPAddress stringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation stringMethod - Specify the public IP allocation type
- public
IPPrefix SubResource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku Response - Describes the public IP Sku
- name str
- The publicIP address configuration name.
- delete_
option str - Specify what happens to the public IP address when the VM is deleted
- dns_
settings VirtualMachine Public IPAddress Dns Settings Configuration Response - The dns settings to be applied on the publicIP addresses .
- idle_
timeout_ intin_ minutes - The idle timeout of the public IP address.
- Sequence[Virtual
Machine Ip Tag Response] - The list of IP tags associated with the public IP address.
- public_
ip_ straddress_ version - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public_
ip_ strallocation_ method - Specify the public IP allocation type
- public_
ip_ Subprefix Resource Response - The PublicIPPrefix from which to allocate publicIP addresses.
- sku
Public
IPAddress Sku Response - Describes the public IP Sku
- name String
- The publicIP address configuration name.
- delete
Option String - Specify what happens to the public IP address when the VM is deleted
- dns
Settings Property Map - The dns settings to be applied on the publicIP addresses .
- idle
Timeout NumberIn Minutes - The idle timeout of the public IP address.
- List<Property Map>
- The list of IP tags associated with the public IP address.
- public
IPAddress StringVersion - Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.
- public
IPAllocation StringMethod - Specify the public IP allocation type
- public
IPPrefix Property Map - The PublicIPPrefix from which to allocate publicIP addresses.
- sku Property Map
- Describes the public IP Sku
VirtualMachinePublicIPAddressDnsSettingsConfiguration, VirtualMachinePublicIPAddressDnsSettingsConfigurationArgs
- Domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- Domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name StringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain_
name_ strlabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name StringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
VirtualMachinePublicIPAddressDnsSettingsConfigurationResponse, VirtualMachinePublicIPAddressDnsSettingsConfigurationResponseArgs
- Domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- Domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name StringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name stringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain_
name_ strlabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
- domain
Name StringLabel - The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.
VirtualMachineSizeTypes, VirtualMachineSizeTypesArgs
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_
v2 - Standard_A1_v2
- Standard_A2_
v2 - Standard_A2_v2
- Standard_A4_
v2 - Standard_A4_v2
- Standard_A8_
v2 - Standard_A8_v2
- Standard_A2m_
v2 - Standard_A2m_v2
- Standard_A4m_
v2 - Standard_A4m_v2
- Standard_A8m_
v2 - Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_
v2 - Standard_D1_v2
- Standard_D2_
v2 - Standard_D2_v2
- Standard_D3_
v2 - Standard_D3_v2
- Standard_D4_
v2 - Standard_D4_v2
- Standard_D5_
v2 - Standard_D5_v2
- Standard_D2_
v3 - Standard_D2_v3
- Standard_D4_
v3 - Standard_D4_v3
- Standard_D8_
v3 - Standard_D8_v3
- Standard_D16_
v3 - Standard_D16_v3
- Standard_D32_
v3 - Standard_D32_v3
- Standard_D64_
v3 - Standard_D64_v3
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_D11_
v2 - Standard_D11_v2
- Standard_D12_
v2 - Standard_D12_v2
- Standard_D13_
v2 - Standard_D13_v2
- Standard_D14_
v2 - Standard_D14_v2
- Standard_D15_
v2 - Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_
v2 - Standard_DS1_v2
- Standard_DS2_
v2 - Standard_DS2_v2
- Standard_DS3_
v2 - Standard_DS3_v2
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_DS11_
v2 - Standard_DS11_v2
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_DS13_4_
v2 - Standard_DS13-4_v2
- Standard_DS13_2_
v2 - Standard_DS13-2_v2
- Standard_DS14_8_
v2 - Standard_DS14-8_v2
- Standard_DS14_4_
v2 - Standard_DS14-4_v2
- Standard_E2_
v3 - Standard_E2_v3
- Standard_E4_
v3 - Standard_E4_v3
- Standard_E8_
v3 - Standard_E8_v3
- Standard_E16_
v3 - Standard_E16_v3
- Standard_E32_
v3 - Standard_E32_v3
- Standard_E64_
v3 - Standard_E64_v3
- Standard_E2s_
v3 - Standard_E2s_v3
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_E32_16_
v3 - Standard_E32-16_v3
- Standard_E32_8s_
v3 - Standard_E32-8s_v3
- Standard_E64_32s_
v3 - Standard_E64-32s_v3
- Standard_E64_16s_
v3 - Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_
v2 - Standard_F2s_v2
- Standard_F4s_
v2 - Standard_F4s_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS4_8
- Standard_GS4-8
- Standard_GS4_4
- Standard_GS4-4
- Standard_GS5_16
- Standard_GS5-16
- Standard_GS5_8
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M64_32ms
- Standard_M64-32ms
- Standard_M64_16ms
- Standard_M64-16ms
- Standard_M128_64ms
- Standard_M128-64ms
- Standard_M128_32ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_
v2 - Standard_NC6s_v2
- Standard_NC12s_
v2 - Standard_NC12s_v2
- Standard_NC24s_
v2 - Standard_NC24s_v2
- Standard_NC24rs_
v2 - Standard_NC24rs_v2
- Standard_NC6s_
v3 - Standard_NC6s_v3
- Standard_NC12s_
v3 - Standard_NC12s_v3
- Standard_NC24s_
v3 - Standard_NC24s_v3
- Standard_NC24rs_
v3 - Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- Virtual
Machine Size Types_Basic_A0 - Basic_A0
- Virtual
Machine Size Types_Basic_A1 - Basic_A1
- Virtual
Machine Size Types_Basic_A2 - Basic_A2
- Virtual
Machine Size Types_Basic_A3 - Basic_A3
- Virtual
Machine Size Types_Basic_A4 - Basic_A4
- Virtual
Machine Size Types_Standard_A0 - Standard_A0
- Virtual
Machine Size Types_Standard_A1 - Standard_A1
- Virtual
Machine Size Types_Standard_A2 - Standard_A2
- Virtual
Machine Size Types_Standard_A3 - Standard_A3
- Virtual
Machine Size Types_Standard_A4 - Standard_A4
- Virtual
Machine Size Types_Standard_A5 - Standard_A5
- Virtual
Machine Size Types_Standard_A6 - Standard_A6
- Virtual
Machine Size Types_Standard_A7 - Standard_A7
- Virtual
Machine Size Types_Standard_A8 - Standard_A8
- Virtual
Machine Size Types_Standard_A9 - Standard_A9
- Virtual
Machine Size Types_Standard_A10 - Standard_A10
- Virtual
Machine Size Types_Standard_A11 - Standard_A11
- Virtual
Machine Size Types_Standard_A1_ v2 - Standard_A1_v2
- Virtual
Machine Size Types_Standard_A2_ v2 - Standard_A2_v2
- Virtual
Machine Size Types_Standard_A4_ v2 - Standard_A4_v2
- Virtual
Machine Size Types_Standard_A8_ v2 - Standard_A8_v2
- Virtual
Machine Size Types_Standard_A2m_ v2 - Standard_A2m_v2
- Virtual
Machine Size Types_Standard_A4m_ v2 - Standard_A4m_v2
- Virtual
Machine Size Types_Standard_A8m_ v2 - Standard_A8m_v2
- Virtual
Machine Size Types_Standard_B1s - Standard_B1s
- Virtual
Machine Size Types_Standard_B1ms - Standard_B1ms
- Virtual
Machine Size Types_Standard_B2s - Standard_B2s
- Virtual
Machine Size Types_Standard_B2ms - Standard_B2ms
- Virtual
Machine Size Types_Standard_B4ms - Standard_B4ms
- Virtual
Machine Size Types_Standard_B8ms - Standard_B8ms
- Virtual
Machine Size Types_Standard_D1 - Standard_D1
- Virtual
Machine Size Types_Standard_D2 - Standard_D2
- Virtual
Machine Size Types_Standard_D3 - Standard_D3
- Virtual
Machine Size Types_Standard_D4 - Standard_D4
- Virtual
Machine Size Types_Standard_D11 - Standard_D11
- Virtual
Machine Size Types_Standard_D12 - Standard_D12
- Virtual
Machine Size Types_Standard_D13 - Standard_D13
- Virtual
Machine Size Types_Standard_D14 - Standard_D14
- Virtual
Machine Size Types_Standard_D1_ v2 - Standard_D1_v2
- Virtual
Machine Size Types_Standard_D2_ v2 - Standard_D2_v2
- Virtual
Machine Size Types_Standard_D3_ v2 - Standard_D3_v2
- Virtual
Machine Size Types_Standard_D4_ v2 - Standard_D4_v2
- Virtual
Machine Size Types_Standard_D5_ v2 - Standard_D5_v2
- Virtual
Machine Size Types_Standard_D2_ v3 - Standard_D2_v3
- Virtual
Machine Size Types_Standard_D4_ v3 - Standard_D4_v3
- Virtual
Machine Size Types_Standard_D8_ v3 - Standard_D8_v3
- Virtual
Machine Size Types_Standard_D16_ v3 - Standard_D16_v3
- Virtual
Machine Size Types_Standard_D32_ v3 - Standard_D32_v3
- Virtual
Machine Size Types_Standard_D64_ v3 - Standard_D64_v3
- Virtual
Machine Size Types_Standard_D2s_ v3 - Standard_D2s_v3
- Virtual
Machine Size Types_Standard_D4s_ v3 - Standard_D4s_v3
- Virtual
Machine Size Types_Standard_D8s_ v3 - Standard_D8s_v3
- Virtual
Machine Size Types_Standard_D16s_ v3 - Standard_D16s_v3
- Virtual
Machine Size Types_Standard_D32s_ v3 - Standard_D32s_v3
- Virtual
Machine Size Types_Standard_D64s_ v3 - Standard_D64s_v3
- Virtual
Machine Size Types_Standard_D11_ v2 - Standard_D11_v2
- Virtual
Machine Size Types_Standard_D12_ v2 - Standard_D12_v2
- Virtual
Machine Size Types_Standard_D13_ v2 - Standard_D13_v2
- Virtual
Machine Size Types_Standard_D14_ v2 - Standard_D14_v2
- Virtual
Machine Size Types_Standard_D15_ v2 - Standard_D15_v2
- Virtual
Machine Size Types_Standard_DS1 - Standard_DS1
- Virtual
Machine Size Types_Standard_DS2 - Standard_DS2
- Virtual
Machine Size Types_Standard_DS3 - Standard_DS3
- Virtual
Machine Size Types_Standard_DS4 - Standard_DS4
- Virtual
Machine Size Types_Standard_DS11 - Standard_DS11
- Virtual
Machine Size Types_Standard_DS12 - Standard_DS12
- Virtual
Machine Size Types_Standard_DS13 - Standard_DS13
- Virtual
Machine Size Types_Standard_DS14 - Standard_DS14
- Virtual
Machine Size Types_Standard_DS1_ v2 - Standard_DS1_v2
- Virtual
Machine Size Types_Standard_DS2_ v2 - Standard_DS2_v2
- Virtual
Machine Size Types_Standard_DS3_ v2 - Standard_DS3_v2
- Virtual
Machine Size Types_Standard_DS4_ v2 - Standard_DS4_v2
- Virtual
Machine Size Types_Standard_DS5_ v2 - Standard_DS5_v2
- Virtual
Machine Size Types_Standard_DS11_ v2 - Standard_DS11_v2
- Virtual
Machine Size Types_Standard_DS12_ v2 - Standard_DS12_v2
- Virtual
Machine Size Types_Standard_DS13_ v2 - Standard_DS13_v2
- Virtual
Machine Size Types_Standard_DS14_ v2 - Standard_DS14_v2
- Virtual
Machine Size Types_Standard_DS15_ v2 - Standard_DS15_v2
- Virtual
Machine Size Types_Standard_DS13_4_ v2 - Standard_DS13-4_v2
- Virtual
Machine Size Types_Standard_DS13_2_ v2 - Standard_DS13-2_v2
- Virtual
Machine Size Types_Standard_DS14_8_ v2 - Standard_DS14-8_v2
- Virtual
Machine Size Types_Standard_DS14_4_ v2 - Standard_DS14-4_v2
- Virtual
Machine Size Types_Standard_E2_ v3 - Standard_E2_v3
- Virtual
Machine Size Types_Standard_E4_ v3 - Standard_E4_v3
- Virtual
Machine Size Types_Standard_E8_ v3 - Standard_E8_v3
- Virtual
Machine Size Types_Standard_E16_ v3 - Standard_E16_v3
- Virtual
Machine Size Types_Standard_E32_ v3 - Standard_E32_v3
- Virtual
Machine Size Types_Standard_E64_ v3 - Standard_E64_v3
- Virtual
Machine Size Types_Standard_E2s_ v3 - Standard_E2s_v3
- Virtual
Machine Size Types_Standard_E4s_ v3 - Standard_E4s_v3
- Virtual
Machine Size Types_Standard_E8s_ v3 - Standard_E8s_v3
- Virtual
Machine Size Types_Standard_E16s_ v3 - Standard_E16s_v3
- Virtual
Machine Size Types_Standard_E32s_ v3 - Standard_E32s_v3
- Virtual
Machine Size Types_Standard_E64s_ v3 - Standard_E64s_v3
- Virtual
Machine Size Types_Standard_E32_16_ v3 - Standard_E32-16_v3
- Virtual
Machine Size Types_Standard_E32_8s_ v3 - Standard_E32-8s_v3
- Virtual
Machine Size Types_Standard_E64_32s_ v3 - Standard_E64-32s_v3
- Virtual
Machine Size Types_Standard_E64_16s_ v3 - Standard_E64-16s_v3
- Virtual
Machine Size Types_Standard_F1 - Standard_F1
- Virtual
Machine Size Types_Standard_F2 - Standard_F2
- Virtual
Machine Size Types_Standard_F4 - Standard_F4
- Virtual
Machine Size Types_Standard_F8 - Standard_F8
- Virtual
Machine Size Types_Standard_F16 - Standard_F16
- Virtual
Machine Size Types_Standard_F1s - Standard_F1s
- Virtual
Machine Size Types_Standard_F2s - Standard_F2s
- Virtual
Machine Size Types_Standard_F4s - Standard_F4s
- Virtual
Machine Size Types_Standard_F8s - Standard_F8s
- Virtual
Machine Size Types_Standard_F16s - Standard_F16s
- Virtual
Machine Size Types_Standard_F2s_ v2 - Standard_F2s_v2
- Virtual
Machine Size Types_Standard_F4s_ v2 - Standard_F4s_v2
- Virtual
Machine Size Types_Standard_F8s_ v2 - Standard_F8s_v2
- Virtual
Machine Size Types_Standard_F16s_ v2 - Standard_F16s_v2
- Virtual
Machine Size Types_Standard_F32s_ v2 - Standard_F32s_v2
- Virtual
Machine Size Types_Standard_F64s_ v2 - Standard_F64s_v2
- Virtual
Machine Size Types_Standard_F72s_ v2 - Standard_F72s_v2
- Virtual
Machine Size Types_Standard_G1 - Standard_G1
- Virtual
Machine Size Types_Standard_G2 - Standard_G2
- Virtual
Machine Size Types_Standard_G3 - Standard_G3
- Virtual
Machine Size Types_Standard_G4 - Standard_G4
- Virtual
Machine Size Types_Standard_G5 - Standard_G5
- Virtual
Machine Size Types_Standard_GS1 - Standard_GS1
- Virtual
Machine Size Types_Standard_GS2 - Standard_GS2
- Virtual
Machine Size Types_Standard_GS3 - Standard_GS3
- Virtual
Machine Size Types_Standard_GS4 - Standard_GS4
- Virtual
Machine Size Types_Standard_GS5 - Standard_GS5
- Virtual
Machine Size Types_Standard_GS4_8 - Standard_GS4-8
- Virtual
Machine Size Types_Standard_GS4_4 - Standard_GS4-4
- Virtual
Machine Size Types_Standard_GS5_16 - Standard_GS5-16
- Virtual
Machine Size Types_Standard_GS5_8 - Standard_GS5-8
- Virtual
Machine Size Types_Standard_H8 - Standard_H8
- Virtual
Machine Size Types_Standard_H16 - Standard_H16
- Virtual
Machine Size Types_Standard_H8m - Standard_H8m
- Virtual
Machine Size Types_Standard_H16m - Standard_H16m
- Virtual
Machine Size Types_Standard_H16r - Standard_H16r
- Virtual
Machine Size Types_Standard_H16mr - Standard_H16mr
- Virtual
Machine Size Types_Standard_L4s - Standard_L4s
- Virtual
Machine Size Types_Standard_L8s - Standard_L8s
- Virtual
Machine Size Types_Standard_L16s - Standard_L16s
- Virtual
Machine Size Types_Standard_L32s - Standard_L32s
- Virtual
Machine Size Types_Standard_M64s - Standard_M64s
- Virtual
Machine Size Types_Standard_M64ms - Standard_M64ms
- Virtual
Machine Size Types_Standard_M128s - Standard_M128s
- Virtual
Machine Size Types_Standard_M128ms - Standard_M128ms
- Virtual
Machine Size Types_Standard_M64_32ms - Standard_M64-32ms
- Virtual
Machine Size Types_Standard_M64_16ms - Standard_M64-16ms
- Virtual
Machine Size Types_Standard_M128_64ms - Standard_M128-64ms
- Virtual
Machine Size Types_Standard_M128_32ms - Standard_M128-32ms
- Virtual
Machine Size Types_Standard_NC6 - Standard_NC6
- Virtual
Machine Size Types_Standard_NC12 - Standard_NC12
- Virtual
Machine Size Types_Standard_NC24 - Standard_NC24
- Virtual
Machine Size Types_Standard_NC24r - Standard_NC24r
- Virtual
Machine Size Types_Standard_NC6s_ v2 - Standard_NC6s_v2
- Virtual
Machine Size Types_Standard_NC12s_ v2 - Standard_NC12s_v2
- Virtual
Machine Size Types_Standard_NC24s_ v2 - Standard_NC24s_v2
- Virtual
Machine Size Types_Standard_NC24rs_ v2 - Standard_NC24rs_v2
- Virtual
Machine Size Types_Standard_NC6s_ v3 - Standard_NC6s_v3
- Virtual
Machine Size Types_Standard_NC12s_ v3 - Standard_NC12s_v3
- Virtual
Machine Size Types_Standard_NC24s_ v3 - Standard_NC24s_v3
- Virtual
Machine Size Types_Standard_NC24rs_ v3 - Standard_NC24rs_v3
- Virtual
Machine Size Types_Standard_ND6s - Standard_ND6s
- Virtual
Machine Size Types_Standard_ND12s - Standard_ND12s
- Virtual
Machine Size Types_Standard_ND24s - Standard_ND24s
- Virtual
Machine Size Types_Standard_ND24rs - Standard_ND24rs
- Virtual
Machine Size Types_Standard_NV6 - Standard_NV6
- Virtual
Machine Size Types_Standard_NV12 - Standard_NV12
- Virtual
Machine Size Types_Standard_NV24 - Standard_NV24
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_
v2 - Standard_A1_v2
- Standard_A2_
v2 - Standard_A2_v2
- Standard_A4_
v2 - Standard_A4_v2
- Standard_A8_
v2 - Standard_A8_v2
- Standard_A2m_
v2 - Standard_A2m_v2
- Standard_A4m_
v2 - Standard_A4m_v2
- Standard_A8m_
v2 - Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_
v2 - Standard_D1_v2
- Standard_D2_
v2 - Standard_D2_v2
- Standard_D3_
v2 - Standard_D3_v2
- Standard_D4_
v2 - Standard_D4_v2
- Standard_D5_
v2 - Standard_D5_v2
- Standard_D2_
v3 - Standard_D2_v3
- Standard_D4_
v3 - Standard_D4_v3
- Standard_D8_
v3 - Standard_D8_v3
- Standard_D16_
v3 - Standard_D16_v3
- Standard_D32_
v3 - Standard_D32_v3
- Standard_D64_
v3 - Standard_D64_v3
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_D11_
v2 - Standard_D11_v2
- Standard_D12_
v2 - Standard_D12_v2
- Standard_D13_
v2 - Standard_D13_v2
- Standard_D14_
v2 - Standard_D14_v2
- Standard_D15_
v2 - Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_
v2 - Standard_DS1_v2
- Standard_DS2_
v2 - Standard_DS2_v2
- Standard_DS3_
v2 - Standard_DS3_v2
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_DS11_
v2 - Standard_DS11_v2
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_DS134_
v2 - Standard_DS13-4_v2
- Standard_DS132_
v2 - Standard_DS13-2_v2
- Standard_DS148_
v2 - Standard_DS14-8_v2
- Standard_DS144_
v2 - Standard_DS14-4_v2
- Standard_E2_
v3 - Standard_E2_v3
- Standard_E4_
v3 - Standard_E4_v3
- Standard_E8_
v3 - Standard_E8_v3
- Standard_E16_
v3 - Standard_E16_v3
- Standard_E32_
v3 - Standard_E32_v3
- Standard_E64_
v3 - Standard_E64_v3
- Standard_E2s_
v3 - Standard_E2s_v3
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_E3216_
v3 - Standard_E32-16_v3
- Standard_E328s_
v3 - Standard_E32-8s_v3
- Standard_E6432s_
v3 - Standard_E64-32s_v3
- Standard_E6416s_
v3 - Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_
v2 - Standard_F2s_v2
- Standard_F4s_
v2 - Standard_F4s_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS48
- Standard_GS4-8
- Standard_GS44
- Standard_GS4-4
- Standard_GS516
- Standard_GS5-16
- Standard_GS58
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M6432ms
- Standard_M64-32ms
- Standard_M6416ms
- Standard_M64-16ms
- Standard_M12864ms
- Standard_M128-64ms
- Standard_M12832ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_
v2 - Standard_NC6s_v2
- Standard_NC12s_
v2 - Standard_NC12s_v2
- Standard_NC24s_
v2 - Standard_NC24s_v2
- Standard_NC24rs_
v2 - Standard_NC24rs_v2
- Standard_NC6s_
v3 - Standard_NC6s_v3
- Standard_NC12s_
v3 - Standard_NC12s_v3
- Standard_NC24s_
v3 - Standard_NC24s_v3
- Standard_NC24rs_
v3 - Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- Basic_A0
- Basic_A0
- Basic_A1
- Basic_A1
- Basic_A2
- Basic_A2
- Basic_A3
- Basic_A3
- Basic_A4
- Basic_A4
- Standard_A0
- Standard_A0
- Standard_A1
- Standard_A1
- Standard_A2
- Standard_A2
- Standard_A3
- Standard_A3
- Standard_A4
- Standard_A4
- Standard_A5
- Standard_A5
- Standard_A6
- Standard_A6
- Standard_A7
- Standard_A7
- Standard_A8
- Standard_A8
- Standard_A9
- Standard_A9
- Standard_A10
- Standard_A10
- Standard_A11
- Standard_A11
- Standard_A1_
v2 - Standard_A1_v2
- Standard_A2_
v2 - Standard_A2_v2
- Standard_A4_
v2 - Standard_A4_v2
- Standard_A8_
v2 - Standard_A8_v2
- Standard_A2m_
v2 - Standard_A2m_v2
- Standard_A4m_
v2 - Standard_A4m_v2
- Standard_A8m_
v2 - Standard_A8m_v2
- Standard_B1s
- Standard_B1s
- Standard_B1ms
- Standard_B1ms
- Standard_B2s
- Standard_B2s
- Standard_B2ms
- Standard_B2ms
- Standard_B4ms
- Standard_B4ms
- Standard_B8ms
- Standard_B8ms
- Standard_D1
- Standard_D1
- Standard_D2
- Standard_D2
- Standard_D3
- Standard_D3
- Standard_D4
- Standard_D4
- Standard_D11
- Standard_D11
- Standard_D12
- Standard_D12
- Standard_D13
- Standard_D13
- Standard_D14
- Standard_D14
- Standard_D1_
v2 - Standard_D1_v2
- Standard_D2_
v2 - Standard_D2_v2
- Standard_D3_
v2 - Standard_D3_v2
- Standard_D4_
v2 - Standard_D4_v2
- Standard_D5_
v2 - Standard_D5_v2
- Standard_D2_
v3 - Standard_D2_v3
- Standard_D4_
v3 - Standard_D4_v3
- Standard_D8_
v3 - Standard_D8_v3
- Standard_D16_
v3 - Standard_D16_v3
- Standard_D32_
v3 - Standard_D32_v3
- Standard_D64_
v3 - Standard_D64_v3
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_D11_
v2 - Standard_D11_v2
- Standard_D12_
v2 - Standard_D12_v2
- Standard_D13_
v2 - Standard_D13_v2
- Standard_D14_
v2 - Standard_D14_v2
- Standard_D15_
v2 - Standard_D15_v2
- Standard_DS1
- Standard_DS1
- Standard_DS2
- Standard_DS2
- Standard_DS3
- Standard_DS3
- Standard_DS4
- Standard_DS4
- Standard_DS11
- Standard_DS11
- Standard_DS12
- Standard_DS12
- Standard_DS13
- Standard_DS13
- Standard_DS14
- Standard_DS14
- Standard_DS1_
v2 - Standard_DS1_v2
- Standard_DS2_
v2 - Standard_DS2_v2
- Standard_DS3_
v2 - Standard_DS3_v2
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_DS11_
v2 - Standard_DS11_v2
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_DS13_4_
v2 - Standard_DS13-4_v2
- Standard_DS13_2_
v2 - Standard_DS13-2_v2
- Standard_DS14_8_
v2 - Standard_DS14-8_v2
- Standard_DS14_4_
v2 - Standard_DS14-4_v2
- Standard_E2_
v3 - Standard_E2_v3
- Standard_E4_
v3 - Standard_E4_v3
- Standard_E8_
v3 - Standard_E8_v3
- Standard_E16_
v3 - Standard_E16_v3
- Standard_E32_
v3 - Standard_E32_v3
- Standard_E64_
v3 - Standard_E64_v3
- Standard_E2s_
v3 - Standard_E2s_v3
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_E32_16_
v3 - Standard_E32-16_v3
- Standard_E32_8s_
v3 - Standard_E32-8s_v3
- Standard_E64_32s_
v3 - Standard_E64-32s_v3
- Standard_E64_16s_
v3 - Standard_E64-16s_v3
- Standard_F1
- Standard_F1
- Standard_F2
- Standard_F2
- Standard_F4
- Standard_F4
- Standard_F8
- Standard_F8
- Standard_F16
- Standard_F16
- Standard_F1s
- Standard_F1s
- Standard_F2s
- Standard_F2s
- Standard_F4s
- Standard_F4s
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_F2s_
v2 - Standard_F2s_v2
- Standard_F4s_
v2 - Standard_F4s_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_G1
- Standard_G1
- Standard_G2
- Standard_G2
- Standard_G3
- Standard_G3
- Standard_G4
- Standard_G4
- Standard_G5
- Standard_G5
- Standard_GS1
- Standard_GS1
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_GS4_8
- Standard_GS4-8
- Standard_GS4_4
- Standard_GS4-4
- Standard_GS5_16
- Standard_GS5-16
- Standard_GS5_8
- Standard_GS5-8
- Standard_H8
- Standard_H8
- Standard_H16
- Standard_H16
- Standard_H8m
- Standard_H8m
- Standard_H16m
- Standard_H16m
- Standard_H16r
- Standard_H16r
- Standard_H16mr
- Standard_H16mr
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_M64s
- Standard_M64s
- Standard_M64ms
- Standard_M64ms
- Standard_M128s
- Standard_M128s
- Standard_M128ms
- Standard_M128ms
- Standard_M64_32ms
- Standard_M64-32ms
- Standard_M64_16ms
- Standard_M64-16ms
- Standard_M128_64ms
- Standard_M128-64ms
- Standard_M128_32ms
- Standard_M128-32ms
- Standard_NC6
- Standard_NC6
- Standard_NC12
- Standard_NC12
- Standard_NC24
- Standard_NC24
- Standard_NC24r
- Standard_NC24r
- Standard_NC6s_
v2 - Standard_NC6s_v2
- Standard_NC12s_
v2 - Standard_NC12s_v2
- Standard_NC24s_
v2 - Standard_NC24s_v2
- Standard_NC24rs_
v2 - Standard_NC24rs_v2
- Standard_NC6s_
v3 - Standard_NC6s_v3
- Standard_NC12s_
v3 - Standard_NC12s_v3
- Standard_NC24s_
v3 - Standard_NC24s_v3
- Standard_NC24rs_
v3 - Standard_NC24rs_v3
- Standard_ND6s
- Standard_ND6s
- Standard_ND12s
- Standard_ND12s
- Standard_ND24s
- Standard_ND24s
- Standard_ND24rs
- Standard_ND24rs
- Standard_NV6
- Standard_NV6
- Standard_NV12
- Standard_NV12
- Standard_NV24
- Standard_NV24
- BASIC_A0
- Basic_A0
- BASIC_A1
- Basic_A1
- BASIC_A2
- Basic_A2
- BASIC_A3
- Basic_A3
- BASIC_A4
- Basic_A4
- STANDARD_A0
- Standard_A0
- STANDARD_A1
- Standard_A1
- STANDARD_A2
- Standard_A2
- STANDARD_A3
- Standard_A3
- STANDARD_A4
- Standard_A4
- STANDARD_A5
- Standard_A5
- STANDARD_A6
- Standard_A6
- STANDARD_A7
- Standard_A7
- STANDARD_A8
- Standard_A8
- STANDARD_A9
- Standard_A9
- STANDARD_A10
- Standard_A10
- STANDARD_A11
- Standard_A11
- STANDARD_A1_V2
- Standard_A1_v2
- STANDARD_A2_V2
- Standard_A2_v2
- STANDARD_A4_V2
- Standard_A4_v2
- STANDARD_A8_V2
- Standard_A8_v2
- STANDARD_A2M_V2
- Standard_A2m_v2
- STANDARD_A4M_V2
- Standard_A4m_v2
- STANDARD_A8M_V2
- Standard_A8m_v2
- STANDARD_B1S
- Standard_B1s
- STANDARD_B1MS
- Standard_B1ms
- STANDARD_B2S
- Standard_B2s
- STANDARD_B2MS
- Standard_B2ms
- STANDARD_B4MS
- Standard_B4ms
- STANDARD_B8MS
- Standard_B8ms
- STANDARD_D1
- Standard_D1
- STANDARD_D2
- Standard_D2
- STANDARD_D3
- Standard_D3
- STANDARD_D4
- Standard_D4
- STANDARD_D11
- Standard_D11
- STANDARD_D12
- Standard_D12
- STANDARD_D13
- Standard_D13
- STANDARD_D14
- Standard_D14
- STANDARD_D1_V2
- Standard_D1_v2
- STANDARD_D2_V2
- Standard_D2_v2
- STANDARD_D3_V2
- Standard_D3_v2
- STANDARD_D4_V2
- Standard_D4_v2
- STANDARD_D5_V2
- Standard_D5_v2
- STANDARD_D2_V3
- Standard_D2_v3
- STANDARD_D4_V3
- Standard_D4_v3
- STANDARD_D8_V3
- Standard_D8_v3
- STANDARD_D16_V3
- Standard_D16_v3
- STANDARD_D32_V3
- Standard_D32_v3
- STANDARD_D64_V3
- Standard_D64_v3
- STANDARD_D2S_V3
- Standard_D2s_v3
- STANDARD_D4S_V3
- Standard_D4s_v3
- STANDARD_D8S_V3
- Standard_D8s_v3
- STANDARD_D16S_V3
- Standard_D16s_v3
- STANDARD_D32S_V3
- Standard_D32s_v3
- STANDARD_D64S_V3
- Standard_D64s_v3
- STANDARD_D11_V2
- Standard_D11_v2
- STANDARD_D12_V2
- Standard_D12_v2
- STANDARD_D13_V2
- Standard_D13_v2
- STANDARD_D14_V2
- Standard_D14_v2
- STANDARD_D15_V2
- Standard_D15_v2
- STANDARD_DS1
- Standard_DS1
- STANDARD_DS2
- Standard_DS2
- STANDARD_DS3
- Standard_DS3
- STANDARD_DS4
- Standard_DS4
- STANDARD_DS11
- Standard_DS11
- STANDARD_DS12
- Standard_DS12
- STANDARD_DS13
- Standard_DS13
- STANDARD_DS14
- Standard_DS14
- STANDARD_DS1_V2
- Standard_DS1_v2
- STANDARD_DS2_V2
- Standard_DS2_v2
- STANDARD_DS3_V2
- Standard_DS3_v2
- STANDARD_DS4_V2
- Standard_DS4_v2
- STANDARD_DS5_V2
- Standard_DS5_v2
- STANDARD_DS11_V2
- Standard_DS11_v2
- STANDARD_DS12_V2
- Standard_DS12_v2
- STANDARD_DS13_V2
- Standard_DS13_v2
- STANDARD_DS14_V2
- Standard_DS14_v2
- STANDARD_DS15_V2
- Standard_DS15_v2
- STANDARD_DS13_4_V2
- Standard_DS13-4_v2
- STANDARD_DS13_2_V2
- Standard_DS13-2_v2
- STANDARD_DS14_8_V2
- Standard_DS14-8_v2
- STANDARD_DS14_4_V2
- Standard_DS14-4_v2
- STANDARD_E2_V3
- Standard_E2_v3
- STANDARD_E4_V3
- Standard_E4_v3
- STANDARD_E8_V3
- Standard_E8_v3
- STANDARD_E16_V3
- Standard_E16_v3
- STANDARD_E32_V3
- Standard_E32_v3
- STANDARD_E64_V3
- Standard_E64_v3
- STANDARD_E2S_V3
- Standard_E2s_v3
- STANDARD_E4S_V3
- Standard_E4s_v3
- STANDARD_E8S_V3
- Standard_E8s_v3
- STANDARD_E16S_V3
- Standard_E16s_v3
- STANDARD_E32S_V3
- Standard_E32s_v3
- STANDARD_E64S_V3
- Standard_E64s_v3
- STANDARD_E32_16_V3
- Standard_E32-16_v3
- STANDARD_E32_8S_V3
- Standard_E32-8s_v3
- STANDARD_E64_32S_V3
- Standard_E64-32s_v3
- STANDARD_E64_16S_V3
- Standard_E64-16s_v3
- STANDARD_F1
- Standard_F1
- STANDARD_F2
- Standard_F2
- STANDARD_F4
- Standard_F4
- STANDARD_F8
- Standard_F8
- STANDARD_F16
- Standard_F16
- STANDARD_F1S
- Standard_F1s
- STANDARD_F2S
- Standard_F2s
- STANDARD_F4S
- Standard_F4s
- STANDARD_F8S
- Standard_F8s
- STANDARD_F16S
- Standard_F16s
- STANDARD_F2S_V2
- Standard_F2s_v2
- STANDARD_F4S_V2
- Standard_F4s_v2
- STANDARD_F8S_V2
- Standard_F8s_v2
- STANDARD_F16S_V2
- Standard_F16s_v2
- STANDARD_F32S_V2
- Standard_F32s_v2
- STANDARD_F64S_V2
- Standard_F64s_v2
- STANDARD_F72S_V2
- Standard_F72s_v2
- STANDARD_G1
- Standard_G1
- STANDARD_G2
- Standard_G2
- STANDARD_G3
- Standard_G3
- STANDARD_G4
- Standard_G4
- STANDARD_G5
- Standard_G5
- STANDARD_GS1
- Standard_GS1
- STANDARD_GS2
- Standard_GS2
- STANDARD_GS3
- Standard_GS3
- STANDARD_GS4
- Standard_GS4
- STANDARD_GS5
- Standard_GS5
- STANDARD_GS4_8
- Standard_GS4-8
- STANDARD_GS4_4
- Standard_GS4-4
- STANDARD_GS5_16
- Standard_GS5-16
- STANDARD_GS5_8
- Standard_GS5-8
- STANDARD_H8
- Standard_H8
- STANDARD_H16
- Standard_H16
- STANDARD_H8M
- Standard_H8m
- STANDARD_H16M
- Standard_H16m
- STANDARD_H16R
- Standard_H16r
- STANDARD_H16MR
- Standard_H16mr
- STANDARD_L4S
- Standard_L4s
- STANDARD_L8S
- Standard_L8s
- STANDARD_L16S
- Standard_L16s
- STANDARD_L32S
- Standard_L32s
- STANDARD_M64S
- Standard_M64s
- STANDARD_M64MS
- Standard_M64ms
- STANDARD_M128S
- Standard_M128s
- STANDARD_M128MS
- Standard_M128ms
- STANDARD_M64_32MS
- Standard_M64-32ms
- STANDARD_M64_16MS
- Standard_M64-16ms
- STANDARD_M128_64MS
- Standard_M128-64ms
- STANDARD_M128_32MS
- Standard_M128-32ms
- STANDARD_NC6
- Standard_NC6
- STANDARD_NC12
- Standard_NC12
- STANDARD_NC24
- Standard_NC24
- STANDARD_NC24R
- Standard_NC24r
- STANDARD_NC6S_V2
- Standard_NC6s_v2
- STANDARD_NC12S_V2
- Standard_NC12s_v2
- STANDARD_NC24S_V2
- Standard_NC24s_v2
- STANDARD_NC24RS_V2
- Standard_NC24rs_v2
- STANDARD_NC6S_V3
- Standard_NC6s_v3
- STANDARD_NC12S_V3
- Standard_NC12s_v3
- STANDARD_NC24S_V3
- Standard_NC24s_v3
- STANDARD_NC24RS_V3
- Standard_NC24rs_v3
- STANDARD_ND6S
- Standard_ND6s
- STANDARD_ND12S
- Standard_ND12s
- STANDARD_ND24S
- Standard_ND24s
- STANDARD_ND24RS
- Standard_ND24rs
- STANDARD_NV6
- Standard_NV6
- STANDARD_NV12
- Standard_NV12
- STANDARD_NV24
- Standard_NV24
- "Basic_A0"
- Basic_A0
- "Basic_A1"
- Basic_A1
- "Basic_A2"
- Basic_A2
- "Basic_A3"
- Basic_A3
- "Basic_A4"
- Basic_A4
- "Standard_A0"
- Standard_A0
- "Standard_A1"
- Standard_A1
- "Standard_A2"
- Standard_A2
- "Standard_A3"
- Standard_A3
- "Standard_A4"
- Standard_A4
- "Standard_A5"
- Standard_A5
- "Standard_A6"
- Standard_A6
- "Standard_A7"
- Standard_A7
- "Standard_A8"
- Standard_A8
- "Standard_A9"
- Standard_A9
- "Standard_A10"
- Standard_A10
- "Standard_A11"
- Standard_A11
- "Standard_A1_
v2" - Standard_A1_v2
- "Standard_A2_
v2" - Standard_A2_v2
- "Standard_A4_
v2" - Standard_A4_v2
- "Standard_A8_
v2" - Standard_A8_v2
- "Standard_A2m_
v2" - Standard_A2m_v2
- "Standard_A4m_
v2" - Standard_A4m_v2
- "Standard_A8m_
v2" - Standard_A8m_v2
- "Standard_B1s"
- Standard_B1s
- "Standard_B1ms"
- Standard_B1ms
- "Standard_B2s"
- Standard_B2s
- "Standard_B2ms"
- Standard_B2ms
- "Standard_B4ms"
- Standard_B4ms
- "Standard_B8ms"
- Standard_B8ms
- "Standard_D1"
- Standard_D1
- "Standard_D2"
- Standard_D2
- "Standard_D3"
- Standard_D3
- "Standard_D4"
- Standard_D4
- "Standard_D11"
- Standard_D11
- "Standard_D12"
- Standard_D12
- "Standard_D13"
- Standard_D13
- "Standard_D14"
- Standard_D14
- "Standard_D1_
v2" - Standard_D1_v2
- "Standard_D2_
v2" - Standard_D2_v2
- "Standard_D3_
v2" - Standard_D3_v2
- "Standard_D4_
v2" - Standard_D4_v2
- "Standard_D5_
v2" - Standard_D5_v2
- "Standard_D2_
v3" - Standard_D2_v3
- "Standard_D4_
v3" - Standard_D4_v3
- "Standard_D8_
v3" - Standard_D8_v3
- "Standard_D16_
v3" - Standard_D16_v3
- "Standard_D32_
v3" - Standard_D32_v3
- "Standard_D64_
v3" - Standard_D64_v3
- "Standard_D2s_
v3" - Standard_D2s_v3
- "Standard_D4s_
v3" - Standard_D4s_v3
- "Standard_D8s_
v3" - Standard_D8s_v3
- "Standard_D16s_
v3" - Standard_D16s_v3
- "Standard_D32s_
v3" - Standard_D32s_v3
- "Standard_D64s_
v3" - Standard_D64s_v3
- "Standard_D11_
v2" - Standard_D11_v2
- "Standard_D12_
v2" - Standard_D12_v2
- "Standard_D13_
v2" - Standard_D13_v2
- "Standard_D14_
v2" - Standard_D14_v2
- "Standard_D15_
v2" - Standard_D15_v2
- "Standard_DS1"
- Standard_DS1
- "Standard_DS2"
- Standard_DS2
- "Standard_DS3"
- Standard_DS3
- "Standard_DS4"
- Standard_DS4
- "Standard_DS11"
- Standard_DS11
- "Standard_DS12"
- Standard_DS12
- "Standard_DS13"
- Standard_DS13
- "Standard_DS14"
- Standard_DS14
- "Standard_DS1_
v2" - Standard_DS1_v2
- "Standard_DS2_
v2" - Standard_DS2_v2
- "Standard_DS3_
v2" - Standard_DS3_v2
- "Standard_DS4_
v2" - Standard_DS4_v2
- "Standard_DS5_
v2" - Standard_DS5_v2
- "Standard_DS11_
v2" - Standard_DS11_v2
- "Standard_DS12_
v2" - Standard_DS12_v2
- "Standard_DS13_
v2" - Standard_DS13_v2
- "Standard_DS14_
v2" - Standard_DS14_v2
- "Standard_DS15_
v2" - Standard_DS15_v2
- "Standard_DS13-4_
v2" - Standard_DS13-4_v2
- "Standard_DS13-2_
v2" - Standard_DS13-2_v2
- "Standard_DS14-8_
v2" - Standard_DS14-8_v2
- "Standard_DS14-4_
v2" - Standard_DS14-4_v2
- "Standard_E2_
v3" - Standard_E2_v3
- "Standard_E4_
v3" - Standard_E4_v3
- "Standard_E8_
v3" - Standard_E8_v3
- "Standard_E16_
v3" - Standard_E16_v3
- "Standard_E32_
v3" - Standard_E32_v3
- "Standard_E64_
v3" - Standard_E64_v3
- "Standard_E2s_
v3" - Standard_E2s_v3
- "Standard_E4s_
v3" - Standard_E4s_v3
- "Standard_E8s_
v3" - Standard_E8s_v3
- "Standard_E16s_
v3" - Standard_E16s_v3
- "Standard_E32s_
v3" - Standard_E32s_v3
- "Standard_E64s_
v3" - Standard_E64s_v3
- "Standard_E32-16_
v3" - Standard_E32-16_v3
- "Standard_E32-8s_
v3" - Standard_E32-8s_v3
- "Standard_E64-32s_
v3" - Standard_E64-32s_v3
- "Standard_E64-16s_
v3" - Standard_E64-16s_v3
- "Standard_F1"
- Standard_F1
- "Standard_F2"
- Standard_F2
- "Standard_F4"
- Standard_F4
- "Standard_F8"
- Standard_F8
- "Standard_F16"
- Standard_F16
- "Standard_F1s"
- Standard_F1s
- "Standard_F2s"
- Standard_F2s
- "Standard_F4s"
- Standard_F4s
- "Standard_F8s"
- Standard_F8s
- "Standard_F16s"
- Standard_F16s
- "Standard_F2s_
v2" - Standard_F2s_v2
- "Standard_F4s_
v2" - Standard_F4s_v2
- "Standard_F8s_
v2" - Standard_F8s_v2
- "Standard_F16s_
v2" - Standard_F16s_v2
- "Standard_F32s_
v2" - Standard_F32s_v2
- "Standard_F64s_
v2" - Standard_F64s_v2
- "Standard_F72s_
v2" - Standard_F72s_v2
- "Standard_G1"
- Standard_G1
- "Standard_G2"
- Standard_G2
- "Standard_G3"
- Standard_G3
- "Standard_G4"
- Standard_G4
- "Standard_G5"
- Standard_G5
- "Standard_GS1"
- Standard_GS1
- "Standard_GS2"
- Standard_GS2
- "Standard_GS3"
- Standard_GS3
- "Standard_GS4"
- Standard_GS4
- "Standard_GS5"
- Standard_GS5
- "Standard_GS4-8"
- Standard_GS4-8
- "Standard_GS4-4"
- Standard_GS4-4
- "Standard_GS5-16"
- Standard_GS5-16
- "Standard_GS5-8"
- Standard_GS5-8
- "Standard_H8"
- Standard_H8
- "Standard_H16"
- Standard_H16
- "Standard_H8m"
- Standard_H8m
- "Standard_H16m"
- Standard_H16m
- "Standard_H16r"
- Standard_H16r
- "Standard_H16mr"
- Standard_H16mr
- "Standard_L4s"
- Standard_L4s
- "Standard_L8s"
- Standard_L8s
- "Standard_L16s"
- Standard_L16s
- "Standard_L32s"
- Standard_L32s
- "Standard_M64s"
- Standard_M64s
- "Standard_M64ms"
- Standard_M64ms
- "Standard_M128s"
- Standard_M128s
- "Standard_M128ms"
- Standard_M128ms
- "Standard_M64-32ms"
- Standard_M64-32ms
- "Standard_M64-16ms"
- Standard_M64-16ms
- "Standard_M128-64ms"
- Standard_M128-64ms
- "Standard_M128-32ms"
- Standard_M128-32ms
- "Standard_NC6"
- Standard_NC6
- "Standard_NC12"
- Standard_NC12
- "Standard_NC24"
- Standard_NC24
- "Standard_NC24r"
- Standard_NC24r
- "Standard_NC6s_
v2" - Standard_NC6s_v2
- "Standard_NC12s_
v2" - Standard_NC12s_v2
- "Standard_NC24s_
v2" - Standard_NC24s_v2
- "Standard_NC24rs_
v2" - Standard_NC24rs_v2
- "Standard_NC6s_
v3" - Standard_NC6s_v3
- "Standard_NC12s_
v3" - Standard_NC12s_v3
- "Standard_NC24s_
v3" - Standard_NC24s_v3
- "Standard_NC24rs_
v3" - Standard_NC24rs_v3
- "Standard_ND6s"
- Standard_ND6s
- "Standard_ND12s"
- Standard_ND12s
- "Standard_ND24s"
- Standard_ND24s
- "Standard_ND24rs"
- Standard_ND24rs
- "Standard_NV6"
- Standard_NV6
- "Standard_NV12"
- Standard_NV12
- "Standard_NV24"
- Standard_NV24
WinRMConfiguration, WinRMConfigurationArgs
- Listeners
List<Pulumi.
Azure Native. Compute. Inputs. Win RMListener> - The list of Windows Remote Management listeners
- Listeners
[]Win
RMListener - The list of Windows Remote Management listeners
- listeners
List<Win
RMListener> - The list of Windows Remote Management listeners
- listeners
Win
RMListener[] - The list of Windows Remote Management listeners
- listeners
Sequence[Win
RMListener] - The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMConfigurationResponse, WinRMConfigurationResponseArgs
- Listeners
List<Pulumi.
Azure Native. Compute. Inputs. Win RMListener Response> - The list of Windows Remote Management listeners
- Listeners
[]Win
RMListener Response - The list of Windows Remote Management listeners
- listeners
List<Win
RMListener Response> - The list of Windows Remote Management listeners
- listeners
Win
RMListener Response[] - The list of Windows Remote Management listeners
- listeners
Sequence[Win
RMListener Response] - The list of Windows Remote Management listeners
- listeners List<Property Map>
- The list of Windows Remote Management listeners
WinRMListener, WinRMListenerArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
Pulumi.
Azure Native. Compute. Protocol Types - Specifies the protocol of WinRM listener. Possible values are: http https
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol
Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http https
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol
Protocol
Types - Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol "Http" | "Https"
- Specifies the protocol of WinRM listener. Possible values are: http https
WinRMListenerResponse, WinRMListenerResponseArgs
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http https
- Certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- Protocol string
- Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url string - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol string
- Specifies the protocol of WinRM listener. Possible values are: http https
- certificate_
url str - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol str
- Specifies the protocol of WinRM listener. Possible values are: http https
- certificate
Url String - This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see Add a key or secret to the key vault. In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8: { "data":"", "dataType":"pfx", "password":""} To install certificates on a virtual machine it is recommended to use the Azure Key Vault virtual machine extension for Linux or the Azure Key Vault virtual machine extension for Windows.
- protocol String
- Specifies the protocol of WinRM listener. Possible values are: http https
WindowsConfiguration, WindowsConfigurationArgs
- Additional
Unattend List<Pulumi.Content Azure Native. Compute. Inputs. Additional Unattend Content> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Patch
Settings Pulumi.Azure Native. Compute. Inputs. Patch Settings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM Pulumi.Azure Native. Compute. Inputs. Win RMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- Additional
Unattend []AdditionalContent Unattend Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<AdditionalContent Unattend Content> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend AdditionalContent Unattend Content[] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic booleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_
unattend_ Sequence[Additionalcontent Unattend Content] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_
automatic_ boolupdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch_
settings PatchSettings - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_
zone str - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_
rm WinRMConfiguration - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<Property Map>Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM Property Map - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsConfigurationResponse, WindowsConfigurationResponseArgs
- Additional
Unattend List<Pulumi.Content Azure Native. Compute. Inputs. Additional Unattend Content Response> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Patch
Settings Pulumi.Azure Native. Compute. Inputs. Patch Settings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM Pulumi.Azure Native. Compute. Inputs. Win RMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- Additional
Unattend []AdditionalContent Unattend Content Response - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- Enable
Automatic boolUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- Patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- Provision
VMAgent bool - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- Time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- Win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<AdditionalContent Unattend Content Response> - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend AdditionalContent Unattend Content Response[] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic booleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone string - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional_
unattend_ Sequence[Additionalcontent Unattend Content Response] - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable_
automatic_ boolupdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch_
settings PatchSettings Response - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision_
vm_ boolagent - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time_
zone str - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win_
rm WinRMConfiguration Response - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
- additional
Unattend List<Property Map>Content - Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.
- enable
Automatic BooleanUpdates - Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.
- patch
Settings Property Map - [Preview Feature] Specifies settings related to VM Guest Patching on Windows.
- provision
VMAgent Boolean - Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.
- time
Zone String - Specifies the time zone of the virtual machine. e.g. "Pacific Standard Time". Possible values can be TimeZoneInfo.Id value from time zones returned by TimeZoneInfo.GetSystemTimeZones.
- win
RM Property Map - Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.
WindowsPatchAssessmentMode, WindowsPatchAssessmentModeArgs
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Windows
Patch Assessment Mode Image Default - ImageDefault
- Windows
Patch Assessment Mode Automatic By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- Image
Default - ImageDefault
- Automatic
By Platform - AutomaticByPlatform
- IMAGE_DEFAULT
- ImageDefault
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "Image
Default" - ImageDefault
- "Automatic
By Platform" - AutomaticByPlatform
WindowsVMGuestPatchMode, WindowsVMGuestPatchModeArgs
- Manual
- Manual
- Automatic
By OS - AutomaticByOS
- Automatic
By Platform - AutomaticByPlatform
- Windows
VMGuest Patch Mode Manual - Manual
- Windows
VMGuest Patch Mode Automatic By OS - AutomaticByOS
- Windows
VMGuest Patch Mode Automatic By Platform - AutomaticByPlatform
- Manual
- Manual
- Automatic
By OS - AutomaticByOS
- Automatic
By Platform - AutomaticByPlatform
- Manual
- Manual
- Automatic
By OS - AutomaticByOS
- Automatic
By Platform - AutomaticByPlatform
- MANUAL
- Manual
- AUTOMATIC_BY_OS
- AutomaticByOS
- AUTOMATIC_BY_PLATFORM
- AutomaticByPlatform
- "Manual"
- Manual
- "Automatic
By OS" - AutomaticByOS
- "Automatic
By Platform" - AutomaticByPlatform
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:VirtualMachine myVM /subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM
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