@maxim_mazurok/gapi.client.vault-v1 0.0.20230227 → 0.0.20230323
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +2 -7
- package/package.json +1 -1
- package/readme.md +1 -1
- package/tests.ts +2 -7
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://vault.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230323
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1916,12 +1916,7 @@ declare namespace gapi.client {
|
|
|
1916
1916
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1917
1917
|
uploadType?: string;
|
|
1918
1918
|
}): Request<Operation>;
|
|
1919
|
-
/**
|
|
1920
|
-
* Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services
|
|
1921
|
-
* to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as
|
|
1922
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
1923
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
1924
|
-
*/
|
|
1919
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1925
1920
|
list(request?: {
|
|
1926
1921
|
/** V1 error format. */
|
|
1927
1922
|
"$.xgafv"?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -140,7 +140,7 @@ Gets the latest state of a long-running operation. Clients can use this method t
|
|
|
140
140
|
await gapi.client.vault.operations.get({ name: "name", });
|
|
141
141
|
|
|
142
142
|
/*
|
|
143
|
-
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
143
|
+
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
144
144
|
*/
|
|
145
145
|
await gapi.client.vault.operations.list({ name: "name", });
|
|
146
146
|
```
|
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230323
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -556,12 +556,7 @@ gapi.load('client', async () => {
|
|
|
556
556
|
await gapi.client.vault.operations.get({
|
|
557
557
|
name: "Test string",
|
|
558
558
|
});
|
|
559
|
-
/**
|
|
560
|
-
* Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to
|
|
561
|
-
* override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as
|
|
562
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
563
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
564
|
-
*/
|
|
559
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
565
560
|
await gapi.client.vault.operations.list({
|
|
566
561
|
filter: "Test string",
|
|
567
562
|
name: "Test string",
|