| | 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 | |
|
| | 10 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 11 | | { |
| | 12 | | /// <summary> Rerun tumbling window trigger Parameters. </summary> |
| | 13 | | internal partial class RerunTumblingWindowTriggerActionParameters |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of RerunTumblingWindowTriggerActionParameters. </summary> |
| | 16 | | /// <param name="startTime"> The start time for the time period for which restatement is initiated. Only UTC tim |
| | 17 | | /// <param name="endTime"> The end time for the time period for which restatement is initiated. Only UTC time is |
| | 18 | | /// <param name="maxConcurrency"> The max number of parallel time windows (ready for execution) for which a reru |
| 0 | 19 | | internal RerunTumblingWindowTriggerActionParameters(DateTimeOffset startTime, DateTimeOffset endTime, int maxCon |
| | 20 | | { |
| 0 | 21 | | StartTime = startTime; |
| 0 | 22 | | EndTime = endTime; |
| 0 | 23 | | MaxConcurrency = maxConcurrency; |
| 0 | 24 | | } |
| | 25 | |
|
| | 26 | | /// <summary> The start time for the time period for which restatement is initiated. Only UTC time is currently |
| 0 | 27 | | public DateTimeOffset StartTime { get; } |
| | 28 | | /// <summary> The end time for the time period for which restatement is initiated. Only UTC time is currently su |
| 0 | 29 | | public DateTimeOffset EndTime { get; } |
| | 30 | | /// <summary> The max number of parallel time windows (ready for execution) for which a rerun is triggered. </su |
| 0 | 31 | | public int MaxConcurrency { get; } |
| | 32 | | } |
| | 33 | | } |