azure-native.desktopvirtualization.ScalingPlan
Explore with Pulumi AI
Represents a scaling plan definition. API Version: 2021-02-01-preview.
Example Usage
ScalingPlans_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var scalingPlan = new AzureNative.DesktopVirtualization.ScalingPlan("scalingPlan", new()
{
Description = "des1",
ExclusionTag = "value",
FriendlyName = "friendly",
HostPoolReferences = new[]
{
new AzureNative.DesktopVirtualization.Inputs.ScalingHostPoolReferenceArgs
{
HostPoolArmPath = "/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
ScalingPlanEnabled = true,
},
},
HostPoolType = "Personal",
Location = "centralus",
ResourceGroupName = "resourceGroup1",
Ring = 1,
ScalingPlanName = "scalingPlan1",
Schedules = new[]
{
new AzureNative.DesktopVirtualization.Inputs.ScalingScheduleArgs
{
DaysOfWeek = new[]
{
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
},
Name = "schedule1",
OffPeakLoadBalancingAlgorithm = "DepthFirst",
OffPeakStartTime = "2020-11-10T20:00:00.000Z",
PeakLoadBalancingAlgorithm = "BreadthFirst",
PeakStartTime = "2020-11-10T08:00:00.000Z",
RampDownCapacityThresholdPct = 50,
RampDownForceLogoffUsers = true,
RampDownLoadBalancingAlgorithm = "DepthFirst",
RampDownMinimumHostsPct = 20,
RampDownNotificationMessage = "message",
RampDownStartTime = "2020-11-10T18:00:00.000Z",
RampDownWaitTimeMinutes = 30,
RampUpCapacityThresholdPct = 80,
RampUpLoadBalancingAlgorithm = "DepthFirst",
RampUpMinimumHostsPct = 20,
RampUpStartTime = "2020-11-10T06:00:00.000Z",
},
},
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value2" },
},
TimeZone = "",
});
});
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.NewScalingPlan(ctx, "scalingPlan", &desktopvirtualization.ScalingPlanArgs{
Description: pulumi.String("des1"),
ExclusionTag: pulumi.String("value"),
FriendlyName: pulumi.String("friendly"),
HostPoolReferences: []desktopvirtualization.ScalingHostPoolReferenceArgs{
{
HostPoolArmPath: pulumi.String("/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1"),
ScalingPlanEnabled: pulumi.Bool(true),
},
},
HostPoolType: pulumi.String("Personal"),
Location: pulumi.String("centralus"),
ResourceGroupName: pulumi.String("resourceGroup1"),
Ring: pulumi.Int(1),
ScalingPlanName: pulumi.String("scalingPlan1"),
Schedules: []desktopvirtualization.ScalingScheduleArgs{
{
DaysOfWeek: pulumi.StringArray{
pulumi.String("Monday"),
pulumi.String("Tuesday"),
pulumi.String("Wednesday"),
pulumi.String("Thursday"),
pulumi.String("Friday"),
},
Name: pulumi.String("schedule1"),
OffPeakLoadBalancingAlgorithm: pulumi.String("DepthFirst"),
OffPeakStartTime: pulumi.String("2020-11-10T20:00:00.000Z"),
PeakLoadBalancingAlgorithm: pulumi.String("BreadthFirst"),
PeakStartTime: pulumi.String("2020-11-10T08:00:00.000Z"),
RampDownCapacityThresholdPct: pulumi.Int(50),
RampDownForceLogoffUsers: pulumi.Bool(true),
RampDownLoadBalancingAlgorithm: pulumi.String("DepthFirst"),
RampDownMinimumHostsPct: pulumi.Int(20),
RampDownNotificationMessage: pulumi.String("message"),
RampDownStartTime: pulumi.String("2020-11-10T18:00:00.000Z"),
RampDownWaitTimeMinutes: pulumi.Int(30),
RampUpCapacityThresholdPct: pulumi.Int(80),
RampUpLoadBalancingAlgorithm: pulumi.String("DepthFirst"),
RampUpMinimumHostsPct: pulumi.Int(20),
RampUpStartTime: pulumi.String("2020-11-10T06:00:00.000Z"),
},
},
Tags: pulumi.StringMap{
"tag1": pulumi.String("value1"),
"tag2": pulumi.String("value2"),
},
TimeZone: pulumi.String(""),
})
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.ScalingPlan;
import com.pulumi.azurenative.desktopvirtualization.ScalingPlanArgs;
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 scalingPlan = new ScalingPlan("scalingPlan", ScalingPlanArgs.builder()
.description("des1")
.exclusionTag("value")
.friendlyName("friendly")
.hostPoolReferences(Map.ofEntries(
Map.entry("hostPoolArmPath", "/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1"),
Map.entry("scalingPlanEnabled", true)
))
.hostPoolType("Personal")
.location("centralus")
.resourceGroupName("resourceGroup1")
.ring(1)
.scalingPlanName("scalingPlan1")
.schedules(Map.ofEntries(
Map.entry("daysOfWeek",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"),
Map.entry("name", "schedule1"),
Map.entry("offPeakLoadBalancingAlgorithm", "DepthFirst"),
Map.entry("offPeakStartTime", "2020-11-10T20:00:00.000Z"),
Map.entry("peakLoadBalancingAlgorithm", "BreadthFirst"),
Map.entry("peakStartTime", "2020-11-10T08:00:00.000Z"),
Map.entry("rampDownCapacityThresholdPct", 50),
Map.entry("rampDownForceLogoffUsers", true),
Map.entry("rampDownLoadBalancingAlgorithm", "DepthFirst"),
Map.entry("rampDownMinimumHostsPct", 20),
Map.entry("rampDownNotificationMessage", "message"),
Map.entry("rampDownStartTime", "2020-11-10T18:00:00.000Z"),
Map.entry("rampDownWaitTimeMinutes", 30),
Map.entry("rampUpCapacityThresholdPct", 80),
Map.entry("rampUpLoadBalancingAlgorithm", "DepthFirst"),
Map.entry("rampUpMinimumHostsPct", 20),
Map.entry("rampUpStartTime", "2020-11-10T06:00:00.000Z")
))
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.timeZone("")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
scaling_plan = azure_native.desktopvirtualization.ScalingPlan("scalingPlan",
description="des1",
exclusion_tag="value",
friendly_name="friendly",
host_pool_references=[azure_native.desktopvirtualization.ScalingHostPoolReferenceArgs(
host_pool_arm_path="/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
scaling_plan_enabled=True,
)],
host_pool_type="Personal",
location="centralus",
resource_group_name="resourceGroup1",
ring=1,
scaling_plan_name="scalingPlan1",
schedules=[azure_native.desktopvirtualization.ScalingScheduleArgs(
days_of_week=[
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
],
name="schedule1",
off_peak_load_balancing_algorithm="DepthFirst",
off_peak_start_time="2020-11-10T20:00:00.000Z",
peak_load_balancing_algorithm="BreadthFirst",
peak_start_time="2020-11-10T08:00:00.000Z",
ramp_down_capacity_threshold_pct=50,
ramp_down_force_logoff_users=True,
ramp_down_load_balancing_algorithm="DepthFirst",
ramp_down_minimum_hosts_pct=20,
ramp_down_notification_message="message",
ramp_down_start_time="2020-11-10T18:00:00.000Z",
ramp_down_wait_time_minutes=30,
ramp_up_capacity_threshold_pct=80,
ramp_up_load_balancing_algorithm="DepthFirst",
ramp_up_minimum_hosts_pct=20,
ramp_up_start_time="2020-11-10T06:00:00.000Z",
)],
tags={
"tag1": "value1",
"tag2": "value2",
},
time_zone="")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const scalingPlan = new azure_native.desktopvirtualization.ScalingPlan("scalingPlan", {
description: "des1",
exclusionTag: "value",
friendlyName: "friendly",
hostPoolReferences: [{
hostPoolArmPath: "/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
scalingPlanEnabled: true,
}],
hostPoolType: "Personal",
location: "centralus",
resourceGroupName: "resourceGroup1",
ring: 1,
scalingPlanName: "scalingPlan1",
schedules: [{
daysOfWeek: [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
],
name: "schedule1",
offPeakLoadBalancingAlgorithm: "DepthFirst",
offPeakStartTime: "2020-11-10T20:00:00.000Z",
peakLoadBalancingAlgorithm: "BreadthFirst",
peakStartTime: "2020-11-10T08:00:00.000Z",
rampDownCapacityThresholdPct: 50,
rampDownForceLogoffUsers: true,
rampDownLoadBalancingAlgorithm: "DepthFirst",
rampDownMinimumHostsPct: 20,
rampDownNotificationMessage: "message",
rampDownStartTime: "2020-11-10T18:00:00.000Z",
rampDownWaitTimeMinutes: 30,
rampUpCapacityThresholdPct: 80,
rampUpLoadBalancingAlgorithm: "DepthFirst",
rampUpMinimumHostsPct: 20,
rampUpStartTime: "2020-11-10T06:00:00.000Z",
}],
tags: {
tag1: "value1",
tag2: "value2",
},
timeZone: "",
});
resources:
scalingPlan:
type: azure-native:desktopvirtualization:ScalingPlan
properties:
description: des1
exclusionTag: value
friendlyName: friendly
hostPoolReferences:
- hostPoolArmPath: /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1
scalingPlanEnabled: true
hostPoolType: Personal
location: centralus
resourceGroupName: resourceGroup1
ring: 1
scalingPlanName: scalingPlan1
schedules:
- daysOfWeek:
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
name: schedule1
offPeakLoadBalancingAlgorithm: DepthFirst
offPeakStartTime: 2020-11-10T20:00:00.000Z
peakLoadBalancingAlgorithm: BreadthFirst
peakStartTime: 2020-11-10T08:00:00.000Z
rampDownCapacityThresholdPct: 50
rampDownForceLogoffUsers: true
rampDownLoadBalancingAlgorithm: DepthFirst
rampDownMinimumHostsPct: 20
rampDownNotificationMessage: message
rampDownStartTime: 2020-11-10T18:00:00.000Z
rampDownWaitTimeMinutes: 30
rampUpCapacityThresholdPct: 80
rampUpLoadBalancingAlgorithm: DepthFirst
rampUpMinimumHostsPct: 20
rampUpStartTime: 2020-11-10T06:00:00.000Z
tags:
tag1: value1
tag2: value2
timeZone:
Create ScalingPlan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ScalingPlan(name: string, args: ScalingPlanArgs, opts?: CustomResourceOptions);
@overload
def ScalingPlan(resource_name: str,
args: ScalingPlanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ScalingPlan(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
managed_by: Optional[str] = None,
location: Optional[str] = None,
host_pool_references: Optional[Sequence[ScalingHostPoolReferenceArgs]] = None,
host_pool_type: Optional[Union[str, HostPoolType]] = None,
plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
kind: Optional[str] = None,
friendly_name: Optional[str] = None,
description: Optional[str] = None,
identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
exclusion_tag: Optional[str] = None,
ring: Optional[int] = None,
scaling_plan_name: Optional[str] = None,
schedules: Optional[Sequence[ScalingScheduleArgs]] = None,
sku: Optional[ResourceModelWithAllowedPropertySetSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
time_zone: Optional[str] = None)
func NewScalingPlan(ctx *Context, name string, args ScalingPlanArgs, opts ...ResourceOption) (*ScalingPlan, error)
public ScalingPlan(string name, ScalingPlanArgs args, CustomResourceOptions? opts = null)
public ScalingPlan(String name, ScalingPlanArgs args)
public ScalingPlan(String name, ScalingPlanArgs args, CustomResourceOptions options)
type: azure-native:desktopvirtualization:ScalingPlan
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 ScalingPlanArgs
- 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 ScalingPlanArgs
- 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 ScalingPlanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScalingPlanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScalingPlanArgs
- 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 scalingPlanResource = new AzureNative.Desktopvirtualization.ScalingPlan("scalingPlanResource", new()
{
ResourceGroupName = "string",
ManagedBy = "string",
Location = "string",
HostPoolReferences = new[]
{
{
{ "hostPoolArmPath", "string" },
{ "scalingPlanEnabled", false },
},
},
HostPoolType = "string",
Plan =
{
{ "name", "string" },
{ "product", "string" },
{ "publisher", "string" },
{ "promotionCode", "string" },
{ "version", "string" },
},
Kind = "string",
FriendlyName = "string",
Description = "string",
Identity =
{
{ "type", "SystemAssigned" },
},
ExclusionTag = "string",
Ring = 0,
ScalingPlanName = "string",
Schedules = new[]
{
{
{ "daysOfWeek", new[]
{
"string",
} },
{ "name", "string" },
{ "offPeakLoadBalancingAlgorithm", "string" },
{ "offPeakStartTime", "string" },
{ "peakLoadBalancingAlgorithm", "string" },
{ "peakStartTime", "string" },
{ "rampDownCapacityThresholdPct", 0 },
{ "rampDownForceLogoffUsers", false },
{ "rampDownLoadBalancingAlgorithm", "string" },
{ "rampDownMinimumHostsPct", 0 },
{ "rampDownNotificationMessage", "string" },
{ "rampDownStartTime", "string" },
{ "rampDownStopHostsWhen", "string" },
{ "rampDownWaitTimeMinutes", 0 },
{ "rampUpCapacityThresholdPct", 0 },
{ "rampUpLoadBalancingAlgorithm", "string" },
{ "rampUpMinimumHostsPct", 0 },
{ "rampUpStartTime", "string" },
},
},
Sku =
{
{ "name", "string" },
{ "capacity", 0 },
{ "family", "string" },
{ "size", "string" },
{ "tier", "Free" },
},
Tags =
{
{ "string", "string" },
},
TimeZone = "string",
});
example, err := desktopvirtualization.NewScalingPlan(ctx, "scalingPlanResource", &desktopvirtualization.ScalingPlanArgs{
ResourceGroupName: "string",
ManagedBy: "string",
Location: "string",
HostPoolReferences: []map[string]interface{}{
map[string]interface{}{
"hostPoolArmPath": "string",
"scalingPlanEnabled": false,
},
},
HostPoolType: "string",
Plan: map[string]interface{}{
"name": "string",
"product": "string",
"publisher": "string",
"promotionCode": "string",
"version": "string",
},
Kind: "string",
FriendlyName: "string",
Description: "string",
Identity: map[string]interface{}{
"type": "SystemAssigned",
},
ExclusionTag: "string",
Ring: 0,
ScalingPlanName: "string",
Schedules: []map[string]interface{}{
map[string]interface{}{
"daysOfWeek": []string{
"string",
},
"name": "string",
"offPeakLoadBalancingAlgorithm": "string",
"offPeakStartTime": "string",
"peakLoadBalancingAlgorithm": "string",
"peakStartTime": "string",
"rampDownCapacityThresholdPct": 0,
"rampDownForceLogoffUsers": false,
"rampDownLoadBalancingAlgorithm": "string",
"rampDownMinimumHostsPct": 0,
"rampDownNotificationMessage": "string",
"rampDownStartTime": "string",
"rampDownStopHostsWhen": "string",
"rampDownWaitTimeMinutes": 0,
"rampUpCapacityThresholdPct": 0,
"rampUpLoadBalancingAlgorithm": "string",
"rampUpMinimumHostsPct": 0,
"rampUpStartTime": "string",
},
},
Sku: map[string]interface{}{
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": "Free",
},
Tags: map[string]interface{}{
"string": "string",
},
TimeZone: "string",
})
var scalingPlanResource = new ScalingPlan("scalingPlanResource", ScalingPlanArgs.builder()
.resourceGroupName("string")
.managedBy("string")
.location("string")
.hostPoolReferences(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.hostPoolType("string")
.plan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.kind("string")
.friendlyName("string")
.description("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.exclusionTag("string")
.ring(0)
.scalingPlanName("string")
.schedules(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.timeZone("string")
.build());
scaling_plan_resource = azure_native.desktopvirtualization.ScalingPlan("scalingPlanResource",
resource_group_name=string,
managed_by=string,
location=string,
host_pool_references=[{
hostPoolArmPath: string,
scalingPlanEnabled: False,
}],
host_pool_type=string,
plan={
name: string,
product: string,
publisher: string,
promotionCode: string,
version: string,
},
kind=string,
friendly_name=string,
description=string,
identity={
type: SystemAssigned,
},
exclusion_tag=string,
ring=0,
scaling_plan_name=string,
schedules=[{
daysOfWeek: [string],
name: string,
offPeakLoadBalancingAlgorithm: string,
offPeakStartTime: string,
peakLoadBalancingAlgorithm: string,
peakStartTime: string,
rampDownCapacityThresholdPct: 0,
rampDownForceLogoffUsers: False,
rampDownLoadBalancingAlgorithm: string,
rampDownMinimumHostsPct: 0,
rampDownNotificationMessage: string,
rampDownStartTime: string,
rampDownStopHostsWhen: string,
rampDownWaitTimeMinutes: 0,
rampUpCapacityThresholdPct: 0,
rampUpLoadBalancingAlgorithm: string,
rampUpMinimumHostsPct: 0,
rampUpStartTime: string,
}],
sku={
name: string,
capacity: 0,
family: string,
size: string,
tier: Free,
},
tags={
string: string,
},
time_zone=string)
const scalingPlanResource = new azure_native.desktopvirtualization.ScalingPlan("scalingPlanResource", {
resourceGroupName: "string",
managedBy: "string",
location: "string",
hostPoolReferences: [{
hostPoolArmPath: "string",
scalingPlanEnabled: false,
}],
hostPoolType: "string",
plan: {
name: "string",
product: "string",
publisher: "string",
promotionCode: "string",
version: "string",
},
kind: "string",
friendlyName: "string",
description: "string",
identity: {
type: "SystemAssigned",
},
exclusionTag: "string",
ring: 0,
scalingPlanName: "string",
schedules: [{
daysOfWeek: ["string"],
name: "string",
offPeakLoadBalancingAlgorithm: "string",
offPeakStartTime: "string",
peakLoadBalancingAlgorithm: "string",
peakStartTime: "string",
rampDownCapacityThresholdPct: 0,
rampDownForceLogoffUsers: false,
rampDownLoadBalancingAlgorithm: "string",
rampDownMinimumHostsPct: 0,
rampDownNotificationMessage: "string",
rampDownStartTime: "string",
rampDownStopHostsWhen: "string",
rampDownWaitTimeMinutes: 0,
rampUpCapacityThresholdPct: 0,
rampUpLoadBalancingAlgorithm: "string",
rampUpMinimumHostsPct: 0,
rampUpStartTime: "string",
}],
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: "Free",
},
tags: {
string: "string",
},
timeZone: "string",
});
type: azure-native:desktopvirtualization:ScalingPlan
properties:
description: string
exclusionTag: string
friendlyName: string
hostPoolReferences:
- hostPoolArmPath: string
scalingPlanEnabled: false
hostPoolType: string
identity:
type: SystemAssigned
kind: string
location: string
managedBy: string
plan:
name: string
product: string
promotionCode: string
publisher: string
version: string
resourceGroupName: string
ring: 0
scalingPlanName: string
schedules:
- daysOfWeek:
- string
name: string
offPeakLoadBalancingAlgorithm: string
offPeakStartTime: string
peakLoadBalancingAlgorithm: string
peakStartTime: string
rampDownCapacityThresholdPct: 0
rampDownForceLogoffUsers: false
rampDownLoadBalancingAlgorithm: string
rampDownMinimumHostsPct: 0
rampDownNotificationMessage: string
rampDownStartTime: string
rampDownStopHostsWhen: string
rampDownWaitTimeMinutes: 0
rampUpCapacityThresholdPct: 0
rampUpLoadBalancingAlgorithm: string
rampUpMinimumHostsPct: 0
rampUpStartTime: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
tags:
string: string
timeZone: string
ScalingPlan 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 ScalingPlan resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Description string
- Description of scaling plan.
- Exclusion
Tag string - Exclusion tag for scaling plan.
- Friendly
Name string - User friendly name of scaling plan.
- Host
Pool List<Pulumi.References Azure Native. Desktop Virtualization. Inputs. Scaling Host Pool Reference> - List of ScalingHostPoolReference definitions.
- Host
Pool string | Pulumi.Type Azure Native. Desktop Virtualization. Host Pool Type - HostPool type for desktop.
- 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.
- Plan
Pulumi.
Azure Native. Desktop Virtualization. Inputs. Resource Model With Allowed Property Set Plan - Ring int
- The ring number of scaling plan.
- Scaling
Plan stringName - The name of the scaling plan.
- Schedules
List<Pulumi.
Azure Native. Desktop Virtualization. Inputs. Scaling Schedule> - List of ScalingSchedule definitions.
- Sku
Pulumi.
Azure Native. Desktop Virtualization. Inputs. Resource Model With Allowed Property Set Sku - Dictionary<string, string>
- Resource tags.
- Time
Zone string - Timezone of the scaling plan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Description string
- Description of scaling plan.
- Exclusion
Tag string - Exclusion tag for scaling plan.
- Friendly
Name string - User friendly name of scaling plan.
- Host
Pool []ScalingReferences Host Pool Reference Args - List of ScalingHostPoolReference definitions.
- Host
Pool string | HostType Pool Type - HostPool type for desktop.
- 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.
- Plan
Resource
Model With Allowed Property Set Plan Args - Ring int
- The ring number of scaling plan.
- Scaling
Plan stringName - The name of the scaling plan.
- Schedules
[]Scaling
Schedule Args - List of ScalingSchedule definitions.
- Sku
Resource
Model With Allowed Property Set Sku Args - map[string]string
- Resource tags.
- Time
Zone string - Timezone of the scaling plan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- description String
- Description of scaling plan.
- exclusion
Tag String - Exclusion tag for scaling plan.
- friendly
Name String - User friendly name of scaling plan.
- host
Pool List<ScalingReferences Host Pool Reference> - List of ScalingHostPoolReference definitions.
- host
Pool String | HostType Pool Type - HostPool type for desktop.
- 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.
- plan
Resource
Model With Allowed Property Set Plan - ring Integer
- The ring number of scaling plan.
- scaling
Plan StringName - The name of the scaling plan.
- schedules
List<Scaling
Schedule> - List of ScalingSchedule definitions.
- sku
Resource
Model With Allowed Property Set Sku - Map<String,String>
- Resource tags.
- time
Zone String - Timezone of the scaling plan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- description string
- Description of scaling plan.
- exclusion
Tag string - Exclusion tag for scaling plan.
- friendly
Name string - User friendly name of scaling plan.
- host
Pool ScalingReferences Host Pool Reference[] - List of ScalingHostPoolReference definitions.
- host
Pool string | HostType Pool Type - HostPool type for desktop.
- 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.
- plan
Resource
Model With Allowed Property Set Plan - ring number
- The ring number of scaling plan.
- scaling
Plan stringName - The name of the scaling plan.
- schedules
Scaling
Schedule[] - List of ScalingSchedule definitions.
- sku
Resource
Model With Allowed Property Set Sku - {[key: string]: string}
- Resource tags.
- time
Zone string - Timezone of the scaling plan.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- description str
- Description of scaling plan.
- exclusion_
tag str - Exclusion tag for scaling plan.
- friendly_
name str - User friendly name of scaling plan.
- host_
pool_ Sequence[Scalingreferences Host Pool Reference Args] - List of ScalingHostPoolReference definitions.
- host_
pool_ str | Hosttype Pool Type - HostPool type for desktop.
- 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.
- plan
Resource
Model With Allowed Property Set Plan Args - ring int
- The ring number of scaling plan.
- scaling_
plan_ strname - The name of the scaling plan.
- schedules
Sequence[Scaling
Schedule Args] - List of ScalingSchedule definitions.
- sku
Resource
Model With Allowed Property Set Sku Args - Mapping[str, str]
- Resource tags.
- time_
zone str - Timezone of the scaling plan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- description String
- Description of scaling plan.
- exclusion
Tag String - Exclusion tag for scaling plan.
- friendly
Name String - User friendly name of scaling plan.
- host
Pool List<Property Map>References - List of ScalingHostPoolReference definitions.
- host
Pool String | "Personal" | "Pooled" | "BYODesktop"Type - HostPool type for desktop.
- 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.
- plan Property Map
- ring Number
- The ring number of scaling plan.
- scaling
Plan StringName - The name of the scaling plan.
- schedules List<Property Map>
- List of ScalingSchedule definitions.
- sku Property Map
- Map<String>
- Resource tags.
- time
Zone String - Timezone of the scaling plan.
Outputs
All input properties are implicitly available as output properties. Additionally, the ScalingPlan resource produces the following output properties:
- 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 scaling plan. (internal use)
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 scaling plan. (internal use)
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 scaling plan. (internal use)
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 scaling plan. (internal use)
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 scaling plan. (internal use)
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 scaling plan. (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.
- 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.
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.
ScalingHostPoolReference, ScalingHostPoolReferenceArgs
- Host
Pool stringArm Path - Arm path of referenced hostpool.
- Scaling
Plan boolEnabled - Is the scaling plan enabled for this hostpool.
- Host
Pool stringArm Path - Arm path of referenced hostpool.
- Scaling
Plan boolEnabled - Is the scaling plan enabled for this hostpool.
- host
Pool StringArm Path - Arm path of referenced hostpool.
- scaling
Plan BooleanEnabled - Is the scaling plan enabled for this hostpool.
- host
Pool stringArm Path - Arm path of referenced hostpool.
- scaling
Plan booleanEnabled - Is the scaling plan enabled for this hostpool.
- host_
pool_ strarm_ path - Arm path of referenced hostpool.
- scaling_
plan_ boolenabled - Is the scaling plan enabled for this hostpool.
- host
Pool StringArm Path - Arm path of referenced hostpool.
- scaling
Plan BooleanEnabled - Is the scaling plan enabled for this hostpool.
ScalingHostPoolReferenceResponse, ScalingHostPoolReferenceResponseArgs
- Host
Pool stringArm Path - Arm path of referenced hostpool.
- Scaling
Plan boolEnabled - Is the scaling plan enabled for this hostpool.
- Host
Pool stringArm Path - Arm path of referenced hostpool.
- Scaling
Plan boolEnabled - Is the scaling plan enabled for this hostpool.
- host
Pool StringArm Path - Arm path of referenced hostpool.
- scaling
Plan BooleanEnabled - Is the scaling plan enabled for this hostpool.
- host
Pool stringArm Path - Arm path of referenced hostpool.
- scaling
Plan booleanEnabled - Is the scaling plan enabled for this hostpool.
- host_
pool_ strarm_ path - Arm path of referenced hostpool.
- scaling_
plan_ boolenabled - Is the scaling plan enabled for this hostpool.
- host
Pool StringArm Path - Arm path of referenced hostpool.
- scaling
Plan BooleanEnabled - Is the scaling plan enabled for this hostpool.
ScalingSchedule, ScalingScheduleArgs
- Days
Of List<string>Week - Set of days of the week on which this schedule is active.
- Name string
- Name of the scaling schedule.
- Off
Peak string | Pulumi.Load Balancing Algorithm Azure Native. Desktop Virtualization. Session Host Load Balancing Algorithm - Load balancing algorithm for off-peak period.
- Off
Peak stringStart Time - Starting time for off-peak period.
- Peak
Load string | Pulumi.Balancing Algorithm Azure Native. Desktop Virtualization. Session Host Load Balancing Algorithm - Load balancing algorithm for peak period.
- Peak
Start stringTime - Starting time for peak period.
- Ramp
Down intCapacity Threshold Pct - Capacity threshold for ramp down period.
- Ramp
Down boolForce Logoff Users - Should users be logged off forcefully from hosts.
- Ramp
Down string | Pulumi.Load Balancing Algorithm Azure Native. Desktop Virtualization. Session Host Load Balancing Algorithm - Load balancing algorithm for ramp down period.
- Ramp
Down intMinimum Hosts Pct - Minimum host percentage for ramp down period.
- Ramp
Down stringNotification Message - Notification message for users during ramp down period.
- Ramp
Down stringStart Time - Starting time for ramp down period.
- Ramp
Down string | Pulumi.Stop Hosts When Azure Native. Desktop Virtualization. Stop Hosts When - Specifies when to stop hosts during ramp down period.
- Ramp
Down intWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- Ramp
Up intCapacity Threshold Pct - Capacity threshold for ramp up period.
- Ramp
Up string | Pulumi.Load Balancing Algorithm Azure Native. Desktop Virtualization. Session Host Load Balancing Algorithm - Load balancing algorithm for ramp up period.
- Ramp
Up intMinimum Hosts Pct - Minimum host percentage for ramp up period.
- Ramp
Up stringStart Time - Starting time for ramp up period.
- Days
Of []stringWeek - Set of days of the week on which this schedule is active.
- Name string
- Name of the scaling schedule.
- Off
Peak string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for off-peak period.
- Off
Peak stringStart Time - Starting time for off-peak period.
- Peak
Load string | SessionBalancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for peak period.
- Peak
Start stringTime - Starting time for peak period.
- Ramp
Down intCapacity Threshold Pct - Capacity threshold for ramp down period.
- Ramp
Down boolForce Logoff Users - Should users be logged off forcefully from hosts.
- Ramp
Down string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp down period.
- Ramp
Down intMinimum Hosts Pct - Minimum host percentage for ramp down period.
- Ramp
Down stringNotification Message - Notification message for users during ramp down period.
- Ramp
Down stringStart Time - Starting time for ramp down period.
- Ramp
Down string | StopStop Hosts When Hosts When - Specifies when to stop hosts during ramp down period.
- Ramp
Down intWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- Ramp
Up intCapacity Threshold Pct - Capacity threshold for ramp up period.
- Ramp
Up string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp up period.
- Ramp
Up intMinimum Hosts Pct - Minimum host percentage for ramp up period.
- Ramp
Up stringStart Time - Starting time for ramp up period.
- days
Of List<String>Week - Set of days of the week on which this schedule is active.
- name String
- Name of the scaling schedule.
- off
Peak String | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for off-peak period.
- off
Peak StringStart Time - Starting time for off-peak period.
- peak
Load String | SessionBalancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for peak period.
- peak
Start StringTime - Starting time for peak period.
- ramp
Down IntegerCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down BooleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down String | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp
Down IntegerMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down StringNotification Message - Notification message for users during ramp down period.
- ramp
Down StringStart Time - Starting time for ramp down period.
- ramp
Down String | StopStop Hosts When Hosts When - Specifies when to stop hosts during ramp down period.
- ramp
Down IntegerWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up IntegerCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up String | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp
Up IntegerMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up StringStart Time - Starting time for ramp up period.
- days
Of string[]Week - Set of days of the week on which this schedule is active.
- name string
- Name of the scaling schedule.
- off
Peak string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for off-peak period.
- off
Peak stringStart Time - Starting time for off-peak period.
- peak
Load string | SessionBalancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for peak period.
- peak
Start stringTime - Starting time for peak period.
- ramp
Down numberCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down booleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp
Down numberMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down stringNotification Message - Notification message for users during ramp down period.
- ramp
Down stringStart Time - Starting time for ramp down period.
- ramp
Down string | StopStop Hosts When Hosts When - Specifies when to stop hosts during ramp down period.
- ramp
Down numberWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up numberCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up string | SessionLoad Balancing Algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp
Up numberMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up stringStart Time - Starting time for ramp up period.
- days_
of_ Sequence[str]week - Set of days of the week on which this schedule is active.
- name str
- Name of the scaling schedule.
- off_
peak_ str | Sessionload_ balancing_ algorithm Host Load Balancing Algorithm - Load balancing algorithm for off-peak period.
- off_
peak_ strstart_ time - Starting time for off-peak period.
- peak_
load_ str | Sessionbalancing_ algorithm Host Load Balancing Algorithm - Load balancing algorithm for peak period.
- peak_
start_ strtime - Starting time for peak period.
- ramp_
down_ intcapacity_ threshold_ pct - Capacity threshold for ramp down period.
- ramp_
down_ boolforce_ logoff_ users - Should users be logged off forcefully from hosts.
- ramp_
down_ str | Sessionload_ balancing_ algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp_
down_ intminimum_ hosts_ pct - Minimum host percentage for ramp down period.
- ramp_
down_ strnotification_ message - Notification message for users during ramp down period.
- ramp_
down_ strstart_ time - Starting time for ramp down period.
- ramp_
down_ str | Stopstop_ hosts_ when Hosts When - Specifies when to stop hosts during ramp down period.
- ramp_
down_ intwait_ time_ minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp_
up_ intcapacity_ threshold_ pct - Capacity threshold for ramp up period.
- ramp_
up_ str | Sessionload_ balancing_ algorithm Host Load Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp_
up_ intminimum_ hosts_ pct - Minimum host percentage for ramp up period.
- ramp_
up_ strstart_ time - Starting time for ramp up period.
- days
Of List<String>Week - Set of days of the week on which this schedule is active.
- name String
- Name of the scaling schedule.
- off
Peak String | "BreadthLoad Balancing Algorithm First" | "Depth First" - Load balancing algorithm for off-peak period.
- off
Peak StringStart Time - Starting time for off-peak period.
- peak
Load String | "BreadthBalancing Algorithm First" | "Depth First" - Load balancing algorithm for peak period.
- peak
Start StringTime - Starting time for peak period.
- ramp
Down NumberCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down BooleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down String | "BreadthLoad Balancing Algorithm First" | "Depth First" - Load balancing algorithm for ramp down period.
- ramp
Down NumberMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down StringNotification Message - Notification message for users during ramp down period.
- ramp
Down StringStart Time - Starting time for ramp down period.
- ramp
Down String | "ZeroStop Hosts When Sessions" | "Zero Active Sessions" - Specifies when to stop hosts during ramp down period.
- ramp
Down NumberWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up NumberCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up String | "BreadthLoad Balancing Algorithm First" | "Depth First" - Load balancing algorithm for ramp up period.
- ramp
Up NumberMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up StringStart Time - Starting time for ramp up period.
ScalingScheduleResponse, ScalingScheduleResponseArgs
- Days
Of List<string>Week - Set of days of the week on which this schedule is active.
- Name string
- Name of the scaling schedule.
- Off
Peak stringLoad Balancing Algorithm - Load balancing algorithm for off-peak period.
- Off
Peak stringStart Time - Starting time for off-peak period.
- Peak
Load stringBalancing Algorithm - Load balancing algorithm for peak period.
- Peak
Start stringTime - Starting time for peak period.
- Ramp
Down intCapacity Threshold Pct - Capacity threshold for ramp down period.
- Ramp
Down boolForce Logoff Users - Should users be logged off forcefully from hosts.
- Ramp
Down stringLoad Balancing Algorithm - Load balancing algorithm for ramp down period.
- Ramp
Down intMinimum Hosts Pct - Minimum host percentage for ramp down period.
- Ramp
Down stringNotification Message - Notification message for users during ramp down period.
- Ramp
Down stringStart Time - Starting time for ramp down period.
- Ramp
Down stringStop Hosts When - Specifies when to stop hosts during ramp down period.
- Ramp
Down intWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- Ramp
Up intCapacity Threshold Pct - Capacity threshold for ramp up period.
- Ramp
Up stringLoad Balancing Algorithm - Load balancing algorithm for ramp up period.
- Ramp
Up intMinimum Hosts Pct - Minimum host percentage for ramp up period.
- Ramp
Up stringStart Time - Starting time for ramp up period.
- Days
Of []stringWeek - Set of days of the week on which this schedule is active.
- Name string
- Name of the scaling schedule.
- Off
Peak stringLoad Balancing Algorithm - Load balancing algorithm for off-peak period.
- Off
Peak stringStart Time - Starting time for off-peak period.
- Peak
Load stringBalancing Algorithm - Load balancing algorithm for peak period.
- Peak
Start stringTime - Starting time for peak period.
- Ramp
Down intCapacity Threshold Pct - Capacity threshold for ramp down period.
- Ramp
Down boolForce Logoff Users - Should users be logged off forcefully from hosts.
- Ramp
Down stringLoad Balancing Algorithm - Load balancing algorithm for ramp down period.
- Ramp
Down intMinimum Hosts Pct - Minimum host percentage for ramp down period.
- Ramp
Down stringNotification Message - Notification message for users during ramp down period.
- Ramp
Down stringStart Time - Starting time for ramp down period.
- Ramp
Down stringStop Hosts When - Specifies when to stop hosts during ramp down period.
- Ramp
Down intWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- Ramp
Up intCapacity Threshold Pct - Capacity threshold for ramp up period.
- Ramp
Up stringLoad Balancing Algorithm - Load balancing algorithm for ramp up period.
- Ramp
Up intMinimum Hosts Pct - Minimum host percentage for ramp up period.
- Ramp
Up stringStart Time - Starting time for ramp up period.
- days
Of List<String>Week - Set of days of the week on which this schedule is active.
- name String
- Name of the scaling schedule.
- off
Peak StringLoad Balancing Algorithm - Load balancing algorithm for off-peak period.
- off
Peak StringStart Time - Starting time for off-peak period.
- peak
Load StringBalancing Algorithm - Load balancing algorithm for peak period.
- peak
Start StringTime - Starting time for peak period.
- ramp
Down IntegerCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down BooleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down StringLoad Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp
Down IntegerMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down StringNotification Message - Notification message for users during ramp down period.
- ramp
Down StringStart Time - Starting time for ramp down period.
- ramp
Down StringStop Hosts When - Specifies when to stop hosts during ramp down period.
- ramp
Down IntegerWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up IntegerCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up StringLoad Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp
Up IntegerMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up StringStart Time - Starting time for ramp up period.
- days
Of string[]Week - Set of days of the week on which this schedule is active.
- name string
- Name of the scaling schedule.
- off
Peak stringLoad Balancing Algorithm - Load balancing algorithm for off-peak period.
- off
Peak stringStart Time - Starting time for off-peak period.
- peak
Load stringBalancing Algorithm - Load balancing algorithm for peak period.
- peak
Start stringTime - Starting time for peak period.
- ramp
Down numberCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down booleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down stringLoad Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp
Down numberMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down stringNotification Message - Notification message for users during ramp down period.
- ramp
Down stringStart Time - Starting time for ramp down period.
- ramp
Down stringStop Hosts When - Specifies when to stop hosts during ramp down period.
- ramp
Down numberWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up numberCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up stringLoad Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp
Up numberMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up stringStart Time - Starting time for ramp up period.
- days_
of_ Sequence[str]week - Set of days of the week on which this schedule is active.
- name str
- Name of the scaling schedule.
- off_
peak_ strload_ balancing_ algorithm - Load balancing algorithm for off-peak period.
- off_
peak_ strstart_ time - Starting time for off-peak period.
- peak_
load_ strbalancing_ algorithm - Load balancing algorithm for peak period.
- peak_
start_ strtime - Starting time for peak period.
- ramp_
down_ intcapacity_ threshold_ pct - Capacity threshold for ramp down period.
- ramp_
down_ boolforce_ logoff_ users - Should users be logged off forcefully from hosts.
- ramp_
down_ strload_ balancing_ algorithm - Load balancing algorithm for ramp down period.
- ramp_
down_ intminimum_ hosts_ pct - Minimum host percentage for ramp down period.
- ramp_
down_ strnotification_ message - Notification message for users during ramp down period.
- ramp_
down_ strstart_ time - Starting time for ramp down period.
- ramp_
down_ strstop_ hosts_ when - Specifies when to stop hosts during ramp down period.
- ramp_
down_ intwait_ time_ minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp_
up_ intcapacity_ threshold_ pct - Capacity threshold for ramp up period.
- ramp_
up_ strload_ balancing_ algorithm - Load balancing algorithm for ramp up period.
- ramp_
up_ intminimum_ hosts_ pct - Minimum host percentage for ramp up period.
- ramp_
up_ strstart_ time - Starting time for ramp up period.
- days
Of List<String>Week - Set of days of the week on which this schedule is active.
- name String
- Name of the scaling schedule.
- off
Peak StringLoad Balancing Algorithm - Load balancing algorithm for off-peak period.
- off
Peak StringStart Time - Starting time for off-peak period.
- peak
Load StringBalancing Algorithm - Load balancing algorithm for peak period.
- peak
Start StringTime - Starting time for peak period.
- ramp
Down NumberCapacity Threshold Pct - Capacity threshold for ramp down period.
- ramp
Down BooleanForce Logoff Users - Should users be logged off forcefully from hosts.
- ramp
Down StringLoad Balancing Algorithm - Load balancing algorithm for ramp down period.
- ramp
Down NumberMinimum Hosts Pct - Minimum host percentage for ramp down period.
- ramp
Down StringNotification Message - Notification message for users during ramp down period.
- ramp
Down StringStart Time - Starting time for ramp down period.
- ramp
Down StringStop Hosts When - Specifies when to stop hosts during ramp down period.
- ramp
Down NumberWait Time Minutes - Number of minutes to wait to stop hosts during ramp down period.
- ramp
Up NumberCapacity Threshold Pct - Capacity threshold for ramp up period.
- ramp
Up StringLoad Balancing Algorithm - Load balancing algorithm for ramp up period.
- ramp
Up NumberMinimum Hosts Pct - Minimum host percentage for ramp up period.
- ramp
Up StringStart Time - Starting time for ramp up period.
SessionHostLoadBalancingAlgorithm, SessionHostLoadBalancingAlgorithmArgs
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- Session
Host Load Balancing Algorithm Breadth First - BreadthFirst
- Session
Host Load Balancing Algorithm Depth First - DepthFirst
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- Breadth
First - BreadthFirst
- Depth
First - DepthFirst
- BREADTH_FIRST
- BreadthFirst
- DEPTH_FIRST
- DepthFirst
- "Breadth
First" - BreadthFirst
- "Depth
First" - DepthFirst
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
StopHostsWhen, StopHostsWhenArgs
- Zero
Sessions - ZeroSessions
- Zero
Active Sessions - ZeroActiveSessions
- Stop
Hosts When Zero Sessions - ZeroSessions
- Stop
Hosts When Zero Active Sessions - ZeroActiveSessions
- Zero
Sessions - ZeroSessions
- Zero
Active Sessions - ZeroActiveSessions
- Zero
Sessions - ZeroSessions
- Zero
Active Sessions - ZeroActiveSessions
- ZERO_SESSIONS
- ZeroSessions
- ZERO_ACTIVE_SESSIONS
- ZeroActiveSessions
- "Zero
Sessions" - ZeroSessions
- "Zero
Active Sessions" - ZeroActiveSessions
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:desktopvirtualization:ScalingPlan scalingPlan1 /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/scalingPlans/scalingPlan1
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