| | 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.ResourceManager.Compute.Models |
| | 9 | | { |
| | 10 | | /// <summary> Response after calling a manual recovery walk. </summary> |
| | 11 | | public partial class RecoveryWalkResponse |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of RecoveryWalkResponse. </summary> |
| 0 | 14 | | internal RecoveryWalkResponse() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of RecoveryWalkResponse. </summary> |
| | 19 | | /// <param name="walkPerformed"> Whether the recovery walk was performed. </param> |
| | 20 | | /// <param name="nextPlatformUpdateDomain"> The next update domain that needs to be walked. Null means walk span |
| 0 | 21 | | internal RecoveryWalkResponse(bool? walkPerformed, int? nextPlatformUpdateDomain) |
| | 22 | | { |
| 0 | 23 | | WalkPerformed = walkPerformed; |
| 0 | 24 | | NextPlatformUpdateDomain = nextPlatformUpdateDomain; |
| 0 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> Whether the recovery walk was performed. </summary> |
| 0 | 28 | | public bool? WalkPerformed { get; } |
| | 29 | | /// <summary> The next update domain that needs to be walked. Null means walk spanning all update domains has be |
| 0 | 30 | | public int? NextPlatformUpdateDomain { get; } |
| | 31 | | } |
| | 32 | | } |