custom/Api20190801/Site.cs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190801
{
    public partial class Site :
        Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190801.ISite,
        Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190801.ISiteInternal,
        Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates
    {
                 
        // Function app settings. These gets set via PowerShell. For more info, please see custom/HelperScripts/HelperFunctions.ps1
 
        public System.Collections.Hashtable ApplicationSettings { get; set; }
 
        public System.Collections.Hashtable SiteConfig { get; set; }
         
        public string Runtime { get; set; }
 
        public string OSType { get; set; }
 
        public string AppServicePlan { get; set; }
         
    }
}