Add "ZoneSettings" extensions
This commit is contained in:
23
Extensions/Cloudflare.Zones/Models/Settings/Ciphers.cs
Normal file
23
Extensions/Cloudflare.Zones/Models/Settings/Ciphers.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace AMWD.Net.Api.Cloudflare.Zones
|
||||
{
|
||||
/// <summary>
|
||||
/// An allowlist of ciphers for TLS termination. These ciphers must be in the
|
||||
/// BoringSSL format.
|
||||
/// </summary>
|
||||
public class Ciphers : ZoneSettingBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Ciphers"/> class.
|
||||
/// </summary>
|
||||
public Ciphers()
|
||||
{
|
||||
Id = ZoneSettingId.Ciphers;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Current value of the zone setting.
|
||||
/// </summary>
|
||||
[JsonProperty("value")]
|
||||
public IReadOnlyCollection<string> Value { get; set; } = [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user