Show / Hide Table of Contents

Class FunctionAppSiteConfig

Inheritance
System.Object
FunctionAppSiteConfig
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()
Namespace: Pulumi.Azure.AppService.Outputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class FunctionAppSiteConfig

Fields

View Source

AlwaysOn

Should the Function App be loaded at all times? Defaults to false.

Declaration
public readonly bool? AlwaysOn
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

Cors

A cors block as defined below.

Declaration
public readonly FunctionAppSiteConfigCors Cors
Field Value
Type Description
FunctionAppSiteConfigCors
View Source

FtpsState

State of FTP / FTPS service for this function app. Possible values include: AllAllowed, FtpsOnly and Disabled.

Declaration
public readonly string FtpsState
Field Value
Type Description
System.String
View Source

Http2Enabled

Specifies whether or not the http2 protocol should be enabled. Defaults to false.

Declaration
public readonly bool? Http2Enabled
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

IpRestrictions

A list of objects representing ip restrictions as defined below.

Declaration
public readonly ImmutableArray<FunctionAppSiteConfigIpRestriction> IpRestrictions
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<FunctionAppSiteConfigIpRestriction>
View Source

LinuxFxVersion

Linux App Framework and version for the AppService, e.g. DOCKER|(golang:latest).

Declaration
public readonly string LinuxFxVersion
Field Value
Type Description
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 readonly string MinTlsVersion
Field Value
Type Description
System.String
View Source

PreWarmedInstanceCount

The number of pre-warmed instances for this function app. Only affects apps on the Premium plan.

Declaration
public readonly int? PreWarmedInstanceCount
Field Value
Type Description
System.Nullable<System.Int32>
View Source

Use32BitWorkerProcess

Should the Function App run in 32 bit mode, rather than 64 bit mode? Defaults to true.

Declaration
public readonly bool? Use32BitWorkerProcess
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

WebsocketsEnabled

Should WebSockets be enabled?

Declaration
public readonly bool? WebsocketsEnabled
Field Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.