Skip to content

Commit

Permalink
feat(eventarc): update the api
Browse files Browse the repository at this point in the history
#### eventarc:v1

The following keys were added:
- resources.projects.resources.locations.resources.triggers.methods.list.parameters.filter (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Mar 1, 2022
1 parent 82cb2c2 commit 556c091
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 3 additions & 2 deletions docs/dyn/eventarc_v1.projects.locations.triggers.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ <h2>Instance Methods</h2>
<code><a href="#getIamPolicy">getIamPolicy(resource, options_requestedPolicyVersion=None, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.</p>
<p class="toc_element">
<code><a href="#list">list(parent, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">List triggers.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
Expand Down Expand Up @@ -332,11 +332,12 @@ <h3>Method Details</h3>
</div>

<div class="method">
<code class="details" id="list">list(parent, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>List triggers.

Args:
parent: string, Required. The parent collection to list triggers on. (required)
filter: string, Filter field. Used to filter the Triggers to be listed. Possible filters are described in https://google.aip.dev/160. For example, using &quot;?filter=destination:gke&quot; would list only Triggers with a gke destination.
orderBy: string, The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting order is ascending. To specify descending order for a field, append a `desc` suffix; for example: `name desc, trigger_id`.
pageSize: integer, The maximum number of triggers to return on each page. Note: The service may send fewer.
pageToken: string, The page token; provide the value from the `next_page_token` field in a previous `ListTriggers` call to retrieve the subsequent page. When paginating, all other parameters provided to `ListTriggers` must match the call that provided the page token.
Expand Down
7 changes: 6 additions & 1 deletion googleapiclient/discovery_cache/documents/eventarc.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,11 @@
"parent"
],
"parameters": {
"filter": {
"description": "Filter field. Used to filter the Triggers to be listed. Possible filters are described in https://google.aip.dev/160. For example, using \"?filter=destination:gke\" would list only Triggers with a gke destination.",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting order is ascending. To specify descending order for a field, append a `desc` suffix; for example: `name desc, trigger_id`.",
"location": "query",
Expand Down Expand Up @@ -841,7 +846,7 @@
}
}
},
"revision": "20220211",
"revision": "20220225",
"rootUrl": "https://eventarc.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@
}
}
},
"revision": "20220211",
"revision": "20220218",
"rootUrl": "https://eventarc.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down

0 comments on commit 556c091

Please sign in to comment.