| | 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 DatabricksSparkPythonActivity : IUtf8JsonSerializable |
| | 15 | | { |
| | 16 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | 17 | | { |
| 0 | 18 | | writer.WriteStartObject(); |
| 0 | 19 | | if (Optional.IsDefined(LinkedServiceName)) |
| | 20 | | { |
| 0 | 21 | | writer.WritePropertyName("linkedServiceName"); |
| 0 | 22 | | writer.WriteObjectValue(LinkedServiceName); |
| | 23 | | } |
| 0 | 24 | | if (Optional.IsDefined(Policy)) |
| | 25 | | { |
| 0 | 26 | | writer.WritePropertyName("policy"); |
| 0 | 27 | | writer.WriteObjectValue(Policy); |
| | 28 | | } |
| 0 | 29 | | writer.WritePropertyName("name"); |
| 0 | 30 | | writer.WriteStringValue(Name); |
| 0 | 31 | | writer.WritePropertyName("type"); |
| 0 | 32 | | writer.WriteStringValue(Type); |
| 0 | 33 | | if (Optional.IsDefined(Description)) |
| | 34 | | { |
| 0 | 35 | | writer.WritePropertyName("description"); |
| 0 | 36 | | writer.WriteStringValue(Description); |
| | 37 | | } |
| 0 | 38 | | if (Optional.IsCollectionDefined(DependsOn)) |
| | 39 | | { |
| 0 | 40 | | writer.WritePropertyName("dependsOn"); |
| 0 | 41 | | writer.WriteStartArray(); |
| 0 | 42 | | foreach (var item in DependsOn) |
| | 43 | | { |
| 0 | 44 | | writer.WriteObjectValue(item); |
| | 45 | | } |
| 0 | 46 | | writer.WriteEndArray(); |
| | 47 | | } |
| 0 | 48 | | if (Optional.IsCollectionDefined(UserProperties)) |
| | 49 | | { |
| 0 | 50 | | writer.WritePropertyName("userProperties"); |
| 0 | 51 | | writer.WriteStartArray(); |
| 0 | 52 | | foreach (var item in UserProperties) |
| | 53 | | { |
| 0 | 54 | | writer.WriteObjectValue(item); |
| | 55 | | } |
| 0 | 56 | | writer.WriteEndArray(); |
| | 57 | | } |
| 0 | 58 | | writer.WritePropertyName("typeProperties"); |
| 0 | 59 | | writer.WriteStartObject(); |
| 0 | 60 | | writer.WritePropertyName("pythonFile"); |
| 0 | 61 | | writer.WriteObjectValue(PythonFile); |
| 0 | 62 | | if (Optional.IsCollectionDefined(Parameters)) |
| | 63 | | { |
| 0 | 64 | | writer.WritePropertyName("parameters"); |
| 0 | 65 | | writer.WriteStartArray(); |
| 0 | 66 | | foreach (var item in Parameters) |
| | 67 | | { |
| 0 | 68 | | writer.WriteObjectValue(item); |
| | 69 | | } |
| 0 | 70 | | writer.WriteEndArray(); |
| | 71 | | } |
| 0 | 72 | | if (Optional.IsCollectionDefined(Libraries)) |
| | 73 | | { |
| 0 | 74 | | writer.WritePropertyName("libraries"); |
| 0 | 75 | | writer.WriteStartArray(); |
| 0 | 76 | | foreach (var item in Libraries) |
| | 77 | | { |
| 0 | 78 | | writer.WriteStartObject(); |
| 0 | 79 | | foreach (var item0 in item) |
| | 80 | | { |
| 0 | 81 | | writer.WritePropertyName(item0.Key); |
| 0 | 82 | | writer.WriteObjectValue(item0.Value); |
| | 83 | | } |
| 0 | 84 | | writer.WriteEndObject(); |
| | 85 | | } |
| 0 | 86 | | writer.WriteEndArray(); |
| | 87 | | } |
| 0 | 88 | | writer.WriteEndObject(); |
| 0 | 89 | | foreach (var item in AdditionalProperties) |
| | 90 | | { |
| 0 | 91 | | writer.WritePropertyName(item.Key); |
| 0 | 92 | | writer.WriteObjectValue(item.Value); |
| | 93 | | } |
| 0 | 94 | | writer.WriteEndObject(); |
| 0 | 95 | | } |
| | 96 | |
|
| | 97 | | internal static DatabricksSparkPythonActivity DeserializeDatabricksSparkPythonActivity(JsonElement element) |
| | 98 | | { |
| 0 | 99 | | Optional<LinkedServiceReference> linkedServiceName = default; |
| 0 | 100 | | Optional<ActivityPolicy> policy = default; |
| 0 | 101 | | string name = default; |
| 0 | 102 | | string type = default; |
| 0 | 103 | | Optional<string> description = default; |
| 0 | 104 | | Optional<IList<ActivityDependency>> dependsOn = default; |
| 0 | 105 | | Optional<IList<UserProperty>> userProperties = default; |
| 0 | 106 | | object pythonFile = default; |
| 0 | 107 | | Optional<IList<object>> parameters = default; |
| 0 | 108 | | Optional<IList<IDictionary<string, object>>> libraries = default; |
| 0 | 109 | | IDictionary<string, object> additionalProperties = default; |
| 0 | 110 | | Dictionary<string, object> additionalPropertiesDictionary = default; |
| 0 | 111 | | foreach (var property in element.EnumerateObject()) |
| | 112 | | { |
| 0 | 113 | | if (property.NameEquals("linkedServiceName")) |
| | 114 | | { |
| 0 | 115 | | linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); |
| 0 | 116 | | continue; |
| | 117 | | } |
| 0 | 118 | | if (property.NameEquals("policy")) |
| | 119 | | { |
| 0 | 120 | | policy = ActivityPolicy.DeserializeActivityPolicy(property.Value); |
| 0 | 121 | | continue; |
| | 122 | | } |
| 0 | 123 | | if (property.NameEquals("name")) |
| | 124 | | { |
| 0 | 125 | | name = property.Value.GetString(); |
| 0 | 126 | | continue; |
| | 127 | | } |
| 0 | 128 | | if (property.NameEquals("type")) |
| | 129 | | { |
| 0 | 130 | | type = property.Value.GetString(); |
| 0 | 131 | | continue; |
| | 132 | | } |
| 0 | 133 | | if (property.NameEquals("description")) |
| | 134 | | { |
| 0 | 135 | | description = property.Value.GetString(); |
| 0 | 136 | | continue; |
| | 137 | | } |
| 0 | 138 | | if (property.NameEquals("dependsOn")) |
| | 139 | | { |
| 0 | 140 | | List<ActivityDependency> array = new List<ActivityDependency>(); |
| 0 | 141 | | foreach (var item in property.Value.EnumerateArray()) |
| | 142 | | { |
| 0 | 143 | | array.Add(ActivityDependency.DeserializeActivityDependency(item)); |
| | 144 | | } |
| 0 | 145 | | dependsOn = array; |
| 0 | 146 | | continue; |
| | 147 | | } |
| 0 | 148 | | if (property.NameEquals("userProperties")) |
| | 149 | | { |
| 0 | 150 | | List<UserProperty> array = new List<UserProperty>(); |
| 0 | 151 | | foreach (var item in property.Value.EnumerateArray()) |
| | 152 | | { |
| 0 | 153 | | array.Add(UserProperty.DeserializeUserProperty(item)); |
| | 154 | | } |
| 0 | 155 | | userProperties = array; |
| 0 | 156 | | continue; |
| | 157 | | } |
| 0 | 158 | | if (property.NameEquals("typeProperties")) |
| | 159 | | { |
| 0 | 160 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 161 | | { |
| 0 | 162 | | if (property0.NameEquals("pythonFile")) |
| | 163 | | { |
| 0 | 164 | | pythonFile = property0.Value.GetObject(); |
| 0 | 165 | | continue; |
| | 166 | | } |
| 0 | 167 | | if (property0.NameEquals("parameters")) |
| | 168 | | { |
| 0 | 169 | | List<object> array = new List<object>(); |
| 0 | 170 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 171 | | { |
| 0 | 172 | | array.Add(item.GetObject()); |
| | 173 | | } |
| 0 | 174 | | parameters = array; |
| 0 | 175 | | continue; |
| | 176 | | } |
| 0 | 177 | | if (property0.NameEquals("libraries")) |
| | 178 | | { |
| 0 | 179 | | List<IDictionary<string, object>> array = new List<IDictionary<string, object>>(); |
| 0 | 180 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 181 | | { |
| 0 | 182 | | Dictionary<string, object> dictionary = new Dictionary<string, object>(); |
| 0 | 183 | | foreach (var property1 in item.EnumerateObject()) |
| | 184 | | { |
| 0 | 185 | | dictionary.Add(property1.Name, property1.Value.GetObject()); |
| | 186 | | } |
| 0 | 187 | | array.Add(dictionary); |
| | 188 | | } |
| 0 | 189 | | libraries = array; |
| | 190 | | continue; |
| | 191 | | } |
| | 192 | | } |
| | 193 | | continue; |
| | 194 | | } |
| 0 | 195 | | additionalPropertiesDictionary ??= new Dictionary<string, object>(); |
| 0 | 196 | | additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); |
| | 197 | | } |
| 0 | 198 | | additionalProperties = additionalPropertiesDictionary; |
| 0 | 199 | | return new DatabricksSparkPythonActivity(name, type, description.Value, Optional.ToList(dependsOn), Optional |
| | 200 | | } |
| | 201 | | } |
| | 202 | | } |