Skip to content

Commit

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

The following keys were added:
- resources.projects.resources.secrets.methods.list.parameters.filter (Total Keys: 2)
- resources.projects.resources.secrets.resources.versions.methods.list.parameters.filter (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Jul 20, 2021
1 parent 767fe85 commit 489541e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
5 changes: 3 additions & 2 deletions docs/dyn/secretmanager_v1.projects.secrets.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,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 secret. Returns empty policy if the secret exists and does not have a policy set.</p>
<p class="toc_element">
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists Secrets.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
Expand Down Expand Up @@ -380,11 +380,12 @@ <h3>Method Details</h3>
</div>

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

Args:
parent: string, Required. The resource name of the project associated with the Secrets, in the format `projects/*`. (required)
filter: string, Optional. Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secrets matching the filter. If filter is empty, all secrets are listed.
pageSize: integer, Optional. The maximum number of results to be returned in a single page. If set to 0, the server decides the number of results to return. If the number is greater than 25000, it is capped at 25000.
pageToken: string, Optional. Pagination token, returned earlier via ListSecretsResponse.next_page_token.
x__xgafv: string, V1 error format.
Expand Down
5 changes: 3 additions & 2 deletions docs/dyn/secretmanager_v1.projects.secrets.versions.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h2>Instance Methods</h2>
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Gets metadata for a SecretVersion. `projects/*/secrets/*/versions/latest` is an alias to the most recently created SecretVersion.</p>
<p class="toc_element">
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists SecretVersions. This call does not return secret data.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
Expand Down Expand Up @@ -308,11 +308,12 @@ <h3>Method Details</h3>
</div>

<div class="method">
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
<code class="details" id="list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists SecretVersions. This call does not return secret data.

Args:
parent: string, Required. The resource name of the Secret associated with the SecretVersions to list, in the format `projects/*/secrets/*`. (required)
filter: string, Optional. Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secret versions matching the filter. If filter is empty, all secret versions are listed.
pageSize: integer, Optional. The maximum number of results to be returned in a single page. If set to 0, the server decides the number of results to return. If the number is greater than 25000, it is capped at 25000.
pageToken: string, Optional. Pagination token, returned earlier via ListSecretVersionsResponse.next_page_token][].
x__xgafv: string, V1 error format.
Expand Down
12 changes: 11 additions & 1 deletion googleapiclient/discovery_cache/documents/secretmanager.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,11 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secrets matching the filter. If filter is empty, all secrets are listed.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of results to be returned in a single page. If set to 0, the server decides the number of results to return. If the number is greater than 25000, it is capped at 25000.",
"format": "int32",
Expand Down Expand Up @@ -599,6 +604,11 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secret versions matching the filter. If filter is empty, all secret versions are listed.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of results to be returned in a single page. If set to 0, the server decides the number of results to return. If the number is greater than 25000, it is capped at 25000.",
"format": "int32",
Expand Down Expand Up @@ -633,7 +643,7 @@
}
}
},
"revision": "20210618",
"revision": "20210710",
"rootUrl": "https://secretmanager.googleapis.com/",
"schemas": {
"AccessSecretVersionResponse": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
}
}
},
"revision": "20210618",
"revision": "20210710",
"rootUrl": "https://secretmanager.googleapis.com/",
"schemas": {
"AccessSecretVersionResponse": {
Expand Down

0 comments on commit 489541e

Please sign in to comment.