Class FunctionAppSiteConfigArgs
Inherited Members
Namespace: Pulumi.Azure.AppService.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class FunctionAppSiteConfigArgs : ResourceArgs
Constructors
View SourceFunctionAppSiteConfigArgs()
Declaration
public FunctionAppSiteConfigArgs()
Properties
View SourceAlwaysOn
Should the Function App be loaded at all times? Defaults to false.
Declaration
public Input<bool> AlwaysOn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Cors
A cors block as defined below.
Declaration
public Input<FunctionAppSiteConfigCorsArgs> Cors { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<FunctionAppSiteConfigCorsArgs> |
FtpsState
State of FTP / FTPS service for this function app. Possible values include: AllAllowed, FtpsOnly and Disabled.
Declaration
public Input<string> FtpsState { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Http2Enabled
Specifies whether or not the http2 protocol should be enabled. Defaults to false.
Declaration
public Input<bool> Http2Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
IpRestrictions
A list of objects representing ip restrictions as defined below.
Declaration
public InputList<FunctionAppSiteConfigIpRestrictionArgs> IpRestrictions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<FunctionAppSiteConfigIpRestrictionArgs> |
LinuxFxVersion
Linux App Framework and version for the AppService, e.g. DOCKER|(golang:latest).
Declaration
public Input<string> LinuxFxVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
MinTlsVersion
The minimum supported TLS version for the function app. Possible values are 1.0, 1.1, and 1.2. Defaults to 1.2 for new function apps.
Declaration
public Input<string> MinTlsVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PreWarmedInstanceCount
The number of pre-warmed instances for this function app. Only affects apps on the Premium plan.
Declaration
public Input<int> PreWarmedInstanceCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Use32BitWorkerProcess
Should the Function App run in 32 bit mode, rather than 64 bit mode? Defaults to true.
Declaration
public Input<bool> Use32BitWorkerProcess { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
WebsocketsEnabled
Should WebSockets be enabled?
Declaration
public Input<bool> WebsocketsEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |