Show / Hide Table of Contents

Class AppServiceState

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

Constructors

View Source

AppServiceState()

Declaration
public AppServiceState()

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<AppServiceAuthSettingsGetArgs> AuthSettings { get; set; }
Property Value
Type Description
Input<AppServiceAuthSettingsGetArgs>
View Source

Backup

A backup block as defined below.

Declaration
public Input<AppServiceBackupGetArgs> Backup { get; set; }
Property Value
Type Description
Input<AppServiceBackupGetArgs>
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<AppServiceConnectionStringGetArgs> ConnectionStrings { get; set; }
Property Value
Type Description
InputList<AppServiceConnectionStringGetArgs>
View Source

DefaultSiteHostname

The Default Hostname associated with the App Service - such as mysite.azurewebsites.net

Declaration
public Input<string> DefaultSiteHostname { get; set; }
Property Value
Type Description
Input<System.String>
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<AppServiceIdentityGetArgs> Identity { get; set; }
Property Value
Type Description
Input<AppServiceIdentityGetArgs>
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<AppServiceLogsGetArgs> Logs { get; set; }
Property Value
Type Description
Input<AppServiceLogsGetArgs>
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

OutboundIpAddresses

A comma separated list of outbound IP addresses - such as 52.23.25.3,52.143.43.12

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

PossibleOutboundIpAddresses

A comma separated list of outbound IP addresses - such as 52.23.25.3,52.143.43.12,52.143.43.17 - not all of which are necessarily in use. Superset of outbound_ip_addresses.

Declaration
public Input<string> PossibleOutboundIpAddresses { 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<AppServiceSiteConfigGetArgs> SiteConfig { get; set; }
Property Value
Type Description
Input<AppServiceSiteConfigGetArgs>
View Source

SiteCredentials

A site_credential block as defined below, which contains the site-level credentials used to publish to this App Service.

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

SourceControls

A source_control block as defined below, which contains the Source Control information when scm_type is set to LocalGit.

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

StorageAccounts

One or more storage_account blocks as defined below.

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