1. Packages
  2. Azure Native
  3. API Docs
  4. connectedvmwarevsphere
  5. VirtualMachine
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.connectedvmwarevsphere.VirtualMachine

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Define the virtualMachine.

Uses Azure REST API version 2023-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-07-15-preview.

Other available API versions: 2022-07-15-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native connectedvmwarevsphere [ApiVersion]. See the version guide for details.

Example Usage

CreateVirtualMachine

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

return await Deployment.RunAsync(() => 
{
    var virtualMachine = new AzureNative.ConnectedVMwarevSphere.VirtualMachine("virtualMachine", new()
    {
        ExtendedLocation = new AzureNative.ConnectedVMwarevSphere.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
            Type = "customLocation",
        },
        HardwareProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.HardwareProfileArgs
        {
            MemorySizeMB = 4196,
            NumCPUs = 4,
        },
        Location = "East US",
        ResourceGroupName = "testrg",
        ResourcePoolId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool",
        TemplateId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate",
        VCenterId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter",
        VirtualMachineName = "DemoVM",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := connectedvmwarevsphere.NewVirtualMachine(ctx, "virtualMachine", &connectedvmwarevsphere.VirtualMachineArgs{
			ExtendedLocation: &connectedvmwarevsphere.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso"),
				Type: pulumi.String("customLocation"),
			},
			HardwareProfile: &connectedvmwarevsphere.HardwareProfileArgs{
				MemorySizeMB: pulumi.Int(4196),
				NumCPUs:      pulumi.Int(4),
			},
			Location:           pulumi.String("East US"),
			ResourceGroupName:  pulumi.String("testrg"),
			ResourcePoolId:     pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool"),
			TemplateId:         pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate"),
			VCenterId:          pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter"),
			VirtualMachineName: pulumi.String("DemoVM"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachine;
import com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachineArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.inputs.HardwareProfileArgs;
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()
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso")
                .type("customLocation")
                .build())
            .hardwareProfile(HardwareProfileArgs.builder()
                .memorySizeMB(4196)
                .numCPUs(4)
                .build())
            .location("East US")
            .resourceGroupName("testrg")
            .resourcePoolId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool")
            .templateId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate")
            .vCenterId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter")
            .virtualMachineName("DemoVM")
            .build());

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

const virtualMachine = new azure_native.connectedvmwarevsphere.VirtualMachine("virtualMachine", {
    extendedLocation: {
        name: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
        type: "customLocation",
    },
    hardwareProfile: {
        memorySizeMB: 4196,
        numCPUs: 4,
    },
    location: "East US",
    resourceGroupName: "testrg",
    resourcePoolId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool",
    templateId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate",
    vCenterId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter",
    virtualMachineName: "DemoVM",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

virtual_machine = azure_native.connectedvmwarevsphere.VirtualMachine("virtualMachine",
    extended_location={
        "name": "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
        "type": "customLocation",
    },
    hardware_profile={
        "memory_size_mb": 4196,
        "num_cpus": 4,
    },
    location="East US",
    resource_group_name="testrg",
    resource_pool_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool",
    template_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate",
    v_center_id="/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter",
    virtual_machine_name="DemoVM")
Copy
resources:
  virtualMachine:
    type: azure-native:connectedvmwarevsphere:VirtualMachine
    properties:
      extendedLocation:
        name: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso
        type: customLocation
      hardwareProfile:
        memorySizeMB: 4196
        numCPUs: 4
      location: East US
      resourceGroupName: testrg
      resourcePoolId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool
      templateId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate
      vCenterId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter
      virtualMachineName: DemoVM
Copy

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,
                   guest_agent_profile: Optional[GuestAgentProfileArgs] = None,
                   hardware_profile: Optional[HardwareProfileArgs] = None,
                   identity: Optional[IdentityArgs] = None,
                   inventory_item_id: Optional[str] = None,
                   kind: Optional[str] = None,
                   location: Optional[str] = None,
                   mo_ref_id: Optional[str] = None,
                   extended_location: Optional[ExtendedLocationArgs] = None,
                   network_profile: Optional[NetworkProfileArgs] = None,
                   resource_pool_id: Optional[str] = None,
                   firmware_type: Optional[Union[str, FirmwareType]] = None,
                   placement_profile: Optional[PlacementProfileArgs] = None,
                   security_profile: Optional[SecurityProfileArgs] = None,
                   smbios_uuid: Optional[str] = None,
                   storage_profile: Optional[StorageProfileArgs] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   template_id: Optional[str] = None,
                   v_center_id: Optional[str] = None,
                   virtual_machine_name: Optional[str] = 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:connectedvmwarevsphere:VirtualMachine
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VirtualMachineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 examplevirtualMachineResourceResourceFromConnectedvmwarevsphere = new AzureNative.ConnectedVMwarevSphere.VirtualMachine("examplevirtualMachineResourceResourceFromConnectedvmwarevsphere", new()
{
    ResourceGroupName = "string",
    OsProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileArgs
    {
        AdminPassword = "string",
        AdminUsername = "string",
        ComputerName = "string",
        GuestId = "string",
        LinuxConfiguration = new AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileLinuxConfigurationArgs
        {
            AssessmentMode = "string",
            PatchMode = "string",
        },
        OsType = "string",
        WindowsConfiguration = new AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileWindowsConfigurationArgs
        {
            AssessmentMode = "string",
            PatchMode = "string",
        },
    },
    GuestAgentProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.GuestAgentProfileArgs
    {
        ClientPublicKey = "string",
    },
    HardwareProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.HardwareProfileArgs
    {
        MemorySizeMB = 0,
        NumCPUs = 0,
        NumCoresPerSocket = 0,
    },
    Identity = new AzureNative.ConnectedVMwarevSphere.Inputs.IdentityArgs
    {
        Type = "string",
    },
    InventoryItemId = "string",
    Kind = "string",
    Location = "string",
    MoRefId = "string",
    ExtendedLocation = new AzureNative.ConnectedVMwarevSphere.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    NetworkProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.NetworkProfileArgs
    {
        NetworkInterfaces = new[]
        {
            new AzureNative.ConnectedVMwarevSphere.Inputs.NetworkInterfaceArgs
            {
                DeviceKey = 0,
                IpSettings = new AzureNative.ConnectedVMwarevSphere.Inputs.NicIPSettingsArgs
                {
                    AllocationMethod = "string",
                    DnsServers = new[]
                    {
                        "string",
                    },
                    Gateway = new[]
                    {
                        "string",
                    },
                    IpAddress = "string",
                    SubnetMask = "string",
                },
                Name = "string",
                NetworkId = "string",
                NicType = "string",
                PowerOnBoot = "string",
            },
        },
    },
    ResourcePoolId = "string",
    FirmwareType = "string",
    PlacementProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.PlacementProfileArgs
    {
        ClusterId = "string",
        DatastoreId = "string",
        HostId = "string",
        ResourcePoolId = "string",
    },
    SecurityProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.SecurityProfileArgs
    {
        UefiSettings = new AzureNative.ConnectedVMwarevSphere.Inputs.UefiSettingsArgs
        {
            SecureBootEnabled = false,
        },
    },
    SmbiosUuid = "string",
    StorageProfile = new AzureNative.ConnectedVMwarevSphere.Inputs.StorageProfileArgs
    {
        Disks = new[]
        {
            new AzureNative.ConnectedVMwarevSphere.Inputs.VirtualDiskArgs
            {
                ControllerKey = 0,
                DeviceKey = 0,
                DeviceName = "string",
                DiskMode = "string",
                DiskSizeGB = 0,
                DiskType = "string",
                Name = "string",
                UnitNumber = 0,
            },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    TemplateId = "string",
    VCenterId = "string",
    VirtualMachineName = "string",
});
Copy
example, err := connectedvmwarevsphere.NewVirtualMachine(ctx, "examplevirtualMachineResourceResourceFromConnectedvmwarevsphere", &connectedvmwarevsphere.VirtualMachineArgs{
	ResourceGroupName: pulumi.String("string"),
	OsProfile: &connectedvmwarevsphere.OsProfileArgs{
		AdminPassword: pulumi.String("string"),
		AdminUsername: pulumi.String("string"),
		ComputerName:  pulumi.String("string"),
		GuestId:       pulumi.String("string"),
		LinuxConfiguration: &connectedvmwarevsphere.OsProfileLinuxConfigurationArgs{
			AssessmentMode: pulumi.String("string"),
			PatchMode:      pulumi.String("string"),
		},
		OsType: pulumi.String("string"),
		WindowsConfiguration: &connectedvmwarevsphere.OsProfileWindowsConfigurationArgs{
			AssessmentMode: pulumi.String("string"),
			PatchMode:      pulumi.String("string"),
		},
	},
	GuestAgentProfile: &connectedvmwarevsphere.GuestAgentProfileArgs{
		ClientPublicKey: pulumi.String("string"),
	},
	HardwareProfile: &connectedvmwarevsphere.HardwareProfileArgs{
		MemorySizeMB:      pulumi.Int(0),
		NumCPUs:           pulumi.Int(0),
		NumCoresPerSocket: pulumi.Int(0),
	},
	Identity: &connectedvmwarevsphere.IdentityArgs{
		Type: pulumi.String("string"),
	},
	InventoryItemId: pulumi.String("string"),
	Kind:            pulumi.String("string"),
	Location:        pulumi.String("string"),
	MoRefId:         pulumi.String("string"),
	ExtendedLocation: &connectedvmwarevsphere.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	NetworkProfile: &connectedvmwarevsphere.NetworkProfileArgs{
		NetworkInterfaces: connectedvmwarevsphere.NetworkInterfaceArray{
			&connectedvmwarevsphere.NetworkInterfaceArgs{
				DeviceKey: pulumi.Int(0),
				IpSettings: &connectedvmwarevsphere.NicIPSettingsArgs{
					AllocationMethod: pulumi.String("string"),
					DnsServers: pulumi.StringArray{
						pulumi.String("string"),
					},
					Gateway: pulumi.StringArray{
						pulumi.String("string"),
					},
					IpAddress:  pulumi.String("string"),
					SubnetMask: pulumi.String("string"),
				},
				Name:        pulumi.String("string"),
				NetworkId:   pulumi.String("string"),
				NicType:     pulumi.String("string"),
				PowerOnBoot: pulumi.String("string"),
			},
		},
	},
	ResourcePoolId: pulumi.String("string"),
	FirmwareType:   pulumi.String("string"),
	PlacementProfile: &connectedvmwarevsphere.PlacementProfileArgs{
		ClusterId:      pulumi.String("string"),
		DatastoreId:    pulumi.String("string"),
		HostId:         pulumi.String("string"),
		ResourcePoolId: pulumi.String("string"),
	},
	SecurityProfile: &connectedvmwarevsphere.SecurityProfileArgs{
		UefiSettings: &connectedvmwarevsphere.UefiSettingsArgs{
			SecureBootEnabled: pulumi.Bool(false),
		},
	},
	SmbiosUuid: pulumi.String("string"),
	StorageProfile: &connectedvmwarevsphere.StorageProfileArgs{
		Disks: connectedvmwarevsphere.VirtualDiskArray{
			&connectedvmwarevsphere.VirtualDiskArgs{
				ControllerKey: pulumi.Int(0),
				DeviceKey:     pulumi.Int(0),
				DeviceName:    pulumi.String("string"),
				DiskMode:      pulumi.String("string"),
				DiskSizeGB:    pulumi.Int(0),
				DiskType:      pulumi.String("string"),
				Name:          pulumi.String("string"),
				UnitNumber:    pulumi.Int(0),
			},
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TemplateId:         pulumi.String("string"),
	VCenterId:          pulumi.String("string"),
	VirtualMachineName: pulumi.String("string"),
})
Copy
var examplevirtualMachineResourceResourceFromConnectedvmwarevsphere = new com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachine("examplevirtualMachineResourceResourceFromConnectedvmwarevsphere", com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachineArgs.builder()
    .resourceGroupName("string")
    .osProfile(OsProfileArgs.builder()
        .adminPassword("string")
        .adminUsername("string")
        .computerName("string")
        .guestId("string")
        .linuxConfiguration(OsProfileLinuxConfigurationArgs.builder()
            .assessmentMode("string")
            .patchMode("string")
            .build())
        .osType("string")
        .windowsConfiguration(OsProfileWindowsConfigurationArgs.builder()
            .assessmentMode("string")
            .patchMode("string")
            .build())
        .build())
    .guestAgentProfile(GuestAgentProfileArgs.builder()
        .clientPublicKey("string")
        .build())
    .hardwareProfile(HardwareProfileArgs.builder()
        .memorySizeMB(0)
        .numCPUs(0)
        .numCoresPerSocket(0)
        .build())
    .identity(IdentityArgs.builder()
        .type("string")
        .build())
    .inventoryItemId("string")
    .kind("string")
    .location("string")
    .moRefId("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .networkProfile(NetworkProfileArgs.builder()
        .networkInterfaces(NetworkInterfaceArgs.builder()
            .deviceKey(0)
            .ipSettings(NicIPSettingsArgs.builder()
                .allocationMethod("string")
                .dnsServers("string")
                .gateway("string")
                .ipAddress("string")
                .subnetMask("string")
                .build())
            .name("string")
            .networkId("string")
            .nicType("string")
            .powerOnBoot("string")
            .build())
        .build())
    .resourcePoolId("string")
    .firmwareType("string")
    .placementProfile(PlacementProfileArgs.builder()
        .clusterId("string")
        .datastoreId("string")
        .hostId("string")
        .resourcePoolId("string")
        .build())
    .securityProfile(SecurityProfileArgs.builder()
        .uefiSettings(UefiSettingsArgs.builder()
            .secureBootEnabled(false)
            .build())
        .build())
    .smbiosUuid("string")
    .storageProfile(StorageProfileArgs.builder()
        .disks(VirtualDiskArgs.builder()
            .controllerKey(0)
            .deviceKey(0)
            .deviceName("string")
            .diskMode("string")
            .diskSizeGB(0)
            .diskType("string")
            .name("string")
            .unitNumber(0)
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .templateId("string")
    .vCenterId("string")
    .virtualMachineName("string")
    .build());
Copy
examplevirtual_machine_resource_resource_from_connectedvmwarevsphere = azure_native.connectedvmwarevsphere.VirtualMachine("examplevirtualMachineResourceResourceFromConnectedvmwarevsphere",
    resource_group_name="string",
    os_profile={
        "admin_password": "string",
        "admin_username": "string",
        "computer_name": "string",
        "guest_id": "string",
        "linux_configuration": {
            "assessment_mode": "string",
            "patch_mode": "string",
        },
        "os_type": "string",
        "windows_configuration": {
            "assessment_mode": "string",
            "patch_mode": "string",
        },
    },
    guest_agent_profile={
        "client_public_key": "string",
    },
    hardware_profile={
        "memory_size_mb": 0,
        "num_cpus": 0,
        "num_cores_per_socket": 0,
    },
    identity={
        "type": "string",
    },
    inventory_item_id="string",
    kind="string",
    location="string",
    mo_ref_id="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    network_profile={
        "network_interfaces": [{
            "device_key": 0,
            "ip_settings": {
                "allocation_method": "string",
                "dns_servers": ["string"],
                "gateway": ["string"],
                "ip_address": "string",
                "subnet_mask": "string",
            },
            "name": "string",
            "network_id": "string",
            "nic_type": "string",
            "power_on_boot": "string",
        }],
    },
    resource_pool_id="string",
    firmware_type="string",
    placement_profile={
        "cluster_id": "string",
        "datastore_id": "string",
        "host_id": "string",
        "resource_pool_id": "string",
    },
    security_profile={
        "uefi_settings": {
            "secure_boot_enabled": False,
        },
    },
    smbios_uuid="string",
    storage_profile={
        "disks": [{
            "controller_key": 0,
            "device_key": 0,
            "device_name": "string",
            "disk_mode": "string",
            "disk_size_gb": 0,
            "disk_type": "string",
            "name": "string",
            "unit_number": 0,
        }],
    },
    tags={
        "string": "string",
    },
    template_id="string",
    v_center_id="string",
    virtual_machine_name="string")
Copy
const examplevirtualMachineResourceResourceFromConnectedvmwarevsphere = new azure_native.connectedvmwarevsphere.VirtualMachine("examplevirtualMachineResourceResourceFromConnectedvmwarevsphere", {
    resourceGroupName: "string",
    osProfile: {
        adminPassword: "string",
        adminUsername: "string",
        computerName: "string",
        guestId: "string",
        linuxConfiguration: {
            assessmentMode: "string",
            patchMode: "string",
        },
        osType: "string",
        windowsConfiguration: {
            assessmentMode: "string",
            patchMode: "string",
        },
    },
    guestAgentProfile: {
        clientPublicKey: "string",
    },
    hardwareProfile: {
        memorySizeMB: 0,
        numCPUs: 0,
        numCoresPerSocket: 0,
    },
    identity: {
        type: "string",
    },
    inventoryItemId: "string",
    kind: "string",
    location: "string",
    moRefId: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    networkProfile: {
        networkInterfaces: [{
            deviceKey: 0,
            ipSettings: {
                allocationMethod: "string",
                dnsServers: ["string"],
                gateway: ["string"],
                ipAddress: "string",
                subnetMask: "string",
            },
            name: "string",
            networkId: "string",
            nicType: "string",
            powerOnBoot: "string",
        }],
    },
    resourcePoolId: "string",
    firmwareType: "string",
    placementProfile: {
        clusterId: "string",
        datastoreId: "string",
        hostId: "string",
        resourcePoolId: "string",
    },
    securityProfile: {
        uefiSettings: {
            secureBootEnabled: false,
        },
    },
    smbiosUuid: "string",
    storageProfile: {
        disks: [{
            controllerKey: 0,
            deviceKey: 0,
            deviceName: "string",
            diskMode: "string",
            diskSizeGB: 0,
            diskType: "string",
            name: "string",
            unitNumber: 0,
        }],
    },
    tags: {
        string: "string",
    },
    templateId: "string",
    vCenterId: "string",
    virtualMachineName: "string",
});
Copy
type: azure-native:connectedvmwarevsphere:VirtualMachine
properties:
    extendedLocation:
        name: string
        type: string
    firmwareType: string
    guestAgentProfile:
        clientPublicKey: string
    hardwareProfile:
        memorySizeMB: 0
        numCPUs: 0
        numCoresPerSocket: 0
    identity:
        type: string
    inventoryItemId: string
    kind: string
    location: string
    moRefId: string
    networkProfile:
        networkInterfaces:
            - deviceKey: 0
              ipSettings:
                allocationMethod: string
                dnsServers:
                    - string
                gateway:
                    - string
                ipAddress: string
                subnetMask: string
              name: string
              networkId: string
              nicType: string
              powerOnBoot: string
    osProfile:
        adminPassword: string
        adminUsername: string
        computerName: string
        guestId: string
        linuxConfiguration:
            assessmentMode: string
            patchMode: string
        osType: string
        windowsConfiguration:
            assessmentMode: string
            patchMode: string
    placementProfile:
        clusterId: string
        datastoreId: string
        hostId: string
        resourcePoolId: string
    resourceGroupName: string
    resourcePoolId: string
    securityProfile:
        uefiSettings:
            secureBootEnabled: false
    smbiosUuid: string
    storageProfile:
        disks:
            - controllerKey: 0
              deviceKey: 0
              deviceName: string
              diskMode: string
              diskSizeGB: 0
              diskType: string
              name: string
              unitNumber: 0
    tags:
        string: string
    templateId: string
    vCenterId: string
    virtualMachineName: string
Copy

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

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

The VirtualMachine resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
ExtendedLocation Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.ExtendedLocation
Gets or sets the extended location.
FirmwareType string | Pulumi.AzureNative.ConnectedVMwarevSphere.FirmwareType
Firmware type
GuestAgentProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.GuestAgentProfile
Guest agent status properties.
HardwareProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.HardwareProfile
Hardware properties.
Identity Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.Identity
The identity of the resource.
InventoryItemId string
Gets or sets the inventory Item ID for the virtual machine.
Kind string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
Location Changes to this property will trigger replacement. string
Gets or sets the location.
MoRefId string
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
NetworkProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NetworkProfile
Network properties.
OsProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.OsProfile
OS properties.
PlacementProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.PlacementProfile
Placement properties.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
SecurityProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.SecurityProfile
Gets the security profile.
SmbiosUuid string
Gets or sets the SMBIOS UUID of the vm.
StorageProfile Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.StorageProfile
Storage properties.
Tags Dictionary<string, string>
Gets or sets the Resource tags.
TemplateId string
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
VCenterId string
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
VirtualMachineName Changes to this property will trigger replacement. string
Name of the virtual machine resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
ExtendedLocation ExtendedLocationArgs
Gets or sets the extended location.
FirmwareType string | FirmwareType
Firmware type
GuestAgentProfile GuestAgentProfileArgs
Guest agent status properties.
HardwareProfile HardwareProfileArgs
Hardware properties.
Identity IdentityArgs
The identity of the resource.
InventoryItemId string
Gets or sets the inventory Item ID for the virtual machine.
Kind string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
Location Changes to this property will trigger replacement. string
Gets or sets the location.
MoRefId string
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
NetworkProfile NetworkProfileArgs
Network properties.
OsProfile OsProfileArgs
OS properties.
PlacementProfile PlacementProfileArgs
Placement properties.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
SecurityProfile SecurityProfileArgs
Gets the security profile.
SmbiosUuid string
Gets or sets the SMBIOS UUID of the vm.
StorageProfile StorageProfileArgs
Storage properties.
Tags map[string]string
Gets or sets the Resource tags.
TemplateId string
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
VCenterId string
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
VirtualMachineName Changes to this property will trigger replacement. string
Name of the virtual machine resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Resource Group Name.
extendedLocation ExtendedLocation
Gets or sets the extended location.
firmwareType String | FirmwareType
Firmware type
guestAgentProfile GuestAgentProfile
Guest agent status properties.
hardwareProfile HardwareProfile
Hardware properties.
identity Identity
The identity of the resource.
inventoryItemId String
Gets or sets the inventory Item ID for the virtual machine.
kind String
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. String
Gets or sets the location.
moRefId String
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
networkProfile NetworkProfile
Network properties.
osProfile OsProfile
OS properties.
placementProfile PlacementProfile
Placement properties.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
securityProfile SecurityProfile
Gets the security profile.
smbiosUuid String
Gets or sets the SMBIOS UUID of the vm.
storageProfile StorageProfile
Storage properties.
tags Map<String,String>
Gets or sets the Resource tags.
templateId String
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
vCenterId String
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
virtualMachineName Changes to this property will trigger replacement. String
Name of the virtual machine resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
extendedLocation ExtendedLocation
Gets or sets the extended location.
firmwareType string | FirmwareType
Firmware type
guestAgentProfile GuestAgentProfile
Guest agent status properties.
hardwareProfile HardwareProfile
Hardware properties.
identity Identity
The identity of the resource.
inventoryItemId string
Gets or sets the inventory Item ID for the virtual machine.
kind string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. string
Gets or sets the location.
moRefId string
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
networkProfile NetworkProfile
Network properties.
osProfile OsProfile
OS properties.
placementProfile PlacementProfile
Placement properties.
resourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
securityProfile SecurityProfile
Gets the security profile.
smbiosUuid string
Gets or sets the SMBIOS UUID of the vm.
storageProfile StorageProfile
Storage properties.
tags {[key: string]: string}
Gets or sets the Resource tags.
templateId string
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
vCenterId string
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
virtualMachineName Changes to this property will trigger replacement. string
Name of the virtual machine resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The Resource Group Name.
extended_location ExtendedLocationArgs
Gets or sets the extended location.
firmware_type str | FirmwareType
Firmware type
guest_agent_profile GuestAgentProfileArgs
Guest agent status properties.
hardware_profile HardwareProfileArgs
Hardware properties.
identity IdentityArgs
The identity of the resource.
inventory_item_id str
Gets or sets the inventory Item ID for the virtual machine.
kind str
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. str
Gets or sets the location.
mo_ref_id str
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
network_profile NetworkProfileArgs
Network properties.
os_profile OsProfileArgs
OS properties.
placement_profile PlacementProfileArgs
Placement properties.
resource_pool_id str
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
security_profile SecurityProfileArgs
Gets the security profile.
smbios_uuid str
Gets or sets the SMBIOS UUID of the vm.
storage_profile StorageProfileArgs
Storage properties.
tags Mapping[str, str]
Gets or sets the Resource tags.
template_id str
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
v_center_id str
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
virtual_machine_name Changes to this property will trigger replacement. str
Name of the virtual machine resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Resource Group Name.
extendedLocation Property Map
Gets or sets the extended location.
firmwareType String | "bios" | "efi"
Firmware type
guestAgentProfile Property Map
Guest agent status properties.
hardwareProfile Property Map
Hardware properties.
identity Property Map
The identity of the resource.
inventoryItemId String
Gets or sets the inventory Item ID for the virtual machine.
kind String
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. String
Gets or sets the location.
moRefId String
Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
networkProfile Property Map
Network properties.
osProfile Property Map
OS properties.
placementProfile Property Map
Placement properties.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
securityProfile Property Map
Gets the security profile.
smbiosUuid String
Gets or sets the SMBIOS UUID of the vm.
storageProfile Property Map
Storage properties.
tags Map<String>
Gets or sets the Resource tags.
templateId String
Gets or sets the ARM Id of the template resource to deploy the virtual machine.
vCenterId String
Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
virtualMachineName Changes to this property will trigger replacement. String
Name of the virtual machine resource.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
CustomResourceName string
Gets the name of the corresponding resource in Kubernetes.
FolderPath string
Gets or sets the folder path of the vm.
Id string
The provider-assigned unique ID for this managed resource.
InstanceUuid string
Gets or sets the instance uuid of the vm.
MoName string
Gets or sets the vCenter Managed Object name for the virtual machine.
Name string
Gets or sets the name.
PowerState string
Gets the power state of the virtual machine.
ProvisioningState string
Gets the provisioning state.
Statuses List<Pulumi.AzureNative.ConnectedVMwarevSphere.Outputs.ResourceStatusResponse>
The resource status information.
SystemData Pulumi.AzureNative.ConnectedVMwarevSphere.Outputs.SystemDataResponse
The system data.
Type string
Gets or sets the type of the resource.
Uuid string
Gets or sets a unique identifier for this resource.
VmId string
Gets or sets a unique identifier for the vm resource.
AzureApiVersion string
The Azure API version of the resource.
CustomResourceName string
Gets the name of the corresponding resource in Kubernetes.
FolderPath string
Gets or sets the folder path of the vm.
Id string
The provider-assigned unique ID for this managed resource.
InstanceUuid string
Gets or sets the instance uuid of the vm.
MoName string
Gets or sets the vCenter Managed Object name for the virtual machine.
Name string
Gets or sets the name.
PowerState string
Gets the power state of the virtual machine.
ProvisioningState string
Gets the provisioning state.
Statuses []ResourceStatusResponse
The resource status information.
SystemData SystemDataResponse
The system data.
Type string
Gets or sets the type of the resource.
Uuid string
Gets or sets a unique identifier for this resource.
VmId string
Gets or sets a unique identifier for the vm resource.
azureApiVersion String
The Azure API version of the resource.
customResourceName String
Gets the name of the corresponding resource in Kubernetes.
folderPath String
Gets or sets the folder path of the vm.
id String
The provider-assigned unique ID for this managed resource.
instanceUuid String
Gets or sets the instance uuid of the vm.
moName String
Gets or sets the vCenter Managed Object name for the virtual machine.
name String
Gets or sets the name.
powerState String
Gets the power state of the virtual machine.
provisioningState String
Gets the provisioning state.
statuses List<ResourceStatusResponse>
The resource status information.
systemData SystemDataResponse
The system data.
type String
Gets or sets the type of the resource.
uuid String
Gets or sets a unique identifier for this resource.
vmId String
Gets or sets a unique identifier for the vm resource.
azureApiVersion string
The Azure API version of the resource.
customResourceName string
Gets the name of the corresponding resource in Kubernetes.
folderPath string
Gets or sets the folder path of the vm.
id string
The provider-assigned unique ID for this managed resource.
instanceUuid string
Gets or sets the instance uuid of the vm.
moName string
Gets or sets the vCenter Managed Object name for the virtual machine.
name string
Gets or sets the name.
powerState string
Gets the power state of the virtual machine.
provisioningState string
Gets the provisioning state.
statuses ResourceStatusResponse[]
The resource status information.
systemData SystemDataResponse
The system data.
type string
Gets or sets the type of the resource.
uuid string
Gets or sets a unique identifier for this resource.
vmId string
Gets or sets a unique identifier for the vm resource.
azure_api_version str
The Azure API version of the resource.
custom_resource_name str
Gets the name of the corresponding resource in Kubernetes.
folder_path str
Gets or sets the folder path of the vm.
id str
The provider-assigned unique ID for this managed resource.
instance_uuid str
Gets or sets the instance uuid of the vm.
mo_name str
Gets or sets the vCenter Managed Object name for the virtual machine.
name str
Gets or sets the name.
power_state str
Gets the power state of the virtual machine.
provisioning_state str
Gets the provisioning state.
statuses Sequence[ResourceStatusResponse]
The resource status information.
system_data SystemDataResponse
The system data.
type str
Gets or sets the type of the resource.
uuid str
Gets or sets a unique identifier for this resource.
vm_id str
Gets or sets a unique identifier for the vm resource.
azureApiVersion String
The Azure API version of the resource.
customResourceName String
Gets the name of the corresponding resource in Kubernetes.
folderPath String
Gets or sets the folder path of the vm.
id String
The provider-assigned unique ID for this managed resource.
instanceUuid String
Gets or sets the instance uuid of the vm.
moName String
Gets or sets the vCenter Managed Object name for the virtual machine.
name String
Gets or sets the name.
powerState String
Gets the power state of the virtual machine.
provisioningState String
Gets the provisioning state.
statuses List<Property Map>
The resource status information.
systemData Property Map
The system data.
type String
Gets or sets the type of the resource.
uuid String
Gets or sets a unique identifier for this resource.
vmId String
Gets or sets a unique identifier for the vm resource.

Supporting Types

DiskMode
, DiskModeArgs

Persistent
persistent
Independent_persistent
independent_persistent
Independent_nonpersistent
independent_nonpersistent
DiskModePersistent
persistent
DiskMode_Independent_persistent
independent_persistent
DiskMode_Independent_nonpersistent
independent_nonpersistent
Persistent
persistent
Independent_persistent
independent_persistent
Independent_nonpersistent
independent_nonpersistent
Persistent
persistent
Independent_persistent
independent_persistent
Independent_nonpersistent
independent_nonpersistent
PERSISTENT
persistent
INDEPENDENT_PERSISTENT
independent_persistent
INDEPENDENT_NONPERSISTENT
independent_nonpersistent
"persistent"
persistent
"independent_persistent"
independent_persistent
"independent_nonpersistent"
independent_nonpersistent

DiskType
, DiskTypeArgs

Flat
flat
Pmem
pmem
Rawphysical
rawphysical
Rawvirtual
rawvirtual
Sparse
sparse
Sesparse
sesparse
Unknown
unknown
DiskTypeFlat
flat
DiskTypePmem
pmem
DiskTypeRawphysical
rawphysical
DiskTypeRawvirtual
rawvirtual
DiskTypeSparse
sparse
DiskTypeSesparse
sesparse
DiskTypeUnknown
unknown
Flat
flat
Pmem
pmem
Rawphysical
rawphysical
Rawvirtual
rawvirtual
Sparse
sparse
Sesparse
sesparse
Unknown
unknown
Flat
flat
Pmem
pmem
Rawphysical
rawphysical
Rawvirtual
rawvirtual
Sparse
sparse
Sesparse
sesparse
Unknown
unknown
FLAT
flat
PMEM
pmem
RAWPHYSICAL
rawphysical
RAWVIRTUAL
rawvirtual
SPARSE
sparse
SESPARSE
sesparse
UNKNOWN
unknown
"flat"
flat
"pmem"
pmem
"rawphysical"
rawphysical
"rawvirtual"
rawvirtual
"sparse"
sparse
"sesparse"
sesparse
"unknown"
unknown

ErrorAdditionalInfoResponse
, ErrorAdditionalInfoResponseArgs

Info This property is required. object
The additional info.
Type This property is required. string
The additional info type.
Info This property is required. interface{}
The additional info.
Type This property is required. string
The additional info type.
info This property is required. Object
The additional info.
type This property is required. String
The additional info type.
info This property is required. any
The additional info.
type This property is required. string
The additional info type.
info This property is required. Any
The additional info.
type This property is required. str
The additional info type.
info This property is required. Any
The additional info.
type This property is required. String
The additional info type.

ErrorDetailResponse
, ErrorDetailResponseArgs

AdditionalInfo This property is required. List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.ErrorAdditionalInfoResponse>
The error additional info.
Code This property is required. string
The error code.
Details This property is required. List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.ErrorDetailResponse>
The error details.
Message This property is required. string
The error message.
Target This property is required. string
The error target.
AdditionalInfo This property is required. []ErrorAdditionalInfoResponse
The error additional info.
Code This property is required. string
The error code.
Details This property is required. []ErrorDetailResponse
The error details.
Message This property is required. string
The error message.
Target This property is required. string
The error target.
additionalInfo This property is required. List<ErrorAdditionalInfoResponse>
The error additional info.
code This property is required. String
The error code.
details This property is required. List<ErrorDetailResponse>
The error details.
message This property is required. String
The error message.
target This property is required. String
The error target.
additionalInfo This property is required. ErrorAdditionalInfoResponse[]
The error additional info.
code This property is required. string
The error code.
details This property is required. ErrorDetailResponse[]
The error details.
message This property is required. string
The error message.
target This property is required. string
The error target.
additional_info This property is required. Sequence[ErrorAdditionalInfoResponse]
The error additional info.
code This property is required. str
The error code.
details This property is required. Sequence[ErrorDetailResponse]
The error details.
message This property is required. str
The error message.
target This property is required. str
The error target.
additionalInfo This property is required. List<Property Map>
The error additional info.
code This property is required. String
The error code.
details This property is required. List<Property Map>
The error details.
message This property is required. String
The error message.
target This property is required. String
The error target.

ExtendedLocation
, ExtendedLocationArgs

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

ExtendedLocationResponse
, ExtendedLocationResponseArgs

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

FirmwareType
, FirmwareTypeArgs

Bios
bios
Efi
efi
FirmwareTypeBios
bios
FirmwareTypeEfi
efi
Bios
bios
Efi
efi
Bios
bios
Efi
efi
BIOS
bios
EFI
efi
"bios"
bios
"efi"
efi

GuestAgentProfile
, GuestAgentProfileArgs

ClientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
ClientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
clientPublicKey String
Gets or sets the Public Key provided by the client for enabling guest management.
clientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
client_public_key str
Gets or sets the Public Key provided by the client for enabling guest management.
clientPublicKey String
Gets or sets the Public Key provided by the client for enabling guest management.

GuestAgentProfileResponse
, GuestAgentProfileResponseArgs

AgentVersion This property is required. string
The hybrid machine agent full version.
ErrorDetails This property is required. List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.ErrorDetailResponse>
Details about the error state.
LastStatusChange This property is required. string
The time of the last status change.
MssqlDiscovered This property is required. string
Specifies whether any MS SQL instance is discovered on the machine.
Status This property is required. string
The status of the hybrid machine agent.
VmUuid This property is required. string
Specifies the VM's unique SMBIOS ID.
ClientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
AgentVersion This property is required. string
The hybrid machine agent full version.
ErrorDetails This property is required. []ErrorDetailResponse
Details about the error state.
LastStatusChange This property is required. string
The time of the last status change.
MssqlDiscovered This property is required. string
Specifies whether any MS SQL instance is discovered on the machine.
Status This property is required. string
The status of the hybrid machine agent.
VmUuid This property is required. string
Specifies the VM's unique SMBIOS ID.
ClientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
agentVersion This property is required. String
The hybrid machine agent full version.
errorDetails This property is required. List<ErrorDetailResponse>
Details about the error state.
lastStatusChange This property is required. String
The time of the last status change.
mssqlDiscovered This property is required. String
Specifies whether any MS SQL instance is discovered on the machine.
status This property is required. String
The status of the hybrid machine agent.
vmUuid This property is required. String
Specifies the VM's unique SMBIOS ID.
clientPublicKey String
Gets or sets the Public Key provided by the client for enabling guest management.
agentVersion This property is required. string
The hybrid machine agent full version.
errorDetails This property is required. ErrorDetailResponse[]
Details about the error state.
lastStatusChange This property is required. string
The time of the last status change.
mssqlDiscovered This property is required. string
Specifies whether any MS SQL instance is discovered on the machine.
status This property is required. string
The status of the hybrid machine agent.
vmUuid This property is required. string
Specifies the VM's unique SMBIOS ID.
clientPublicKey string
Gets or sets the Public Key provided by the client for enabling guest management.
agent_version This property is required. str
The hybrid machine agent full version.
error_details This property is required. Sequence[ErrorDetailResponse]
Details about the error state.
last_status_change This property is required. str
The time of the last status change.
mssql_discovered This property is required. str
Specifies whether any MS SQL instance is discovered on the machine.
status This property is required. str
The status of the hybrid machine agent.
vm_uuid This property is required. str
Specifies the VM's unique SMBIOS ID.
client_public_key str
Gets or sets the Public Key provided by the client for enabling guest management.
agentVersion This property is required. String
The hybrid machine agent full version.
errorDetails This property is required. List<Property Map>
Details about the error state.
lastStatusChange This property is required. String
The time of the last status change.
mssqlDiscovered This property is required. String
Specifies whether any MS SQL instance is discovered on the machine.
status This property is required. String
The status of the hybrid machine agent.
vmUuid This property is required. String
Specifies the VM's unique SMBIOS ID.
clientPublicKey String
Gets or sets the Public Key provided by the client for enabling guest management.

HardwareProfile
, HardwareProfileArgs

MemorySizeMB int
Gets or sets memory size in MBs for the vm.
NumCPUs int
Gets or sets the number of vCPUs for the vm.
NumCoresPerSocket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
MemorySizeMB int
Gets or sets memory size in MBs for the vm.
NumCPUs int
Gets or sets the number of vCPUs for the vm.
NumCoresPerSocket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
memorySizeMB Integer
Gets or sets memory size in MBs for the vm.
numCPUs Integer
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket Integer
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
memorySizeMB number
Gets or sets memory size in MBs for the vm.
numCPUs number
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket number
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
memory_size_mb int
Gets or sets memory size in MBs for the vm.
num_cores_per_socket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
num_cpus int
Gets or sets the number of vCPUs for the vm.
memorySizeMB Number
Gets or sets memory size in MBs for the vm.
numCPUs Number
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket Number
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.

HardwareProfileResponse
, HardwareProfileResponseArgs

CpuHotAddEnabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
CpuHotRemoveEnabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
MemoryHotAddEnabled This property is required. bool
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
MemorySizeMB int
Gets or sets memory size in MBs for the vm.
NumCPUs int
Gets or sets the number of vCPUs for the vm.
NumCoresPerSocket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
CpuHotAddEnabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
CpuHotRemoveEnabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
MemoryHotAddEnabled This property is required. bool
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
MemorySizeMB int
Gets or sets memory size in MBs for the vm.
NumCPUs int
Gets or sets the number of vCPUs for the vm.
NumCoresPerSocket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
cpuHotAddEnabled This property is required. Boolean
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
cpuHotRemoveEnabled This property is required. Boolean
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
memoryHotAddEnabled This property is required. Boolean
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
memorySizeMB Integer
Gets or sets memory size in MBs for the vm.
numCPUs Integer
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket Integer
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
cpuHotAddEnabled This property is required. boolean
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
cpuHotRemoveEnabled This property is required. boolean
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
memoryHotAddEnabled This property is required. boolean
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
memorySizeMB number
Gets or sets memory size in MBs for the vm.
numCPUs number
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket number
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
cpu_hot_add_enabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
cpu_hot_remove_enabled This property is required. bool
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
memory_hot_add_enabled This property is required. bool
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
memory_size_mb int
Gets or sets memory size in MBs for the vm.
num_cores_per_socket int
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.
num_cpus int
Gets or sets the number of vCPUs for the vm.
cpuHotAddEnabled This property is required. Boolean
Gets or sets a value indicating whether virtual processors can be added while this virtual machine is running.
cpuHotRemoveEnabled This property is required. Boolean
Gets or sets a value indicating whether virtual processors can be removed while this virtual machine is running.
memoryHotAddEnabled This property is required. Boolean
Gets or sets a value indicating whether memory can be added while this virtual machine is running.
memorySizeMB Number
Gets or sets memory size in MBs for the vm.
numCPUs Number
Gets or sets the number of vCPUs for the vm.
numCoresPerSocket Number
Gets or sets the number of cores per socket for the vm. Defaults to 1 if unspecified.

IPAddressAllocationMethod
, IPAddressAllocationMethodArgs

Unset
unset
@Dynamic
dynamic
@Static
static
Linklayer
linklayer
Random
random
Other
other
IPAddressAllocationMethodUnset
unset
IPAddressAllocationMethodDynamic
dynamic
IPAddressAllocationMethodStatic
static
IPAddressAllocationMethodLinklayer
linklayer
IPAddressAllocationMethodRandom
random
IPAddressAllocationMethodOther
other
Unset
unset
Dynamic
dynamic
Static_
static
Linklayer
linklayer
Random
random
Other
other
Unset
unset
Dynamic
dynamic
Static
static
Linklayer
linklayer
Random
random
Other
other
UNSET
unset
DYNAMIC
dynamic
STATIC
static
LINKLAYER
linklayer
RANDOM
random
OTHER
other
"unset"
unset
"dynamic"
dynamic
"static"
static
"linklayer"
linklayer
"random"
random
"other"
other

Identity
, IdentityArgs

Type This property is required. string | Pulumi.AzureNative.ConnectedVMwarevSphere.IdentityType
The type of managed service identity.
Type This property is required. string | IdentityType
The type of managed service identity.
type This property is required. String | IdentityType
The type of managed service identity.
type This property is required. string | IdentityType
The type of managed service identity.
type This property is required. str | IdentityType
The type of managed service identity.
type This property is required. String | "None" | "SystemAssigned"
The type of managed service identity.

IdentityResponse
, IdentityResponseArgs

PrincipalId This property is required. string
The principal id of managed service identity.
TenantId This property is required. string
The tenant of managed service identity.
Type This property is required. string
The type of managed service identity.
PrincipalId This property is required. string
The principal id of managed service identity.
TenantId This property is required. string
The tenant of managed service identity.
Type This property is required. string
The type of managed service identity.
principalId This property is required. String
The principal id of managed service identity.
tenantId This property is required. String
The tenant of managed service identity.
type This property is required. String
The type of managed service identity.
principalId This property is required. string
The principal id of managed service identity.
tenantId This property is required. string
The tenant of managed service identity.
type This property is required. string
The type of managed service identity.
principal_id This property is required. str
The principal id of managed service identity.
tenant_id This property is required. str
The tenant of managed service identity.
type This property is required. str
The type of managed service identity.
principalId This property is required. String
The principal id of managed service identity.
tenantId This property is required. String
The tenant of managed service identity.
type This property is required. String
The type of managed service identity.

IdentityType
, IdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
IdentityTypeNone
None
IdentityTypeSystemAssigned
SystemAssigned
None
None
SystemAssigned
SystemAssigned
None
None
SystemAssigned
SystemAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
"None"
None
"SystemAssigned"
SystemAssigned

NICType
, NICTypeArgs

Vmxnet3
vmxnet3
Vmxnet2
vmxnet2
Vmxnet
vmxnet
E1000
e1000
E1000e
e1000e
Pcnet32
pcnet32
NICTypeVmxnet3
vmxnet3
NICTypeVmxnet2
vmxnet2
NICTypeVmxnet
vmxnet
NICTypeE1000
e1000
NICTypeE1000e
e1000e
NICTypePcnet32
pcnet32
Vmxnet3
vmxnet3
Vmxnet2
vmxnet2
Vmxnet
vmxnet
E1000
e1000
E1000e
e1000e
Pcnet32
pcnet32
Vmxnet3
vmxnet3
Vmxnet2
vmxnet2
Vmxnet
vmxnet
E1000
e1000
E1000e
e1000e
Pcnet32
pcnet32
VMXNET3
vmxnet3
VMXNET2
vmxnet2
VMXNET
vmxnet
E1000
e1000
E1000E
e1000e
PCNET32
pcnet32
"vmxnet3"
vmxnet3
"vmxnet2"
vmxnet2
"vmxnet"
vmxnet
"e1000"
e1000
"e1000e"
e1000e
"pcnet32"
pcnet32

NetworkInterface
, NetworkInterfaceArgs

DeviceKey int
Gets or sets the device key value.
IpSettings Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NicIPSettings
Gets or sets the ipsettings.
Name string
Gets or sets the name of the network interface.
NetworkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
NicType string | Pulumi.AzureNative.ConnectedVMwarevSphere.NICType
NIC type
PowerOnBoot string | Pulumi.AzureNative.ConnectedVMwarevSphere.PowerOnBootOption
Gets or sets the power on boot.
DeviceKey int
Gets or sets the device key value.
IpSettings NicIPSettings
Gets or sets the ipsettings.
Name string
Gets or sets the name of the network interface.
NetworkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
NicType string | NICType
NIC type
PowerOnBoot string | PowerOnBootOption
Gets or sets the power on boot.
deviceKey Integer
Gets or sets the device key value.
ipSettings NicIPSettings
Gets or sets the ipsettings.
name String
Gets or sets the name of the network interface.
networkId String
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType String | NICType
NIC type
powerOnBoot String | PowerOnBootOption
Gets or sets the power on boot.
deviceKey number
Gets or sets the device key value.
ipSettings NicIPSettings
Gets or sets the ipsettings.
name string
Gets or sets the name of the network interface.
networkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType string | NICType
NIC type
powerOnBoot string | PowerOnBootOption
Gets or sets the power on boot.
device_key int
Gets or sets the device key value.
ip_settings NicIPSettings
Gets or sets the ipsettings.
name str
Gets or sets the name of the network interface.
network_id str
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nic_type str | NICType
NIC type
power_on_boot str | PowerOnBootOption
Gets or sets the power on boot.
deviceKey Number
Gets or sets the device key value.
ipSettings Property Map
Gets or sets the ipsettings.
name String
Gets or sets the name of the network interface.
networkId String
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType String | "vmxnet3" | "vmxnet2" | "vmxnet" | "e1000" | "e1000e" | "pcnet32"
NIC type
powerOnBoot String | "enabled" | "disabled"
Gets or sets the power on boot.

NetworkInterfaceResponse
, NetworkInterfaceResponseArgs

IpAddresses This property is required. List<string>
Gets or sets the nic ip addresses.
Label This property is required. string
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
MacAddress This property is required. string
Gets or sets the NIC MAC address.
NetworkMoName This property is required. string
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
NetworkMoRefId This property is required. string
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
DeviceKey int
Gets or sets the device key value.
IpSettings Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NicIPSettingsResponse
Gets or sets the ipsettings.
Name string
Gets or sets the name of the network interface.
NetworkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
NicType string
NIC type
PowerOnBoot string
Gets or sets the power on boot.
IpAddresses This property is required. []string
Gets or sets the nic ip addresses.
Label This property is required. string
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
MacAddress This property is required. string
Gets or sets the NIC MAC address.
NetworkMoName This property is required. string
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
NetworkMoRefId This property is required. string
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
DeviceKey int
Gets or sets the device key value.
IpSettings NicIPSettingsResponse
Gets or sets the ipsettings.
Name string
Gets or sets the name of the network interface.
NetworkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
NicType string
NIC type
PowerOnBoot string
Gets or sets the power on boot.
ipAddresses This property is required. List<String>
Gets or sets the nic ip addresses.
label This property is required. String
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
macAddress This property is required. String
Gets or sets the NIC MAC address.
networkMoName This property is required. String
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
networkMoRefId This property is required. String
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
deviceKey Integer
Gets or sets the device key value.
ipSettings NicIPSettingsResponse
Gets or sets the ipsettings.
name String
Gets or sets the name of the network interface.
networkId String
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType String
NIC type
powerOnBoot String
Gets or sets the power on boot.
ipAddresses This property is required. string[]
Gets or sets the nic ip addresses.
label This property is required. string
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
macAddress This property is required. string
Gets or sets the NIC MAC address.
networkMoName This property is required. string
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
networkMoRefId This property is required. string
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
deviceKey number
Gets or sets the device key value.
ipSettings NicIPSettingsResponse
Gets or sets the ipsettings.
name string
Gets or sets the name of the network interface.
networkId string
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType string
NIC type
powerOnBoot string
Gets or sets the power on boot.
ip_addresses This property is required. Sequence[str]
Gets or sets the nic ip addresses.
label This property is required. str
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
mac_address This property is required. str
Gets or sets the NIC MAC address.
network_mo_name This property is required. str
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
network_mo_ref_id This property is required. str
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
device_key int
Gets or sets the device key value.
ip_settings NicIPSettingsResponse
Gets or sets the ipsettings.
name str
Gets or sets the name of the network interface.
network_id str
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nic_type str
NIC type
power_on_boot str
Gets or sets the power on boot.
ipAddresses This property is required. List<String>
Gets or sets the nic ip addresses.
label This property is required. String
Gets or sets the label of the virtual network in vCenter that the nic is connected to.
macAddress This property is required. String
Gets or sets the NIC MAC address.
networkMoName This property is required. String
Gets or sets the name of the virtual network in vCenter that the nic is connected to.
networkMoRefId This property is required. String
Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to.
deviceKey Number
Gets or sets the device key value.
ipSettings Property Map
Gets or sets the ipsettings.
name String
Gets or sets the name of the network interface.
networkId String
Gets or sets the ARM Id of the network resource to connect the virtual machine.
nicType String
NIC type
powerOnBoot String
Gets or sets the power on boot.

NetworkProfile
, NetworkProfileArgs

NetworkInterfaces List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NetworkInterface>
Gets or sets the list of network interfaces associated with the virtual machine.
NetworkInterfaces []NetworkInterface
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces List<NetworkInterface>
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces NetworkInterface[]
Gets or sets the list of network interfaces associated with the virtual machine.
network_interfaces Sequence[NetworkInterface]
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces List<Property Map>
Gets or sets the list of network interfaces associated with the virtual machine.

NetworkProfileResponse
, NetworkProfileResponseArgs

NetworkInterfaces List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NetworkInterfaceResponse>
Gets or sets the list of network interfaces associated with the virtual machine.
NetworkInterfaces []NetworkInterfaceResponse
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces List<NetworkInterfaceResponse>
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces NetworkInterfaceResponse[]
Gets or sets the list of network interfaces associated with the virtual machine.
network_interfaces Sequence[NetworkInterfaceResponse]
Gets or sets the list of network interfaces associated with the virtual machine.
networkInterfaces List<Property Map>
Gets or sets the list of network interfaces associated with the virtual machine.

NicIPAddressSettingsResponse
, NicIPAddressSettingsResponseArgs

AllocationMethod This property is required. string
Gets the ip address allocation method.
IpAddress This property is required. string
Gets the ip address for the nic.
SubnetMask This property is required. string
Gets the mask.
AllocationMethod This property is required. string
Gets the ip address allocation method.
IpAddress This property is required. string
Gets the ip address for the nic.
SubnetMask This property is required. string
Gets the mask.
allocationMethod This property is required. String
Gets the ip address allocation method.
ipAddress This property is required. String
Gets the ip address for the nic.
subnetMask This property is required. String
Gets the mask.
allocationMethod This property is required. string
Gets the ip address allocation method.
ipAddress This property is required. string
Gets the ip address for the nic.
subnetMask This property is required. string
Gets the mask.
allocation_method This property is required. str
Gets the ip address allocation method.
ip_address This property is required. str
Gets the ip address for the nic.
subnet_mask This property is required. str
Gets the mask.
allocationMethod This property is required. String
Gets the ip address allocation method.
ipAddress This property is required. String
Gets the ip address for the nic.
subnetMask This property is required. String
Gets the mask.

NicIPSettings
, NicIPSettingsArgs

AllocationMethod string | Pulumi.AzureNative.ConnectedVMwarevSphere.IPAddressAllocationMethod
Gets or sets the nic allocation method.
DnsServers List<string>
Gets or sets the dns servers.
Gateway List<string>
Gets or sets the gateway.
IpAddress string
Gets or sets the ip address for the nic.
SubnetMask string
Gets or sets the mask.
AllocationMethod string | IPAddressAllocationMethod
Gets or sets the nic allocation method.
DnsServers []string
Gets or sets the dns servers.
Gateway []string
Gets or sets the gateway.
IpAddress string
Gets or sets the ip address for the nic.
SubnetMask string
Gets or sets the mask.
allocationMethod String | IPAddressAllocationMethod
Gets or sets the nic allocation method.
dnsServers List<String>
Gets or sets the dns servers.
gateway List<String>
Gets or sets the gateway.
ipAddress String
Gets or sets the ip address for the nic.
subnetMask String
Gets or sets the mask.
allocationMethod string | IPAddressAllocationMethod
Gets or sets the nic allocation method.
dnsServers string[]
Gets or sets the dns servers.
gateway string[]
Gets or sets the gateway.
ipAddress string
Gets or sets the ip address for the nic.
subnetMask string
Gets or sets the mask.
allocation_method str | IPAddressAllocationMethod
Gets or sets the nic allocation method.
dns_servers Sequence[str]
Gets or sets the dns servers.
gateway Sequence[str]
Gets or sets the gateway.
ip_address str
Gets or sets the ip address for the nic.
subnet_mask str
Gets or sets the mask.
allocationMethod String | "unset" | "dynamic" | "static" | "linklayer" | "random" | "other"
Gets or sets the nic allocation method.
dnsServers List<String>
Gets or sets the dns servers.
gateway List<String>
Gets or sets the gateway.
ipAddress String
Gets or sets the ip address for the nic.
subnetMask String
Gets or sets the mask.

NicIPSettingsResponse
, NicIPSettingsResponseArgs

IpAddressInfo This property is required. List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.NicIPAddressSettingsResponse>
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
PrimaryWinsServer This property is required. string
Gets or sets the primary server.
SecondaryWinsServer This property is required. string
Gets or sets the secondary server.
AllocationMethod string
Gets or sets the nic allocation method.
DnsServers List<string>
Gets or sets the dns servers.
Gateway List<string>
Gets or sets the gateway.
IpAddress string
Gets or sets the ip address for the nic.
SubnetMask string
Gets or sets the mask.
IpAddressInfo This property is required. []NicIPAddressSettingsResponse
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
PrimaryWinsServer This property is required. string
Gets or sets the primary server.
SecondaryWinsServer This property is required. string
Gets or sets the secondary server.
AllocationMethod string
Gets or sets the nic allocation method.
DnsServers []string
Gets or sets the dns servers.
Gateway []string
Gets or sets the gateway.
IpAddress string
Gets or sets the ip address for the nic.
SubnetMask string
Gets or sets the mask.
ipAddressInfo This property is required. List<NicIPAddressSettingsResponse>
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
primaryWinsServer This property is required. String
Gets or sets the primary server.
secondaryWinsServer This property is required. String
Gets or sets the secondary server.
allocationMethod String
Gets or sets the nic allocation method.
dnsServers List<String>
Gets or sets the dns servers.
gateway List<String>
Gets or sets the gateway.
ipAddress String
Gets or sets the ip address for the nic.
subnetMask String
Gets or sets the mask.
ipAddressInfo This property is required. NicIPAddressSettingsResponse[]
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
primaryWinsServer This property is required. string
Gets or sets the primary server.
secondaryWinsServer This property is required. string
Gets or sets the secondary server.
allocationMethod string
Gets or sets the nic allocation method.
dnsServers string[]
Gets or sets the dns servers.
gateway string[]
Gets or sets the gateway.
ipAddress string
Gets or sets the ip address for the nic.
subnetMask string
Gets or sets the mask.
ip_address_info This property is required. Sequence[NicIPAddressSettingsResponse]
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
primary_wins_server This property is required. str
Gets or sets the primary server.
secondary_wins_server This property is required. str
Gets or sets the secondary server.
allocation_method str
Gets or sets the nic allocation method.
dns_servers Sequence[str]
Gets or sets the dns servers.
gateway Sequence[str]
Gets or sets the gateway.
ip_address str
Gets or sets the ip address for the nic.
subnet_mask str
Gets or sets the mask.
ipAddressInfo This property is required. List<Property Map>
Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information.
primaryWinsServer This property is required. String
Gets or sets the primary server.
secondaryWinsServer This property is required. String
Gets or sets the secondary server.
allocationMethod String
Gets or sets the nic allocation method.
dnsServers List<String>
Gets or sets the dns servers.
gateway List<String>
Gets or sets the gateway.
ipAddress String
Gets or sets the ip address for the nic.
subnetMask String
Gets or sets the mask.

OsProfile
, OsProfileArgs

AdminPassword string
Gets or sets administrator password.
AdminUsername string
Gets or sets administrator username.
ComputerName string
Gets or sets computer name.
GuestId string
Gets or sets the guestId.
LinuxConfiguration Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileLinuxConfiguration
Specifies the linux configuration for update management.
OsType string | Pulumi.AzureNative.ConnectedVMwarevSphere.OsType
Gets or sets the type of the os.
WindowsConfiguration Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileWindowsConfiguration
Specifies the windows configuration for update management.
AdminPassword string
Gets or sets administrator password.
AdminUsername string
Gets or sets administrator username.
ComputerName string
Gets or sets computer name.
GuestId string
Gets or sets the guestId.
LinuxConfiguration OsProfileLinuxConfiguration
Specifies the linux configuration for update management.
OsType string | OsType
Gets or sets the type of the os.
WindowsConfiguration OsProfileWindowsConfiguration
Specifies the windows configuration for update management.
adminPassword String
Gets or sets administrator password.
adminUsername String
Gets or sets administrator username.
computerName String
Gets or sets computer name.
guestId String
Gets or sets the guestId.
linuxConfiguration OsProfileLinuxConfiguration
Specifies the linux configuration for update management.
osType String | OsType
Gets or sets the type of the os.
windowsConfiguration OsProfileWindowsConfiguration
Specifies the windows configuration for update management.
adminPassword string
Gets or sets administrator password.
adminUsername string
Gets or sets administrator username.
computerName string
Gets or sets computer name.
guestId string
Gets or sets the guestId.
linuxConfiguration OsProfileLinuxConfiguration
Specifies the linux configuration for update management.
osType string | OsType
Gets or sets the type of the os.
windowsConfiguration OsProfileWindowsConfiguration
Specifies the windows configuration for update management.
admin_password str
Gets or sets administrator password.
admin_username str
Gets or sets administrator username.
computer_name str
Gets or sets computer name.
guest_id str
Gets or sets the guestId.
linux_configuration OsProfileLinuxConfiguration
Specifies the linux configuration for update management.
os_type str | OsType
Gets or sets the type of the os.
windows_configuration OsProfileWindowsConfiguration
Specifies the windows configuration for update management.
adminPassword String
Gets or sets administrator password.
adminUsername String
Gets or sets administrator username.
computerName String
Gets or sets computer name.
guestId String
Gets or sets the guestId.
linuxConfiguration Property Map
Specifies the linux configuration for update management.
osType String | "Windows" | "Linux" | "Other"
Gets or sets the type of the os.
windowsConfiguration Property Map
Specifies the windows configuration for update management.

OsProfileLinuxConfiguration
, OsProfileLinuxConfigurationArgs

AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.
assessmentMode string
Specifies the assessment mode.
patchMode string
Specifies the patch mode.
assessment_mode str
Specifies the assessment mode.
patch_mode str
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.

OsProfileResponse
, OsProfileResponseArgs

AllowExtensionOperations This property is required. bool
Gets or sets a value indicating whether the VM is ready for extension operations.
OsName This property is required. string
Gets or sets os name.
ToolsRunningStatus This property is required. string
Gets or sets the current running status of VMware Tools running in the guest operating system.
ToolsVersion This property is required. string
Gets or sets the current version of VMware Tools.
ToolsVersionStatus This property is required. string
Gets or sets the current version status of VMware Tools installed in the guest operating system.
AdminUsername string
Gets or sets administrator username.
ComputerName string
Gets or sets computer name.
GuestId string
Gets or sets the guestId.
LinuxConfiguration Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileResponseLinuxConfiguration
Specifies the linux configuration for update management.
OsType string
Gets or sets the type of the os.
WindowsConfiguration Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.OsProfileResponseWindowsConfiguration
Specifies the windows configuration for update management.
AllowExtensionOperations This property is required. bool
Gets or sets a value indicating whether the VM is ready for extension operations.
OsName This property is required. string
Gets or sets os name.
ToolsRunningStatus This property is required. string
Gets or sets the current running status of VMware Tools running in the guest operating system.
ToolsVersion This property is required. string
Gets or sets the current version of VMware Tools.
ToolsVersionStatus This property is required. string
Gets or sets the current version status of VMware Tools installed in the guest operating system.
AdminUsername string
Gets or sets administrator username.
ComputerName string
Gets or sets computer name.
GuestId string
Gets or sets the guestId.
LinuxConfiguration OsProfileResponseLinuxConfiguration
Specifies the linux configuration for update management.
OsType string
Gets or sets the type of the os.
WindowsConfiguration OsProfileResponseWindowsConfiguration
Specifies the windows configuration for update management.
allowExtensionOperations This property is required. Boolean
Gets or sets a value indicating whether the VM is ready for extension operations.
osName This property is required. String
Gets or sets os name.
toolsRunningStatus This property is required. String
Gets or sets the current running status of VMware Tools running in the guest operating system.
toolsVersion This property is required. String
Gets or sets the current version of VMware Tools.
toolsVersionStatus This property is required. String
Gets or sets the current version status of VMware Tools installed in the guest operating system.
adminUsername String
Gets or sets administrator username.
computerName String
Gets or sets computer name.
guestId String
Gets or sets the guestId.
linuxConfiguration OsProfileResponseLinuxConfiguration
Specifies the linux configuration for update management.
osType String
Gets or sets the type of the os.
windowsConfiguration OsProfileResponseWindowsConfiguration
Specifies the windows configuration for update management.
allowExtensionOperations This property is required. boolean
Gets or sets a value indicating whether the VM is ready for extension operations.
osName This property is required. string
Gets or sets os name.
toolsRunningStatus This property is required. string
Gets or sets the current running status of VMware Tools running in the guest operating system.
toolsVersion This property is required. string
Gets or sets the current version of VMware Tools.
toolsVersionStatus This property is required. string
Gets or sets the current version status of VMware Tools installed in the guest operating system.
adminUsername string
Gets or sets administrator username.
computerName string
Gets or sets computer name.
guestId string
Gets or sets the guestId.
linuxConfiguration OsProfileResponseLinuxConfiguration
Specifies the linux configuration for update management.
osType string
Gets or sets the type of the os.
windowsConfiguration OsProfileResponseWindowsConfiguration
Specifies the windows configuration for update management.
allow_extension_operations This property is required. bool
Gets or sets a value indicating whether the VM is ready for extension operations.
os_name This property is required. str
Gets or sets os name.
tools_running_status This property is required. str
Gets or sets the current running status of VMware Tools running in the guest operating system.
tools_version This property is required. str
Gets or sets the current version of VMware Tools.
tools_version_status This property is required. str
Gets or sets the current version status of VMware Tools installed in the guest operating system.
admin_username str
Gets or sets administrator username.
computer_name str
Gets or sets computer name.
guest_id str
Gets or sets the guestId.
linux_configuration OsProfileResponseLinuxConfiguration
Specifies the linux configuration for update management.
os_type str
Gets or sets the type of the os.
windows_configuration OsProfileResponseWindowsConfiguration
Specifies the windows configuration for update management.
allowExtensionOperations This property is required. Boolean
Gets or sets a value indicating whether the VM is ready for extension operations.
osName This property is required. String
Gets or sets os name.
toolsRunningStatus This property is required. String
Gets or sets the current running status of VMware Tools running in the guest operating system.
toolsVersion This property is required. String
Gets or sets the current version of VMware Tools.
toolsVersionStatus This property is required. String
Gets or sets the current version status of VMware Tools installed in the guest operating system.
adminUsername String
Gets or sets administrator username.
computerName String
Gets or sets computer name.
guestId String
Gets or sets the guestId.
linuxConfiguration Property Map
Specifies the linux configuration for update management.
osType String
Gets or sets the type of the os.
windowsConfiguration Property Map
Specifies the windows configuration for update management.

OsProfileResponseLinuxConfiguration
, OsProfileResponseLinuxConfigurationArgs

AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.
assessmentMode string
Specifies the assessment mode.
patchMode string
Specifies the patch mode.
assessment_mode str
Specifies the assessment mode.
patch_mode str
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.

OsProfileResponseWindowsConfiguration
, OsProfileResponseWindowsConfigurationArgs

AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.
assessmentMode string
Specifies the assessment mode.
patchMode string
Specifies the patch mode.
assessment_mode str
Specifies the assessment mode.
patch_mode str
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.

OsProfileWindowsConfiguration
, OsProfileWindowsConfigurationArgs

AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
AssessmentMode string
Specifies the assessment mode.
PatchMode string
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.
assessmentMode string
Specifies the assessment mode.
patchMode string
Specifies the patch mode.
assessment_mode str
Specifies the assessment mode.
patch_mode str
Specifies the patch mode.
assessmentMode String
Specifies the assessment mode.
patchMode String
Specifies the patch mode.

OsType
, OsTypeArgs

Windows
Windows
Linux
Linux
Other
Other
OsTypeWindows
Windows
OsTypeLinux
Linux
OsTypeOther
Other
Windows
Windows
Linux
Linux
Other
Other
Windows
Windows
Linux
Linux
Other
Other
WINDOWS
Windows
LINUX
Linux
OTHER
Other
"Windows"
Windows
"Linux"
Linux
"Other"
Other

PlacementProfile
, PlacementProfileArgs

ClusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
DatastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
HostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
ClusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
DatastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
HostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId String
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId String
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId String
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
cluster_id str
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastore_id str
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
host_id str
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resource_pool_id str
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId String
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId String
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId String
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.

PlacementProfileResponse
, PlacementProfileResponseArgs

ClusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
DatastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
HostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
ClusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
DatastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
HostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
ResourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId String
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId String
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId String
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId string
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId string
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId string
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId string
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
cluster_id str
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastore_id str
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
host_id str
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resource_pool_id str
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.
clusterId String
Gets or sets the ARM Id of the cluster resource on which this virtual machine will deploy.
datastoreId String
Gets or sets the ARM Id of the datastore resource on which the data for the virtual machine will be kept.
hostId String
Gets or sets the ARM Id of the host resource on which this virtual machine will deploy.
resourcePoolId String
Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy.

PowerOnBootOption
, PowerOnBootOptionArgs

Enabled
enabled
Disabled
disabled
PowerOnBootOptionEnabled
enabled
PowerOnBootOptionDisabled
disabled
Enabled
enabled
Disabled
disabled
Enabled
enabled
Disabled
disabled
ENABLED
enabled
DISABLED
disabled
"enabled"
enabled
"disabled"
disabled

ResourceStatusResponse
, ResourceStatusResponseArgs

LastUpdatedAt This property is required. string
The last update time for this condition.
Message This property is required. string
A human readable message indicating details about the status.
Reason This property is required. string
The reason for the condition's status.
Severity This property is required. string
Severity with which to treat failures of this type of condition.
Status This property is required. string
Status of the condition.
Type This property is required. string
The type of the condition.
LastUpdatedAt This property is required. string
The last update time for this condition.
Message This property is required. string
A human readable message indicating details about the status.
Reason This property is required. string
The reason for the condition's status.
Severity This property is required. string
Severity with which to treat failures of this type of condition.
Status This property is required. string
Status of the condition.
Type This property is required. string
The type of the condition.
lastUpdatedAt This property is required. String
The last update time for this condition.
message This property is required. String
A human readable message indicating details about the status.
reason This property is required. String
The reason for the condition's status.
severity This property is required. String
Severity with which to treat failures of this type of condition.
status This property is required. String
Status of the condition.
type This property is required. String
The type of the condition.
lastUpdatedAt This property is required. string
The last update time for this condition.
message This property is required. string
A human readable message indicating details about the status.
reason This property is required. string
The reason for the condition's status.
severity This property is required. string
Severity with which to treat failures of this type of condition.
status This property is required. string
Status of the condition.
type This property is required. string
The type of the condition.
last_updated_at This property is required. str
The last update time for this condition.
message This property is required. str
A human readable message indicating details about the status.
reason This property is required. str
The reason for the condition's status.
severity This property is required. str
Severity with which to treat failures of this type of condition.
status This property is required. str
Status of the condition.
type This property is required. str
The type of the condition.
lastUpdatedAt This property is required. String
The last update time for this condition.
message This property is required. String
A human readable message indicating details about the status.
reason This property is required. String
The reason for the condition's status.
severity This property is required. String
Severity with which to treat failures of this type of condition.
status This property is required. String
Status of the condition.
type This property is required. String
The type of the condition.

SecurityProfile
, SecurityProfileArgs

UefiSettings Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.UefiSettings
Specifies the security settings like secure boot used while creating the virtual machine.
UefiSettings UefiSettings
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings UefiSettings
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings UefiSettings
Specifies the security settings like secure boot used while creating the virtual machine.
uefi_settings UefiSettings
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings Property Map
Specifies the security settings like secure boot used while creating the virtual machine.

SecurityProfileResponse
, SecurityProfileResponseArgs

UefiSettings Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.UefiSettingsResponse
Specifies the security settings like secure boot used while creating the virtual machine.
UefiSettings UefiSettingsResponse
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings UefiSettingsResponse
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings UefiSettingsResponse
Specifies the security settings like secure boot used while creating the virtual machine.
uefi_settings UefiSettingsResponse
Specifies the security settings like secure boot used while creating the virtual machine.
uefiSettings Property Map
Specifies the security settings like secure boot used while creating the virtual machine.

StorageProfile
, StorageProfileArgs

Disks List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.VirtualDisk>
Gets or sets the list of virtual disks associated with the virtual machine.
Disks []VirtualDisk
Gets or sets the list of virtual disks associated with the virtual machine.
disks List<VirtualDisk>
Gets or sets the list of virtual disks associated with the virtual machine.
disks VirtualDisk[]
Gets or sets the list of virtual disks associated with the virtual machine.
disks Sequence[VirtualDisk]
Gets or sets the list of virtual disks associated with the virtual machine.
disks List<Property Map>
Gets or sets the list of virtual disks associated with the virtual machine.

StorageProfileResponse
, StorageProfileResponseArgs

ScsiControllers This property is required. List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.VirtualSCSIControllerResponse>
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
Disks List<Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.VirtualDiskResponse>
Gets or sets the list of virtual disks associated with the virtual machine.
ScsiControllers This property is required. []VirtualSCSIControllerResponse
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
Disks []VirtualDiskResponse
Gets or sets the list of virtual disks associated with the virtual machine.
scsiControllers This property is required. List<VirtualSCSIControllerResponse>
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
disks List<VirtualDiskResponse>
Gets or sets the list of virtual disks associated with the virtual machine.
scsiControllers This property is required. VirtualSCSIControllerResponse[]
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
disks VirtualDiskResponse[]
Gets or sets the list of virtual disks associated with the virtual machine.
scsi_controllers This property is required. Sequence[VirtualSCSIControllerResponse]
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
disks Sequence[VirtualDiskResponse]
Gets or sets the list of virtual disks associated with the virtual machine.
scsiControllers This property is required. List<Property Map>
Gets or sets the list of virtual SCSI controllers associated with the virtual machine.
disks List<Property Map>
Gets or sets the list of virtual disks associated with the virtual machine.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UefiSettings
, UefiSettingsArgs

SecureBootEnabled bool
Specifies whether secure boot should be enabled on the virtual machine.
SecureBootEnabled bool
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled Boolean
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled boolean
Specifies whether secure boot should be enabled on the virtual machine.
secure_boot_enabled bool
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled Boolean
Specifies whether secure boot should be enabled on the virtual machine.

UefiSettingsResponse
, UefiSettingsResponseArgs

SecureBootEnabled bool
Specifies whether secure boot should be enabled on the virtual machine.
SecureBootEnabled bool
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled Boolean
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled boolean
Specifies whether secure boot should be enabled on the virtual machine.
secure_boot_enabled bool
Specifies whether secure boot should be enabled on the virtual machine.
secureBootEnabled Boolean
Specifies whether secure boot should be enabled on the virtual machine.

VirtualDisk
, VirtualDiskArgs

ControllerKey int
Gets or sets the controller id.
DeviceKey int
Gets or sets the device key value.
DeviceName string
Gets or sets the device name.
DiskMode string | Pulumi.AzureNative.ConnectedVMwarevSphere.DiskMode
Gets or sets the disk mode.
DiskSizeGB int
Gets or sets the disk total size.
DiskType string | Pulumi.AzureNative.ConnectedVMwarevSphere.DiskType
Gets or sets the disk backing type.
Name string
Gets or sets the name of the virtual disk.
UnitNumber int
Gets or sets the unit number of the disk on the controller.
ControllerKey int
Gets or sets the controller id.
DeviceKey int
Gets or sets the device key value.
DeviceName string
Gets or sets the device name.
DiskMode string | DiskMode
Gets or sets the disk mode.
DiskSizeGB int
Gets or sets the disk total size.
DiskType string | DiskType
Gets or sets the disk backing type.
Name string
Gets or sets the name of the virtual disk.
UnitNumber int
Gets or sets the unit number of the disk on the controller.
controllerKey Integer
Gets or sets the controller id.
deviceKey Integer
Gets or sets the device key value.
deviceName String
Gets or sets the device name.
diskMode String | DiskMode
Gets or sets the disk mode.
diskSizeGB Integer
Gets or sets the disk total size.
diskType String | DiskType
Gets or sets the disk backing type.
name String
Gets or sets the name of the virtual disk.
unitNumber Integer
Gets or sets the unit number of the disk on the controller.
controllerKey number
Gets or sets the controller id.
deviceKey number
Gets or sets the device key value.
deviceName string
Gets or sets the device name.
diskMode string | DiskMode
Gets or sets the disk mode.
diskSizeGB number
Gets or sets the disk total size.
diskType string | DiskType
Gets or sets the disk backing type.
name string
Gets or sets the name of the virtual disk.
unitNumber number
Gets or sets the unit number of the disk on the controller.
controller_key int
Gets or sets the controller id.
device_key int
Gets or sets the device key value.
device_name str
Gets or sets the device name.
disk_mode str | DiskMode
Gets or sets the disk mode.
disk_size_gb int
Gets or sets the disk total size.
disk_type str | DiskType
Gets or sets the disk backing type.
name str
Gets or sets the name of the virtual disk.
unit_number int
Gets or sets the unit number of the disk on the controller.
controllerKey Number
Gets or sets the controller id.
deviceKey Number
Gets or sets the device key value.
deviceName String
Gets or sets the device name.
diskMode String | "persistent" | "independent_persistent" | "independent_nonpersistent"
Gets or sets the disk mode.
diskSizeGB Number
Gets or sets the disk total size.
diskType String | "flat" | "pmem" | "rawphysical" | "rawvirtual" | "sparse" | "sesparse" | "unknown"
Gets or sets the disk backing type.
name String
Gets or sets the name of the virtual disk.
unitNumber Number
Gets or sets the unit number of the disk on the controller.

VirtualDiskResponse
, VirtualDiskResponseArgs

DiskObjectId This property is required. string
Gets or sets the disk object id.
Label This property is required. string
Gets or sets the label of the virtual disk in vCenter.
ControllerKey int
Gets or sets the controller id.
DeviceKey int
Gets or sets the device key value.
DeviceName string
Gets or sets the device name.
DiskMode string
Gets or sets the disk mode.
DiskSizeGB int
Gets or sets the disk total size.
DiskType string
Gets or sets the disk backing type.
Name string
Gets or sets the name of the virtual disk.
UnitNumber int
Gets or sets the unit number of the disk on the controller.
DiskObjectId This property is required. string
Gets or sets the disk object id.
Label This property is required. string
Gets or sets the label of the virtual disk in vCenter.
ControllerKey int
Gets or sets the controller id.
DeviceKey int
Gets or sets the device key value.
DeviceName string
Gets or sets the device name.
DiskMode string
Gets or sets the disk mode.
DiskSizeGB int
Gets or sets the disk total size.
DiskType string
Gets or sets the disk backing type.
Name string
Gets or sets the name of the virtual disk.
UnitNumber int
Gets or sets the unit number of the disk on the controller.
diskObjectId This property is required. String
Gets or sets the disk object id.
label This property is required. String
Gets or sets the label of the virtual disk in vCenter.
controllerKey Integer
Gets or sets the controller id.
deviceKey Integer
Gets or sets the device key value.
deviceName String
Gets or sets the device name.
diskMode String
Gets or sets the disk mode.
diskSizeGB Integer
Gets or sets the disk total size.
diskType String
Gets or sets the disk backing type.
name String
Gets or sets the name of the virtual disk.
unitNumber Integer
Gets or sets the unit number of the disk on the controller.
diskObjectId This property is required. string
Gets or sets the disk object id.
label This property is required. string
Gets or sets the label of the virtual disk in vCenter.
controllerKey number
Gets or sets the controller id.
deviceKey number
Gets or sets the device key value.
deviceName string
Gets or sets the device name.
diskMode string
Gets or sets the disk mode.
diskSizeGB number
Gets or sets the disk total size.
diskType string
Gets or sets the disk backing type.
name string
Gets or sets the name of the virtual disk.
unitNumber number
Gets or sets the unit number of the disk on the controller.
disk_object_id This property is required. str
Gets or sets the disk object id.
label This property is required. str
Gets or sets the label of the virtual disk in vCenter.
controller_key int
Gets or sets the controller id.
device_key int
Gets or sets the device key value.
device_name str
Gets or sets the device name.
disk_mode str
Gets or sets the disk mode.
disk_size_gb int
Gets or sets the disk total size.
disk_type str
Gets or sets the disk backing type.
name str
Gets or sets the name of the virtual disk.
unit_number int
Gets or sets the unit number of the disk on the controller.
diskObjectId This property is required. String
Gets or sets the disk object id.
label This property is required. String
Gets or sets the label of the virtual disk in vCenter.
controllerKey Number
Gets or sets the controller id.
deviceKey Number
Gets or sets the device key value.
deviceName String
Gets or sets the device name.
diskMode String
Gets or sets the disk mode.
diskSizeGB Number
Gets or sets the disk total size.
diskType String
Gets or sets the disk backing type.
name String
Gets or sets the name of the virtual disk.
unitNumber Number
Gets or sets the unit number of the disk on the controller.

VirtualSCSIControllerResponse
, VirtualSCSIControllerResponseArgs

BusNumber int
Gets or sets the bus number of the controller.
ControllerKey int
Gets or sets the key of the controller.
ScsiCtlrUnitNumber int
Gets or sets the SCSI controller unit number.
Sharing string
Gets or sets the sharing mode.
Type string
Gets or sets the controller type.
BusNumber int
Gets or sets the bus number of the controller.
ControllerKey int
Gets or sets the key of the controller.
ScsiCtlrUnitNumber int
Gets or sets the SCSI controller unit number.
Sharing string
Gets or sets the sharing mode.
Type string
Gets or sets the controller type.
busNumber Integer
Gets or sets the bus number of the controller.
controllerKey Integer
Gets or sets the key of the controller.
scsiCtlrUnitNumber Integer
Gets or sets the SCSI controller unit number.
sharing String
Gets or sets the sharing mode.
type String
Gets or sets the controller type.
busNumber number
Gets or sets the bus number of the controller.
controllerKey number
Gets or sets the key of the controller.
scsiCtlrUnitNumber number
Gets or sets the SCSI controller unit number.
sharing string
Gets or sets the sharing mode.
type string
Gets or sets the controller type.
bus_number int
Gets or sets the bus number of the controller.
controller_key int
Gets or sets the key of the controller.
scsi_ctlr_unit_number int
Gets or sets the SCSI controller unit number.
sharing str
Gets or sets the sharing mode.
type str
Gets or sets the controller type.
busNumber Number
Gets or sets the bus number of the controller.
controllerKey Number
Gets or sets the key of the controller.
scsiCtlrUnitNumber Number
Gets or sets the SCSI controller unit number.
sharing String
Gets or sets the sharing mode.
type String
Gets or sets the controller type.

Import

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

$ pulumi import azure-native:connectedvmwarevsphere:VirtualMachine DemoVM /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi