Bagikan melalui


SsisParameter Constructors

Definition

Overloads

SsisParameter()

Initializes a new instance of the SsisParameter class.

SsisParameter(Nullable<Int64>, String, String, String, Nullable<Boolean>, Nullable<Boolean>, String, String, String, String, Nullable<Boolean>, String)

Initializes a new instance of the SsisParameter class.

SsisParameter()

Initializes a new instance of the SsisParameter class.

public SsisParameter ();
Public Sub New ()

Applies to

SsisParameter(Nullable<Int64>, String, String, String, Nullable<Boolean>, Nullable<Boolean>, String, String, String, String, Nullable<Boolean>, String)

Initializes a new instance of the SsisParameter class.

public SsisParameter (long? id = default, string name = default, string description = default, string dataType = default, bool? required = default, bool? sensitive = default, string designDefaultValue = default, string defaultValue = default, string sensitiveDefaultValue = default, string valueType = default, bool? valueSet = default, string variable = default);
new Microsoft.Azure.Management.DataFactory.Models.SsisParameter : Nullable<int64> * string * string * string * Nullable<bool> * Nullable<bool> * string * string * string * string * Nullable<bool> * string -> Microsoft.Azure.Management.DataFactory.Models.SsisParameter
Public Sub New (Optional id As Nullable(Of Long) = Nothing, Optional name As String = Nothing, Optional description As String = Nothing, Optional dataType As String = Nothing, Optional required As Nullable(Of Boolean) = Nothing, Optional sensitive As Nullable(Of Boolean) = Nothing, Optional designDefaultValue As String = Nothing, Optional defaultValue As String = Nothing, Optional sensitiveDefaultValue As String = Nothing, Optional valueType As String = Nothing, Optional valueSet As Nullable(Of Boolean) = Nothing, Optional variable As String = Nothing)

Parameters

id
Nullable<Int64>

Parameter id.

name
String

Parameter name.

description
String

Parameter description.

dataType
String

Parameter type.

required
Nullable<Boolean>

Whether parameter is required.

sensitive
Nullable<Boolean>

Whether parameter is sensitive.

designDefaultValue
String

Design default value of parameter.

defaultValue
String

Default value of parameter.

sensitiveDefaultValue
String

Default sensitive value of parameter.

valueType
String

Parameter value type.

valueSet
Nullable<Boolean>

Parameter value set.

variable
String

Parameter reference variable.

Applies to