| | 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 AdditionalUnattendContent : IUtf8JsonSerializable |
| | 14 | | { |
| | 15 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | 16 | | { |
| 0 | 17 | | writer.WriteStartObject(); |
| 0 | 18 | | if (PassName != null) |
| | 19 | | { |
| 0 | 20 | | writer.WritePropertyName("passName"); |
| 0 | 21 | | writer.WriteStringValue(PassName); |
| | 22 | | } |
| 0 | 23 | | if (ComponentName != null) |
| | 24 | | { |
| 0 | 25 | | writer.WritePropertyName("componentName"); |
| 0 | 26 | | writer.WriteStringValue(ComponentName); |
| | 27 | | } |
| 0 | 28 | | if (SettingName != null) |
| | 29 | | { |
| 0 | 30 | | writer.WritePropertyName("settingName"); |
| 0 | 31 | | writer.WriteStringValue(SettingName.Value.ToSerialString()); |
| | 32 | | } |
| 0 | 33 | | if (Content != null) |
| | 34 | | { |
| 0 | 35 | | writer.WritePropertyName("content"); |
| 0 | 36 | | writer.WriteStringValue(Content); |
| | 37 | | } |
| 0 | 38 | | writer.WriteEndObject(); |
| 0 | 39 | | } |
| | 40 | |
|
| | 41 | | internal static AdditionalUnattendContent DeserializeAdditionalUnattendContent(JsonElement element) |
| | 42 | | { |
| 0 | 43 | | string passName = default; |
| 0 | 44 | | string componentName = default; |
| 0 | 45 | | SettingNames? settingName = default; |
| 0 | 46 | | string content = default; |
| 0 | 47 | | foreach (var property in element.EnumerateObject()) |
| | 48 | | { |
| 0 | 49 | | if (property.NameEquals("passName")) |
| | 50 | | { |
| 0 | 51 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 52 | | { |
| | 53 | | continue; |
| | 54 | | } |
| 0 | 55 | | passName = property.Value.GetString(); |
| 0 | 56 | | continue; |
| | 57 | | } |
| 0 | 58 | | if (property.NameEquals("componentName")) |
| | 59 | | { |
| 0 | 60 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 61 | | { |
| | 62 | | continue; |
| | 63 | | } |
| 0 | 64 | | componentName = property.Value.GetString(); |
| 0 | 65 | | continue; |
| | 66 | | } |
| 0 | 67 | | if (property.NameEquals("settingName")) |
| | 68 | | { |
| 0 | 69 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 70 | | { |
| | 71 | | continue; |
| | 72 | | } |
| 0 | 73 | | settingName = property.Value.GetString().ToSettingNames(); |
| 0 | 74 | | continue; |
| | 75 | | } |
| 0 | 76 | | if (property.NameEquals("content")) |
| | 77 | | { |
| 0 | 78 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 79 | | { |
| | 80 | | continue; |
| | 81 | | } |
| 0 | 82 | | content = property.Value.GetString(); |
| | 83 | | continue; |
| | 84 | | } |
| | 85 | | } |
| 0 | 86 | | return new AdditionalUnattendContent(passName, componentName, settingName, content); |
| | 87 | | } |
| | 88 | | } |
| | 89 | | } |