forked from Azure/azure-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeployJsonContext.cs
More file actions
28 lines (25 loc) · 1.01 KB
/
DeployJsonContext.cs
File metadata and controls
28 lines (25 loc) · 1.01 KB
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
using Areas.Deploy.Services.Util;
using AzureMcp.Areas.Deploy.Commands.Quota;
using AzureMcp.Areas.Deploy.Commands.Region;
using AzureMcp.Areas.Deploy.Models;
using AzureMcp.Areas.Deploy.Options;
namespace AzureMcp.Areas.Deploy.Commands;
[JsonSourceGenerationOptions(
PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase,
PropertyNameCaseInsensitive = true,
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull
)]
[JsonSerializable(typeof(AppTopology))]
[JsonSerializable(typeof(MermaidData))]
[JsonSerializable(typeof(MermaidConfig))]
[JsonSerializable(typeof(QuotaCheckCommand.QuotaCheckCommandResult))]
[JsonSerializable(typeof(QuotaInfo))]
[JsonSerializable(typeof(Dictionary<string, List<QuotaInfo>>))]
[JsonSerializable(typeof(RegionCheckCommand.RegionCheckCommandResult))]
[JsonSerializable(typeof(List<string>))]
internal sealed partial class DeployJsonContext : JsonSerializerContext
{
}