RunQueryOrderBy 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
RunQueryOrderBy() |
Initializes a new instance of the RunQueryOrderBy class. |
RunQueryOrderBy(String, String) |
Initializes a new instance of the RunQueryOrderBy class. |
RunQueryOrderBy()
Initializes a new instance of the RunQueryOrderBy class.
public RunQueryOrderBy ();
Public Sub New ()
Applies to
RunQueryOrderBy(String, String)
Initializes a new instance of the RunQueryOrderBy class.
public RunQueryOrderBy (string orderBy, string order);
new Microsoft.Azure.Management.DataFactory.Models.RunQueryOrderBy : string * string -> Microsoft.Azure.Management.DataFactory.Models.RunQueryOrderBy
Public Sub New (orderBy As String, order As String)
Parameters
- orderBy
- String
Parameter name to be used for order by. The allowed parameters to order by for pipeline runs are PipelineName, RunStart, RunEnd and Status; for activity runs are ActivityName, ActivityRunStart, ActivityRunEnd and Status; for trigger runs are TriggerName, TriggerRunTimestamp and Status. Possible values include: 'RunStart', 'RunEnd', 'PipelineName', 'Status', 'ActivityName', 'ActivityRunStart', 'ActivityRunEnd', 'TriggerName', 'TriggerRunTimestamp'
- order
- String
Sorting order of the parameter. Possible values include: 'ASC', 'DESC'
Applies to
Azure SDK for .NET