Show / Hide Table of Contents

Class FunctionAppSiteConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FunctionAppSiteConfigArgs
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.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class FunctionAppSiteConfigArgs : ResourceArgs

Constructors

View Source

FunctionAppSiteConfigArgs()

Declaration
public FunctionAppSiteConfigArgs()

Properties

View Source

AlwaysOn

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>
View Source

Cors

A cors block as defined below.

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

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>
View Source

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>
View Source

IpRestrictions

A list of objects representing ip restrictions as defined below.

Declaration
public InputList<FunctionAppSiteConfigIpRestrictionArgs> IpRestrictions { get; set; }
Property Value
Type Description
InputList<FunctionAppSiteConfigIpRestrictionArgs>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

WebsocketsEnabled

Should WebSockets be enabled?

Declaration
public Input<bool> WebsocketsEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.