Skip to content

Commit

Permalink
Add API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sheidkamp committed Sep 30, 2024
1 parent 38dd5d8 commit 91e9d5e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,9 @@ message ApiKeyAuth {
bool required = 2;
}

// API key metadata may contain data is is invalid for a header, such as a newline. By default, this data will be validated
// in the data plane and mitigated in a way that provides a consistent experience for the user and visibility for the operator.
// This validation comes with a performance cost, and can be disabled by setting this field to `true`.
bool skip_metadata_validation = 8;
}
message K8sSecretApiKeyStorage {
Expand Down Expand Up @@ -2121,6 +2124,9 @@ message ExtAuthConfig {
AerospikeApiKeyStorage aerospike_apikey_storage = 5;
}

// API key metadata may contain data is is invalid for a header, such as a newline. By default, this data will be validated
// in the data plane and mitigated in a way that provides a consistent experience for the user and visibility for the operator.
// This validation comes with a performance cost, and can be disabled by setting this field to `true`.
bool skip_metadata_validation = 6;
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 91e9d5e

Please sign in to comment.