This commit is contained in:
11
src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyState.cs
Normal file
11
src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyState.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace StellaOps.Cryptography.Kms;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the lifecycle state of a KMS key or key version.
|
||||
/// </summary>
|
||||
public enum KmsKeyState
|
||||
{
|
||||
Active = 0,
|
||||
PendingRotation = 1,
|
||||
Revoked = 2,
|
||||
}
|
||||
Reference in New Issue
Block a user