-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ChaosExperimentAction.Serialization.cs
114 lines (99 loc) · 4.83 KB
/
ChaosExperimentAction.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.Text.Json;
using Azure.Core;
namespace Azure.ResourceManager.Chaos.Models
{
[PersistableModelProxy(typeof(UnknownChaosExperimentAction))]
public partial class ChaosExperimentAction : IUtf8JsonSerializable, IJsonModel<ChaosExperimentAction>
{
void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) => ((IJsonModel<ChaosExperimentAction>)this).Write(writer, new ModelReaderWriterOptions("W"));
void IJsonModel<ChaosExperimentAction>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<ChaosExperimentAction>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(ChaosExperimentAction)} does not support '{format}' format.");
}
writer.WriteStartObject();
writer.WritePropertyName("type"u8);
writer.WriteStringValue(ActionType);
writer.WritePropertyName("name"u8);
writer.WriteStringValue(Name);
if (options.Format != "W" && _serializedAdditionalRawData != null)
{
foreach (var item in _serializedAdditionalRawData)
{
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();
}
ChaosExperimentAction IJsonModel<ChaosExperimentAction>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<ChaosExperimentAction>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(ChaosExperimentAction)} does not support '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeChaosExperimentAction(document.RootElement, options);
}
internal static ChaosExperimentAction DeserializeChaosExperimentAction(JsonElement element, ModelReaderWriterOptions options = null)
{
options ??= new ModelReaderWriterOptions("W");
if (element.ValueKind == JsonValueKind.Null)
{
return null;
}
if (element.TryGetProperty("type", out JsonElement discriminator))
{
switch (discriminator.GetString())
{
case "continuous": return ChaosContinuousAction.DeserializeChaosContinuousAction(element);
case "delay": return ChaosDelayAction.DeserializeChaosDelayAction(element);
case "discrete": return ChaosDiscreteAction.DeserializeChaosDiscreteAction(element);
}
}
return UnknownChaosExperimentAction.DeserializeUnknownChaosExperimentAction(element);
}
BinaryData IPersistableModel<ChaosExperimentAction>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<ChaosExperimentAction>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
default:
throw new FormatException($"The model {nameof(ChaosExperimentAction)} does not support '{options.Format}' format.");
}
}
ChaosExperimentAction IPersistableModel<ChaosExperimentAction>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<ChaosExperimentAction>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeChaosExperimentAction(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(ChaosExperimentAction)} does not support '{options.Format}' format.");
}
}
string IPersistableModel<ChaosExperimentAction>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
}
}