Share via


AzureMLBatchExecutionActivity Constructors

Definition

Overloads

AzureMLBatchExecutionActivity()

Initializes a new instance of the AzureMLBatchExecutionActivity class.

AzureMLBatchExecutionActivity(String, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, IDictionary<String,Object>, IDictionary<String, AzureMLWebServiceFile>, IDictionary<String,AzureMLWebServiceFile>)

Initializes a new instance of the AzureMLBatchExecutionActivity class.

AzureMLBatchExecutionActivity()

Initializes a new instance of the AzureMLBatchExecutionActivity class.

public AzureMLBatchExecutionActivity ();
Public Sub New ()

Applies to

AzureMLBatchExecutionActivity(String, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, IDictionary<String,Object>, IDictionary<String, AzureMLWebServiceFile>, IDictionary<String,AzureMLWebServiceFile>)

Initializes a new instance of the AzureMLBatchExecutionActivity class.

public AzureMLBatchExecutionActivity (string name, 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, System.Collections.Generic.IDictionary<string,object> globalParameters = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.AzureMLWebServiceFile> webServiceOutputs = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.AzureMLWebServiceFile> webServiceInputs = default);
new Microsoft.Azure.Management.DataFactory.Models.AzureMLBatchExecutionActivity : string * 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 * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.AzureMLWebServiceFile> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.AzureMLWebServiceFile> -> Microsoft.Azure.Management.DataFactory.Models.AzureMLBatchExecutionActivity
Public Sub New (name As String, 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 globalParameters As IDictionary(Of String, Object) = Nothing, Optional webServiceOutputs As IDictionary(Of String, AzureMLWebServiceFile) = Nothing, Optional webServiceInputs As IDictionary(Of String, AzureMLWebServiceFile) = Nothing)

Parameters

name
String

Activity name.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Activity description.

dependsOn
IList<ActivityDependency>

Activity depends on condition.

userProperties
IList<UserProperty>

Activity user properties.

linkedServiceName
LinkedServiceReference

Linked service reference.

policy
ActivityPolicy

Activity policy.

globalParameters
IDictionary<String,Object>

Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.

webServiceOutputs
IDictionary<String,AzureMLWebServiceFile>

Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.

webServiceInputs
IDictionary<String,AzureMLWebServiceFile>

Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.

Applies to