Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions nebius/kms/v1/symmetric_key.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down