次の方法で共有


SwitchActivity コンストラクター

定義

オーバーロード

SwitchActivity()

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

SwitchActivity(String, Expression, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, IList<SwitchCase>, IList<Activity>)

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

SwitchActivity()

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

public SwitchActivity ();
Public Sub New ()

適用対象

SwitchActivity(String, Expression, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, IList<SwitchCase>, IList<Activity>)

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

public SwitchActivity (string name, Microsoft.Azure.Management.DataFactory.Models.Expression on, 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, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.SwitchCase> cases = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> defaultActivities = default);
new Microsoft.Azure.Management.DataFactory.Models.SwitchActivity : string * Microsoft.Azure.Management.DataFactory.Models.Expression * 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> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.SwitchCase> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> -> Microsoft.Azure.Management.DataFactory.Models.SwitchActivity
Public Sub New (name As String, on As Expression, 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 cases As IList(Of SwitchCase) = Nothing, Optional defaultActivities As IList(Of Activity) = Nothing)

パラメーター

name
String

アクティビティ名。

on
Expression

文字列または整数に評価される式。 これは、実行されるアクティビティのブロックを決定するために使用されます。

additionalProperties
IDictionary<String,Object>

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

description
String

アクティビティの説明。

dependsOn
IList<ActivityDependency>

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

userProperties
IList<UserProperty>

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

cases
IList<SwitchCase>

'on' プロパティの予期される値に対応するケースの一覧。 これは省略可能なプロパティであり、指定しない場合、アクティビティは defaultActivities で指定されたアクティビティを実行します。

defaultActivities
IList<Activity>

ケース条件が満たされない場合に実行するアクティビティの一覧。 これは省略可能なプロパティであり、指定されていない場合、アクティビティはアクションなしで終了します。

適用対象