Share via


IntegrationRuntimeDataFlowProperties Constructors

Definition

Overloads

IntegrationRuntimeDataFlowProperties()

Initializes a new instance of the IntegrationRuntimeDataFlowProperties class.

IntegrationRuntimeDataFlowProperties(IDictionary<String,Object>, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the IntegrationRuntimeDataFlowProperties class.

IntegrationRuntimeDataFlowProperties()

Initializes a new instance of the IntegrationRuntimeDataFlowProperties class.

public IntegrationRuntimeDataFlowProperties ();
Public Sub New ()

Applies to

IntegrationRuntimeDataFlowProperties(IDictionary<String,Object>, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the IntegrationRuntimeDataFlowProperties class.

public IntegrationRuntimeDataFlowProperties (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string computeType = default, int? coreCount = default, int? timeToLive = default);
new Microsoft.Azure.Management.Synapse.Models.IntegrationRuntimeDataFlowProperties : System.Collections.Generic.IDictionary<string, obj> * string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Synapse.Models.IntegrationRuntimeDataFlowProperties
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional computeType As String = Nothing, Optional coreCount As Nullable(Of Integer) = Nothing, Optional timeToLive As Nullable(Of Integer) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

computeType
String

Compute type of the cluster which will execute data flow job. Possible values include: 'General', 'MemoryOptimized', 'ComputeOptimized'

coreCount
Nullable<Int32>

Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.

timeToLive
Nullable<Int32>

Time to live (in minutes) setting of the cluster which will execute data flow job.

Applies to