次の方法で共有


WebHookActivity コンストラクター

定義

オーバーロード

WebHookActivity()

WebHookActivity クラスの新しいインスタンスを初期化します。

WebHookActivity(String, Object, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, String, Object, Object, WebActivityAuthentication, Object)

WebHookActivity クラスの新しいインスタンスを初期化します。

WebHookActivity()

WebHookActivity クラスの新しいインスタンスを初期化します。

public WebHookActivity ();
Public Sub New ()

適用対象

WebHookActivity(String, Object, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, String, Object, Object, WebActivityAuthentication, Object)

WebHookActivity クラスの新しいインスタンスを初期化します。

public WebHookActivity (string name, object url, 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, string timeout = default, object headers = default, object body = default, Microsoft.Azure.Management.DataFactory.Models.WebActivityAuthentication authentication = default, object reportStatusOnCallBack = default);
new Microsoft.Azure.Management.DataFactory.Models.WebHookActivity : 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> * string * obj * obj * Microsoft.Azure.Management.DataFactory.Models.WebActivityAuthentication * obj -> Microsoft.Azure.Management.DataFactory.Models.WebHookActivity
Public Sub New (name As String, url 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 timeout As String = Nothing, Optional headers As Object = Nothing, Optional body As Object = Nothing, Optional authentication As WebActivityAuthentication = Nothing, Optional reportStatusOnCallBack As Object = Nothing)

パラメーター

name
String

アクティビティ名。

url
Object

WebHook アクティビティのターゲット エンドポイントとパス。 型: string (または resultType 文字列を含む式)。

additionalProperties
IDictionary<String,Object>

メッセージの一致しないプロパティは、このコレクションを逆シリアル化します

description
String

アクティビティの説明。

dependsOn
IList<ActivityDependency>

アクティビティは条件によって異なります。

userProperties
IList<UserProperty>

アクティビティ ユーザーのプロパティ。

timeout
String

Webhook を呼び出すタイムアウト。 値が指定されていない場合、既定値は 10 分です。 型: string。 パターン: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

headers
Object

要求に送信されるヘッダーを表します。 たとえば、要求に種類と言語を設定する場合: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }。 型: string (または resultType 文字列を含む式)。

body
Object

エンドポイントに送信されるペイロードを表します。 POST/PUT メソッドに必要です。GET メソッドの Type: string (または ResultType 文字列を含む式) には使用できません。

authentication
WebActivityAuthentication

エンドポイントを呼び出すために使用される認証方法。

reportStatusOnCallBack
Object

true に設定すると、コールバック要求本文の statusCode、output、error がアクティビティによって使用されます。 アクティビティは、コールバック要求で statusCode >= 400 に設定することで、失敗としてマークできます。 既定値は false です。 型: boolean (または resultType ブール値を持つ式)。

適用対象