|   |  | 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 DatabricksNotebookActivity : 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("notebookPath"); | 
|   | 0 | 61 |  |             writer.WriteObjectValue(NotebookPath); | 
|   | 0 | 62 |  |             if (Optional.IsCollectionDefined(BaseParameters)) | 
|   |  | 63 |  |             { | 
|   | 0 | 64 |  |                 writer.WritePropertyName("baseParameters"); | 
|   | 0 | 65 |  |                 writer.WriteStartObject(); | 
|   | 0 | 66 |  |                 foreach (var item in BaseParameters) | 
|   |  | 67 |  |                 { | 
|   | 0 | 68 |  |                     writer.WritePropertyName(item.Key); | 
|   | 0 | 69 |  |                     writer.WriteObjectValue(item.Value); | 
|   |  | 70 |  |                 } | 
|   | 0 | 71 |  |                 writer.WriteEndObject(); | 
|   |  | 72 |  |             } | 
|   | 0 | 73 |  |             if (Optional.IsCollectionDefined(Libraries)) | 
|   |  | 74 |  |             { | 
|   | 0 | 75 |  |                 writer.WritePropertyName("libraries"); | 
|   | 0 | 76 |  |                 writer.WriteStartArray(); | 
|   | 0 | 77 |  |                 foreach (var item in Libraries) | 
|   |  | 78 |  |                 { | 
|   | 0 | 79 |  |                     writer.WriteStartObject(); | 
|   | 0 | 80 |  |                     foreach (var item0 in item) | 
|   |  | 81 |  |                     { | 
|   | 0 | 82 |  |                         writer.WritePropertyName(item0.Key); | 
|   | 0 | 83 |  |                         writer.WriteObjectValue(item0.Value); | 
|   |  | 84 |  |                     } | 
|   | 0 | 85 |  |                     writer.WriteEndObject(); | 
|   |  | 86 |  |                 } | 
|   | 0 | 87 |  |                 writer.WriteEndArray(); | 
|   |  | 88 |  |             } | 
|   | 0 | 89 |  |             writer.WriteEndObject(); | 
|   | 0 | 90 |  |             foreach (var item in AdditionalProperties) | 
|   |  | 91 |  |             { | 
|   | 0 | 92 |  |                 writer.WritePropertyName(item.Key); | 
|   | 0 | 93 |  |                 writer.WriteObjectValue(item.Value); | 
|   |  | 94 |  |             } | 
|   | 0 | 95 |  |             writer.WriteEndObject(); | 
|   | 0 | 96 |  |         } | 
|   |  | 97 |  |  | 
|   |  | 98 |  |         internal static DatabricksNotebookActivity DeserializeDatabricksNotebookActivity(JsonElement element) | 
|   |  | 99 |  |         { | 
|   | 0 | 100 |  |             Optional<LinkedServiceReference> linkedServiceName = default; | 
|   | 0 | 101 |  |             Optional<ActivityPolicy> policy = default; | 
|   | 0 | 102 |  |             string name = default; | 
|   | 0 | 103 |  |             string type = default; | 
|   | 0 | 104 |  |             Optional<string> description = default; | 
|   | 0 | 105 |  |             Optional<IList<ActivityDependency>> dependsOn = default; | 
|   | 0 | 106 |  |             Optional<IList<UserProperty>> userProperties = default; | 
|   | 0 | 107 |  |             object notebookPath = default; | 
|   | 0 | 108 |  |             Optional<IDictionary<string, object>> baseParameters = default; | 
|   | 0 | 109 |  |             Optional<IList<IDictionary<string, object>>> libraries = default; | 
|   | 0 | 110 |  |             IDictionary<string, object> additionalProperties = default; | 
|   | 0 | 111 |  |             Dictionary<string, object> additionalPropertiesDictionary = default; | 
|   | 0 | 112 |  |             foreach (var property in element.EnumerateObject()) | 
|   |  | 113 |  |             { | 
|   | 0 | 114 |  |                 if (property.NameEquals("linkedServiceName")) | 
|   |  | 115 |  |                 { | 
|   | 0 | 116 |  |                     linkedServiceName = LinkedServiceReference.DeserializeLinkedServiceReference(property.Value); | 
|   | 0 | 117 |  |                     continue; | 
|   |  | 118 |  |                 } | 
|   | 0 | 119 |  |                 if (property.NameEquals("policy")) | 
|   |  | 120 |  |                 { | 
|   | 0 | 121 |  |                     policy = ActivityPolicy.DeserializeActivityPolicy(property.Value); | 
|   | 0 | 122 |  |                     continue; | 
|   |  | 123 |  |                 } | 
|   | 0 | 124 |  |                 if (property.NameEquals("name")) | 
|   |  | 125 |  |                 { | 
|   | 0 | 126 |  |                     name = property.Value.GetString(); | 
|   | 0 | 127 |  |                     continue; | 
|   |  | 128 |  |                 } | 
|   | 0 | 129 |  |                 if (property.NameEquals("type")) | 
|   |  | 130 |  |                 { | 
|   | 0 | 131 |  |                     type = property.Value.GetString(); | 
|   | 0 | 132 |  |                     continue; | 
|   |  | 133 |  |                 } | 
|   | 0 | 134 |  |                 if (property.NameEquals("description")) | 
|   |  | 135 |  |                 { | 
|   | 0 | 136 |  |                     description = property.Value.GetString(); | 
|   | 0 | 137 |  |                     continue; | 
|   |  | 138 |  |                 } | 
|   | 0 | 139 |  |                 if (property.NameEquals("dependsOn")) | 
|   |  | 140 |  |                 { | 
|   | 0 | 141 |  |                     List<ActivityDependency> array = new List<ActivityDependency>(); | 
|   | 0 | 142 |  |                     foreach (var item in property.Value.EnumerateArray()) | 
|   |  | 143 |  |                     { | 
|   | 0 | 144 |  |                         array.Add(ActivityDependency.DeserializeActivityDependency(item)); | 
|   |  | 145 |  |                     } | 
|   | 0 | 146 |  |                     dependsOn = array; | 
|   | 0 | 147 |  |                     continue; | 
|   |  | 148 |  |                 } | 
|   | 0 | 149 |  |                 if (property.NameEquals("userProperties")) | 
|   |  | 150 |  |                 { | 
|   | 0 | 151 |  |                     List<UserProperty> array = new List<UserProperty>(); | 
|   | 0 | 152 |  |                     foreach (var item in property.Value.EnumerateArray()) | 
|   |  | 153 |  |                     { | 
|   | 0 | 154 |  |                         array.Add(UserProperty.DeserializeUserProperty(item)); | 
|   |  | 155 |  |                     } | 
|   | 0 | 156 |  |                     userProperties = array; | 
|   | 0 | 157 |  |                     continue; | 
|   |  | 158 |  |                 } | 
|   | 0 | 159 |  |                 if (property.NameEquals("typeProperties")) | 
|   |  | 160 |  |                 { | 
|   | 0 | 161 |  |                     foreach (var property0 in property.Value.EnumerateObject()) | 
|   |  | 162 |  |                     { | 
|   | 0 | 163 |  |                         if (property0.NameEquals("notebookPath")) | 
|   |  | 164 |  |                         { | 
|   | 0 | 165 |  |                             notebookPath = property0.Value.GetObject(); | 
|   | 0 | 166 |  |                             continue; | 
|   |  | 167 |  |                         } | 
|   | 0 | 168 |  |                         if (property0.NameEquals("baseParameters")) | 
|   |  | 169 |  |                         { | 
|   | 0 | 170 |  |                             Dictionary<string, object> dictionary = new Dictionary<string, object>(); | 
|   | 0 | 171 |  |                             foreach (var property1 in property0.Value.EnumerateObject()) | 
|   |  | 172 |  |                             { | 
|   | 0 | 173 |  |                                 dictionary.Add(property1.Name, property1.Value.GetObject()); | 
|   |  | 174 |  |                             } | 
|   | 0 | 175 |  |                             baseParameters = dictionary; | 
|   | 0 | 176 |  |                             continue; | 
|   |  | 177 |  |                         } | 
|   | 0 | 178 |  |                         if (property0.NameEquals("libraries")) | 
|   |  | 179 |  |                         { | 
|   | 0 | 180 |  |                             List<IDictionary<string, object>> array = new List<IDictionary<string, object>>(); | 
|   | 0 | 181 |  |                             foreach (var item in property0.Value.EnumerateArray()) | 
|   |  | 182 |  |                             { | 
|   | 0 | 183 |  |                                 Dictionary<string, object> dictionary = new Dictionary<string, object>(); | 
|   | 0 | 184 |  |                                 foreach (var property1 in item.EnumerateObject()) | 
|   |  | 185 |  |                                 { | 
|   | 0 | 186 |  |                                     dictionary.Add(property1.Name, property1.Value.GetObject()); | 
|   |  | 187 |  |                                 } | 
|   | 0 | 188 |  |                                 array.Add(dictionary); | 
|   |  | 189 |  |                             } | 
|   | 0 | 190 |  |                             libraries = array; | 
|   |  | 191 |  |                             continue; | 
|   |  | 192 |  |                         } | 
|   |  | 193 |  |                     } | 
|   |  | 194 |  |                     continue; | 
|   |  | 195 |  |                 } | 
|   | 0 | 196 |  |                 additionalPropertiesDictionary ??= new Dictionary<string, object>(); | 
|   | 0 | 197 |  |                 additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject()); | 
|   |  | 198 |  |             } | 
|   | 0 | 199 |  |             additionalProperties = additionalPropertiesDictionary; | 
|   | 0 | 200 |  |             return new DatabricksNotebookActivity(name, type, description.Value, Optional.ToList(dependsOn), Optional.To | 
|   |  | 201 |  |         } | 
|   |  | 202 |  |     } | 
|   |  | 203 |  | } |