@maxim_mazurok/gapi.client.datamigration-v1 0.0.20230712 → 0.0.20230731
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +10 -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: 20230731
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1083,6 +1083,9 @@ declare namespace gapi.client {
|
|
|
1083
1083
|
/** The name (URI) of this migration job resource, in the form of: projects/{project}/locations/{location}/migrationJobs/{migrationJob}. */
|
|
1084
1084
|
name?:
|
|
1085
1085
|
string;
|
|
1086
|
+
/** Optional. Data dump parallelism settings used by the migration. Currently applicable only for MySQL to Cloud SQL for MySQL migrations only. */
|
|
1087
|
+
performanceConfig?:
|
|
1088
|
+
PerformanceConfig;
|
|
1086
1089
|
/** Output only. The current migration job phase. */
|
|
1087
1090
|
phase?:
|
|
1088
1091
|
string;
|
|
@@ -1270,6 +1273,11 @@ declare namespace gapi.client {
|
|
|
1270
1273
|
packageSqlCode?:
|
|
1271
1274
|
string;
|
|
1272
1275
|
}
|
|
1276
|
+
interface PerformanceConfig {
|
|
1277
|
+
/** Initial dump parallelism level. */
|
|
1278
|
+
dumpParallelLevel?:
|
|
1279
|
+
string;
|
|
1280
|
+
}
|
|
1273
1281
|
interface Policy {
|
|
1274
1282
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
1275
1283
|
auditConfigs?:
|
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: 20230731
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -846,6 +846,9 @@ gapi.load('client', async () => {
|
|
|
846
846
|
A: "Test string"
|
|
847
847
|
},
|
|
848
848
|
name: "Test string",
|
|
849
|
+
performanceConfig: {
|
|
850
|
+
dumpParallelLevel: "Test string",
|
|
851
|
+
},
|
|
849
852
|
phase: "Test string",
|
|
850
853
|
reverseSshConnectivity: {
|
|
851
854
|
vm: "Test string",
|
|
@@ -957,6 +960,9 @@ gapi.load('client', async () => {
|
|
|
957
960
|
A: "Test string"
|
|
958
961
|
},
|
|
959
962
|
name: "Test string",
|
|
963
|
+
performanceConfig: {
|
|
964
|
+
dumpParallelLevel: "Test string",
|
|
965
|
+
},
|
|
960
966
|
phase: "Test string",
|
|
961
967
|
reverseSshConnectivity: {
|
|
962
968
|
vm: "Test string",
|
|
@@ -1094,6 +1100,9 @@ gapi.load('client', async () => {
|
|
|
1094
1100
|
A: "Test string"
|
|
1095
1101
|
},
|
|
1096
1102
|
name: "Test string",
|
|
1103
|
+
performanceConfig: {
|
|
1104
|
+
dumpParallelLevel: "Test string",
|
|
1105
|
+
},
|
|
1097
1106
|
phase: "Test string",
|
|
1098
1107
|
reverseSshConnectivity: {
|
|
1099
1108
|
vm: "Test string",
|