@maxim_mazurok/gapi.client.cloudshell-v1 0.0.20230306 → 0.0.20230320
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://cloudshell.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230320
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -273,12 +273,7 @@ declare namespace gapi.client {
|
|
|
273
273
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
274
274
|
uploadType?: string;
|
|
275
275
|
}): Request<Operation>;
|
|
276
|
-
/**
|
|
277
|
-
* 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
|
|
278
|
-
* 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
|
|
279
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
280
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
281
|
-
*/
|
|
276
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
282
277
|
list(request?: {
|
|
283
278
|
/** V1 error format. */
|
|
284
279
|
"$.xgafv"?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -82,7 +82,7 @@ Gets the latest state of a long-running operation. Clients can use this method t
|
|
|
82
82
|
await gapi.client.cloudshell.operations.get({ name: "name", });
|
|
83
83
|
|
|
84
84
|
/*
|
|
85
|
-
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
85
|
+
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
|
|
86
86
|
*/
|
|
87
87
|
await gapi.client.cloudshell.operations.list({ name: "name", });
|
|
88
88
|
```
|
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: 20230320
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -50,12 +50,7 @@ gapi.load('client', async () => {
|
|
|
50
50
|
await gapi.client.cloudshell.operations.get({
|
|
51
51
|
name: "Test string",
|
|
52
52
|
});
|
|
53
|
-
/**
|
|
54
|
-
* 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
|
|
55
|
-
* 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
|
|
56
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
57
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
58
|
-
*/
|
|
53
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
59
54
|
await gapi.client.cloudshell.operations.list({
|
|
60
55
|
filter: "Test string",
|
|
61
56
|
name: "Test string",
|