| | 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 NetezzaLinkedService : 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(ConnectVia)) |
| | 22 | | { |
| 0 | 23 | | writer.WritePropertyName("connectVia"); |
| 0 | 24 | | writer.WriteObjectValue(ConnectVia); |
| | 25 | | } |
| 0 | 26 | | if (Optional.IsDefined(Description)) |
| | 27 | | { |
| 0 | 28 | | writer.WritePropertyName("description"); |
| 0 | 29 | | writer.WriteStringValue(Description); |
| | 30 | | } |
| 0 | 31 | | if (Optional.IsCollectionDefined(Parameters)) |
| | 32 | | { |
| 0 | 33 | | writer.WritePropertyName("parameters"); |
| 0 | 34 | | writer.WriteStartObject(); |
| 0 | 35 | | foreach (var item in Parameters) |
| | 36 | | { |
| 0 | 37 | | writer.WritePropertyName(item.Key); |
| 0 | 38 | | writer.WriteObjectValue(item.Value); |
| | 39 | | } |
| 0 | 40 | | writer.WriteEndObject(); |
| | 41 | | } |
| 0 | 42 | | if (Optional.IsCollectionDefined(Annotations)) |
| | 43 | | { |
| 0 | 44 | | writer.WritePropertyName("annotations"); |
| 0 | 45 | | writer.WriteStartArray(); |
| 0 | 46 | | foreach (var item in Annotations) |
| | 47 | | { |
| 0 | 48 | | writer.WriteObjectValue(item); |
| | 49 | | } |
| 0 | 50 | | writer.WriteEndArray(); |
| | 51 | | } |
| 0 | 52 | | writer.WritePropertyName("typeProperties"); |
| 0 | 53 | | writer.WriteStartObject(); |
| 0 | 54 | | if (Optional.IsDefined(ConnectionString)) |
| | 55 | | { |
| 0 | 56 | | writer.WritePropertyName("connectionString"); |
| 0 | 57 | | writer.WriteObjectValue(ConnectionString); |
| | 58 | | } |
| 0 | 59 | | if (Optional.IsDefined(Pwd)) |
| | 60 | | { |
| 0 | 61 | | writer.WritePropertyName("pwd"); |
| 0 | 62 | | writer.WriteObjectValue(Pwd); |
| | 63 | | } |
| 0 | 64 | | if (Optional.IsDefined(EncryptedCredential)) |
| | 65 | | { |
| 0 | 66 | | writer.WritePropertyName("encryptedCredential"); |
| 0 | 67 | | writer.WriteObjectValue(EncryptedCredential); |
| | 68 | | } |
| 0 | 69 | | writer.WriteEndObject(); |
| 0 | 70 | | foreach (var item in AdditionalProperties) |
| | 71 | | { |
| 0 | 72 | | writer.WritePropertyName(item.Key); |
| 0 | 73 | | writer.WriteObjectValue(item.Value); |
| | 74 | | } |
| 0 | 75 | | writer.WriteEndObject(); |
| 0 | 76 | | } |
| | 77 | |
|
| | 78 | | internal static NetezzaLinkedService DeserializeNetezzaLinkedService(JsonElement element) |
| | 79 | | { |
| 0 | 80 | | string type = default; |
| 0 | 81 | | Optional<IntegrationRuntimeReference> connectVia = default; |
| 0 | 82 | | Optional<string> description = default; |
| 0 | 83 | | Optional<IDictionary<string, ParameterSpecification>> parameters = default; |
| 0 | 84 | | Optional<IList<object>> annotations = default; |
| 0 | 85 | | Optional<object> connectionString = default; |
| 0 | 86 | | Optional<AzureKeyVaultSecretReference> pwd = default; |
| 0 | 87 | | Optional<object> encryptedCredential = default; |
| 0 | 88 | | IDictionary<string, object> additionalProperties = default; |
| 0 | 89 | | Dictionary<string, object> additionalPropertiesDictionary = default; |
| 0 | 90 | | foreach (var property in element.EnumerateObject()) |
| | 91 | | { |
| 0 | 92 | | if (property.NameEquals("type")) |
| | 93 | | { |
| 0 | 94 | | type = property.Value.GetString(); |
| 0 | 95 | | continue; |
| | 96 | | } |
| 0 | 97 | | if (property.NameEquals("connectVia")) |
| | 98 | | { |
| 0 | 99 | | connectVia = IntegrationRuntimeReference.DeserializeIntegrationRuntimeReference(property.Value); |
| 0 | 100 | | continue; |
| | 101 | | } |
| 0 | 102 | | if (property.NameEquals("description")) |
| | 103 | | { |
| 0 | 104 | | description = property.Value.GetString(); |
| 0 | 105 | | continue; |
| | 106 | | } |
| 0 | 107 | | if (property.NameEquals("parameters")) |
| | 108 | | { |
| 0 | 109 | | Dictionary<string, ParameterSpecification> dictionary = new Dictionary<string, ParameterSpecificatio |
| 0 | 110 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 111 | | { |
| 0 | 112 | | dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property |
| | 113 | | } |
| 0 | 114 | | parameters = dictionary; |
| 0 | 115 | | continue; |
| | 116 | | } |
| 0 | 117 | | if (property.NameEquals("annotations")) |
| | 118 | | { |
| 0 | 119 | | List<object> array = new List<object>(); |
| 0 | 120 | | foreach (var item in property.Value.EnumerateArray()) |
| | 121 | | { |
| 0 | 122 | | array.Add(item.GetObject()); |
| | 123 | | } |
| 0 | 124 | | annotations = array; |
| 0 | 125 | | continue; |
| | 126 | | } |
| 0 | 127 | | if (property.NameEquals("typeProperties")) |
| | 128 | | { |
| 0 | 129 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 130 | | { |
| 0 | 131 | | if (property0.NameEquals("connectionString")) |
| | 132 | | { |
| 0 | 133 | | connectionString = property0.Value.GetObject(); |
| 0 | 134 | | continue; |
| | 135 | | } |
| 0 | 136 | | if (property0.NameEquals("pwd")) |
| | 137 | | { |
| 0 | 138 | | pwd = AzureKeyVaultSecretReference.DeserializeAzureKeyVaultSecretReference(property0.Value); |
| 0 | 139 | | continue; |
| | 140 | | } |
| 0 | 141 | | if (property0.NameEquals("encryptedCredential")) |
| | 142 | | { |
| 0 | 143 | | encryptedCredential = property0.Value.GetObject(); |
| | 144 | | continue; |
| | 145 | | } |
| | 146 | | } |
| | 147 | | continue; |
| | 148 | | } |
| 0 | 149 | | additionalPropertiesDictionary ??= new Dictionary<string, object>(); |
| 0 | 150 | | additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); |
| | 151 | | } |
| 0 | 152 | | additionalProperties = additionalPropertiesDictionary; |
| 0 | 153 | | return new NetezzaLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters) |
| | 154 | | } |
| | 155 | | } |
| | 156 | | } |