| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e1443bf commit 2c01d72
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
@@ -484,6 +484,23 @@ message OAuthSettings { | |||
| 484 | 484 | // since access behavior is managed by IAM policies. | |
| 485 | 485 | google.protobuf.StringValue login_hint = 2; | |
| 486 | 486 | ||
| 487 | + // Optional. OAuth 2.0 client ID used in the OAuth flow. | ||
| 488 | + // This allows for client sharing. The risks of client sharing | ||
| 489 | + // are outlined here: | ||
| 490 | + // https://cloud.google.com/iap/docs/sharing-oauth-clients#risks. | ||
| 491 | + google.protobuf.StringValue client_id = 3 | ||
| 492 | + [(google.api.field_behavior) = OPTIONAL]; | ||
| 493 | + | ||
| 494 | + // Optional. Input only. OAuth secret paired with client ID. | ||
| 495 | + google.protobuf.StringValue client_secret = 4 [ | ||
| 496 | + (google.api.field_behavior) = INPUT_ONLY, | ||
| 497 | + (google.api.field_behavior) = OPTIONAL | ||
| 498 | + ]; | ||
| 499 | + | ||
| 500 | + // Output only. OAuth secret SHA256 paired with client ID. | ||
| 501 | + google.protobuf.StringValue client_secret_sha256 = 6 | ||
| 502 | + [(google.api.field_behavior) = OUTPUT_ONLY]; | ||
| 503 | + | ||
| 487 | 504 | // Optional. List of client ids allowed to use IAP programmatically. | |
| 488 | 505 | repeated string programmatic_clients = 5 | |
| 489 | 506 | [(google.api.field_behavior) = OPTIONAL]; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments