VmmServer

class VmmServer : KotlinCustomResource

The VmmServers resource definition. API Version: 2020-06-05-preview.

Example Usage

CreateVMMServer

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var vmmServer = new AzureNative.ScVmm.VmmServer("vmmServer", new()
{
Credentials = new AzureNative.ScVmm.Inputs.VMMServerPropertiesCredentialsArgs
{
Password = "password",
Username = "testuser",
},
ExtendedLocation = new AzureNative.ScVmm.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso",
Type = "customLocation",
},
Fqdn = "VMM.contoso.com",
Location = "East US",
Port = 1234,
ResourceGroupName = "testrg",
VmmServerName = "ContosoVMMServer",
});
});
package main
import (
scvmm "github.com/pulumi/pulumi-azure-native-sdk/scvmm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scvmm.NewVmmServer(ctx, "vmmServer", &scvmm.VmmServerArgs{
Credentials: &scvmm.VMMServerPropertiesCredentialsArgs{
Password: pulumi.String("password"),
Username: pulumi.String("testuser"),
},
ExtendedLocation: &scvmm.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso"),
Type: pulumi.String("customLocation"),
},
Fqdn: pulumi.String("VMM.contoso.com"),
Location: pulumi.String("East US"),
Port: pulumi.Int(1234),
ResourceGroupName: pulumi.String("testrg"),
VmmServerName: pulumi.String("ContosoVMMServer"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.scvmm.VmmServer;
import com.pulumi.azurenative.scvmm.VmmServerArgs;
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 vmmServer = new VmmServer("vmmServer", VmmServerArgs.builder()
.credentials(Map.ofEntries(
Map.entry("password", "password"),
Map.entry("username", "testuser")
))
.extendedLocation(Map.ofEntries(
Map.entry("name", "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.Arc/customLocations/contoso"),
Map.entry("type", "customLocation")
))
.fqdn("VMM.contoso.com")
.location("East US")
.port(1234)
.resourceGroupName("testrg")
.vmmServerName("ContosoVMMServer")
.build());
}
}

Import

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

$ pulumi import azure-native:scvmm:VmmServer ContosoVMMServer /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.SCVMM/VMMServers/ContosoVMMServer

Properties

Link copied to clipboard

Gets or sets the connection status to the vmmServer.

Link copied to clipboard

Credentials to connect to VMMServer.

Link copied to clipboard
val errorMessage: Output<String>

Gets or sets any error message if connection to vmmServer is having any issue.

Link copied to clipboard

The extended location.

Link copied to clipboard
val fqdn: Output<String>

Fqdn is the hostname/ip of the vmmServer.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

Gets or sets the location.

Link copied to clipboard
val name: Output<String>

Resource Name

Link copied to clipboard
val port: Output<Int>?

Port is the port on which the vmmServer is listening.

Link copied to clipboard

Gets or sets the provisioning state.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The system data.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags

Link copied to clipboard
val type: Output<String>

Resource Type

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val uuid: Output<String>

Unique ID of vmmServer.

Link copied to clipboard
val version: Output<String>

Version is the version of the vmmSever.