Class PlanArgs
Inheritance
System.Object
PlanArgs
Inherited Members
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()
Assembly: Pulumi.Azure.dll
Syntax
public sealed class PlanArgs : ResourceArgs
Constructors
View Source
PlanArgs()
Declaration
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
View Source
A mapping of tags to assign to the resource.
Declaration
public InputMap<string> Tags { get; set; }
Property Value
| Type |
Description |
| InputMap<System.String> |
|