Share via


DeleteActivity Constructors

Definition

Overloads

DeleteActivity()

Initializes a new instance of the DeleteActivity class.

DeleteActivity(String, DatasetReference, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object, Nullable<Int32>, Object, LogStorageSettings, StoreReadSettings)

Initializes a new instance of the DeleteActivity class.

DeleteActivity()

Initializes a new instance of the DeleteActivity class.

public DeleteActivity ();
Public Sub New ()

Applies to

DeleteActivity(String, DatasetReference, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object, Nullable<Int32>, Object, LogStorageSettings, StoreReadSettings)

Initializes a new instance of the DeleteActivity class.

public DeleteActivity (string name, Microsoft.Azure.Management.DataFactory.Models.DatasetReference dataset, 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, object recursive = default, int? maxConcurrentConnections = default, object enableLogging = default, Microsoft.Azure.Management.DataFactory.Models.LogStorageSettings logStorageSettings = default, Microsoft.Azure.Management.DataFactory.Models.StoreReadSettings storeSettings = default);
new Microsoft.Azure.Management.DataFactory.Models.DeleteActivity : string * Microsoft.Azure.Management.DataFactory.Models.DatasetReference * 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 * obj * Nullable<int> * obj * Microsoft.Azure.Management.DataFactory.Models.LogStorageSettings * Microsoft.Azure.Management.DataFactory.Models.StoreReadSettings -> Microsoft.Azure.Management.DataFactory.Models.DeleteActivity
Public Sub New (name As String, dataset As DatasetReference, 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 recursive As Object = Nothing, Optional maxConcurrentConnections As Nullable(Of Integer) = Nothing, Optional enableLogging As Object = Nothing, Optional logStorageSettings As LogStorageSettings = Nothing, Optional storeSettings As StoreReadSettings = Nothing)

Parameters

name
String

Activity name.

dataset
DatasetReference

Delete activity dataset 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.

recursive
Object

If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).

maxConcurrentConnections
Nullable<Int32>

The max concurrent connections to connect data source at the same time.

enableLogging
Object

Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).

logStorageSettings
LogStorageSettings

Log storage settings customer need to provide when enableLogging is true.

storeSettings
StoreReadSettings

Delete activity store settings.

Applies to