-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(all): auto-regenerate discovery clients (#2565)
- Loading branch information
1 parent
fe54ffd
commit 0843d21
Showing
27 changed files
with
2,568 additions
and
2,129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1290,7 +1290,7 @@ | |
} | ||
} | ||
}, | ||
"revision": "20240417", | ||
"revision": "20240429", | ||
"rootUrl": "https://accesscontextmanager.googleapis.com/", | ||
"schemas": { | ||
"AccessContextManagerOperationMetadata": { | ||
|
@@ -1374,6 +1374,21 @@ | |
}, | ||
"type": "object" | ||
}, | ||
"Application": { | ||
"description": "An application that accesses Google Cloud APIs.", | ||
"id": "Application", | ||
"properties": { | ||
"clientId": { | ||
"description": "The OAuth client ID of the application.", | ||
"type": "string" | ||
}, | ||
"name": { | ||
"description": "The name of the application. Example: \"Cloud Console\"", | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"AuditConfig": { | ||
"description": "Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { \"audit_configs\": [ { \"service\": \"allServices\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user:[email protected]\" ] }, { \"log_type\": \"DATA_WRITE\" }, { \"log_type\": \"ADMIN_READ\" } ] }, { \"service\": \"sampleservice.googleapis.com\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\" }, { \"log_type\": \"DATA_WRITE\", \"exempted_members\": [ \"user:[email protected]\" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `[email protected]` from DATA_READ logging, and `[email protected]` from DATA_WRITE logging.", | ||
"id": "AuditConfig", | ||
|
@@ -1843,6 +1858,13 @@ | |
"name": { | ||
"description": "Immutable. Assigned by the server during creation. The last segment has an arbitrary length and has only URI unreserved characters (as defined by [RFC 3986 Section 2.3](https://tools.ietf.org/html/rfc3986#section-2.3)). Should not be specified by the client during creation. Example: \"organizations/256/gcpUserAccessBindings/b3-BhcX_Ud5N\"", | ||
"type": "string" | ||
}, | ||
"restrictedClientApplications": { | ||
"description": "Optional. A list of applications that are subject to this binding's restrictions. If the list is empty, the binding restrictions will universally apply to all applications.", | ||
"items": { | ||
"$ref": "Application" | ||
}, | ||
"type": "array" | ||
} | ||
}, | ||
"type": "object" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.