namespace StellaOps.Cryptography.Kms; /// /// Represents the lifecycle state of a KMS key or key version. /// public enum KmsKeyState { Active = 0, PendingRotation = 1, Revoked = 2, }