@maxim_mazurok/gapi.client.datamigration-v1 0.0.20230222 → 0.0.20230308
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 +3 -8
- package/package.json +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://datamigration.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230308
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -225,7 +225,7 @@ declare namespace gapi.client {
|
|
|
225
225
|
precision?: number;
|
|
226
226
|
/** Column scale - when relevant. */
|
|
227
227
|
scale?: number;
|
|
228
|
-
/** Specifies the list of values allowed in the column.
|
|
228
|
+
/** Specifies the list of values allowed in the column. Only used for set data type. */
|
|
229
229
|
setValues?: string[];
|
|
230
230
|
/** Is the column a UDT. */
|
|
231
231
|
udt?: boolean;
|
|
@@ -3078,12 +3078,7 @@ declare namespace gapi.client {
|
|
|
3078
3078
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3079
3079
|
uploadType?: string;
|
|
3080
3080
|
}): Request<Operation>;
|
|
3081
|
-
/**
|
|
3082
|
-
* 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
|
|
3083
|
-
* 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
|
|
3084
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
3085
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
3086
|
-
*/
|
|
3081
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
3087
3082
|
list(request?: {
|
|
3088
3083
|
/** V1 error format. */
|
|
3089
3084
|
"$.xgafv"?: string;
|
package/package.json
CHANGED
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: 20230308
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -873,12 +873,7 @@ gapi.load('client', async () => {
|
|
|
873
873
|
await gapi.client.datamigration.projects.locations.operations.get({
|
|
874
874
|
name: "Test string",
|
|
875
875
|
});
|
|
876
|
-
/**
|
|
877
|
-
* 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
|
|
878
|
-
* 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
|
|
879
|
-
* `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must
|
|
880
|
-
* ensure the name binding is the parent resource, without the operations collection id.
|
|
881
|
-
*/
|
|
876
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
882
877
|
await gapi.client.datamigration.projects.locations.operations.list({
|
|
883
878
|
filter: "Test string",
|
|
884
879
|
name: "Test string",
|