azure-native.desktopvirtualization.HostPool
Explore with Pulumi AI
Represents a HostPool definition. Azure REST API version: 2022-09-09. Prior API version in Azure Native 1.x: 2021-02-01-preview.
Other available API versions: 2020-11-02-preview, 2020-11-10-preview, 2022-04-01-preview, 2022-10-14-preview, 2023-07-07-preview, 2023-09-05, 2023-10-04-preview, 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-preview, 2024-04-03, 2024-04-08-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()
{
AgentUpdate = new AzureNative.DesktopVirtualization.Inputs.AgentUpdatePropertiesArgs
{
MaintenanceWindowTimeZone = "Alaskan Standard Time",
MaintenanceWindows = new[]
{
new AzureNative.DesktopVirtualization.Inputs.MaintenanceWindowPropertiesArgs
{
DayOfWeek = AzureNative.DesktopVirtualization.DayOfWeek.Friday,
Hour = 7,
},
new AzureNative.DesktopVirtualization.Inputs.MaintenanceWindowPropertiesArgs
{
DayOfWeek = AzureNative.DesktopVirtualization.DayOfWeek.Saturday,
Hour = 8,
},
},
Type = AzureNative.DesktopVirtualization.SessionHostComponentUpdateType.Scheduled,
UseSessionHostLocalTime = false,
},
Description = "des1",
FriendlyName = "friendly",
HostPoolName = "hostPool1",
HostPoolType = AzureNative.DesktopVirtualization.HostPoolType.Pooled,
LoadBalancerType = AzureNative.DesktopVirtualization.LoadBalancerType.BreadthFirst,
Location = "centralus",
MaxSessionLimit = 999999,
PersonalDesktopAssignmentType = AzureNative.DesktopVirtualization.PersonalDesktopAssignmentType.Automatic,
PreferredAppGroupType = AzureNative.DesktopVirtualization.PreferredAppGroupType.Desktop,
RegistrationInfo = new AzureNative.DesktopVirtualization.Inputs.RegistrationInfoArgs
{
ExpirationTime = "2020-10-01T14:01:54.9571247Z",
RegistrationTokenOperation = AzureNative.DesktopVirtualization.RegistrationTokenOperation.Update,
},
ResourceGroupName = "resourceGroup1",
SsoClientId = "client",
SsoClientSecretKeyVaultPath = "https://keyvault/secret",
SsoSecretType = AzureNative.DesktopVirtualization.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/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := desktopvirtualization.NewHostPool(ctx, "hostPool", &desktopvirtualization.HostPoolArgs{
AgentUpdate: &desktopvirtualization.AgentUpdatePropertiesArgs{
MaintenanceWindowTimeZone: pulumi.String("Alaskan Standard Time"),
MaintenanceWindows: desktopvirtualization.MaintenanceWindowPropertiesArray{
&desktopvirtualization.MaintenanceWindowPropertiesArgs{
DayOfWeek: desktopvirtualization.DayOfWeekFriday,
Hour: pulumi.Int(7),
},
&desktopvirtualization.MaintenanceWindowPropertiesArgs{
DayOfWeek: desktopvirtualization.DayOfWeekSaturday,
Hour: pulumi.Int(8),
},
},
Type: pulumi.String(desktopvirtualization.SessionHostComponentUpdateTypeScheduled),
UseSessionHostLocalTime: pulumi.Bool(false),
},
Description: pulumi.String("des1"),
FriendlyName: pulumi.String("friendly"),
HostPoolName: pulumi.String("hostPool1"),
HostPoolType: pulumi.String(desktopvirtualization.HostPoolTypePooled),
LoadBalancerType: pulumi.String(desktopvirtualization.LoadBalancerTypeBreadthFirst),
Location: pulumi.String("centralus"),
MaxSessionLimit: pulumi.Int(999999),
PersonalDesktopAssignmentType: pulumi.String(desktopvirtualization.PersonalDesktopAssignmentTypeAutomatic),
PreferredAppGroupType: pulumi.String(desktopvirtualization.PreferredAppGroupTypeDesktop),
RegistrationInfo: &desktopvirtualization.RegistrationInfoArgs{
ExpirationTime: pulumi.String("2020-10-01T14:01:54.9571247Z"),
RegistrationTokenOperation: pulumi.String(desktopvirtualization.RegistrationTokenOperationUpdate),
},
ResourceGroupName: pulumi.String("resourceGroup1"),
SsoClientId: pulumi.String("client"),
SsoClientSecretKeyVaultPath: pulumi.String("https://keyvault/secret"),
SsoSecretType: pulumi.String(desktopvirtualization.SSOSecretTypeSharedKey),
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 com.pulumi.azurenative.desktopvirtualization.inputs.AgentUpdatePropertiesArgs;
import com.pulumi.azurenative.desktopvirtualization.inputs.RegistrationInfoArgs;
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()
.agentUpdate(AgentUpdatePropertiesArgs.builder()
.maintenanceWindowTimeZone("Alaskan Standard Time")
.maintenanceWindows(
MaintenanceWindowPropertiesArgs.builder()
.dayOfWeek("Friday")
.hour(7)
.build(),
MaintenanceWindowPropertiesArgs.builder()
.dayOfWeek("Saturday")
.hour(8)
.build())
.type("Scheduled")
.useSessionHostLocalTime(false)
.build())
.description("des1")
.friendlyName("friendly")
.hostPoolName("hostPool1")
.hostPoolType("Pooled")
.loadBalancerType("BreadthFirst")
.location("centralus")
.maxSessionLimit(999999)
.personalDesktopAssignmentType("Automatic")
.preferredAppGroupType("Desktop")
.registrationInfo(RegistrationInfoArgs.builder()
.expirationTime("2020-10-01T14:01:54.9571247Z")
.registrationTokenOperation("Update")
.build())
.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 pulumi
import pulumi_azure_native as azure_native
host_pool = azure_native.desktopvirtualization.HostPool("hostPool",
agent_update={
"maintenance_window_time_zone": "Alaskan Standard Time",
"maintenance_windows": [
{
"day_of_week": azure_native.desktopvirtualization.DayOfWeek.FRIDAY,
"hour": 7,
},
{
"day_of_week": azure_native.desktopvirtualization.DayOfWeek.SATURDAY,
"hour": 8,
},
],
"type": azure_native.desktopvirtualization.SessionHostComponentUpdateType.SCHEDULED,
"use_session_host_local_time": False,
},
description="des1",
friendly_name="friendly",
host_pool_name="hostPool1",
host_pool_type=azure_native.desktopvirtualization.HostPoolType.POOLED,
load_balancer_type=azure_native.desktopvirtualization.LoadBalancerType.BREADTH_FIRST,
location="centralus",
max_session_limit=999999,
personal_desktop_assignment_type=azure_native.desktopvirtualization.PersonalDesktopAssignmentType.AUTOMATIC,
preferred_app_group_type=azure_native.desktopvirtualization.PreferredAppGroupType.DESKTOP,
registration_info={
"expiration_time": "2020-10-01T14:01:54.9571247Z",
"registration_token_operation": azure_native.desktopvirtualization.RegistrationTokenOperation.UPDATE,
},
resource_group_name="resourceGroup1",
sso_client_id="client",
sso_client_secret_key_vault_path="https://keyvault/secret",
sso_secret_type=azure_native.desktopvirtualization.SSOSecretType.SHARED_KEY,
ssoadfs_authority="https://adfs",
start_vm_on_connect=False,
tags={
"tag1": "value1",
"tag2": "value2",
},
vm_template="{json:json}")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hostPool = new azure_native.desktopvirtualization.HostPool("hostPool", {
agentUpdate: {
maintenanceWindowTimeZone: "Alaskan Standard Time",
maintenanceWindows: [
{
dayOfWeek: azure_native.desktopvirtualization.DayOfWeek.Friday,
hour: 7,
},
{
dayOfWeek: azure_native.desktopvirtualization.DayOfWeek.Saturday,
hour: 8,
},
],
type: azure_native.desktopvirtualization.SessionHostComponentUpdateType.Scheduled,
useSessionHostLocalTime: false,
},
description: "des1",
friendlyName: "friendly",
hostPoolName: "hostPool1",
hostPoolType: azure_native.desktopvirtualization.HostPoolType.Pooled,
loadBalancerType: azure_native.desktopvirtualization.LoadBalancerType.BreadthFirst,
location: "centralus",
maxSessionLimit: 999999,
personalDesktopAssignmentType: azure_native.desktopvirtualization.PersonalDesktopAssignmentType.Automatic,
preferredAppGroupType: azure_native.desktopvirtualization.PreferredAppGroupType.Desktop,
registrationInfo: {
expirationTime: "2020-10-01T14:01:54.9571247Z",
registrationTokenOperation: azure_native.desktopvirtualization.RegistrationTokenOperation.Update,
},
resourceGroupName: "resourceGroup1",
ssoClientId: "client",
ssoClientSecretKeyVaultPath: "https://keyvault/secret",
ssoSecretType: azure_native.desktopvirtualization.SSOSecretType.SharedKey,
ssoadfsAuthority: "https://adfs",
startVMOnConnect: false,
tags: {
tag1: "value1",
tag2: "value2",
},
vmTemplate: "{json:json}",
});
resources:
hostPool:
type: azure-native:desktopvirtualization:HostPool
properties:
agentUpdate:
maintenanceWindowTimeZone: Alaskan Standard Time
maintenanceWindows:
- dayOfWeek: Friday
hour: 7
- dayOfWeek: Saturday
hour: 8
type: Scheduled
useSessionHostLocalTime: false
description: des1
friendlyName: friendly
hostPoolName: hostPool1
hostPoolType: Pooled
loadBalancerType: BreadthFirst
location: centralus
maxSessionLimit: 999999
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,
identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
kind: Optional[str] = None,
friendly_name: Optional[str] = None,
location: Optional[str] = None,
managed_by: Optional[str] = None,
max_session_limit: Optional[int] = None,
agent_update: Optional[AgentUpdatePropertiesArgs] = None,
plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
description: Optional[str] = None,
host_pool_name: Optional[str] = None,
custom_rdp_property: 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 = new AzureNative.DesktopVirtualization.Inputs.RegistrationInfoArgs
{
ExpirationTime = "string",
RegistrationTokenOperation = "string",
Token = "string",
},
Identity = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentityArgs
{
Type = AzureNative.DesktopVirtualization.ResourceIdentityType.SystemAssigned,
},
Kind = "string",
FriendlyName = "string",
Location = "string",
ManagedBy = "string",
MaxSessionLimit = 0,
AgentUpdate = new AzureNative.DesktopVirtualization.Inputs.AgentUpdatePropertiesArgs
{
MaintenanceWindowTimeZone = "string",
MaintenanceWindows = new[]
{
new AzureNative.DesktopVirtualization.Inputs.MaintenanceWindowPropertiesArgs
{
DayOfWeek = AzureNative.DesktopVirtualization.DayOfWeek.Monday,
Hour = 0,
},
},
Type = "string",
UseSessionHostLocalTime = false,
},
Plan = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlanArgs
{
Name = "string",
Product = "string",
Publisher = "string",
PromotionCode = "string",
Version = "string",
},
Description = "string",
HostPoolName = "string",
CustomRdpProperty = "string",
Ring = 0,
Sku = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSkuArgs
{
Name = "string",
Capacity = 0,
Family = "string",
Size = "string",
Tier = AzureNative.DesktopVirtualization.SkuTier.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: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
PreferredAppGroupType: pulumi.String("string"),
LoadBalancerType: pulumi.String("string"),
PersonalDesktopAssignmentType: pulumi.String("string"),
RegistrationInfo: &desktopvirtualization.RegistrationInfoArgs{
ExpirationTime: pulumi.String("string"),
RegistrationTokenOperation: pulumi.String("string"),
Token: pulumi.String("string"),
},
Identity: &desktopvirtualization.ResourceModelWithAllowedPropertySetIdentityArgs{
Type: desktopvirtualization.ResourceIdentityTypeSystemAssigned,
},
Kind: pulumi.String("string"),
FriendlyName: pulumi.String("string"),
Location: pulumi.String("string"),
ManagedBy: pulumi.String("string"),
MaxSessionLimit: pulumi.Int(0),
AgentUpdate: &desktopvirtualization.AgentUpdatePropertiesArgs{
MaintenanceWindowTimeZone: pulumi.String("string"),
MaintenanceWindows: desktopvirtualization.MaintenanceWindowPropertiesArray{
&desktopvirtualization.MaintenanceWindowPropertiesArgs{
DayOfWeek: desktopvirtualization.DayOfWeekMonday,
Hour: pulumi.Int(0),
},
},
Type: pulumi.String("string"),
UseSessionHostLocalTime: pulumi.Bool(false),
},
Plan: &desktopvirtualization.ResourceModelWithAllowedPropertySetPlanArgs{
Name: pulumi.String("string"),
Product: pulumi.String("string"),
Publisher: pulumi.String("string"),
PromotionCode: pulumi.String("string"),
Version: pulumi.String("string"),
},
Description: pulumi.String("string"),
HostPoolName: pulumi.String("string"),
CustomRdpProperty: pulumi.String("string"),
Ring: pulumi.Int(0),
Sku: &desktopvirtualization.ResourceModelWithAllowedPropertySetSkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
Family: pulumi.String("string"),
Size: pulumi.String("string"),
Tier: desktopvirtualization.SkuTierFree,
},
SsoClientId: pulumi.String("string"),
SsoClientSecretKeyVaultPath: pulumi.String("string"),
SsoSecretType: pulumi.String("string"),
SsoadfsAuthority: pulumi.String("string"),
StartVMOnConnect: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ValidationEnvironment: pulumi.Bool(false),
VmTemplate: pulumi.String("string"),
})
var hostPoolResource = new HostPool("hostPoolResource", HostPoolArgs.builder()
.hostPoolType("string")
.resourceGroupName("string")
.preferredAppGroupType("string")
.loadBalancerType("string")
.personalDesktopAssignmentType("string")
.registrationInfo(RegistrationInfoArgs.builder()
.expirationTime("string")
.registrationTokenOperation("string")
.token("string")
.build())
.identity(ResourceModelWithAllowedPropertySetIdentityArgs.builder()
.type("SystemAssigned")
.build())
.kind("string")
.friendlyName("string")
.location("string")
.managedBy("string")
.maxSessionLimit(0)
.agentUpdate(AgentUpdatePropertiesArgs.builder()
.maintenanceWindowTimeZone("string")
.maintenanceWindows(MaintenanceWindowPropertiesArgs.builder()
.dayOfWeek("Monday")
.hour(0)
.build())
.type("string")
.useSessionHostLocalTime(false)
.build())
.plan(ResourceModelWithAllowedPropertySetPlanArgs.builder()
.name("string")
.product("string")
.publisher("string")
.promotionCode("string")
.version("string")
.build())
.description("string")
.hostPoolName("string")
.customRdpProperty("string")
.ring(0)
.sku(ResourceModelWithAllowedPropertySetSkuArgs.builder()
.name("string")
.capacity(0)
.family("string")
.size("string")
.tier("Free")
.build())
.ssoClientId("string")
.ssoClientSecretKeyVaultPath("string")
.ssoSecretType("string")
.ssoadfsAuthority("string")
.startVMOnConnect(false)
.tags(Map.of("string", "string"))
.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",
},
identity={
"type": azure_native.desktopvirtualization.ResourceIdentityType.SYSTEM_ASSIGNED,
},
kind="string",
friendly_name="string",
location="string",
managed_by="string",
max_session_limit=0,
agent_update={
"maintenanceWindowTimeZone": "string",
"maintenanceWindows": [{
"dayOfWeek": azure_native.desktopvirtualization.DayOfWeek.MONDAY,
"hour": 0,
}],
"type": "string",
"useSessionHostLocalTime": False,
},
plan={
"name": "string",
"product": "string",
"publisher": "string",
"promotionCode": "string",
"version": "string",
},
description="string",
host_pool_name="string",
custom_rdp_property="string",
ring=0,
sku={
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": azure_native.desktopvirtualization.SkuTier.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",
},
identity: {
type: azure_native.desktopvirtualization.ResourceIdentityType.SystemAssigned,
},
kind: "string",
friendlyName: "string",
location: "string",
managedBy: "string",
maxSessionLimit: 0,
agentUpdate: {
maintenanceWindowTimeZone: "string",
maintenanceWindows: [{
dayOfWeek: azure_native.desktopvirtualization.DayOfWeek.Monday,
hour: 0,
}],
type: "string",
useSessionHostLocalTime: false,
},
plan: {
name: "string",
product: "string",
publisher: "string",
promotionCode: "string",
version: "string",
},
description: "string",
hostPoolName: "string",
customRdpProperty: "string",
ring: 0,
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: azure_native.desktopvirtualization.SkuTier.Free,
},
ssoClientId: "string",
ssoClientSecretKeyVaultPath: "string",
ssoSecretType: "string",
ssoadfsAuthority: "string",
startVMOnConnect: false,
tags: {
string: "string",
},
validationEnvironment: false,
vmTemplate: "string",
});
type: azure-native:desktopvirtualization:HostPool
properties:
agentUpdate:
maintenanceWindowTimeZone: string
maintenanceWindows:
- dayOfWeek: Monday
hour: 0
type: string
useSessionHostLocalTime: false
customRdpProperty: string
description: string
friendlyName: string
hostPoolName: string
hostPoolType: string
identity:
type: SystemAssigned
kind: string
loadBalancerType: string
location: string
managedBy: string
maxSessionLimit: 0
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
The HostPool resource accepts the following input properties:
- Host
Pool string | Pulumi.Type Azure Native. Desktop Virtualization. Host Pool Type - HostPool type for desktop.
- Load
Balancer string | Pulumi.Type Azure Native. Desktop Virtualization. Load Balancer Type - The type of the load balancer.
- Preferred
App string | Pulumi.Group Type Azure Native. Desktop Virtualization. Preferred App Group Type - The type of preferred application group type, default to Desktop Application Group
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Agent
Update Pulumi.Azure Native. Desktop Virtualization. Inputs. Agent Update Properties - The session host configuration for updating agent, monitoring agent, and stack component.
- Custom
Rdp stringProperty - Custom rdp property of HostPool.
- Description string
- Description of HostPool.
- Friendly
Name string - Friendly name of HostPool.
- Host
Pool 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
- Managed
By 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.
- Max
Session intLimit - The max session limit of HostPool.
- Personal
Desktop 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 - Registration
Info 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 - Sso
Client stringId - ClientId for the registered Relying Party used to issue WVD SSO certificates.
- Sso
Client stringSecret Key Vault Path - Path to Azure KeyVault storing the secret used for communication to ADFS.
- Sso
Secret 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.
- Start
VMOn boolConnect - The flag to turn on/off StartVMOnConnect feature.
- Dictionary<string, string>
- Resource tags.
- Validation
Environment bool - Is validation environment.
- Vm
Template string - VM template for sessionhosts configuration within hostpool.
- Host
Pool string | HostType Pool Type - HostPool type for desktop.
- Load
Balancer string | LoadType Balancer Type - The type of the load balancer.
- Preferred
App string | PreferredGroup Type App Group Type - The type of preferred application group type, default to Desktop Application Group
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Agent
Update AgentUpdate Properties Args - The session host configuration for updating agent, monitoring agent, and stack component.
- Custom
Rdp stringProperty - Custom rdp property of HostPool.
- Description string
- Description of HostPool.
- Friendly
Name string - Friendly name of HostPool.
- Host
Pool stringName - The name of the host pool within the specified resource group
- Identity
Resource
Model 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
- Managed
By 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.
- Max
Session intLimit - The max session limit of HostPool.
- Personal
Desktop string | PersonalAssignment Type Desktop Assignment Type - PersonalDesktopAssignment type for HostPool.
- Plan
Resource
Model With Allowed Property Set Plan Args - Registration
Info RegistrationInfo Args - The registration info of HostPool.
- Ring int
- The ring number of HostPool.
- Sku
Resource
Model With Allowed Property Set Sku Args - Sso
Client stringId - ClientId for the registered Relying Party used to issue WVD SSO certificates.
- Sso
Client stringSecret Key Vault Path - Path to Azure KeyVault storing the secret used for communication to ADFS.
- Sso
Secret string | SSOSecretType Type - The type of single sign on Secret Type.
- string
- URL to customer ADFS server for signing WVD SSO certificates.
- Start
VMOn boolConnect - The flag to turn on/off StartVMOnConnect feature.
- map[string]string
- Resource tags.
- Validation
Environment bool - Is validation environment.
- Vm
Template string - VM template for sessionhosts configuration within hostpool.
- host
Pool String | HostType Pool Type - HostPool type for desktop.
- load
Balancer String | LoadType Balancer Type - The type of the load balancer.
- preferred
App String | PreferredGroup Type App Group Type - The type of preferred application group type, default to Desktop Application Group
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- agent
Update AgentUpdate Properties - The session host configuration for updating agent, monitoring agent, and stack component.
- custom
Rdp StringProperty - Custom rdp property of HostPool.
- description String
- Description of HostPool.
- friendly
Name String - Friendly name of HostPool.
- host
Pool StringName - The name of the host pool within the specified resource group
- identity
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
- managed
By 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.
- max
Session IntegerLimit - The max session limit of HostPool.
- personal
Desktop String | PersonalAssignment Type Desktop Assignment Type - PersonalDesktopAssignment type for HostPool.
- plan
Resource
Model With Allowed Property Set Plan - registration
Info RegistrationInfo - The registration info of HostPool.
- ring Integer
- The ring number of HostPool.
- sku
Resource
Model With Allowed Property Set Sku - sso
Client StringId - ClientId for the registered Relying Party used to issue WVD SSO certificates.
- sso
Client StringSecret Key Vault Path - Path to Azure KeyVault storing the secret used for communication to ADFS.
- sso
Secret String | SSOSecretType Type - The type of single sign on Secret Type.
- String
- URL to customer ADFS server for signing WVD SSO certificates.
- start
VMOn BooleanConnect - The flag to turn on/off StartVMOnConnect feature.
- Map<String,String>
- Resource tags.
- validation
Environment Boolean - Is validation environment.
- vm
Template String - VM template for sessionhosts configuration within hostpool.
- host
Pool string | HostType Pool Type - HostPool type for desktop.
- load
Balancer string | LoadType Balancer Type - The type of the load balancer.
- preferred
App string | PreferredGroup Type App Group Type - The type of preferred application group type, default to Desktop Application Group
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- agent
Update AgentUpdate Properties - The session host configuration for updating agent, monitoring agent, and stack component.
- custom
Rdp stringProperty - Custom rdp property of HostPool.
- description string
- Description of HostPool.
- friendly
Name string - Friendly name of HostPool.
- host
Pool stringName - The name of the host pool within the specified resource group
- identity
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
- managed
By 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.
- max
Session numberLimit - The max session limit of HostPool.
- personal
Desktop string | PersonalAssignment Type Desktop Assignment Type - PersonalDesktopAssignment type for HostPool.
- plan
Resource
Model With Allowed Property Set Plan - registration
Info RegistrationInfo - The registration info of HostPool.
- ring number
- The ring number of HostPool.
- sku
Resource
Model With Allowed Property Set Sku - sso
Client stringId - ClientId for the registered Relying Party used to issue WVD SSO certificates.
- sso
Client stringSecret Key Vault Path - Path to Azure KeyVault storing the secret used for communication to ADFS.
- sso
Secret string | SSOSecretType Type - The type of single sign on Secret Type.
- string
- URL to customer ADFS server for signing WVD SSO certificates.
- start
VMOn booleanConnect - The flag to turn on/off StartVMOnConnect feature.
- {[key: string]: string}
- Resource tags.
- validation
Environment boolean - Is validation environment.
- vm
Template 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.
- agent_
update AgentUpdate Properties Args - The session host configuration for updating agent, monitoring agent, and stack component.
- 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
Resource
Model 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.
- personal_
desktop_ str | Personalassignment_ type Desktop Assignment Type - PersonalDesktopAssignment type for HostPool.
- plan
Resource
Model With Allowed Property Set Plan Args - registration_
info RegistrationInfo Args - The registration info of HostPool.
- ring int
- The ring number of HostPool.
- sku
Resource
Model 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.
- host
Pool String | "Personal" | "Pooled" | "BYODesktop"Type - HostPool type for desktop.
- load
Balancer String | "BreadthType First" | "Depth First" | "Persistent" - The type of the load balancer.
- preferred
App String | "None" | "Desktop" | "RailGroup Type Applications" - The type of preferred application group type, default to Desktop Application Group
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- agent
Update Property Map - The session host configuration for updating agent, monitoring agent, and stack component.
- custom
Rdp StringProperty - Custom rdp property of HostPool.
- description String
- Description of HostPool.
- friendly
Name String - Friendly name of HostPool.
- host
Pool 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
- managed
By 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.
- max
Session NumberLimit - The max session limit of HostPool.
- personal
Desktop String | "Automatic" | "Direct"Assignment Type - PersonalDesktopAssignment type for HostPool.
- plan Property Map
- registration
Info Property Map - The registration info of HostPool.
- ring Number
- The ring number of HostPool.
- sku Property Map
- sso
Client StringId - ClientId for the registered Relying Party used to issue WVD SSO certificates.
- sso
Client StringSecret Key Vault Path - Path to Azure KeyVault storing the secret used for communication to ADFS.
- sso
Secret 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.
- start
VMOn BooleanConnect - The flag to turn on/off StartVMOnConnect feature.
- Map<String>
- Resource tags.
- validation
Environment Boolean - Is validation environment.
- vm
Template 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:
- Application
Group List<string>References - List of applicationGroup links.
- Cloud
Pc 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
- Object
Id string - ObjectId of HostPool. (internal use)
- System
Data Pulumi.Azure Native. Desktop Virtualization. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Application
Group []stringReferences - List of applicationGroup links.
- Cloud
Pc 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
- Object
Id string - ObjectId of HostPool. (internal use)
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- application
Group List<String>References - List of applicationGroup links.
- cloud
Pc 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
- object
Id String - ObjectId of HostPool. (internal use)
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- application
Group string[]References - List of applicationGroup links.
- cloud
Pc 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
- object
Id string - ObjectId of HostPool. (internal use)
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- 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)
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- application
Group List<String>References - List of applicationGroup links.
- cloud
Pc 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
- object
Id String - ObjectId of HostPool. (internal use)
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AgentUpdateProperties, AgentUpdatePropertiesArgs
- Maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- Maintenance
Windows List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Maintenance Window Properties> - List of maintenance windows. Maintenance windows are 2 hours long.
- Type
string | Pulumi.
Azure Native. Desktop Virtualization. Session Host Component Update Type - The type of maintenance for session host components.
- Use
Session boolHost Local Time - Whether to use localTime of the virtual machine.
- Maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- Maintenance
Windows []MaintenanceWindow Properties - List of maintenance windows. Maintenance windows are 2 hours long.
- Type
string | Session
Host Component Update Type - The type of maintenance for session host components.
- Use
Session boolHost Local Time - Whether to use localTime of the virtual machine.
- maintenance
Window StringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows List<MaintenanceWindow Properties> - List of maintenance windows. Maintenance windows are 2 hours long.
- type
String | Session
Host Component Update Type - The type of maintenance for session host components.
- use
Session BooleanHost Local Time - Whether to use localTime of the virtual machine.
- maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows MaintenanceWindow Properties[] - List of maintenance windows. Maintenance windows are 2 hours long.
- type
string | Session
Host Component Update Type - The type of maintenance for session host components.
- use
Session booleanHost Local Time - Whether to use localTime of the virtual machine.
- maintenance_
window_ strtime_ zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance_
windows Sequence[MaintenanceWindow Properties] - List of maintenance windows. Maintenance windows are 2 hours long.
- type
str | Session
Host Component Update Type - The type of maintenance for session host components.
- use_
session_ boolhost_ local_ time - Whether to use localTime of the virtual machine.
- maintenance
Window StringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows List<Property Map> - List of maintenance windows. Maintenance windows are 2 hours long.
- type String | "Default" | "Scheduled"
- The type of maintenance for session host components.
- use
Session BooleanHost Local Time - Whether to use localTime of the virtual machine.
AgentUpdatePropertiesResponse, AgentUpdatePropertiesResponseArgs
- Maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- Maintenance
Windows List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Maintenance Window Properties Response> - List of maintenance windows. Maintenance windows are 2 hours long.
- Type string
- The type of maintenance for session host components.
- Use
Session boolHost Local Time - Whether to use localTime of the virtual machine.
- Maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- Maintenance
Windows []MaintenanceWindow Properties Response - List of maintenance windows. Maintenance windows are 2 hours long.
- Type string
- The type of maintenance for session host components.
- Use
Session boolHost Local Time - Whether to use localTime of the virtual machine.
- maintenance
Window StringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows List<MaintenanceWindow Properties Response> - List of maintenance windows. Maintenance windows are 2 hours long.
- type String
- The type of maintenance for session host components.
- use
Session BooleanHost Local Time - Whether to use localTime of the virtual machine.
- maintenance
Window stringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows MaintenanceWindow Properties Response[] - List of maintenance windows. Maintenance windows are 2 hours long.
- type string
- The type of maintenance for session host components.
- use
Session booleanHost Local Time - Whether to use localTime of the virtual machine.
- maintenance_
window_ strtime_ zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance_
windows Sequence[MaintenanceWindow Properties Response] - List of maintenance windows. Maintenance windows are 2 hours long.
- type str
- The type of maintenance for session host components.
- use_
session_ boolhost_ local_ time - Whether to use localTime of the virtual machine.
- maintenance
Window StringTime Zone - Time zone for maintenance as defined in https://docs.microsoft.com/en-us/dotnet/api/system.timezoneinfo.findsystemtimezonebyid?view=net-5.0. Must be set if useLocalTime is true.
- maintenance
Windows List<Property Map> - List of maintenance windows. Maintenance windows are 2 hours long.
- type String
- The type of maintenance for session host components.
- use
Session BooleanHost Local Time - Whether to use localTime of the virtual machine.
DayOfWeek, DayOfWeekArgs
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Day
Of Week Monday - Monday
- Day
Of Week Tuesday - Tuesday
- Day
Of Week Wednesday - Wednesday
- Day
Of Week Thursday - Thursday
- Day
Of Week Friday - Friday
- Day
Of Week Saturday - Saturday
- Day
Of Week Sunday - Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- MONDAY
- Monday
- TUESDAY
- Tuesday
- WEDNESDAY
- Wednesday
- THURSDAY
- Thursday
- FRIDAY
- Friday
- SATURDAY
- Saturday
- SUNDAY
- Sunday
- "Monday"
- Monday
- "Tuesday"
- Tuesday
- "Wednesday"
- Wednesday
- "Thursday"
- Thursday
- "Friday"
- Friday
- "Saturday"
- Saturday
- "Sunday"
- Sunday
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.
- Host
Pool 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.
- Host
Pool Type Pooled - PooledUsers get a new (random) SessionHost every time it connects to the HostPool.
- Host
Pool 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
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- Persistent
- Persistent
- Load
Balancer Type Breadth First - BreadthFirst
- Load
Balancer Type Depth First - DepthFirst
- Load
Balancer Type Persistent - Persistent
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- Persistent
- Persistent
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- Persistent
- Persistent
- BREADTH_FIRST
- BreadthFirst
- DEPTH_FIRST
- DepthFirst
- PERSISTENT
- Persistent
- "Breadth
First" - BreadthFirst
- "Depth
First" - DepthFirst
- "Persistent"
- Persistent
MaintenanceWindowProperties, MaintenanceWindowPropertiesArgs
- Day
Of Pulumi.Week Azure Native. Desktop Virtualization. Day Of Week - Day of the week.
- Hour int
- The update start hour of the day. (0 - 23)
- day_
of_ Dayweek Of Week - Day of the week.
- hour int
- The update start hour of the day. (0 - 23)
- day
Of "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday"Week - Day of the week.
- hour Number
- The update start hour of the day. (0 - 23)
MaintenanceWindowPropertiesResponse, MaintenanceWindowPropertiesResponseArgs
- day_
of_ strweek - Day of the week.
- hour int
- The update start hour of the day. (0 - 23)
PersonalDesktopAssignmentType, PersonalDesktopAssignmentTypeArgs
- Automatic
- Automatic
- Direct
- Direct
- Personal
Desktop Assignment Type Automatic - Automatic
- Personal
Desktop 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
- Rail
Applications - RailApplications
- Preferred
App Group Type None - None
- Preferred
App Group Type Desktop - Desktop
- Preferred
App Group Type Rail Applications - RailApplications
- None
- None
- Desktop
- Desktop
- Rail
Applications - RailApplications
- None
- None
- Desktop
- Desktop
- Rail
Applications - RailApplications
- NONE
- None
- DESKTOP
- Desktop
- RAIL_APPLICATIONS
- RailApplications
- "None"
- None
- "Desktop"
- Desktop
- "Rail
Applications" - RailApplications
RegistrationInfo, RegistrationInfoArgs
- Expiration
Time string - Expiration time of registration token.
- Registration
Token string | Pulumi.Operation Azure Native. Desktop Virtualization. Registration Token Operation - The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- Expiration
Time string - Expiration time of registration token.
- Registration
Token string | RegistrationOperation Token Operation - The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- expiration
Time String - Expiration time of registration token.
- registration
Token String | RegistrationOperation Token Operation - The type of resetting the token.
- token String
- The registration token base64 encoded string.
- expiration
Time string - Expiration time of registration token.
- registration
Token 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.
- expiration
Time String - Expiration time of registration token.
- registration
Token String | "Delete" | "None" | "Update"Operation - The type of resetting the token.
- token String
- The registration token base64 encoded string.
RegistrationInfoResponse, RegistrationInfoResponseArgs
- Expiration
Time string - Expiration time of registration token.
- Registration
Token stringOperation - The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- Expiration
Time string - Expiration time of registration token.
- Registration
Token stringOperation - The type of resetting the token.
- Token string
- The registration token base64 encoded string.
- expiration
Time String - Expiration time of registration token.
- registration
Token StringOperation - The type of resetting the token.
- token String
- The registration token base64 encoded string.
- expiration
Time string - Expiration time of registration token.
- registration
Token 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.
- expiration
Time String - Expiration time of registration token.
- registration
Token StringOperation - The type of resetting the token.
- token String
- The registration token base64 encoded string.
RegistrationTokenOperation, RegistrationTokenOperationArgs
- Delete
- Delete
- None
- None
- Update
- Update
- Registration
Token Operation Delete - Delete
- Registration
Token Operation None - None
- Registration
Token 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
- System
Assigned - SystemAssigned
- Resource
Identity Type System Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "System
Assigned" - SystemAssigned
ResourceModelWithAllowedPropertySetIdentity, ResourceModelWithAllowedPropertySetIdentityArgs
- Type
Pulumi.
Azure Native. Desktop Virtualization. Resource Identity Type - The identity type.
- Type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
Resource
Identity Type - The identity type.
- type
"System
Assigned" - 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
- Promotion
Code 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
- Promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- principal
Id string - The principal ID of resource identity.
- tenant
Id 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.
- principal
Id String - The principal ID of resource identity.
- tenant
Id 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
- Promotion
Code 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
- Promotion
Code 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
- promotion
Code 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
- promotion
Code 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
- promotion
Code 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
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 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
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 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
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 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
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 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
- Shared
Key - SharedKey
- Certificate
- Certificate
- Shared
Key In Key Vault - SharedKeyInKeyVault
- Certificate
In Key Vault - CertificateInKeyVault
- SSOSecret
Type Shared Key - SharedKey
- SSOSecret
Type Certificate - Certificate
- SSOSecret
Type Shared Key In Key Vault - SharedKeyInKeyVault
- SSOSecret
Type Certificate In Key Vault - CertificateInKeyVault
- Shared
Key - SharedKey
- Certificate
- Certificate
- Shared
Key In Key Vault - SharedKeyInKeyVault
- Certificate
In Key Vault - CertificateInKeyVault
- Shared
Key - SharedKey
- Certificate
- Certificate
- Shared
Key In Key Vault - SharedKeyInKeyVault
- Certificate
In Key Vault - CertificateInKeyVault
- SHARED_KEY
- SharedKey
- CERTIFICATE
- Certificate
- SHARED_KEY_IN_KEY_VAULT
- SharedKeyInKeyVault
- CERTIFICATE_IN_KEY_VAULT
- CertificateInKeyVault
- "Shared
Key" - SharedKey
- "Certificate"
- Certificate
- "Shared
Key In Key Vault" - SharedKeyInKeyVault
- "Certificate
In Key Vault" - CertificateInKeyVault
SessionHostComponentUpdateType, SessionHostComponentUpdateTypeArgs
- Default
- DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- Scheduled
- ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
- Session
Host Component Update Type Default - DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- Session
Host Component Update Type Scheduled - ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
- Default
- DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- Scheduled
- ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
- Default
- DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- Scheduled
- ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
- DEFAULT
- DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- SCHEDULED
- ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
- "Default"
- DefaultAgent and other agent side components are delivery schedule is controlled by WVD Infra.
- "Scheduled"
- ScheduledTenantAdmin have opted in for Scheduled Component Update feature.
SkuTier, SkuTierArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier 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
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:desktopvirtualization:HostPool hostPool1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0