Reorganize, shared entities from TypeScript SDK

https://github.com/cloudflare/cloudflare-typescript/blob/v4.4.1/src/resources/shared.ts
This commit is contained in:
2025-06-24 09:16:43 +02:00
parent d64e445a79
commit 135e1a11f3
49 changed files with 1719 additions and 237 deletions

View File

@@ -0,0 +1,21 @@
namespace AMWD.Net.Api.Cloudflare
{
/// <summary>
/// A load balancer preview.
/// <see href="https://github.com/cloudflare/cloudflare-typescript/blob/v4.4.1/src/resources/shared.ts#L273">Source</see>
/// </summary>
public class LoadBalancerPreview
{
/// <summary>
/// Monitored pool IDs mapped to their respective names.
/// </summary>
[JsonProperty("pools")]
public IDictionary<string, string>? Pools { get; set; }
/// <summary>
/// Preview ID.
/// </summary>
[JsonProperty("preview_id")]
public string? PreviewId { get; set; }
}
}