diff --git a/nebius/kms/v1/symmetric_key.proto b/nebius/kms/v1/symmetric_key.proto index 6db9c88..afc81c9 100644 --- a/nebius/kms/v1/symmetric_key.proto +++ b/nebius/kms/v1/symmetric_key.proto @@ -56,12 +56,15 @@ message SymmetricKeySpec { ]; // Key rotation period. - google.protobuf.Duration rotation_period = 3 [(buf.validate.field) = { - duration: { - lte: {seconds: 315360000} - gte: {seconds: 86400} + google.protobuf.Duration rotation_period = 3 [ + (field_behavior) = NON_EMPTY_DEFAULT, + (buf.validate.field) = { + duration: { + lte: {seconds: 315360000} + gte: {seconds: 86400} + } } - }]; + ]; } message SymmetricKeyStatus {