import * as pulumi from "@pulumi/pulumi"; /** * 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](https://learn.microsoft.com/en-us/system-center/vmm/?view=sc-vmm-2022) and [Install VMM](https://learn.microsoft.com/en-us/system-center/vmm/install?view=sc-vmm-2022) for more details of `System Center Virtual Machine Manager Host Machine`. See [What is Azure Arc resource bridge](https://learn.microsoft.com/en-us/azure/azure-arc/resource-bridge/overview) and [Overview of Arc-enabled System Center Virtual Machine Manager](https://learn.microsoft.com/en-us/azure/azure-arc/system-center-virtual-machine-manager/overview) for more details of `Arc Resource Bridge/Appliance`. See [Create and manage custom locations on Azure Arc-enabled Kubernetes](https://learn.microsoft.com/en-us/azure/azure-arc/kubernetes/custom-locations) for more details of `Custom Location`. If you encounter issues while configuring, we'd recommend opening a ticket with Microsoft Support. * * ## Example Usage * * ```typescript * 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!", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ScVmm` - 2023-10-07 * * ## Import * * System Center Virtual Machine Manager Servers can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:systemcenter/virtualMachineManagerServer:VirtualMachineManagerServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.ScVmm/vmmServers/vmmServer1 * ``` */ export declare class VirtualMachineManagerServer extends pulumi.CustomResource { /** * Get an existing VirtualMachineManagerServer resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: VirtualMachineManagerServerState, opts?: pulumi.CustomResourceOptions): VirtualMachineManagerServer; /** * Returns true if the given object is an instance of VirtualMachineManagerServer. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VirtualMachineManagerServer; /** * The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ readonly customLocationId: pulumi.Output; /** * The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ readonly fqdn: pulumi.Output; /** * The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ readonly password: pulumi.Output; /** * 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. */ readonly port: pulumi.Output; /** * The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ readonly username: pulumi.Output; /** * Create a VirtualMachineManagerServer resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VirtualMachineManagerServerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VirtualMachineManagerServer resources. */ export interface VirtualMachineManagerServerState { /** * The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ customLocationId?: pulumi.Input; /** * The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ fqdn?: pulumi.Input; /** * The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ password?: pulumi.Input; /** * 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. */ port?: pulumi.Input; /** * The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ username?: pulumi.Input; } /** * The set of arguments for constructing a VirtualMachineManagerServer resource. */ export interface VirtualMachineManagerServerArgs { /** * The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ customLocationId: pulumi.Input; /** * The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ fqdn: pulumi.Input; /** * The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ password: pulumi.Input; /** * 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. */ port?: pulumi.Input; /** * The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created. */ username: pulumi.Input; }