| | 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 PostgreSqlTableDataset : 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(TableName)) |
| | 67 | | { |
| 0 | 68 | | writer.WritePropertyName("tableName"); |
| 0 | 69 | | writer.WriteObjectValue(TableName); |
| | 70 | | } |
| 0 | 71 | | if (Optional.IsDefined(Table)) |
| | 72 | | { |
| 0 | 73 | | writer.WritePropertyName("table"); |
| 0 | 74 | | writer.WriteObjectValue(Table); |
| | 75 | | } |
| 0 | 76 | | if (Optional.IsDefined(SchemaTypePropertiesSchema)) |
| | 77 | | { |
| 0 | 78 | | writer.WritePropertyName("schema"); |
| 0 | 79 | | writer.WriteObjectValue(SchemaTypePropertiesSchema); |
| | 80 | | } |
| 0 | 81 | | writer.WriteEndObject(); |
| 0 | 82 | | foreach (var item in AdditionalProperties) |
| | 83 | | { |
| 0 | 84 | | writer.WritePropertyName(item.Key); |
| 0 | 85 | | writer.WriteObjectValue(item.Value); |
| | 86 | | } |
| 0 | 87 | | writer.WriteEndObject(); |
| 0 | 88 | | } |
| | 89 | |
|
| | 90 | | internal static PostgreSqlTableDataset DeserializePostgreSqlTableDataset(JsonElement element) |
| | 91 | | { |
| 0 | 92 | | string type = default; |
| 0 | 93 | | Optional<string> description = default; |
| 0 | 94 | | Optional<object> structure = default; |
| 0 | 95 | | Optional<object> schema = default; |
| 0 | 96 | | LinkedServiceReference linkedServiceName = default; |
| 0 | 97 | | Optional<IDictionary<string, ParameterSpecification>> parameters = default; |
| 0 | 98 | | Optional<IList<object>> annotations = default; |
| 0 | 99 | | Optional<DatasetFolder> folder = default; |
| 0 | 100 | | Optional<object> tableName = default; |
| 0 | 101 | | Optional<object> table = default; |
| 0 | 102 | | Optional<object> schema0 = default; |
| 0 | 103 | | IDictionary<string, object> additionalProperties = default; |
| 0 | 104 | | Dictionary<string, object> additionalPropertiesDictionary = default; |
| 0 | 105 | | foreach (var property in element.EnumerateObject()) |
| | 106 | | { |
| 0 | 107 | | if (property.NameEquals("type")) |
| | 108 | | { |
| 0 | 109 | | type = property.Value.GetString(); |
| 0 | 110 | | continue; |
| | 111 | | } |
| 0 | 112 | | if (property.NameEquals("description")) |
| | 113 | | { |
| 0 | 114 | | description = property.Value.GetString(); |
| 0 | 115 | | continue; |
| | 116 | | } |
| 0 | 117 | | if (property.NameEquals("structure")) |
| | 118 | | { |
| 0 | 119 | | structure = property.Value.GetObject(); |
| 0 | 120 | | continue; |
| | 121 | | } |
| 0 | 122 | | if (property.NameEquals("schema")) |
| | 123 | | { |
| 0 | 124 | | schema = property.Value.GetObject(); |
| 0 | 125 | | continue; |
| | 126 | | } |
| 0 | 127 | | if (property.NameEquals("linkedServiceName")) |
| | 128 | | { |
| 0 | 129 | | linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); |
| 0 | 130 | | continue; |
| | 131 | | } |
| 0 | 132 | | if (property.NameEquals("parameters")) |
| | 133 | | { |
| 0 | 134 | | Dictionary<string, ParameterSpecification> dictionary = new Dictionary<string, ParameterSpecificatio |
| 0 | 135 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 136 | | { |
| 0 | 137 | | dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property |
| | 138 | | } |
| 0 | 139 | | parameters = dictionary; |
| 0 | 140 | | continue; |
| | 141 | | } |
| 0 | 142 | | if (property.NameEquals("annotations")) |
| | 143 | | { |
| 0 | 144 | | List<object> array = new List<object>(); |
| 0 | 145 | | foreach (var item in property.Value.EnumerateArray()) |
| | 146 | | { |
| 0 | 147 | | array.Add(item.GetObject()); |
| | 148 | | } |
| 0 | 149 | | annotations = array; |
| 0 | 150 | | continue; |
| | 151 | | } |
| 0 | 152 | | if (property.NameEquals("folder")) |
| | 153 | | { |
| 0 | 154 | | folder = DatasetFolder.DeserializeDatasetFolder(property.Value); |
| 0 | 155 | | continue; |
| | 156 | | } |
| 0 | 157 | | if (property.NameEquals("typeProperties")) |
| | 158 | | { |
| 0 | 159 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 160 | | { |
| 0 | 161 | | if (property0.NameEquals("tableName")) |
| | 162 | | { |
| 0 | 163 | | tableName = property0.Value.GetObject(); |
| 0 | 164 | | continue; |
| | 165 | | } |
| 0 | 166 | | if (property0.NameEquals("table")) |
| | 167 | | { |
| 0 | 168 | | table = property0.Value.GetObject(); |
| 0 | 169 | | continue; |
| | 170 | | } |
| 0 | 171 | | if (property0.NameEquals("schema")) |
| | 172 | | { |
| 0 | 173 | | schema0 = property0.Value.GetObject(); |
| | 174 | | continue; |
| | 175 | | } |
| | 176 | | } |
| | 177 | | continue; |
| | 178 | | } |
| 0 | 179 | | additionalPropertiesDictionary ??= new Dictionary<string, object>(); |
| 0 | 180 | | additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); |
| | 181 | | } |
| 0 | 182 | | additionalProperties = additionalPropertiesDictionary; |
| 0 | 183 | | return new PostgreSqlTableDataset(type, description.Value, structure.Value, schema.Value, linkedServiceName, |
| | 184 | | } |
| | 185 | | } |
| | 186 | | } |