@maxim_mazurok/gapi.client.datamigration-v1 0.0.20231018 → 0.0.20231031
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 +4 -1
- package/package.json +1 -1
- package/tests.ts +3 -1
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: 20231031
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1336,6 +1336,9 @@ declare namespace gapi.client {
|
|
|
1336
1336
|
number;
|
|
1337
1337
|
}
|
|
1338
1338
|
interface PostgreSqlConnectionProfile {
|
|
1339
|
+
/** Optional. If the destination is an AlloyDB database, use this field to provide the AlloyDB cluster ID. */
|
|
1340
|
+
alloydbClusterId?:
|
|
1341
|
+
string;
|
|
1339
1342
|
/** If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source. */
|
|
1340
1343
|
cloudSqlId?:
|
|
1341
1344
|
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: 20231031
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -187,6 +187,7 @@ gapi.load('client', async () => {
|
|
|
187
187
|
username: "Test string",
|
|
188
188
|
},
|
|
189
189
|
postgresql: {
|
|
190
|
+
alloydbClusterId: "Test string",
|
|
190
191
|
cloudSqlId: "Test string",
|
|
191
192
|
host: "Test string",
|
|
192
193
|
networkArchitecture: "Test string",
|
|
@@ -374,6 +375,7 @@ gapi.load('client', async () => {
|
|
|
374
375
|
username: "Test string",
|
|
375
376
|
},
|
|
376
377
|
postgresql: {
|
|
378
|
+
alloydbClusterId: "Test string",
|
|
377
379
|
cloudSqlId: "Test string",
|
|
378
380
|
host: "Test string",
|
|
379
381
|
networkArchitecture: "Test string",
|