| | 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.Collections.Generic; |
| | 9 | | using System.Text.Json; |
| | 10 | | using Azure.Core; |
| | 11 | |
|
| | 12 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 13 | | { |
| | 14 | | public partial class ODataResourceDataset : IUtf8JsonSerializable |
| | 15 | | { |
| | 16 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | 17 | | { |
| 0 | 18 | | writer.WriteStartObject(); |
| 0 | 19 | | writer.WritePropertyName("type"); |
| 0 | 20 | | writer.WriteStringValue(Type); |
| 0 | 21 | | if (Optional.IsDefined(Description)) |
| | 22 | | { |
| 0 | 23 | | writer.WritePropertyName("description"); |
| 0 | 24 | | writer.WriteStringValue(Description); |
| | 25 | | } |
| 0 | 26 | | if (Optional.IsDefined(Structure)) |
| | 27 | | { |
| 0 | 28 | | writer.WritePropertyName("structure"); |
| 0 | 29 | | writer.WriteObjectValue(Structure); |
| | 30 | | } |
| 0 | 31 | | if (Optional.IsDefined(Schema)) |
| | 32 | | { |
| 0 | 33 | | writer.WritePropertyName("schema"); |
| 0 | 34 | | writer.WriteObjectValue(Schema); |
| | 35 | | } |
| 0 | 36 | | writer.WritePropertyName("linkedServiceName"); |
| 0 | 37 | | writer.WriteObjectValue(LinkedServiceName); |
| 0 | 38 | | if (Optional.IsCollectionDefined(Parameters)) |
| | 39 | | { |
| 0 | 40 | | writer.WritePropertyName("parameters"); |
| 0 | 41 | | writer.WriteStartObject(); |
| 0 | 42 | | foreach (var item in Parameters) |
| | 43 | | { |
| 0 | 44 | | writer.WritePropertyName(item.Key); |
| 0 | 45 | | writer.WriteObjectValue(item.Value); |
| | 46 | | } |
| 0 | 47 | | writer.WriteEndObject(); |
| | 48 | | } |
| 0 | 49 | | if (Optional.IsCollectionDefined(Annotations)) |
| | 50 | | { |
| 0 | 51 | | writer.WritePropertyName("annotations"); |
| 0 | 52 | | writer.WriteStartArray(); |
| 0 | 53 | | foreach (var item in Annotations) |
| | 54 | | { |
| 0 | 55 | | writer.WriteObjectValue(item); |
| | 56 | | } |
| 0 | 57 | | writer.WriteEndArray(); |
| | 58 | | } |
| 0 | 59 | | if (Optional.IsDefined(Folder)) |
| | 60 | | { |
| 0 | 61 | | writer.WritePropertyName("folder"); |
| 0 | 62 | | writer.WriteObjectValue(Folder); |
| | 63 | | } |
| 0 | 64 | | writer.WritePropertyName("typeProperties"); |
| 0 | 65 | | writer.WriteStartObject(); |
| 0 | 66 | | if (Optional.IsDefined(Path)) |
| | 67 | | { |
| 0 | 68 | | writer.WritePropertyName("path"); |
| 0 | 69 | | writer.WriteObjectValue(Path); |
| | 70 | | } |
| 0 | 71 | | writer.WriteEndObject(); |
| 0 | 72 | | foreach (var item in AdditionalProperties) |
| | 73 | | { |
| 0 | 74 | | writer.WritePropertyName(item.Key); |
| 0 | 75 | | writer.WriteObjectValue(item.Value); |
| | 76 | | } |
| 0 | 77 | | writer.WriteEndObject(); |
| 0 | 78 | | } |
| | 79 | |
|
| | 80 | | internal static ODataResourceDataset DeserializeODataResourceDataset(JsonElement element) |
| | 81 | | { |
| 0 | 82 | | string type = default; |
| 0 | 83 | | Optional<string> description = default; |
| 0 | 84 | | Optional<object> structure = default; |
| 0 | 85 | | Optional<object> schema = default; |
| 0 | 86 | | LinkedServiceReference linkedServiceName = default; |
| 0 | 87 | | Optional<IDictionary<string, ParameterSpecification>> parameters = default; |
| 0 | 88 | | Optional<IList<object>> annotations = default; |
| 0 | 89 | | Optional<DatasetFolder> folder = default; |
| 0 | 90 | | Optional<object> path = default; |
| 0 | 91 | | IDictionary<string, object> additionalProperties = default; |
| 0 | 92 | | Dictionary<string, object> additionalPropertiesDictionary = default; |
| 0 | 93 | | foreach (var property in element.EnumerateObject()) |
| | 94 | | { |
| 0 | 95 | | if (property.NameEquals("type")) |
| | 96 | | { |
| 0 | 97 | | type = property.Value.GetString(); |
| 0 | 98 | | continue; |
| | 99 | | } |
| 0 | 100 | | if (property.NameEquals("description")) |
| | 101 | | { |
| 0 | 102 | | description = property.Value.GetString(); |
| 0 | 103 | | continue; |
| | 104 | | } |
| 0 | 105 | | if (property.NameEquals("structure")) |
| | 106 | | { |
| 0 | 107 | | structure = property.Value.GetObject(); |
| 0 | 108 | | continue; |
| | 109 | | } |
| 0 | 110 | | if (property.NameEquals("schema")) |
| | 111 | | { |
| 0 | 112 | | schema = property.Value.GetObject(); |
| 0 | 113 | | continue; |
| | 114 | | } |
| 0 | 115 | | if (property.NameEquals("linkedServiceName")) |
| | 116 | | { |
| 0 | 117 | | linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); |
| 0 | 118 | | continue; |
| | 119 | | } |
| 0 | 120 | | if (property.NameEquals("parameters")) |
| | 121 | | { |
| 0 | 122 | | Dictionary<string, ParameterSpecification> dictionary = new Dictionary<string, ParameterSpecificatio |
| 0 | 123 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 124 | | { |
| 0 | 125 | | dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property |
| | 126 | | } |
| 0 | 127 | | parameters = dictionary; |
| 0 | 128 | | continue; |
| | 129 | | } |
| 0 | 130 | | if (property.NameEquals("annotations")) |
| | 131 | | { |
| 0 | 132 | | List<object> array = new List<object>(); |
| 0 | 133 | | foreach (var item in property.Value.EnumerateArray()) |
| | 134 | | { |
| 0 | 135 | | array.Add(item.GetObject()); |
| | 136 | | } |
| 0 | 137 | | annotations = array; |
| 0 | 138 | | continue; |
| | 139 | | } |
| 0 | 140 | | if (property.NameEquals("folder")) |
| | 141 | | { |
| 0 | 142 | | folder = DatasetFolder.DeserializeDatasetFolder(property.Value); |
| 0 | 143 | | continue; |
| | 144 | | } |
| 0 | 145 | | if (property.NameEquals("typeProperties")) |
| | 146 | | { |
| 0 | 147 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 148 | | { |
| 0 | 149 | | if (property0.NameEquals("path")) |
| | 150 | | { |
| 0 | 151 | | path = property0.Value.GetObject(); |
| | 152 | | continue; |
| | 153 | | } |
| | 154 | | } |
| | 155 | | continue; |
| | 156 | | } |
| 0 | 157 | | additionalPropertiesDictionary ??= new Dictionary<string, object>(); |
| 0 | 158 | | additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); |
| | 159 | | } |
| 0 | 160 | | additionalProperties = additionalPropertiesDictionary; |
| 0 | 161 | | return new ODataResourceDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, O |
| | 162 | | } |
| | 163 | | } |
| | 164 | | } |