Show / Hide Table of Contents

Class AppServiceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AppServiceArgs
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 AppServiceArgs : ResourceArgs

Constructors

View Source

AppServiceArgs()

Declaration
public AppServiceArgs()

Properties

View Source

AppServicePlanId

The ID of the App Service Plan within which to create this App Service.

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

AppSettings

A key-value pair of App Settings.

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

AuthSettings

A auth_settings block as defined below.

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

Backup

A backup block as defined below.

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

ClientAffinityEnabled

Should the App Service send session affinity cookies, which route client requests in the same session to the same instance?

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

ClientCertEnabled

Does the App Service require client certificates for incoming requests? Defaults to false.

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

ConnectionStrings

One or more connection_string blocks as defined below.

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

Enabled

Is the App Service Enabled?

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

HttpsOnly

Can the App Service only be accessed via HTTPS? Defaults to false.

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

Identity

A Managed Service Identity block as defined below.

Declaration
public Input<AppServiceIdentityArgs> Identity { get; set; }
Property Value
Type Description
Input<AppServiceIdentityArgs>
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

Logs

A logs block as defined below.

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

Name

Specifies the name of the App Service. 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

ResourceGroupName

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

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

SiteConfig

A site_config block as defined below.

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

StorageAccounts

One or more storage_account blocks as defined below.

Declaration
public InputList<AppServiceStorageAccountArgs> StorageAccounts { get; set; }
Property Value
Type Description
InputList<AppServiceStorageAccountArgs>
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.