1. Packages
  2. Azure Classic
  3. API Docs
  4. systemcenter
  5. VirtualMachineManagerServer

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.systemcenter.VirtualMachineManagerServer

Explore with Pulumi AI

Manages a System Center Virtual Machine Manager Server.

Note: By request of the service team the provider no longer automatically registering the Microsoft.ScVmm Resource Provider for this resource. To register it you can run az provider register --namespace Microsoft.ScVmm.

Note: This resource depends on an existing System Center Virtual Machine Manager Host Machine, Arc Resource Bridge and Custom Location. Installing and configuring these dependencies is outside the scope of this document. See Virtual Machine Manager documentation and Install VMM for more details of System Center Virtual Machine Manager Host Machine. See What is Azure Arc resource bridge and Overview of Arc-enabled System Center Virtual Machine Manager for more details of Arc Resource Bridge/Appliance. See Create and manage custom locations on Azure Arc-enabled Kubernetes for more details of Custom Location. If you encounter issues while configuring, we’d recommend opening a ticket with Microsoft Support.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleVirtualMachineManagerServer = new azure.systemcenter.VirtualMachineManagerServer("example", {
    name: "example-scvmmms",
    resourceGroupName: example.name,
    location: example.location,
    customLocationId: "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
    fqdn: "example.labtest",
    username: "testUser",
    password: "H@Sh1CoR3!",
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_virtual_machine_manager_server = azure.systemcenter.VirtualMachineManagerServer("example",
    name="example-scvmmms",
    resource_group_name=example.name,
    location=example.location,
    custom_location_id="/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
    fqdn="example.labtest",
    username="testUser",
    password="H@Sh1CoR3!")
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/systemcenter"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = systemcenter.NewVirtualMachineManagerServer(ctx, "example", &systemcenter.VirtualMachineManagerServerArgs{
			Name:              pulumi.String("example-scvmmms"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			CustomLocationId:  pulumi.String("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1"),
			Fqdn:              pulumi.String("example.labtest"),
			Username:          pulumi.String("testUser"),
			Password:          pulumi.String("H@Sh1CoR3!"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleVirtualMachineManagerServer = new Azure.SystemCenter.VirtualMachineManagerServer("example", new()
    {
        Name = "example-scvmmms",
        ResourceGroupName = example.Name,
        Location = example.Location,
        CustomLocationId = "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
        Fqdn = "example.labtest",
        Username = "testUser",
        Password = "H@Sh1CoR3!",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.systemcenter.VirtualMachineManagerServer;
import com.pulumi.azure.systemcenter.VirtualMachineManagerServerArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleVirtualMachineManagerServer = new VirtualMachineManagerServer("exampleVirtualMachineManagerServer", VirtualMachineManagerServerArgs.builder()
            .name("example-scvmmms")
            .resourceGroupName(example.name())
            .location(example.location())
            .customLocationId("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1")
            .fqdn("example.labtest")
            .username("testUser")
            .password("H@Sh1CoR3!")
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleVirtualMachineManagerServer:
    type: azure:systemcenter:VirtualMachineManagerServer
    name: example
    properties:
      name: example-scvmmms
      resourceGroupName: ${example.name}
      location: ${example.location}
      customLocationId: /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1
      fqdn: example.labtest
      username: testUser
      password: H@Sh1CoR3!
Copy

Create VirtualMachineManagerServer Resource

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

Constructor syntax

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

@overload
def VirtualMachineManagerServer(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                custom_location_id: Optional[str] = None,
                                fqdn: Optional[str] = None,
                                password: Optional[str] = None,
                                resource_group_name: Optional[str] = None,
                                username: Optional[str] = None,
                                location: Optional[str] = None,
                                name: Optional[str] = None,
                                port: Optional[int] = None,
                                tags: Optional[Mapping[str, str]] = None)
func NewVirtualMachineManagerServer(ctx *Context, name string, args VirtualMachineManagerServerArgs, opts ...ResourceOption) (*VirtualMachineManagerServer, error)
public VirtualMachineManagerServer(string name, VirtualMachineManagerServerArgs args, CustomResourceOptions? opts = null)
public VirtualMachineManagerServer(String name, VirtualMachineManagerServerArgs args)
public VirtualMachineManagerServer(String name, VirtualMachineManagerServerArgs args, CustomResourceOptions options)
type: azure:systemcenter:VirtualMachineManagerServer
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. VirtualMachineManagerServerArgs
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. VirtualMachineManagerServerArgs
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. VirtualMachineManagerServerArgs
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. VirtualMachineManagerServerArgs
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. VirtualMachineManagerServerArgs
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 virtualMachineManagerServerResource = new Azure.SystemCenter.VirtualMachineManagerServer("virtualMachineManagerServerResource", new()
{
    CustomLocationId = "string",
    Fqdn = "string",
    Password = "string",
    ResourceGroupName = "string",
    Username = "string",
    Location = "string",
    Name = "string",
    Port = 0,
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := systemcenter.NewVirtualMachineManagerServer(ctx, "virtualMachineManagerServerResource", &systemcenter.VirtualMachineManagerServerArgs{
	CustomLocationId:  pulumi.String("string"),
	Fqdn:              pulumi.String("string"),
	Password:          pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Username:          pulumi.String("string"),
	Location:          pulumi.String("string"),
	Name:              pulumi.String("string"),
	Port:              pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var virtualMachineManagerServerResource = new VirtualMachineManagerServer("virtualMachineManagerServerResource", VirtualMachineManagerServerArgs.builder()
    .customLocationId("string")
    .fqdn("string")
    .password("string")
    .resourceGroupName("string")
    .username("string")
    .location("string")
    .name("string")
    .port(0)
    .tags(Map.of("string", "string"))
    .build());
Copy
virtual_machine_manager_server_resource = azure.systemcenter.VirtualMachineManagerServer("virtualMachineManagerServerResource",
    custom_location_id="string",
    fqdn="string",
    password="string",
    resource_group_name="string",
    username="string",
    location="string",
    name="string",
    port=0,
    tags={
        "string": "string",
    })
Copy
const virtualMachineManagerServerResource = new azure.systemcenter.VirtualMachineManagerServer("virtualMachineManagerServerResource", {
    customLocationId: "string",
    fqdn: "string",
    password: "string",
    resourceGroupName: "string",
    username: "string",
    location: "string",
    name: "string",
    port: 0,
    tags: {
        string: "string",
    },
});
Copy
type: azure:systemcenter:VirtualMachineManagerServer
properties:
    customLocationId: string
    fqdn: string
    location: string
    name: string
    password: string
    port: 0
    resourceGroupName: string
    tags:
        string: string
    username: string
Copy

VirtualMachineManagerServer 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 VirtualMachineManagerServer resource accepts the following input properties:

CustomLocationId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Fqdn
This property is required.
Changes to this property will trigger replacement.
string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Password
This property is required.
Changes to this property will trigger replacement.
string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
Username
This property is required.
Changes to this property will trigger replacement.
string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
CustomLocationId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Fqdn
This property is required.
Changes to this property will trigger replacement.
string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Password
This property is required.
Changes to this property will trigger replacement.
string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
Username
This property is required.
Changes to this property will trigger replacement.
string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
customLocationId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn
This property is required.
Changes to this property will trigger replacement.
String
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password
This property is required.
Changes to this property will trigger replacement.
String
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
username
This property is required.
Changes to this property will trigger replacement.
String
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. Integer
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
customLocationId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn
This property is required.
Changes to this property will trigger replacement.
string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password
This property is required.
Changes to this property will trigger replacement.
string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
username
This property is required.
Changes to this property will trigger replacement.
string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. number
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
custom_location_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn
This property is required.
Changes to this property will trigger replacement.
str
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password
This property is required.
Changes to this property will trigger replacement.
str
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
username
This property is required.
Changes to this property will trigger replacement.
str
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
customLocationId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn
This property is required.
Changes to this property will trigger replacement.
String
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password
This property is required.
Changes to this property will trigger replacement.
String
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
username
This property is required.
Changes to this property will trigger replacement.
String
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. Number
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing VirtualMachineManagerServer Resource

Get an existing VirtualMachineManagerServer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: VirtualMachineManagerServerState, opts?: CustomResourceOptions): VirtualMachineManagerServer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        custom_location_id: Optional[str] = None,
        fqdn: Optional[str] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        password: Optional[str] = None,
        port: Optional[int] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        username: Optional[str] = None) -> VirtualMachineManagerServer
func GetVirtualMachineManagerServer(ctx *Context, name string, id IDInput, state *VirtualMachineManagerServerState, opts ...ResourceOption) (*VirtualMachineManagerServer, error)
public static VirtualMachineManagerServer Get(string name, Input<string> id, VirtualMachineManagerServerState? state, CustomResourceOptions? opts = null)
public static VirtualMachineManagerServer get(String name, Output<String> id, VirtualMachineManagerServerState state, CustomResourceOptions options)
resources:  _:    type: azure:systemcenter:VirtualMachineManagerServer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CustomLocationId Changes to this property will trigger replacement. string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Fqdn Changes to this property will trigger replacement. string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Password Changes to this property will trigger replacement. string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
Username Changes to this property will trigger replacement. string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
CustomLocationId Changes to this property will trigger replacement. string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Fqdn Changes to this property will trigger replacement. string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Password Changes to this property will trigger replacement. string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
Username Changes to this property will trigger replacement. string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
customLocationId Changes to this property will trigger replacement. String
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn Changes to this property will trigger replacement. String
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password Changes to this property will trigger replacement. String
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. Integer
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
username Changes to this property will trigger replacement. String
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
customLocationId Changes to this property will trigger replacement. string
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn Changes to this property will trigger replacement. string
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password Changes to this property will trigger replacement. string
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. number
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
username Changes to this property will trigger replacement. string
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
custom_location_id Changes to this property will trigger replacement. str
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn Changes to this property will trigger replacement. str
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password Changes to this property will trigger replacement. str
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. int
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
username Changes to this property will trigger replacement. str
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
customLocationId Changes to this property will trigger replacement. String
The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
fqdn Changes to this property will trigger replacement. String
The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
password Changes to this property will trigger replacement. String
The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
port Changes to this property will trigger replacement. Number
The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between 1 and 65535. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
username Changes to this property will trigger replacement. String
The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.

Import

System Center Virtual Machine Manager Servers can be imported using the resource id, e.g.

$ pulumi import azure:systemcenter/virtualMachineManagerServer:VirtualMachineManagerServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.ScVmm/vmmServers/vmmServer1
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.