| | 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> Response body with a run identifier. </summary> |
| | 13 | | public partial class CreateRunResponse |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of CreateRunResponse. </summary> |
| | 16 | | /// <param name="runId"> Identifier of a run. </param> |
| | 17 | | /// <exception cref="ArgumentNullException"> <paramref name="runId"/> is null. </exception> |
| 0 | 18 | | internal CreateRunResponse(string runId) |
| | 19 | | { |
| 0 | 20 | | if (runId == null) |
| | 21 | | { |
| 0 | 22 | | throw new ArgumentNullException(nameof(runId)); |
| | 23 | | } |
| | 24 | |
|
| 0 | 25 | | RunId = runId; |
| 0 | 26 | | } |
| | 27 | |
|
| | 28 | | /// <summary> Identifier of a run. </summary> |
| 0 | 29 | | public string RunId { get; } |
| | 30 | | } |
| | 31 | | } |