Skip to content

Commit

Permalink
Add force_override to align with authz/pathz
Browse files Browse the repository at this point in the history
  • Loading branch information
marcushines authored and morrowc committed Dec 9, 2024
1 parent dc0b317 commit 2cb94b6
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit 2cb94b6

Please sign in to comment.