-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AmazonS3CompatibleReadSettings.Serialization.cs
309 lines (294 loc) · 13.6 KB
/
AmazonS3CompatibleReadSettings.Serialization.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.Collections.Generic;
using System.Text.Json;
using Azure.Core;
using Azure.Core.Expressions.DataFactory;
using Azure.ResourceManager.DataFactory;
namespace Azure.ResourceManager.DataFactory.Models
{
public partial class AmazonS3CompatibleReadSettings : IUtf8JsonSerializable, IJsonModel<AmazonS3CompatibleReadSettings>
{
void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) => ((IJsonModel<AmazonS3CompatibleReadSettings>)this).Write(writer, new ModelReaderWriterOptions("W"));
void IJsonModel<AmazonS3CompatibleReadSettings>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<AmazonS3CompatibleReadSettings>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(AmazonS3CompatibleReadSettings)} does not support '{format}' format.");
}
writer.WriteStartObject();
if (Optional.IsDefined(Recursive))
{
writer.WritePropertyName("recursive"u8);
JsonSerializer.Serialize(writer, Recursive);
}
if (Optional.IsDefined(WildcardFolderPath))
{
writer.WritePropertyName("wildcardFolderPath"u8);
JsonSerializer.Serialize(writer, WildcardFolderPath);
}
if (Optional.IsDefined(WildcardFileName))
{
writer.WritePropertyName("wildcardFileName"u8);
JsonSerializer.Serialize(writer, WildcardFileName);
}
if (Optional.IsDefined(Prefix))
{
writer.WritePropertyName("prefix"u8);
JsonSerializer.Serialize(writer, Prefix);
}
if (Optional.IsDefined(FileListPath))
{
writer.WritePropertyName("fileListPath"u8);
JsonSerializer.Serialize(writer, FileListPath);
}
if (Optional.IsDefined(EnablePartitionDiscovery))
{
writer.WritePropertyName("enablePartitionDiscovery"u8);
JsonSerializer.Serialize(writer, EnablePartitionDiscovery);
}
if (Optional.IsDefined(PartitionRootPath))
{
writer.WritePropertyName("partitionRootPath"u8);
JsonSerializer.Serialize(writer, PartitionRootPath);
}
if (Optional.IsDefined(DeleteFilesAfterCompletion))
{
writer.WritePropertyName("deleteFilesAfterCompletion"u8);
JsonSerializer.Serialize(writer, DeleteFilesAfterCompletion);
}
if (Optional.IsDefined(ModifiedDatetimeStart))
{
writer.WritePropertyName("modifiedDatetimeStart"u8);
JsonSerializer.Serialize(writer, ModifiedDatetimeStart);
}
if (Optional.IsDefined(ModifiedDatetimeEnd))
{
writer.WritePropertyName("modifiedDatetimeEnd"u8);
JsonSerializer.Serialize(writer, ModifiedDatetimeEnd);
}
writer.WritePropertyName("type"u8);
writer.WriteStringValue(StoreReadSettingsType);
if (Optional.IsDefined(MaxConcurrentConnections))
{
writer.WritePropertyName("maxConcurrentConnections"u8);
JsonSerializer.Serialize(writer, MaxConcurrentConnections);
}
if (Optional.IsDefined(DisableMetricsCollection))
{
writer.WritePropertyName("disableMetricsCollection"u8);
JsonSerializer.Serialize(writer, DisableMetricsCollection);
}
foreach (var item in AdditionalProperties)
{
writer.WritePropertyName(item.Key);
#if NET6_0_OR_GREATER
writer.WriteRawValue(item.Value);
#else
using (JsonDocument document = JsonDocument.Parse(item.Value))
{
JsonSerializer.Serialize(writer, document.RootElement);
}
#endif
}
writer.WriteEndObject();
}
AmazonS3CompatibleReadSettings IJsonModel<AmazonS3CompatibleReadSettings>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<AmazonS3CompatibleReadSettings>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(AmazonS3CompatibleReadSettings)} does not support '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeAmazonS3CompatibleReadSettings(document.RootElement, options);
}
internal static AmazonS3CompatibleReadSettings DeserializeAmazonS3CompatibleReadSettings(JsonElement element, ModelReaderWriterOptions options = null)
{
options ??= new ModelReaderWriterOptions("W");
if (element.ValueKind == JsonValueKind.Null)
{
return null;
}
DataFactoryElement<bool> recursive = default;
DataFactoryElement<string> wildcardFolderPath = default;
DataFactoryElement<string> wildcardFileName = default;
DataFactoryElement<string> prefix = default;
DataFactoryElement<string> fileListPath = default;
DataFactoryElement<bool> enablePartitionDiscovery = default;
DataFactoryElement<string> partitionRootPath = default;
DataFactoryElement<bool> deleteFilesAfterCompletion = default;
DataFactoryElement<string> modifiedDatetimeStart = default;
DataFactoryElement<string> modifiedDatetimeEnd = default;
string type = default;
DataFactoryElement<int> maxConcurrentConnections = default;
DataFactoryElement<bool> disableMetricsCollection = default;
IDictionary<string, BinaryData> additionalProperties = default;
Dictionary<string, BinaryData> additionalPropertiesDictionary = new Dictionary<string, BinaryData>();
foreach (var property in element.EnumerateObject())
{
if (property.NameEquals("recursive"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
recursive = JsonSerializer.Deserialize<DataFactoryElement<bool>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("wildcardFolderPath"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
wildcardFolderPath = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("wildcardFileName"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
wildcardFileName = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("prefix"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
prefix = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("fileListPath"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
fileListPath = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("enablePartitionDiscovery"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
enablePartitionDiscovery = JsonSerializer.Deserialize<DataFactoryElement<bool>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("partitionRootPath"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
partitionRootPath = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("deleteFilesAfterCompletion"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
deleteFilesAfterCompletion = JsonSerializer.Deserialize<DataFactoryElement<bool>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("modifiedDatetimeStart"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
modifiedDatetimeStart = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("modifiedDatetimeEnd"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
modifiedDatetimeEnd = JsonSerializer.Deserialize<DataFactoryElement<string>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("type"u8))
{
type = property.Value.GetString();
continue;
}
if (property.NameEquals("maxConcurrentConnections"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
maxConcurrentConnections = JsonSerializer.Deserialize<DataFactoryElement<int>>(property.Value.GetRawText());
continue;
}
if (property.NameEquals("disableMetricsCollection"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
disableMetricsCollection = JsonSerializer.Deserialize<DataFactoryElement<bool>>(property.Value.GetRawText());
continue;
}
additionalPropertiesDictionary.Add(property.Name, BinaryData.FromString(property.Value.GetRawText()));
}
additionalProperties = additionalPropertiesDictionary;
return new AmazonS3CompatibleReadSettings(
type,
maxConcurrentConnections,
disableMetricsCollection,
additionalProperties,
recursive,
wildcardFolderPath,
wildcardFileName,
prefix,
fileListPath,
enablePartitionDiscovery,
partitionRootPath,
deleteFilesAfterCompletion,
modifiedDatetimeStart,
modifiedDatetimeEnd);
}
BinaryData IPersistableModel<AmazonS3CompatibleReadSettings>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<AmazonS3CompatibleReadSettings>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
default:
throw new FormatException($"The model {nameof(AmazonS3CompatibleReadSettings)} does not support '{options.Format}' format.");
}
}
AmazonS3CompatibleReadSettings IPersistableModel<AmazonS3CompatibleReadSettings>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<AmazonS3CompatibleReadSettings>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeAmazonS3CompatibleReadSettings(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(AmazonS3CompatibleReadSettings)} does not support '{options.Format}' format.");
}
}
string IPersistableModel<AmazonS3CompatibleReadSettings>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
}
}