| | | 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.Storage.Models |
| | | 12 | | { |
| | | 13 | | public partial class BlobRestoreStatus : IUtf8JsonSerializable |
| | | 14 | | { |
| | | 15 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | | 16 | | { |
| | 0 | 17 | | writer.WriteStartObject(); |
| | 0 | 18 | | if (Status != null) |
| | | 19 | | { |
| | 0 | 20 | | writer.WritePropertyName("status"); |
| | 0 | 21 | | writer.WriteStringValue(Status.Value.ToString()); |
| | | 22 | | } |
| | 0 | 23 | | if (FailureReason != null) |
| | | 24 | | { |
| | 0 | 25 | | writer.WritePropertyName("failureReason"); |
| | 0 | 26 | | writer.WriteStringValue(FailureReason); |
| | | 27 | | } |
| | 0 | 28 | | if (RestoreId != null) |
| | | 29 | | { |
| | 0 | 30 | | writer.WritePropertyName("restoreId"); |
| | 0 | 31 | | writer.WriteStringValue(RestoreId); |
| | | 32 | | } |
| | 0 | 33 | | if (Parameters != null) |
| | | 34 | | { |
| | 0 | 35 | | writer.WritePropertyName("parameters"); |
| | 0 | 36 | | writer.WriteObjectValue(Parameters); |
| | | 37 | | } |
| | 0 | 38 | | writer.WriteEndObject(); |
| | 0 | 39 | | } |
| | | 40 | | |
| | | 41 | | internal static BlobRestoreStatus DeserializeBlobRestoreStatus(JsonElement element) |
| | | 42 | | { |
| | 0 | 43 | | BlobRestoreProgressStatus? status = default; |
| | 0 | 44 | | string failureReason = default; |
| | 0 | 45 | | string restoreId = default; |
| | 0 | 46 | | BlobRestoreParameters parameters = default; |
| | 0 | 47 | | foreach (var property in element.EnumerateObject()) |
| | | 48 | | { |
| | 0 | 49 | | if (property.NameEquals("status")) |
| | | 50 | | { |
| | 0 | 51 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | | 52 | | { |
| | | 53 | | continue; |
| | | 54 | | } |
| | 0 | 55 | | status = new BlobRestoreProgressStatus(property.Value.GetString()); |
| | 0 | 56 | | continue; |
| | | 57 | | } |
| | 0 | 58 | | if (property.NameEquals("failureReason")) |
| | | 59 | | { |
| | 0 | 60 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | | 61 | | { |
| | | 62 | | continue; |
| | | 63 | | } |
| | 0 | 64 | | failureReason = property.Value.GetString(); |
| | 0 | 65 | | continue; |
| | | 66 | | } |
| | 0 | 67 | | if (property.NameEquals("restoreId")) |
| | | 68 | | { |
| | 0 | 69 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | | 70 | | { |
| | | 71 | | continue; |
| | | 72 | | } |
| | 0 | 73 | | restoreId = property.Value.GetString(); |
| | 0 | 74 | | continue; |
| | | 75 | | } |
| | 0 | 76 | | if (property.NameEquals("parameters")) |
| | | 77 | | { |
| | 0 | 78 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | | 79 | | { |
| | | 80 | | continue; |
| | | 81 | | } |
| | 0 | 82 | | parameters = BlobRestoreParameters.DeserializeBlobRestoreParameters(property.Value); |
| | | 83 | | continue; |
| | | 84 | | } |
| | | 85 | | } |
| | 0 | 86 | | return new BlobRestoreStatus(status, failureReason, restoreId, parameters); |
| | | 87 | | } |
| | | 88 | | } |
| | | 89 | | } |