AzureFunctionActivity コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AzureFunctionActivity() |
AzureFunctionActivity クラスの新しいインスタンスを初期化します。 |
AzureFunctionActivity(String, String, Object, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object, Object) |
AzureFunctionActivity クラスの新しいインスタンスを初期化します。 |
AzureFunctionActivity()
AzureFunctionActivity クラスの新しいインスタンスを初期化します。
public AzureFunctionActivity ();
Public Sub New ()
適用対象
AzureFunctionActivity(String, String, Object, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object, Object)
AzureFunctionActivity クラスの新しいインスタンスを初期化します。
public AzureFunctionActivity (string name, string method, object functionName, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> dependsOn = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> userProperties = default, Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName = default, Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy policy = default, object headers = default, object body = default);
new Microsoft.Azure.Management.DataFactory.Models.AzureFunctionActivity : string * string * obj * System.Collections.Generic.IDictionary<string, obj> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> * Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.AzureFunctionActivity
Public Sub New (name As String, method As String, functionName As Object, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional dependsOn As IList(Of ActivityDependency) = Nothing, Optional userProperties As IList(Of UserProperty) = Nothing, Optional linkedServiceName As LinkedServiceReference = Nothing, Optional policy As ActivityPolicy = Nothing, Optional headers As Object = Nothing, Optional body As Object = Nothing)
パラメーター
- name
- String
アクティビティ名。
- method
- String
ターゲット エンドポイントの REST API メソッド。 使用できる値は、'GET'、'POST'、'PUT'、'DELETE'、'OPTIONS'、'HEAD'、'TRACE' です。
- functionName
- Object
Azure 関数アクティビティが呼び出す関数の名前。 型: string (または resultType 文字列を含む式)
- additionalProperties
- IDictionary<String,Object>
メッセージの一致しないプロパティは、このコレクションを逆シリアル化します
- description
- String
アクティビティの説明。
- dependsOn
- IList<ActivityDependency>
アクティビティは条件によって異なります。
- userProperties
- IList<UserProperty>
アクティビティ ユーザーのプロパティ。
- linkedServiceName
- LinkedServiceReference
リンクされたサービス 参照。
- policy
- ActivityPolicy
アクティビティ ポリシー。
- headers
- Object
要求に送信されるヘッダーを表します。 たとえば、要求に種類と言語を設定する場合: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }。 型: string (または resultType 文字列を含む式)。
- body
- Object
エンドポイントに送信されるペイロードを表します。 POST/PUT メソッドに必要です。GET メソッドの Type: string (または resultType 文字列を含む式) には使用できません。
適用対象
Azure SDK for .NET