다음을 통해 공유


FunctionEnvelope Constructors

Definition

Overloads

FunctionEnvelope()

Initializes a new instance of the FunctionEnvelope class.

FunctionEnvelope(String, String, String, String, String, String, String, String, String, String, String, Object, IDictionary<String, String>, String, String, String, Nullable<Boolean>)

Initializes a new instance of the FunctionEnvelope class.

FunctionEnvelope()

Initializes a new instance of the FunctionEnvelope class.

public FunctionEnvelope ();
Public Sub New ()

Applies to

FunctionEnvelope(String, String, String, String, String, String, String, String, String, String, String, Object, IDictionary<String, String>, String, String, String, Nullable<Boolean>)

Initializes a new instance of the FunctionEnvelope class.

public FunctionEnvelope (string id = default, string name = default, string kind = default, string type = default, string functionAppId = default, string scriptRootPathHref = default, string scriptHref = default, string configHref = default, string testDataHref = default, string secretsFileHref = default, string href = default, object config = default, System.Collections.Generic.IDictionary<string,string> files = default, string testData = default, string invokeUrlTemplate = default, string language = default, bool? isDisabled = default);
new Microsoft.Azure.Management.WebSites.Models.FunctionEnvelope : string * string * string * string * string * string * string * string * string * string * string * obj * System.Collections.Generic.IDictionary<string, string> * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.FunctionEnvelope
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional functionAppId As String = Nothing, Optional scriptRootPathHref As String = Nothing, Optional scriptHref As String = Nothing, Optional configHref As String = Nothing, Optional testDataHref As String = Nothing, Optional secretsFileHref As String = Nothing, Optional href As String = Nothing, Optional config As Object = Nothing, Optional files As IDictionary(Of String, String) = Nothing, Optional testData As String = Nothing, Optional invokeUrlTemplate As String = Nothing, Optional language As String = Nothing, Optional isDisabled As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource Name.

kind
String

Kind of resource.

type
String

Resource type.

functionAppId
String

Function App ID.

scriptRootPathHref
String

Script root path URI.

scriptHref
String

Script URI.

configHref
String

Config URI.

testDataHref
String

Test data URI.

secretsFileHref
String

Secrets file URI.

href
String

Function URI.

config
Object

Config information.

files
IDictionary<String,String>

File list.

testData
String

Test data used when testing via the Azure Portal.

invokeUrlTemplate
String

The invocation URL

language
String

The function language

isDisabled
Nullable<Boolean>

Gets or sets a value indicating whether the function is disabled

Applies to