Share via


ApplicationStackResource Constructors

Definition

Overloads

ApplicationStackResource()

Initializes a new instance of the ApplicationStackResource class.

ApplicationStackResource(String, String, String, String, String, String, String, IList<StackMajorVersion>, IList<ApplicationStack>, IList<ApplicationStack>)

Initializes a new instance of the ApplicationStackResource class.

ApplicationStackResource()

Initializes a new instance of the ApplicationStackResource class.

public ApplicationStackResource ();
Public Sub New ()

Applies to

ApplicationStackResource(String, String, String, String, String, String, String, IList<StackMajorVersion>, IList<ApplicationStack>, IList<ApplicationStack>)

Initializes a new instance of the ApplicationStackResource class.

public ApplicationStackResource (string id = default, string name = default, string kind = default, string type = default, string applicationStackResourceName = default, string display = default, string dependency = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.StackMajorVersion> majorVersions = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.ApplicationStack> frameworks = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.ApplicationStack> isDeprecated = default);
new Microsoft.Azure.Management.WebSites.Models.ApplicationStackResource : string * string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.StackMajorVersion> * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.ApplicationStack> * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.ApplicationStack> -> Microsoft.Azure.Management.WebSites.Models.ApplicationStackResource
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional applicationStackResourceName As String = Nothing, Optional display As String = Nothing, Optional dependency As String = Nothing, Optional majorVersions As IList(Of StackMajorVersion) = Nothing, Optional frameworks As IList(Of ApplicationStack) = Nothing, Optional isDeprecated As IList(Of ApplicationStack) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource Name.

kind
String

Kind of resource.

type
String

Resource type.

applicationStackResourceName
String

Application stack name.

display
String

Application stack display name.

dependency
String

Application stack dependency.

majorVersions
IList<StackMajorVersion>

List of major versions available.

frameworks
IList<ApplicationStack>

List of frameworks associated with application stack.

isDeprecated
IList<ApplicationStack>

<code>true</code> if this is the stack is deprecated; otherwise, <code>false</code>.

Applies to