| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | | using System.Collections.Generic; |
| | 10 | | using Azure.Core; |
| | 11 | |
|
| | 12 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 13 | | { |
| | 14 | | /// <summary> Query parameters for listing runs. </summary> |
| | 15 | | public partial class RunFilterParameters |
| | 16 | | { |
| | 17 | | /// <summary> Initializes a new instance of RunFilterParameters. </summary> |
| | 18 | | /// <param name="lastUpdatedAfter"> The time at or after which the run event was updated in 'ISO 8601' |
| | 19 | | /// <param name="lastUpdatedBefore"> The time at or before which the run event was updated in 'ISO 8601&apo |
| 0 | 20 | | public RunFilterParameters(DateTimeOffset lastUpdatedAfter, DateTimeOffset lastUpdatedBefore) |
| | 21 | | { |
| 0 | 22 | | LastUpdatedAfter = lastUpdatedAfter; |
| 0 | 23 | | LastUpdatedBefore = lastUpdatedBefore; |
| 0 | 24 | | Filters = new ChangeTrackingList<RunQueryFilter>(); |
| 0 | 25 | | OrderBy = new ChangeTrackingList<RunQueryOrderBy>(); |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> The continuation token for getting the next page of results. Null for first page. </summary> |
| 0 | 29 | | public string ContinuationToken { get; set; } |
| | 30 | | /// <summary> The time at or after which the run event was updated in 'ISO 8601' format. </summary> |
| 0 | 31 | | public DateTimeOffset LastUpdatedAfter { get; } |
| | 32 | | /// <summary> The time at or before which the run event was updated in 'ISO 8601' format. </summary> |
| 0 | 33 | | public DateTimeOffset LastUpdatedBefore { get; } |
| | 34 | | /// <summary> List of filters. </summary> |
| 0 | 35 | | public IList<RunQueryFilter> Filters { get; } |
| | 36 | | /// <summary> List of OrderBy option. </summary> |
| 0 | 37 | | public IList<RunQueryOrderBy> OrderBy { get; } |
| | 38 | | } |
| | 39 | | } |