Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/GcpKmsOptions.cs
2026-02-04 19:59:20 +02:00

37 lines
1.2 KiB
C#

namespace StellaOps.Cryptography.Kms;
/// <summary>
/// Configuration for the Google Cloud KMS-backed <see cref="IKmsClient"/>.
/// </summary>
public sealed class GcpKmsOptions
{
private TimeSpan _metadataCacheDuration = TimeSpan.FromMinutes(5);
private TimeSpan _publicKeyCacheDuration = TimeSpan.FromMinutes(10);
/// <summary>
/// Gets or sets the service endpoint (default: <c>kms.googleapis.com</c>).
/// </summary>
public string Endpoint { get; set; } = "kms.googleapis.com";
/// <summary>
/// Gets or sets the cache duration for crypto key metadata lookups.
/// </summary>
public TimeSpan MetadataCacheDuration
{
get => _metadataCacheDuration;
set => _metadataCacheDuration = EnsurePositive(value, TimeSpan.FromMinutes(5));
}
/// <summary>
/// Gets or sets the cache duration for exported public key material.
/// </summary>
public TimeSpan PublicKeyCacheDuration
{
get => _publicKeyCacheDuration;
set => _publicKeyCacheDuration = EnsurePositive(value, TimeSpan.FromMinutes(10));
}
private static TimeSpan EnsurePositive(TimeSpan value, TimeSpan @default)
=> value <= TimeSpan.Zero ? @default : value;
}