azure-native.desktopvirtualization.HostPool
Explore with Pulumi AI
Represents a HostPool definition. API Version: 2021-02-01-preview.
Example Usage
HostPool_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var hostPool = new AzureNative.DesktopVirtualization.HostPool("hostPool", new()
    {
        Description = "des1",
        FriendlyName = "friendly",
        HostPoolName = "hostPool1",
        HostPoolType = "Pooled",
        LoadBalancerType = "BreadthFirst",
        Location = "centralus",
        MaxSessionLimit = 999999,
        MigrationRequest = new AzureNative.DesktopVirtualization.Inputs.MigrationRequestPropertiesArgs
        {
            MigrationPath = "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
            Operation = "Start",
        },
        PersonalDesktopAssignmentType = "Automatic",
        PreferredAppGroupType = "Desktop",
        RegistrationInfo = new AzureNative.DesktopVirtualization.Inputs.RegistrationInfoArgs
        {
            ExpirationTime = "2020-10-01T14:01:54.9571247Z",
            RegistrationTokenOperation = "Update",
        },
        ResourceGroupName = "resourceGroup1",
        SsoClientId = "client",
        SsoClientSecretKeyVaultPath = "https://keyvault/secret",
        SsoSecretType = "SharedKey",
        SsoadfsAuthority = "https://adfs",
        StartVMOnConnect = false,
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
        VmTemplate = "{json:json}",
    });
});
package main
import (
	desktopvirtualization "github.com/pulumi/pulumi-azure-native-sdk/desktopvirtualization"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := desktopvirtualization.NewHostPool(ctx, "hostPool", &desktopvirtualization.HostPoolArgs{
			Description:      pulumi.String("des1"),
			FriendlyName:     pulumi.String("friendly"),
			HostPoolName:     pulumi.String("hostPool1"),
			HostPoolType:     pulumi.String("Pooled"),
			LoadBalancerType: pulumi.String("BreadthFirst"),
			Location:         pulumi.String("centralus"),
			MaxSessionLimit:  pulumi.Int(999999),
			MigrationRequest: &desktopvirtualization.MigrationRequestPropertiesArgs{
				MigrationPath: pulumi.String("TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}"),
				Operation:     pulumi.String("Start"),
			},
			PersonalDesktopAssignmentType: pulumi.String("Automatic"),
			PreferredAppGroupType:         pulumi.String("Desktop"),
			RegistrationInfo: &desktopvirtualization.RegistrationInfoArgs{
				ExpirationTime:             pulumi.String("2020-10-01T14:01:54.9571247Z"),
				RegistrationTokenOperation: pulumi.String("Update"),
			},
			ResourceGroupName:           pulumi.String("resourceGroup1"),
			SsoClientId:                 pulumi.String("client"),
			SsoClientSecretKeyVaultPath: pulumi.String("https://keyvault/secret"),
			SsoSecretType:               pulumi.String("SharedKey"),
			SsoadfsAuthority:            pulumi.String("https://adfs"),
			StartVMOnConnect:            pulumi.Bool(false),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
			VmTemplate: pulumi.String("{json:json}"),
		})
		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.desktopvirtualization.HostPool;
import com.pulumi.azurenative.desktopvirtualization.HostPoolArgs;
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 hostPool = new HostPool("hostPool", HostPoolArgs.builder()        
            .description("des1")
            .friendlyName("friendly")
            .hostPoolName("hostPool1")
            .hostPoolType("Pooled")
            .loadBalancerType("BreadthFirst")
            .location("centralus")
            .maxSessionLimit(999999)
            .migrationRequest(Map.ofEntries(
                Map.entry("migrationPath", "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}"),
                Map.entry("operation", "Start")
            ))
            .personalDesktopAssignmentType("Automatic")
            .preferredAppGroupType("Desktop")
            .registrationInfo(Map.ofEntries(
                Map.entry("expirationTime", "2020-10-01T14:01:54.9571247Z"),
                Map.entry("registrationTokenOperation", "Update")
            ))
            .resourceGroupName("resourceGroup1")
            .ssoClientId("client")
            .ssoClientSecretKeyVaultPath("https://keyvault/secret")
            .ssoSecretType("SharedKey")
            .ssoadfsAuthority("https://adfs")
            .startVMOnConnect(false)
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .vmTemplate("{json:json}")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hostPool = new azure_native.desktopvirtualization.HostPool("hostPool", {
    description: "des1",
    friendlyName: "friendly",
    hostPoolName: "hostPool1",
    hostPoolType: "Pooled",
    loadBalancerType: "BreadthFirst",
    location: "centralus",
    maxSessionLimit: 999999,
    migrationRequest: {
        migrationPath: "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
        operation: "Start",
    },
    personalDesktopAssignmentType: "Automatic",
    preferredAppGroupType: "Desktop",
    registrationInfo: {
        expirationTime: "2020-10-01T14:01:54.9571247Z",
        registrationTokenOperation: "Update",
    },
    resourceGroupName: "resourceGroup1",
    ssoClientId: "client",
    ssoClientSecretKeyVaultPath: "https://keyvault/secret",
    ssoSecretType: "SharedKey",
    ssoadfsAuthority: "https://adfs",
    startVMOnConnect: false,
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
    vmTemplate: "{json:json}",
});
import pulumi
import pulumi_azure_native as azure_native
host_pool = azure_native.desktopvirtualization.HostPool("hostPool",
    description="des1",
    friendly_name="friendly",
    host_pool_name="hostPool1",
    host_pool_type="Pooled",
    load_balancer_type="BreadthFirst",
    location="centralus",
    max_session_limit=999999,
    migration_request=azure_native.desktopvirtualization.MigrationRequestPropertiesArgs(
        migration_path="TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
        operation="Start",
    ),
    personal_desktop_assignment_type="Automatic",
    preferred_app_group_type="Desktop",
    registration_info=azure_native.desktopvirtualization.RegistrationInfoArgs(
        expiration_time="2020-10-01T14:01:54.9571247Z",
        registration_token_operation="Update",
    ),
    resource_group_name="resourceGroup1",
    sso_client_id="client",
    sso_client_secret_key_vault_path="https://keyvault/secret",
    sso_secret_type="SharedKey",
    ssoadfs_authority="https://adfs",
    start_vm_on_connect=False,
    tags={
        "tag1": "value1",
        "tag2": "value2",
    },
    vm_template="{json:json}")
resources:
  hostPool:
    type: azure-native:desktopvirtualization:HostPool
    properties:
      description: des1
      friendlyName: friendly
      hostPoolName: hostPool1
      hostPoolType: Pooled
      loadBalancerType: BreadthFirst
      location: centralus
      maxSessionLimit: 999999
      migrationRequest:
        migrationPath: TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}
        operation: Start
      personalDesktopAssignmentType: Automatic
      preferredAppGroupType: Desktop
      registrationInfo:
        expirationTime: 2020-10-01T14:01:54.9571247Z
        registrationTokenOperation: Update
      resourceGroupName: resourceGroup1
      ssoClientId: client
      ssoClientSecretKeyVaultPath: https://keyvault/secret
      ssoSecretType: SharedKey
      ssoadfsAuthority: https://adfs
      startVMOnConnect: false
      tags:
        tag1: value1
        tag2: value2
      vmTemplate: '{json:json}'
Create HostPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HostPool(name: string, args: HostPoolArgs, opts?: CustomResourceOptions);@overload
def HostPool(resource_name: str,
             args: HostPoolArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def HostPool(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             host_pool_type: Optional[Union[str, HostPoolType]] = None,
             resource_group_name: Optional[str] = None,
             preferred_app_group_type: Optional[Union[str, PreferredAppGroupType]] = None,
             load_balancer_type: Optional[Union[str, LoadBalancerType]] = None,
             personal_desktop_assignment_type: Optional[Union[str, PersonalDesktopAssignmentType]] = None,
             registration_info: Optional[RegistrationInfoArgs] = None,
             kind: Optional[str] = None,
             host_pool_name: Optional[str] = None,
             location: Optional[str] = None,
             managed_by: Optional[str] = None,
             max_session_limit: Optional[int] = None,
             migration_request: Optional[MigrationRequestPropertiesArgs] = None,
             custom_rdp_property: Optional[str] = None,
             plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
             friendly_name: Optional[str] = None,
             identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
             description: Optional[str] = None,
             ring: Optional[int] = None,
             sku: Optional[ResourceModelWithAllowedPropertySetSkuArgs] = None,
             sso_client_id: Optional[str] = None,
             sso_client_secret_key_vault_path: Optional[str] = None,
             sso_secret_type: Optional[Union[str, SSOSecretType]] = None,
             ssoadfs_authority: Optional[str] = None,
             start_vm_on_connect: Optional[bool] = None,
             tags: Optional[Mapping[str, str]] = None,
             validation_environment: Optional[bool] = None,
             vm_template: Optional[str] = None)func NewHostPool(ctx *Context, name string, args HostPoolArgs, opts ...ResourceOption) (*HostPool, error)public HostPool(string name, HostPoolArgs args, CustomResourceOptions? opts = null)
public HostPool(String name, HostPoolArgs args)
public HostPool(String name, HostPoolArgs args, CustomResourceOptions options)
type: azure-native:desktopvirtualization:HostPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args HostPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HostPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HostPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HostPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HostPoolArgs
- 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 hostPoolResource = new AzureNative.Desktopvirtualization.HostPool("hostPoolResource", new()
{
    HostPoolType = "string",
    ResourceGroupName = "string",
    PreferredAppGroupType = "string",
    LoadBalancerType = "string",
    PersonalDesktopAssignmentType = "string",
    RegistrationInfo = 
    {
        { "expirationTime", "string" },
        { "registrationTokenOperation", "string" },
        { "token", "string" },
    },
    Kind = "string",
    HostPoolName = "string",
    Location = "string",
    ManagedBy = "string",
    MaxSessionLimit = 0,
    MigrationRequest = 
    {
        { "migrationPath", "string" },
        { "operation", "string" },
    },
    CustomRdpProperty = "string",
    Plan = 
    {
        { "name", "string" },
        { "product", "string" },
        { "publisher", "string" },
        { "promotionCode", "string" },
        { "version", "string" },
    },
    FriendlyName = "string",
    Identity = 
    {
        { "type", "SystemAssigned" },
    },
    Description = "string",
    Ring = 0,
    Sku = 
    {
        { "name", "string" },
        { "capacity", 0 },
        { "family", "string" },
        { "size", "string" },
        { "tier", "Free" },
    },
    SsoClientId = "string",
    SsoClientSecretKeyVaultPath = "string",
    SsoSecretType = "string",
    SsoadfsAuthority = "string",
    StartVMOnConnect = false,
    Tags = 
    {
        { "string", "string" },
    },
    ValidationEnvironment = false,
    VmTemplate = "string",
});
example, err := desktopvirtualization.NewHostPool(ctx, "hostPoolResource", &desktopvirtualization.HostPoolArgs{
	HostPoolType:                  "string",
	ResourceGroupName:             "string",
	PreferredAppGroupType:         "string",
	LoadBalancerType:              "string",
	PersonalDesktopAssignmentType: "string",
	RegistrationInfo: map[string]interface{}{
		"expirationTime":             "string",
		"registrationTokenOperation": "string",
		"token":                      "string",
	},
	Kind:            "string",
	HostPoolName:    "string",
	Location:        "string",
	ManagedBy:       "string",
	MaxSessionLimit: 0,
	MigrationRequest: map[string]interface{}{
		"migrationPath": "string",
		"operation":     "string",
	},
	CustomRdpProperty: "string",
	Plan: map[string]interface{}{
		"name":          "string",
		"product":       "string",
		"publisher":     "string",
		"promotionCode": "string",
		"version":       "string",
	},
	FriendlyName: "string",
	Identity: map[string]interface{}{
		"type": "SystemAssigned",
	},
	Description: "string",
	Ring:        0,
	Sku: map[string]interface{}{
		"name":     "string",
		"capacity": 0,
		"family":   "string",
		"size":     "string",
		"tier":     "Free",
	},
	SsoClientId:                 "string",
	SsoClientSecretKeyVaultPath: "string",
	SsoSecretType:               "string",
	SsoadfsAuthority:            "string",
	StartVMOnConnect:            false,
	Tags: map[string]interface{}{
		"string": "string",
	},
	ValidationEnvironment: false,
	VmTemplate:            "string",
})
var hostPoolResource = new HostPool("hostPoolResource", HostPoolArgs.builder()
    .hostPoolType("string")
    .resourceGroupName("string")
    .preferredAppGroupType("string")
    .loadBalancerType("string")
    .personalDesktopAssignmentType("string")
    .registrationInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kind("string")
    .hostPoolName("string")
    .location("string")
    .managedBy("string")
    .maxSessionLimit(0)
    .migrationRequest(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .customRdpProperty("string")
    .plan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .friendlyName("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .description("string")
    .ring(0)
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .ssoClientId("string")
    .ssoClientSecretKeyVaultPath("string")
    .ssoSecretType("string")
    .ssoadfsAuthority("string")
    .startVMOnConnect(false)
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .validationEnvironment(false)
    .vmTemplate("string")
    .build());
host_pool_resource = azure_native.desktopvirtualization.HostPool("hostPoolResource",
    host_pool_type=string,
    resource_group_name=string,
    preferred_app_group_type=string,
    load_balancer_type=string,
    personal_desktop_assignment_type=string,
    registration_info={
        expirationTime: string,
        registrationTokenOperation: string,
        token: string,
    },
    kind=string,
    host_pool_name=string,
    location=string,
    managed_by=string,
    max_session_limit=0,
    migration_request={
        migrationPath: string,
        operation: string,
    },
    custom_rdp_property=string,
    plan={
        name: string,
        product: string,
        publisher: string,
        promotionCode: string,
        version: string,
    },
    friendly_name=string,
    identity={
        type: SystemAssigned,
    },
    description=string,
    ring=0,
    sku={
        name: string,
        capacity: 0,
        family: string,
        size: string,
        tier: Free,
    },
    sso_client_id=string,
    sso_client_secret_key_vault_path=string,
    sso_secret_type=string,
    ssoadfs_authority=string,
    start_vm_on_connect=False,
    tags={
        string: string,
    },
    validation_environment=False,
    vm_template=string)
const hostPoolResource = new azure_native.desktopvirtualization.HostPool("hostPoolResource", {
    hostPoolType: "string",
    resourceGroupName: "string",
    preferredAppGroupType: "string",
    loadBalancerType: "string",
    personalDesktopAssignmentType: "string",
    registrationInfo: {
        expirationTime: "string",
        registrationTokenOperation: "string",
        token: "string",
    },
    kind: "string",
    hostPoolName: "string",
    location: "string",
    managedBy: "string",
    maxSessionLimit: 0,
    migrationRequest: {
        migrationPath: "string",
        operation: "string",
    },
    customRdpProperty: "string",
    plan: {
        name: "string",
        product: "string",
        publisher: "string",
        promotionCode: "string",
        version: "string",
    },
    friendlyName: "string",
    identity: {
        type: "SystemAssigned",
    },
    description: "string",
    ring: 0,
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: "Free",
    },
    ssoClientId: "string",
    ssoClientSecretKeyVaultPath: "string",
    ssoSecretType: "string",
    ssoadfsAuthority: "string",
    startVMOnConnect: false,
    tags: {
        string: "string",
    },
    validationEnvironment: false,
    vmTemplate: "string",
});
type: azure-native:desktopvirtualization:HostPool
properties:
    customRdpProperty: string
    description: string
    friendlyName: string
    hostPoolName: string
    hostPoolType: string
    identity:
        type: SystemAssigned
    kind: string
    loadBalancerType: string
    location: string
    managedBy: string
    maxSessionLimit: 0
    migrationRequest:
        migrationPath: string
        operation: string
    personalDesktopAssignmentType: string
    plan:
        name: string
        product: string
        promotionCode: string
        publisher: string
        version: string
    preferredAppGroupType: string
    registrationInfo:
        expirationTime: string
        registrationTokenOperation: string
        token: string
    resourceGroupName: string
    ring: 0
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    ssoClientId: string
    ssoClientSecretKeyVaultPath: string
    ssoSecretType: string
    ssoadfsAuthority: string
    startVMOnConnect: false
    tags:
        string: string
    validationEnvironment: false
    vmTemplate: string
HostPool 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 HostPool resource accepts the following input properties:
- HostPool string | Pulumi.Type Azure Native. Desktop Virtualization. Host Pool Type 
- HostPool type for desktop.
- LoadBalancer string | Pulumi.Type Azure Native. Desktop Virtualization. Load Balancer Type 
- The type of the load balancer.
- PreferredApp string | Pulumi.Group Type Azure Native. Desktop Virtualization. Preferred App Group Type 
- The type of preferred application group type, default to Desktop Application Group
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- CustomRdp stringProperty 
- Custom rdp property of HostPool.
- Description string
- Description of HostPool.
- FriendlyName string
- Friendly name of HostPool.
- HostPool stringName 
- The name of the host pool within the specified resource group
- Identity
Pulumi.Azure Native. Desktop Virtualization. Inputs. Resource Model With Allowed Property Set Identity 
- 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 string
- The geo-location where the resource lives
- ManagedBy string
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- MaxSession intLimit 
- The max session limit of HostPool.
- MigrationRequest Pulumi.Azure Native. Desktop Virtualization. Inputs. Migration Request Properties 
- The registration info of HostPool.
- PersonalDesktop string | Pulumi.Assignment Type Azure Native. Desktop Virtualization. Personal Desktop Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- Plan
Pulumi.Azure Native. Desktop Virtualization. Inputs. Resource Model With Allowed Property Set Plan 
- RegistrationInfo Pulumi.Azure Native. Desktop Virtualization. Inputs. Registration Info 
- The registration info of HostPool.
- Ring int
- The ring number of HostPool.
- Sku
Pulumi.Azure Native. Desktop Virtualization. Inputs. Resource Model With Allowed Property Set Sku 
- SsoClient stringId 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- SsoClient stringSecret Key Vault Path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- SsoSecret string | Pulumi.Type Azure Native. Desktop Virtualization. SSOSecret Type 
- The type of single sign on Secret Type.
- string
- URL to customer ADFS server for signing WVD SSO certificates.
- StartVMOn boolConnect 
- The flag to turn on/off StartVMOnConnect feature.
- Dictionary<string, string>
- Resource tags.
- ValidationEnvironment bool
- Is validation environment.
- VmTemplate string
- VM template for sessionhosts configuration within hostpool.
- HostPool string | HostType Pool Type 
- HostPool type for desktop.
- LoadBalancer string | LoadType Balancer Type 
- The type of the load balancer.
- PreferredApp string | PreferredGroup Type App Group Type 
- The type of preferred application group type, default to Desktop Application Group
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- CustomRdp stringProperty 
- Custom rdp property of HostPool.
- Description string
- Description of HostPool.
- FriendlyName string
- Friendly name of HostPool.
- HostPool stringName 
- The name of the host pool within the specified resource group
- Identity
ResourceModel With Allowed Property Set Identity Args 
- 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 string
- The geo-location where the resource lives
- ManagedBy string
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- MaxSession intLimit 
- The max session limit of HostPool.
- MigrationRequest MigrationRequest Properties Args 
- The registration info of HostPool.
- PersonalDesktop string | PersonalAssignment Type Desktop Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- Plan
ResourceModel With Allowed Property Set Plan Args 
- RegistrationInfo RegistrationInfo Args 
- The registration info of HostPool.
- Ring int
- The ring number of HostPool.
- Sku
ResourceModel With Allowed Property Set Sku Args 
- SsoClient stringId 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- SsoClient stringSecret Key Vault Path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- SsoSecret string | SSOSecretType Type 
- The type of single sign on Secret Type.
- string
- URL to customer ADFS server for signing WVD SSO certificates.
- StartVMOn boolConnect 
- The flag to turn on/off StartVMOnConnect feature.
- map[string]string
- Resource tags.
- ValidationEnvironment bool
- Is validation environment.
- VmTemplate string
- VM template for sessionhosts configuration within hostpool.
- hostPool String | HostType Pool Type 
- HostPool type for desktop.
- loadBalancer String | LoadType Balancer Type 
- The type of the load balancer.
- preferredApp String | PreferredGroup Type App Group Type 
- The type of preferred application group type, default to Desktop Application Group
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- customRdp StringProperty 
- Custom rdp property of HostPool.
- description String
- Description of HostPool.
- friendlyName String
- Friendly name of HostPool.
- hostPool StringName 
- The name of the host pool within the specified resource group
- identity
ResourceModel With Allowed Property Set Identity 
- 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 String
- The geo-location where the resource lives
- managedBy String
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- maxSession IntegerLimit 
- The max session limit of HostPool.
- migrationRequest MigrationRequest Properties 
- The registration info of HostPool.
- personalDesktop String | PersonalAssignment Type Desktop Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- plan
ResourceModel With Allowed Property Set Plan 
- registrationInfo RegistrationInfo 
- The registration info of HostPool.
- ring Integer
- The ring number of HostPool.
- sku
ResourceModel With Allowed Property Set Sku 
- ssoClient StringId 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- ssoClient StringSecret Key Vault Path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- ssoSecret String | SSOSecretType Type 
- The type of single sign on Secret Type.
- String
- URL to customer ADFS server for signing WVD SSO certificates.
- startVMOn BooleanConnect 
- The flag to turn on/off StartVMOnConnect feature.
- Map<String,String>
- Resource tags.
- validationEnvironment Boolean
- Is validation environment.
- vmTemplate String
- VM template for sessionhosts configuration within hostpool.
- hostPool string | HostType Pool Type 
- HostPool type for desktop.
- loadBalancer string | LoadType Balancer Type 
- The type of the load balancer.
- preferredApp string | PreferredGroup Type App Group Type 
- The type of preferred application group type, default to Desktop Application Group
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- customRdp stringProperty 
- Custom rdp property of HostPool.
- description string
- Description of HostPool.
- friendlyName string
- Friendly name of HostPool.
- hostPool stringName 
- The name of the host pool within the specified resource group
- identity
ResourceModel With Allowed Property Set Identity 
- 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 string
- The geo-location where the resource lives
- managedBy string
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- maxSession numberLimit 
- The max session limit of HostPool.
- migrationRequest MigrationRequest Properties 
- The registration info of HostPool.
- personalDesktop string | PersonalAssignment Type Desktop Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- plan
ResourceModel With Allowed Property Set Plan 
- registrationInfo RegistrationInfo 
- The registration info of HostPool.
- ring number
- The ring number of HostPool.
- sku
ResourceModel With Allowed Property Set Sku 
- ssoClient stringId 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- ssoClient stringSecret Key Vault Path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- ssoSecret string | SSOSecretType Type 
- The type of single sign on Secret Type.
- string
- URL to customer ADFS server for signing WVD SSO certificates.
- startVMOn booleanConnect 
- The flag to turn on/off StartVMOnConnect feature.
- {[key: string]: string}
- Resource tags.
- validationEnvironment boolean
- Is validation environment.
- vmTemplate string
- VM template for sessionhosts configuration within hostpool.
- host_pool_ str | Hosttype Pool Type 
- HostPool type for desktop.
- load_balancer_ str | Loadtype Balancer Type 
- The type of the load balancer.
- preferred_app_ str | Preferredgroup_ type App Group Type 
- The type of preferred application group type, default to Desktop Application Group
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- custom_rdp_ strproperty 
- Custom rdp property of HostPool.
- description str
- Description of HostPool.
- friendly_name str
- Friendly name of HostPool.
- host_pool_ strname 
- The name of the host pool within the specified resource group
- identity
ResourceModel With Allowed Property Set Identity Args 
- 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 str
- The geo-location where the resource lives
- managed_by str
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- max_session_ intlimit 
- The max session limit of HostPool.
- migration_request MigrationRequest Properties Args 
- The registration info of HostPool.
- personal_desktop_ str | Personalassignment_ type Desktop Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- plan
ResourceModel With Allowed Property Set Plan Args 
- registration_info RegistrationInfo Args 
- The registration info of HostPool.
- ring int
- The ring number of HostPool.
- sku
ResourceModel With Allowed Property Set Sku Args 
- sso_client_ strid 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- sso_client_ strsecret_ key_ vault_ path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- sso_secret_ str | SSOSecrettype Type 
- The type of single sign on Secret Type.
- str
- URL to customer ADFS server for signing WVD SSO certificates.
- start_vm_ boolon_ connect 
- The flag to turn on/off StartVMOnConnect feature.
- Mapping[str, str]
- Resource tags.
- validation_environment bool
- Is validation environment.
- vm_template str
- VM template for sessionhosts configuration within hostpool.
- hostPool String | "Personal" | "Pooled" | "BYODesktop"Type 
- HostPool type for desktop.
- loadBalancer String | "BreadthType First" | "Depth First" | "Persistent" 
- The type of the load balancer.
- preferredApp String | "None" | "Desktop" | "RailGroup Type Applications" 
- The type of preferred application group type, default to Desktop Application Group
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- customRdp StringProperty 
- Custom rdp property of HostPool.
- description String
- Description of HostPool.
- friendlyName String
- Friendly name of HostPool.
- hostPool StringName 
- The name of the host pool within the specified resource group
- identity Property Map
- 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 String
- The geo-location where the resource lives
- managedBy String
- The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
- maxSession NumberLimit 
- The max session limit of HostPool.
- migrationRequest Property Map
- The registration info of HostPool.
- personalDesktop String | "Automatic" | "Direct"Assignment Type 
- PersonalDesktopAssignment type for HostPool.
- plan Property Map
- registrationInfo Property Map
- The registration info of HostPool.
- ring Number
- The ring number of HostPool.
- sku Property Map
- ssoClient StringId 
- ClientId for the registered Relying Party used to issue WVD SSO certificates.
- ssoClient StringSecret Key Vault Path 
- Path to Azure KeyVault storing the secret used for communication to ADFS.
- ssoSecret String | "SharedType Key" | "Certificate" | "Shared Key In Key Vault" | "Certificate In Key Vault" 
- The type of single sign on Secret Type.
- String
- URL to customer ADFS server for signing WVD SSO certificates.
- startVMOn BooleanConnect 
- The flag to turn on/off StartVMOnConnect feature.
- Map<String>
- Resource tags.
- validationEnvironment Boolean
- Is validation environment.
- vmTemplate String
- VM template for sessionhosts configuration within hostpool.
Outputs
All input properties are implicitly available as output properties. Additionally, the HostPool resource produces the following output properties:
- ApplicationGroup List<string>References 
- List of applicationGroup links.
- CloudPc boolResource 
- Is cloud pc resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ObjectId string
- ObjectId of HostPool. (internal use)
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- ApplicationGroup []stringReferences 
- List of applicationGroup links.
- CloudPc boolResource 
- Is cloud pc resource.
- Etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ObjectId string
- ObjectId of HostPool. (internal use)
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- applicationGroup List<String>References 
- List of applicationGroup links.
- cloudPc BooleanResource 
- Is cloud pc resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- objectId String
- ObjectId of HostPool. (internal use)
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- applicationGroup string[]References 
- List of applicationGroup links.
- cloudPc booleanResource 
- Is cloud pc resource.
- etag string
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- objectId string
- ObjectId of HostPool. (internal use)
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- application_group_ Sequence[str]references 
- List of applicationGroup links.
- cloud_pc_ boolresource 
- Is cloud pc resource.
- etag str
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- object_id str
- ObjectId of HostPool. (internal use)
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- applicationGroup List<String>References 
- List of applicationGroup links.
- cloudPc BooleanResource 
- Is cloud pc resource.
- etag String
- The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- objectId String
- ObjectId of HostPool. (internal use)
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
HostPoolType, HostPoolTypeArgs      
- Personal
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- Pooled
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- BYODesktop
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
- HostPool Type Personal 
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- HostPool Type Pooled 
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- HostPool Type BYODesktop 
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
- Personal
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- Pooled
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- BYODesktop
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
- Personal
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- Pooled
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- BYODesktop
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
- PERSONAL
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- POOLED
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- BYO_DESKTOP
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
- "Personal"
- PersonalUsers will be assigned a SessionHost either by administrators (PersonalDesktopAssignmentType = Direct) or upon connecting to the pool (PersonalDesktopAssignmentType = Automatic). They will always be redirected to their assigned SessionHost.
- "Pooled"
- PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- "BYODesktop"
- BYODesktopUsers assign their own machines, load balancing logic remains the same as Personal. PersonalDesktopAssignmentType must be Direct.
LoadBalancerType, LoadBalancerTypeArgs      
- BreadthFirst 
- BreadthFirst
- DepthFirst 
- DepthFirst
- Persistent
- Persistent
- LoadBalancer Type Breadth First 
- BreadthFirst
- LoadBalancer Type Depth First 
- DepthFirst
- LoadBalancer Type Persistent 
- Persistent
- BreadthFirst 
- BreadthFirst
- DepthFirst 
- DepthFirst
- Persistent
- Persistent
- BreadthFirst 
- BreadthFirst
- DepthFirst 
- DepthFirst
- Persistent
- Persistent
- BREADTH_FIRST
- BreadthFirst
- DEPTH_FIRST
- DepthFirst
- PERSISTENT
- Persistent
- "BreadthFirst" 
- BreadthFirst
- "DepthFirst" 
- DepthFirst
- "Persistent"
- Persistent
MigrationRequestProperties, MigrationRequestPropertiesArgs      
- MigrationPath string
- The path to the legacy object to migrate.
- Operation
string | Pulumi.Azure Native. Desktop Virtualization. Operation 
- The type of operation for migration.
- MigrationPath string
- The path to the legacy object to migrate.
- Operation string | Operation
- The type of operation for migration.
- migrationPath String
- The path to the legacy object to migrate.
- operation String | Operation
- The type of operation for migration.
- migrationPath string
- The path to the legacy object to migrate.
- operation string | Operation
- The type of operation for migration.
- migration_path str
- The path to the legacy object to migrate.
- operation str | Operation
- The type of operation for migration.
- migrationPath String
- The path to the legacy object to migrate.
- operation String | "Start" | "Revoke" | "Complete" | "Hide" | "Unhide"
- The type of operation for migration.
MigrationRequestPropertiesResponse, MigrationRequestPropertiesResponseArgs        
- MigrationPath string
- The path to the legacy object to migrate.
- Operation string
- The type of operation for migration.
- MigrationPath string
- The path to the legacy object to migrate.
- Operation string
- The type of operation for migration.
- migrationPath String
- The path to the legacy object to migrate.
- operation String
- The type of operation for migration.
- migrationPath string
- The path to the legacy object to migrate.
- operation string
- The type of operation for migration.
- migration_path str
- The path to the legacy object to migrate.
- operation str
- The type of operation for migration.
- migrationPath String
- The path to the legacy object to migrate.
- operation String
- The type of operation for migration.
Operation, OperationArgs  
- Start
- StartStart the migration.
- Revoke
- RevokeRevoke the migration.
- Complete
- CompleteComplete the migration.
- Hide
- HideHide the hostpool.
- Unhide
- UnhideUnhide the hostpool.
- OperationStart 
- StartStart the migration.
- OperationRevoke 
- RevokeRevoke the migration.
- OperationComplete 
- CompleteComplete the migration.
- OperationHide 
- HideHide the hostpool.
- OperationUnhide 
- UnhideUnhide the hostpool.
- Start
- StartStart the migration.
- Revoke
- RevokeRevoke the migration.
- Complete
- CompleteComplete the migration.
- Hide
- HideHide the hostpool.
- Unhide
- UnhideUnhide the hostpool.
- Start
- StartStart the migration.
- Revoke
- RevokeRevoke the migration.
- Complete
- CompleteComplete the migration.
- Hide
- HideHide the hostpool.
- Unhide
- UnhideUnhide the hostpool.
- START
- StartStart the migration.
- REVOKE
- RevokeRevoke the migration.
- COMPLETE
- CompleteComplete the migration.
- HIDE
- HideHide the hostpool.
- UNHIDE
- UnhideUnhide the hostpool.
- "Start"
- StartStart the migration.
- "Revoke"
- RevokeRevoke the migration.
- "Complete"
- CompleteComplete the migration.
- "Hide"
- HideHide the hostpool.
- "Unhide"
- UnhideUnhide the hostpool.
PersonalDesktopAssignmentType, PersonalDesktopAssignmentTypeArgs        
- Automatic
- Automatic
- Direct
- Direct
- PersonalDesktop Assignment Type Automatic 
- Automatic
- PersonalDesktop Assignment Type Direct 
- Direct
- Automatic
- Automatic
- Direct
- Direct
- Automatic
- Automatic
- Direct
- Direct
- AUTOMATIC
- Automatic
- DIRECT
- Direct
- "Automatic"
- Automatic
- "Direct"
- Direct
PreferredAppGroupType, PreferredAppGroupTypeArgs        
- None
- None
- Desktop
- Desktop
- RailApplications 
- RailApplications
- PreferredApp Group Type None 
- None
- PreferredApp Group Type Desktop 
- Desktop
- PreferredApp Group Type Rail Applications 
- RailApplications
- None
- None
- Desktop
- Desktop
- RailApplications 
- RailApplications
- None
- None
- Desktop
- Desktop
- RailApplications 
- RailApplications
- NONE
- None
- DESKTOP
- Desktop
- RAIL_APPLICATIONS
- RailApplications
- "None"
- None
- "Desktop"
- Desktop
- "RailApplications" 
- RailApplications
RegistrationInfo, RegistrationInfoArgs    
- ExpirationTime string
- Expiration time of registration token.
- RegistrationToken string | Pulumi.Operation Azure Native. Desktop Virtualization. Registration Token Operation 
- The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- ExpirationTime string
- Expiration time of registration token.
- RegistrationToken string | RegistrationOperation Token Operation 
- The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- expirationTime String
- Expiration time of registration token.
- registrationToken String | RegistrationOperation Token Operation 
- The type of resetting the token.
- token String
- The registration token base64 encoded string.
- expirationTime string
- Expiration time of registration token.
- registrationToken string | RegistrationOperation Token Operation 
- The type of resetting the token.
- token string
- The registration token base64 encoded string.
- expiration_time str
- Expiration time of registration token.
- registration_token_ str | Registrationoperation Token Operation 
- The type of resetting the token.
- token str
- The registration token base64 encoded string.
- expirationTime String
- Expiration time of registration token.
- registrationToken String | "Delete" | "None" | "Update"Operation 
- The type of resetting the token.
- token String
- The registration token base64 encoded string.
RegistrationInfoResponse, RegistrationInfoResponseArgs      
- ExpirationTime string
- Expiration time of registration token.
- RegistrationToken stringOperation 
- The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- ExpirationTime string
- Expiration time of registration token.
- RegistrationToken stringOperation 
- The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- expirationTime String
- Expiration time of registration token.
- registrationToken StringOperation 
- The type of resetting the token.
- token String
- The registration token base64 encoded string.
- expirationTime string
- Expiration time of registration token.
- registrationToken stringOperation 
- The type of resetting the token.
- token string
- The registration token base64 encoded string.
- expiration_time str
- Expiration time of registration token.
- registration_token_ stroperation 
- The type of resetting the token.
- token str
- The registration token base64 encoded string.
- expirationTime String
- Expiration time of registration token.
- registrationToken StringOperation 
- The type of resetting the token.
- token String
- The registration token base64 encoded string.
RegistrationTokenOperation, RegistrationTokenOperationArgs      
- Delete
- Delete
- None
- None
- Update
- Update
- RegistrationToken Operation Delete 
- Delete
- RegistrationToken Operation None 
- None
- RegistrationToken Operation Update 
- Update
- Delete
- Delete
- None
- None
- Update
- Update
- Delete
- Delete
- None
- None
- Update
- Update
- DELETE
- Delete
- NONE
- None
- UPDATE
- Update
- "Delete"
- Delete
- "None"
- None
- "Update"
- Update
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- ResourceIdentity Type System Assigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "SystemAssigned" 
- SystemAssigned
ResourceModelWithAllowedPropertySetIdentity, ResourceModelWithAllowedPropertySetIdentityArgs              
- Type
Pulumi.Azure Native. Desktop Virtualization. Resource Identity Type 
- The identity type.
- Type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
ResourceIdentity Type 
- The identity type.
- type
"SystemAssigned" 
- The identity type.
ResourceModelWithAllowedPropertySetPlan, ResourceModelWithAllowedPropertySetPlanArgs              
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- PromotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- PromotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode String
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_code str
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode String
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
ResourceModelWithAllowedPropertySetResponseIdentity, ResourceModelWithAllowedPropertySetResponseIdentityArgs                
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- principalId string
- The principal ID of resource identity.
- tenantId string
- The tenant ID of resource.
- type string
- The identity type.
- principal_id str
- The principal ID of resource identity.
- tenant_id str
- The tenant ID of resource.
- type str
- The identity type.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
ResourceModelWithAllowedPropertySetResponsePlan, ResourceModelWithAllowedPropertySetResponsePlanArgs                
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- PromotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- Name string
- A user defined name of the 3rd Party Artifact that is being procured.
- Product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- Publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- PromotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- Version string
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode String
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
- name string
- A user defined name of the 3rd Party Artifact that is being procured.
- product string
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher string
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode string
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version string
- The version of the desired product/artifact.
- name str
- A user defined name of the 3rd Party Artifact that is being procured.
- product str
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher str
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotion_code str
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version str
- The version of the desired product/artifact.
- name String
- A user defined name of the 3rd Party Artifact that is being procured.
- product String
- The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
- publisher String
- The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
- promotionCode String
- A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
- version String
- The version of the desired product/artifact.
ResourceModelWithAllowedPropertySetResponseSku, ResourceModelWithAllowedPropertySetResponseSkuArgs                
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
ResourceModelWithAllowedPropertySetSku, ResourceModelWithAllowedPropertySetSkuArgs              
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.Azure Native. Desktop Virtualization. Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- Name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name string
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name str
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SkuTier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
- name String
- The name of the SKU. Ex - P3. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier "Free" | "Basic" | "Standard" | "Premium"
- This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
SSOSecretType, SSOSecretTypeArgs    
- SharedKey 
- SharedKey
- Certificate
- Certificate
- SharedKey In Key Vault 
- SharedKeyInKeyVault
- CertificateIn Key Vault 
- CertificateInKeyVault
- SSOSecretType Shared Key 
- SharedKey
- SSOSecretType Certificate 
- Certificate
- SSOSecretType Shared Key In Key Vault 
- SharedKeyInKeyVault
- SSOSecretType Certificate In Key Vault 
- CertificateInKeyVault
- SharedKey 
- SharedKey
- Certificate
- Certificate
- SharedKey In Key Vault 
- SharedKeyInKeyVault
- CertificateIn Key Vault 
- CertificateInKeyVault
- SharedKey 
- SharedKey
- Certificate
- Certificate
- SharedKey In Key Vault 
- SharedKeyInKeyVault
- CertificateIn Key Vault 
- CertificateInKeyVault
- SHARED_KEY
- SharedKey
- CERTIFICATE
- Certificate
- SHARED_KEY_IN_KEY_VAULT
- SharedKeyInKeyVault
- CERTIFICATE_IN_KEY_VAULT
- CertificateInKeyVault
- "SharedKey" 
- SharedKey
- "Certificate"
- Certificate
- "SharedKey In Key Vault" 
- SharedKeyInKeyVault
- "CertificateIn Key Vault" 
- CertificateInKeyVault
SkuTier, SkuTierArgs    
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- SkuTier Free 
- Free
- SkuTier Basic 
- Basic
- SkuTier Standard 
- Standard
- SkuTier Premium 
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- FREE
- Free
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:desktopvirtualization:HostPool hostPool1 /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0