| | 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.Text.Json; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.ResourceManager.Compute.Models |
| | 12 | | { |
| | 13 | | public partial class RollingUpgradeProgressInfo : IUtf8JsonSerializable |
| | 14 | | { |
| | 15 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | 16 | | { |
| 0 | 17 | | writer.WriteStartObject(); |
| 0 | 18 | | if (SuccessfulInstanceCount != null) |
| | 19 | | { |
| 0 | 20 | | writer.WritePropertyName("successfulInstanceCount"); |
| 0 | 21 | | writer.WriteNumberValue(SuccessfulInstanceCount.Value); |
| | 22 | | } |
| 0 | 23 | | if (FailedInstanceCount != null) |
| | 24 | | { |
| 0 | 25 | | writer.WritePropertyName("failedInstanceCount"); |
| 0 | 26 | | writer.WriteNumberValue(FailedInstanceCount.Value); |
| | 27 | | } |
| 0 | 28 | | if (InProgressInstanceCount != null) |
| | 29 | | { |
| 0 | 30 | | writer.WritePropertyName("inProgressInstanceCount"); |
| 0 | 31 | | writer.WriteNumberValue(InProgressInstanceCount.Value); |
| | 32 | | } |
| 0 | 33 | | if (PendingInstanceCount != null) |
| | 34 | | { |
| 0 | 35 | | writer.WritePropertyName("pendingInstanceCount"); |
| 0 | 36 | | writer.WriteNumberValue(PendingInstanceCount.Value); |
| | 37 | | } |
| 0 | 38 | | writer.WriteEndObject(); |
| 0 | 39 | | } |
| | 40 | |
|
| | 41 | | internal static RollingUpgradeProgressInfo DeserializeRollingUpgradeProgressInfo(JsonElement element) |
| | 42 | | { |
| 0 | 43 | | int? successfulInstanceCount = default; |
| 0 | 44 | | int? failedInstanceCount = default; |
| 0 | 45 | | int? inProgressInstanceCount = default; |
| 0 | 46 | | int? pendingInstanceCount = default; |
| 0 | 47 | | foreach (var property in element.EnumerateObject()) |
| | 48 | | { |
| 0 | 49 | | if (property.NameEquals("successfulInstanceCount")) |
| | 50 | | { |
| 0 | 51 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 52 | | { |
| | 53 | | continue; |
| | 54 | | } |
| 0 | 55 | | successfulInstanceCount = property.Value.GetInt32(); |
| 0 | 56 | | continue; |
| | 57 | | } |
| 0 | 58 | | if (property.NameEquals("failedInstanceCount")) |
| | 59 | | { |
| 0 | 60 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 61 | | { |
| | 62 | | continue; |
| | 63 | | } |
| 0 | 64 | | failedInstanceCount = property.Value.GetInt32(); |
| 0 | 65 | | continue; |
| | 66 | | } |
| 0 | 67 | | if (property.NameEquals("inProgressInstanceCount")) |
| | 68 | | { |
| 0 | 69 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 70 | | { |
| | 71 | | continue; |
| | 72 | | } |
| 0 | 73 | | inProgressInstanceCount = property.Value.GetInt32(); |
| 0 | 74 | | continue; |
| | 75 | | } |
| 0 | 76 | | if (property.NameEquals("pendingInstanceCount")) |
| | 77 | | { |
| 0 | 78 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 79 | | { |
| | 80 | | continue; |
| | 81 | | } |
| 0 | 82 | | pendingInstanceCount = property.Value.GetInt32(); |
| | 83 | | continue; |
| | 84 | | } |
| | 85 | | } |
| 0 | 86 | | return new RollingUpgradeProgressInfo(successfulInstanceCount, failedInstanceCount, inProgressInstanceCount, |
| | 87 | | } |
| | 88 | | } |
| | 89 | | } |