Skip to content

add missing docs for mixerclient filter config #353

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

Merged
merged 4 commits into from
Feb 7, 2018
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion mixer/v1/config/client/auth.pb.go

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

3 changes: 3 additions & 0 deletions mixer/v1/config/client/auth.proto
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ message JWT {
string query = 2;
}
}
// Zero or more locations to search for JWT in an HTTP request.
repeated Location locations = 6;

// This field is specific for Envoy proxy implementation.
Expand Down Expand Up @@ -148,6 +149,8 @@ message EndUserAuthenticationPolicySpec {
repeated JWT jwts = 2;
}

// EndUserAuthenticationPolicySpecReference identifies a
// EndUserAuthenticationPolicySpec that is bound to a set of services.
message EndUserAuthenticationPolicySpecReference {
// REQUIRED. The short name of the
// EndUserAuthenticationPolicySpec. This is the resource name
Expand Down
2 changes: 2 additions & 0 deletions mixer/v1/config/client/client_config.pb.go

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

2 changes: 2 additions & 0 deletions mixer/v1/config/client/client_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ message TransportConfig {
// The flag to disable report batch.
bool disable_report_batch = 3;

// NetworkFailPolicy defines behavior when network connection
// failure occurs.
enum NetworkFailPolicy {
// If network fails, request is passed to the backend.
FAIL_OPEN = 0;
Expand Down
11 changes: 11 additions & 0 deletions mixer/v1/config/client/istio.mixer.v1.config.client.pb.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ <h2 id="EndUserAuthenticationPolicySpecBinding">EndUserAuthenticationPolicySpecB
</section>
<h2 id="EndUserAuthenticationPolicySpecReference">EndUserAuthenticationPolicySpecReference</h2>
<section>
<p>EndUserAuthenticationPolicySpecReference identifies a
EndUserAuthenticationPolicySpec that is bound to a set of services.</p>

<table class="message-fields">
<thead>
<tr>
Expand Down Expand Up @@ -702,6 +705,8 @@ <h2 id="JWT">JWT</h2>
<td><code>locations</code></td>
<td><code><a href="#JWT.Location">JWT.Location[]</a></code></td>
<td>
<p>Zero or more locations to search for JWT in an HTTP request.</p>

</td>
</tr>
<tr id="JWT.jwks_uri_envoy_cluster">
Expand Down Expand Up @@ -893,6 +898,9 @@ <h2 id="QuotaSpecBinding">QuotaSpecBinding</h2>
</section>
<h2 id="QuotaSpecBinding.QuotaSpecReference">QuotaSpecBinding.QuotaSpecReference</h2>
<section>
<p>QuotaSpecReference uniquely identifies the QuotaSpec used in the
Binding.</p>

<table class="message-fields">
<thead>
<tr>
Expand Down Expand Up @@ -1187,6 +1195,9 @@ <h2 id="TransportConfig">TransportConfig</h2>
</section>
<h2 id="TransportConfig.NetworkFailPolicy">TransportConfig.NetworkFailPolicy</h2>
<section>
<p>NetworkFailPolicy defines behavior when network connection
failure occurs.</p>

<table class="enum-values">
<thead>
<tr>
Expand Down
2 changes: 2 additions & 0 deletions mixer/v1/config/client/quota.pb.go

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

2 changes: 2 additions & 0 deletions mixer/v1/config/client/quota.proto
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ message QuotaSpecBinding {
// REQUIRED. One or more services to map the listed QuotaSpec onto.
repeated IstioService services = 1;

// QuotaSpecReference uniquely identifies the QuotaSpec used in the
// Binding.
message QuotaSpecReference {
// REQUIRED. The short name of the QuotaSpec. This is the resource
// name defined by the metadata name field.
Expand Down