Share via


ActivityPolicy Constructors

Definition

Overloads

ActivityPolicy()

Initializes a new instance of the ActivityPolicy class.

ActivityPolicy(IDictionary<String,Object>, Object, Object, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ActivityPolicy class.

ActivityPolicy()

Initializes a new instance of the ActivityPolicy class.

public ActivityPolicy ();
Public Sub New ()

Applies to

ActivityPolicy(IDictionary<String,Object>, Object, Object, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ActivityPolicy class.

public ActivityPolicy (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object timeout = default, object retry = default, int? retryIntervalInSeconds = default, bool? secureInput = default, bool? secureOutput = default);
new Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy : System.Collections.Generic.IDictionary<string, obj> * obj * obj * Nullable<int> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional timeout As Object = Nothing, Optional retry As Object = Nothing, Optional retryIntervalInSeconds As Nullable(Of Integer) = Nothing, Optional secureInput As Nullable(Of Boolean) = Nothing, Optional secureOutput As Nullable(Of Boolean) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

timeout
Object

Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

retry
Object

Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.

retryIntervalInSeconds
Nullable<Int32>

Interval between each retry attempt (in seconds). The default is 30 sec.

secureInput
Nullable<Boolean>

When set to true, Input from activity is considered as secure and will not be logged to monitoring.

secureOutput
Nullable<Boolean>

When set to true, Output from activity is considered as secure and will not be logged to monitoring.

Applies to