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
6 changes: 6 additions & 0 deletions certz/certz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,12 @@ service Certz {
// by requesting a CSR for profile B using the same `Rotate` RPC). In the
// case that such multiplexing is observed, the server should respond with
// an error specifying `InvalidArgument` as the status code.
//
// A `Rotate` RPC should not cause an SSL profile to transition from
// TLS to mTLS, if that SSL profile is in-use by the gRPC server which
// is currently hosting the Certz service through which the Rotate RPC
// is being performed. Attempting to do this should cause the server
// to respond with an error specifying `InvalidArgument` as the status code.
rpc Rotate(stream RotateCertificateRequest)
returns (stream RotateCertificateResponse);

Expand Down
Loading