@maxim_mazurok/gapi.client.datamigration-v1 0.0.20230215 → 0.0.20230301
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 +16 -2
- package/package.json +1 -1
- package/tests.ts +1 -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: 20230301
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -46,6 +46,12 @@ declare namespace gapi.client {
|
|
|
46
46
|
/** Filter which entities to apply. Leaving this field empty will apply all of the entities. Supports Google AIP 160 based filtering. */
|
|
47
47
|
filter?: string;
|
|
48
48
|
}
|
|
49
|
+
interface ApplyJobDetails {
|
|
50
|
+
/** The connection profile which was used for the apply job. */
|
|
51
|
+
connectionProfile?: string;
|
|
52
|
+
/** AIP-160 based filter used to specify the entities to apply */
|
|
53
|
+
filter?: string;
|
|
54
|
+
}
|
|
49
55
|
interface AuditConfig {
|
|
50
56
|
/** The configuration for logging of each type of permission. */
|
|
51
57
|
auditLogConfigs?: AuditLogConfig[];
|
|
@@ -62,10 +68,14 @@ declare namespace gapi.client {
|
|
|
62
68
|
logType?: string;
|
|
63
69
|
}
|
|
64
70
|
interface BackgroundJobLogEntry {
|
|
71
|
+
/** Apply job details. */
|
|
72
|
+
applyJobDetails?: ApplyJobDetails;
|
|
65
73
|
/** Job completion comment, such as how many entities were seeded, how many warnings were found during conversion, and similar information. */
|
|
66
74
|
completionComment?: string;
|
|
67
75
|
/** Job completion state, i.e. the final state after the job completed. */
|
|
68
76
|
completionState?: string;
|
|
77
|
+
/** Convert job details. */
|
|
78
|
+
convertJobDetails?: ConvertJobDetails;
|
|
69
79
|
/** The timestamp when the background job was finished. */
|
|
70
80
|
finishTime?: string;
|
|
71
81
|
/** The background job log entry ID. */
|
|
@@ -215,7 +225,7 @@ declare namespace gapi.client {
|
|
|
215
225
|
precision?: number;
|
|
216
226
|
/** Column scale - when relevant. */
|
|
217
227
|
scale?: number;
|
|
218
|
-
/** 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. */
|
|
219
229
|
setValues?: string[];
|
|
220
230
|
/** Is the column a UDT. */
|
|
221
231
|
udt?: boolean;
|
|
@@ -317,6 +327,10 @@ declare namespace gapi.client {
|
|
|
317
327
|
/** Filter the entities to convert. Leaving this field empty will convert all of the entities. Supports Google AIP-160 style filtering. */
|
|
318
328
|
filter?: string;
|
|
319
329
|
}
|
|
330
|
+
interface ConvertJobDetails {
|
|
331
|
+
/** AIP-160 based filter used to specify the entities to convert */
|
|
332
|
+
filter?: string;
|
|
333
|
+
}
|
|
320
334
|
interface DatabaseEngineInfo {
|
|
321
335
|
/** Required. Engine type. */
|
|
322
336
|
engine?: 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: 20230301
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|