| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 9 | | { |
| | 10 | | /// <summary> An object to provide order by options for listing runs. </summary> |
| | 11 | | public partial class RunQueryOrderBy |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of RunQueryOrderBy. </summary> |
| | 14 | | /// <param name="orderBy"> Parameter name to be used for order by. The allowed parameters to order by for pipeli |
| | 15 | | /// <param name="order"> Sorting order of the parameter. </param> |
| 0 | 16 | | public RunQueryOrderBy(RunQueryOrderByField orderBy, RunQueryOrder order) |
| | 17 | | { |
| 0 | 18 | | OrderBy = orderBy; |
| 0 | 19 | | Order = order; |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> Parameter name to be used for order by. The allowed parameters to order by for pipeline runs are P |
| 0 | 23 | | public RunQueryOrderByField OrderBy { get; } |
| | 24 | | /// <summary> Sorting order of the parameter. </summary> |
| 0 | 25 | | public RunQueryOrder Order { get; } |
| | 26 | | } |
| | 27 | | } |