SynapseNotebookActivity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SynapseNotebookActivity() |
Initializes a new instance of the SynapseNotebookActivity class. |
SynapseNotebookActivity(String, SynapseNotebookReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, BigDataPoolParametrizationReference, IDictionary<String,NotebookParameter>, Object, Object, Object, Nullable<Int32>) |
Initializes a new instance of the SynapseNotebookActivity class. |
SynapseNotebookActivity()
Initializes a new instance of the SynapseNotebookActivity class.
public SynapseNotebookActivity ();
Public Sub New ()
Applies to
SynapseNotebookActivity(String, SynapseNotebookReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, BigDataPoolParametrizationReference, IDictionary<String,NotebookParameter>, Object, Object, Object, Nullable<Int32>)
Initializes a new instance of the SynapseNotebookActivity class.
public SynapseNotebookActivity (string name, Microsoft.Azure.Management.DataFactory.Models.SynapseNotebookReference notebook, 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, Microsoft.Azure.Management.DataFactory.Models.BigDataPoolParametrizationReference sparkPool = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.NotebookParameter> parameters = default, object executorSize = default, object conf = default, object driverSize = default, int? numExecutors = default);
new Microsoft.Azure.Management.DataFactory.Models.SynapseNotebookActivity : string * Microsoft.Azure.Management.DataFactory.Models.SynapseNotebookReference * 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 * Microsoft.Azure.Management.DataFactory.Models.BigDataPoolParametrizationReference * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.NotebookParameter> * obj * obj * obj * Nullable<int> -> Microsoft.Azure.Management.DataFactory.Models.SynapseNotebookActivity
Public Sub New (name As String, notebook As SynapseNotebookReference, 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 sparkPool As BigDataPoolParametrizationReference = Nothing, Optional parameters As IDictionary(Of String, NotebookParameter) = Nothing, Optional executorSize As Object = Nothing, Optional conf As Object = Nothing, Optional driverSize As Object = Nothing, Optional numExecutors As Nullable(Of Integer) = Nothing)
Parameters
- name
- String
Activity name.
- notebook
- SynapseNotebookReference
Synapse notebook reference.
- 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.
- sparkPool
- BigDataPoolParametrizationReference
The name of the big data pool which will be used to execute the notebook.
- parameters
- IDictionary<String,NotebookParameter>
Notebook parameters.
- executorSize
- Object
Number of core and memory to be used for executors allocated in the specified Spark pool for the session, which will be used for overriding 'executorCores' and 'executorMemory' of the notebook you provide. Type: string (or Expression with resultType string).
- conf
- Object
Spark configuration properties, which will override the 'conf' of the notebook you provide.
- driverSize
- Object
Number of core and memory to be used for driver allocated in the specified Spark pool for the session, which will be used for overriding 'driverCores' and 'driverMemory' of the notebook you provide. Type: string (or Expression with resultType string).
Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide.
Applies to
Azure SDK for .NET