Share via


DatabricksNotebookActivity Constructors

Definition

Overloads

DatabricksNotebookActivity()

Initializes a new instance of the DatabricksNotebookActivity class.

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

Initializes a new instance of the DatabricksNotebookActivity class.

DatabricksNotebookActivity()

Initializes a new instance of the DatabricksNotebookActivity class.

public DatabricksNotebookActivity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the DatabricksNotebookActivity class.

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

Parameters

name
String

Activity name.

notebookPath
Object

The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).

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.

baseParameters
IDictionary<String,Object>

Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.

libraries
IList<IDictionary<String,Object>>

A list of libraries to be installed on the cluster that will execute the job.

Applies to