Show / Hide Table of Contents

Class PlanArgs

Inheritance
System.Object
InputArgs
ResourceArgs
PlanArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.AppService
Assembly: Pulumi.Azure.dll
Syntax
public sealed class PlanArgs : ResourceArgs

Constructors

View Source

PlanArgs()

Declaration
public PlanArgs()

Properties

View Source

AppServiceEnvironmentId

The ID of the App Service Environment where the App Service Plan should be located. Changing forces a new resource to be created.

Declaration
public Input<string> AppServiceEnvironmentId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

IsXenon

Declaration
public Input<bool> IsXenon { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Kind

The kind of the App Service Plan to create. Possible values are Windows (also available as App), Linux, elastic (for Premium Consumption) and FunctionApp (for a Consumption Plan). Defaults to Windows. Changing this forces a new resource to be created.

Declaration
public Input<string> Kind { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaximumElasticWorkerCount

The maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan.

Declaration
public Input<int> MaximumElasticWorkerCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

Specifies the name of the App Service Plan component. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PerSiteScaling

Can Apps assigned to this App Service Plan be scaled independently? If set to false apps assigned to this plan will scale to all instances of the plan. Defaults to false.

Declaration
public Input<bool> PerSiteScaling { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Reserved

Is this App Service Plan Reserved. Defaults to false.

Declaration
public Input<bool> Reserved { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

ResourceGroupName

The name of the resource group in which to create the App Service Plan component.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Sku

A sku block as documented below.

Declaration
public Input<PlanSkuArgs> Sku { get; set; }
Property Value
Type Description
Input<PlanSkuArgs>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.