Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add force_override to align with authz/pathz #208

Merged
merged 1 commit into from
Dec 9, 2024
Merged
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
9 changes: 9 additions & 0 deletions credentialz/credentialz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,15 @@ message RotateAccountCredentialsRequest {
PasswordRequest password = 3;
FinalizeRequest finalize = 4;
}

// If set to `true` the requested operation will succeed even if the specified
// `version` or `credential` is already in use (is not unique).
// If set to `false` the requested operation will fail and the streaming RPC
// will be closed with the `ALREADY_EXISTS` gRPC error if the specified
// version` is already in use (is not unique).
// It is a no-op for the `finalize_rotation` request.
bool force_overwrite = 5;

}

// RotateAccountCredentialsResponse is the response to
Expand Down
Loading