Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2426)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Feb 21, 2024
1 parent b7d596b commit 446a6bd
Show file tree
Hide file tree
Showing 34 changed files with 12,932 additions and 33,265 deletions.
2 changes: 1 addition & 1 deletion api-list.json
Expand Up @@ -53,7 +53,7 @@
"name": "accesscontextmanager",
"version": "v1",
"title": "Access Context Manager API",
"description": "An API for setting attribute based access control to requests to Google Cloud services.",
"description": "An API for setting attribute based access control to requests to Google Cloud services. *Warning:* Do not mix *v1alpha* and *v1* API usage in the same access policy. The v1alpha API supports new Access Context Manager features, which may have different attributes or behaviors that are not supported by v1. The practice of mixed API usage within a policy may result in the inability to update that policy, including any access levels or service perimeters belonging to it. It is not recommended to use both v1 and v1alpha for modifying policies with critical service perimeters. Modifications using v1alpha should be limited to policies with non-production/non-critical service perimeters.",
"discoveryRestUrl": "https://accesscontextmanager.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
Expand Down
46 changes: 44 additions & 2 deletions apigee/v1/apigee-api.json
Expand Up @@ -9814,7 +9814,7 @@
}
}
},
"revision": "20240122",
"revision": "20240220",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -16086,22 +16086,64 @@
"type": "object"
},
"GoogleCloudApigeeV1SecurityActionConditionConfig": {
"description": "The following are a list of conditions. A valid SecurityAction must contain at least one condition. Within a condition, each element is ORed. Across conditions elements are ANDed. For example if a SecurityAction has the following: api_keys: [\"key1\", \"key2\"] and developers: [\"dev1\", \"dev2\"] then this is interpreted as: enforce the action if the incoming request has ((api_key = \"key1\" OR api_key=\"key\") AND (developer=\"dev1\" OR developer=\"dev2\")).",
"description": "The following are a list of conditions. A valid SecurityAction must contain at least one condition. Within a condition, each element is ORed. Across conditions elements are ANDed. For example if a SecurityAction has the following: ip_address_ranges: [\"ip1\", \"ip2\"] and bot_reasons: [\"Flooder\", \"Robot Abuser\"] then this is interpreted as: enforce the action if the incoming request has ((ip_address_ranges = \"ip1\" OR ip_address_ranges = \"ip2\") AND (bot_reasons=\"Flooder\" OR bot_reasons=\"Robot Abuser\")). Conditions other than ip_address_ranges and bot_reasons cannot be ANDed.",
"id": "GoogleCloudApigeeV1SecurityActionConditionConfig",
"properties": {
"accessTokens": {
"description": "Optional. A list of access_tokens. Limit 1000 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"apiKeys": {
"description": "Optional. A list of API keys. Limit 1000 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"apiProducts": {
"description": "Optional. A list of API Products. Limit 1000 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"botReasons": {
"description": "Optional. A list of Bot Reasons. Current options: Flooder, Brute Guessor, Static Content Scraper, OAuth Abuser, Robot Abuser, TorListRule, Advanced Anomaly Detection, Advanced API Scraper, Search Engine Crawlers, Public Clouds, Public Cloud AWS, Public Cloud Azure, and Public Cloud Google.",
"items": {
"type": "string"
},
"type": "array"
},
"developerApps": {
"description": "Optional. A list of developer apps. Limit 1000 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"developers": {
"description": "Optional. A list of developers. Limit 1000 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"ipAddressRanges": {
"description": "Optional. A list of IP addresses. This could be either IPv4 or IPv6. Limited to 100 per action.",
"items": {
"type": "string"
},
"type": "array"
},
"userAgents": {
"description": "Optional. A list of user agents to deny. We look for exact matches. Limit 50 per action.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
Expand Down
41 changes: 32 additions & 9 deletions apigee/v1/apigee-gen.go

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

0 comments on commit 446a6bd

Please sign in to comment.