@alicloud/dataworks-public20200518 4.2.5 → 4.3.0
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/dist/client.d.ts +202 -0
- package/dist/client.js +317 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +405 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/dataworks-public20200518",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@alicloud/openplatform20191219": "1.1.3",
|
|
29
29
|
"@alicloud/oss-util": "0.0.1",
|
|
30
30
|
"@alicloud/tea-fileform": "^1.0.0",
|
|
31
|
-
"@alicloud/openapi-client": "^0.3.
|
|
31
|
+
"@alicloud/openapi-client": "^0.3.8",
|
|
32
32
|
"@alicloud/openapi-util": "^0.2.4"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
package/src/client.ts
CHANGED
|
@@ -1603,6 +1603,87 @@ export class CreateDataSourceResponse extends $tea.Model {
|
|
|
1603
1603
|
}
|
|
1604
1604
|
}
|
|
1605
1605
|
|
|
1606
|
+
export class CreateExportMigrationRequest extends $tea.Model {
|
|
1607
|
+
description?: string;
|
|
1608
|
+
exportMode?: string;
|
|
1609
|
+
exportObjectStatus?: string;
|
|
1610
|
+
incrementalSince?: number;
|
|
1611
|
+
name?: string;
|
|
1612
|
+
projectId?: number;
|
|
1613
|
+
static names(): { [key: string]: string } {
|
|
1614
|
+
return {
|
|
1615
|
+
description: 'Description',
|
|
1616
|
+
exportMode: 'ExportMode',
|
|
1617
|
+
exportObjectStatus: 'ExportObjectStatus',
|
|
1618
|
+
incrementalSince: 'IncrementalSince',
|
|
1619
|
+
name: 'Name',
|
|
1620
|
+
projectId: 'ProjectId',
|
|
1621
|
+
};
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
static types(): { [key: string]: any } {
|
|
1625
|
+
return {
|
|
1626
|
+
description: 'string',
|
|
1627
|
+
exportMode: 'string',
|
|
1628
|
+
exportObjectStatus: 'string',
|
|
1629
|
+
incrementalSince: 'number',
|
|
1630
|
+
name: 'string',
|
|
1631
|
+
projectId: 'number',
|
|
1632
|
+
};
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
constructor(map?: { [key: string]: any }) {
|
|
1636
|
+
super(map);
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
export class CreateExportMigrationResponseBody extends $tea.Model {
|
|
1641
|
+
data?: number;
|
|
1642
|
+
requestId?: string;
|
|
1643
|
+
success?: boolean;
|
|
1644
|
+
static names(): { [key: string]: string } {
|
|
1645
|
+
return {
|
|
1646
|
+
data: 'Data',
|
|
1647
|
+
requestId: 'RequestId',
|
|
1648
|
+
success: 'Success',
|
|
1649
|
+
};
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
static types(): { [key: string]: any } {
|
|
1653
|
+
return {
|
|
1654
|
+
data: 'number',
|
|
1655
|
+
requestId: 'string',
|
|
1656
|
+
success: 'boolean',
|
|
1657
|
+
};
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
constructor(map?: { [key: string]: any }) {
|
|
1661
|
+
super(map);
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
export class CreateExportMigrationResponse extends $tea.Model {
|
|
1666
|
+
headers: { [key: string]: string };
|
|
1667
|
+
body: CreateExportMigrationResponseBody;
|
|
1668
|
+
static names(): { [key: string]: string } {
|
|
1669
|
+
return {
|
|
1670
|
+
headers: 'headers',
|
|
1671
|
+
body: 'body',
|
|
1672
|
+
};
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
static types(): { [key: string]: any } {
|
|
1676
|
+
return {
|
|
1677
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1678
|
+
body: CreateExportMigrationResponseBody,
|
|
1679
|
+
};
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
constructor(map?: { [key: string]: any }) {
|
|
1683
|
+
super(map);
|
|
1684
|
+
}
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1606
1687
|
export class CreateFileRequest extends $tea.Model {
|
|
1607
1688
|
autoParsing?: boolean;
|
|
1608
1689
|
autoRerunIntervalMillis?: number;
|
|
@@ -7600,21 +7681,27 @@ export class GetInstanceStatusCountResponse extends $tea.Model {
|
|
|
7600
7681
|
|
|
7601
7682
|
export class GetInstanceStatusStatisticRequest extends $tea.Model {
|
|
7602
7683
|
bizDate?: string;
|
|
7684
|
+
dagType?: string;
|
|
7603
7685
|
projectEnv?: string;
|
|
7604
7686
|
projectId?: number;
|
|
7687
|
+
schedulerType?: string;
|
|
7605
7688
|
static names(): { [key: string]: string } {
|
|
7606
7689
|
return {
|
|
7607
7690
|
bizDate: 'BizDate',
|
|
7691
|
+
dagType: 'DagType',
|
|
7608
7692
|
projectEnv: 'ProjectEnv',
|
|
7609
7693
|
projectId: 'ProjectId',
|
|
7694
|
+
schedulerType: 'SchedulerType',
|
|
7610
7695
|
};
|
|
7611
7696
|
}
|
|
7612
7697
|
|
|
7613
7698
|
static types(): { [key: string]: any } {
|
|
7614
7699
|
return {
|
|
7615
7700
|
bizDate: 'string',
|
|
7701
|
+
dagType: 'string',
|
|
7616
7702
|
projectEnv: 'string',
|
|
7617
7703
|
projectId: 'number',
|
|
7704
|
+
schedulerType: 'string',
|
|
7618
7705
|
};
|
|
7619
7706
|
}
|
|
7620
7707
|
|
|
@@ -9026,6 +9113,75 @@ export class GetMigrationProcessResponse extends $tea.Model {
|
|
|
9026
9113
|
}
|
|
9027
9114
|
}
|
|
9028
9115
|
|
|
9116
|
+
export class GetMigrationSummaryRequest extends $tea.Model {
|
|
9117
|
+
migrationId?: number;
|
|
9118
|
+
projectId?: number;
|
|
9119
|
+
static names(): { [key: string]: string } {
|
|
9120
|
+
return {
|
|
9121
|
+
migrationId: 'MigrationId',
|
|
9122
|
+
projectId: 'ProjectId',
|
|
9123
|
+
};
|
|
9124
|
+
}
|
|
9125
|
+
|
|
9126
|
+
static types(): { [key: string]: any } {
|
|
9127
|
+
return {
|
|
9128
|
+
migrationId: 'number',
|
|
9129
|
+
projectId: 'number',
|
|
9130
|
+
};
|
|
9131
|
+
}
|
|
9132
|
+
|
|
9133
|
+
constructor(map?: { [key: string]: any }) {
|
|
9134
|
+
super(map);
|
|
9135
|
+
}
|
|
9136
|
+
}
|
|
9137
|
+
|
|
9138
|
+
export class GetMigrationSummaryResponseBody extends $tea.Model {
|
|
9139
|
+
data?: GetMigrationSummaryResponseBodyData;
|
|
9140
|
+
requestId?: string;
|
|
9141
|
+
success?: boolean;
|
|
9142
|
+
static names(): { [key: string]: string } {
|
|
9143
|
+
return {
|
|
9144
|
+
data: 'Data',
|
|
9145
|
+
requestId: 'RequestId',
|
|
9146
|
+
success: 'Success',
|
|
9147
|
+
};
|
|
9148
|
+
}
|
|
9149
|
+
|
|
9150
|
+
static types(): { [key: string]: any } {
|
|
9151
|
+
return {
|
|
9152
|
+
data: GetMigrationSummaryResponseBodyData,
|
|
9153
|
+
requestId: 'string',
|
|
9154
|
+
success: 'boolean',
|
|
9155
|
+
};
|
|
9156
|
+
}
|
|
9157
|
+
|
|
9158
|
+
constructor(map?: { [key: string]: any }) {
|
|
9159
|
+
super(map);
|
|
9160
|
+
}
|
|
9161
|
+
}
|
|
9162
|
+
|
|
9163
|
+
export class GetMigrationSummaryResponse extends $tea.Model {
|
|
9164
|
+
headers: { [key: string]: string };
|
|
9165
|
+
body: GetMigrationSummaryResponseBody;
|
|
9166
|
+
static names(): { [key: string]: string } {
|
|
9167
|
+
return {
|
|
9168
|
+
headers: 'headers',
|
|
9169
|
+
body: 'body',
|
|
9170
|
+
};
|
|
9171
|
+
}
|
|
9172
|
+
|
|
9173
|
+
static types(): { [key: string]: any } {
|
|
9174
|
+
return {
|
|
9175
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9176
|
+
body: GetMigrationSummaryResponseBody,
|
|
9177
|
+
};
|
|
9178
|
+
}
|
|
9179
|
+
|
|
9180
|
+
constructor(map?: { [key: string]: any }) {
|
|
9181
|
+
super(map);
|
|
9182
|
+
}
|
|
9183
|
+
}
|
|
9184
|
+
|
|
9029
9185
|
export class GetNodeRequest extends $tea.Model {
|
|
9030
9186
|
nodeId?: number;
|
|
9031
9187
|
projectEnv?: string;
|
|
@@ -11354,6 +11510,84 @@ export class ListDISyncTasksResponse extends $tea.Model {
|
|
|
11354
11510
|
}
|
|
11355
11511
|
}
|
|
11356
11512
|
|
|
11513
|
+
export class ListDagsRequest extends $tea.Model {
|
|
11514
|
+
opSeq?: number;
|
|
11515
|
+
projectEnv?: string;
|
|
11516
|
+
static names(): { [key: string]: string } {
|
|
11517
|
+
return {
|
|
11518
|
+
opSeq: 'OpSeq',
|
|
11519
|
+
projectEnv: 'ProjectEnv',
|
|
11520
|
+
};
|
|
11521
|
+
}
|
|
11522
|
+
|
|
11523
|
+
static types(): { [key: string]: any } {
|
|
11524
|
+
return {
|
|
11525
|
+
opSeq: 'number',
|
|
11526
|
+
projectEnv: 'string',
|
|
11527
|
+
};
|
|
11528
|
+
}
|
|
11529
|
+
|
|
11530
|
+
constructor(map?: { [key: string]: any }) {
|
|
11531
|
+
super(map);
|
|
11532
|
+
}
|
|
11533
|
+
}
|
|
11534
|
+
|
|
11535
|
+
export class ListDagsResponseBody extends $tea.Model {
|
|
11536
|
+
data?: ListDagsResponseBodyData;
|
|
11537
|
+
errorCode?: string;
|
|
11538
|
+
errorMessage?: string;
|
|
11539
|
+
httpStatusCode?: number;
|
|
11540
|
+
requestId?: string;
|
|
11541
|
+
success?: boolean;
|
|
11542
|
+
static names(): { [key: string]: string } {
|
|
11543
|
+
return {
|
|
11544
|
+
data: 'Data',
|
|
11545
|
+
errorCode: 'ErrorCode',
|
|
11546
|
+
errorMessage: 'ErrorMessage',
|
|
11547
|
+
httpStatusCode: 'HttpStatusCode',
|
|
11548
|
+
requestId: 'RequestId',
|
|
11549
|
+
success: 'Success',
|
|
11550
|
+
};
|
|
11551
|
+
}
|
|
11552
|
+
|
|
11553
|
+
static types(): { [key: string]: any } {
|
|
11554
|
+
return {
|
|
11555
|
+
data: ListDagsResponseBodyData,
|
|
11556
|
+
errorCode: 'string',
|
|
11557
|
+
errorMessage: 'string',
|
|
11558
|
+
httpStatusCode: 'number',
|
|
11559
|
+
requestId: 'string',
|
|
11560
|
+
success: 'boolean',
|
|
11561
|
+
};
|
|
11562
|
+
}
|
|
11563
|
+
|
|
11564
|
+
constructor(map?: { [key: string]: any }) {
|
|
11565
|
+
super(map);
|
|
11566
|
+
}
|
|
11567
|
+
}
|
|
11568
|
+
|
|
11569
|
+
export class ListDagsResponse extends $tea.Model {
|
|
11570
|
+
headers: { [key: string]: string };
|
|
11571
|
+
body: ListDagsResponseBody;
|
|
11572
|
+
static names(): { [key: string]: string } {
|
|
11573
|
+
return {
|
|
11574
|
+
headers: 'headers',
|
|
11575
|
+
body: 'body',
|
|
11576
|
+
};
|
|
11577
|
+
}
|
|
11578
|
+
|
|
11579
|
+
static types(): { [key: string]: any } {
|
|
11580
|
+
return {
|
|
11581
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11582
|
+
body: ListDagsResponseBody,
|
|
11583
|
+
};
|
|
11584
|
+
}
|
|
11585
|
+
|
|
11586
|
+
constructor(map?: { [key: string]: any }) {
|
|
11587
|
+
super(map);
|
|
11588
|
+
}
|
|
11589
|
+
}
|
|
11590
|
+
|
|
11357
11591
|
export class ListDataServiceApiAuthoritiesRequest extends $tea.Model {
|
|
11358
11592
|
apiNameKeyword?: string;
|
|
11359
11593
|
pageNumber?: number;
|
|
@@ -19907,6 +20141,7 @@ export class GetDagResponseBodyData extends $tea.Model {
|
|
|
19907
20141
|
gmtdate?: number;
|
|
19908
20142
|
modifyTime?: number;
|
|
19909
20143
|
name?: string;
|
|
20144
|
+
opSeq?: number;
|
|
19910
20145
|
projectId?: number;
|
|
19911
20146
|
startTime?: number;
|
|
19912
20147
|
status?: string;
|
|
@@ -19921,6 +20156,7 @@ export class GetDagResponseBodyData extends $tea.Model {
|
|
|
19921
20156
|
gmtdate: 'Gmtdate',
|
|
19922
20157
|
modifyTime: 'ModifyTime',
|
|
19923
20158
|
name: 'Name',
|
|
20159
|
+
opSeq: 'OpSeq',
|
|
19924
20160
|
projectId: 'ProjectId',
|
|
19925
20161
|
startTime: 'StartTime',
|
|
19926
20162
|
status: 'Status',
|
|
@@ -19938,6 +20174,7 @@ export class GetDagResponseBodyData extends $tea.Model {
|
|
|
19938
20174
|
gmtdate: 'number',
|
|
19939
20175
|
modifyTime: 'number',
|
|
19940
20176
|
name: 'string',
|
|
20177
|
+
opSeq: 'number',
|
|
19941
20178
|
projectId: 'number',
|
|
19942
20179
|
startTime: 'number',
|
|
19943
20180
|
status: 'string',
|
|
@@ -21755,6 +21992,7 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
21755
21992
|
businessId?: number;
|
|
21756
21993
|
connection?: string;
|
|
21757
21994
|
createTime?: number;
|
|
21995
|
+
createUser?: string;
|
|
21758
21996
|
cycTime?: number;
|
|
21759
21997
|
dagId?: number;
|
|
21760
21998
|
dagType?: string;
|
|
@@ -21783,6 +22021,7 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
21783
22021
|
businessId: 'BusinessId',
|
|
21784
22022
|
connection: 'Connection',
|
|
21785
22023
|
createTime: 'CreateTime',
|
|
22024
|
+
createUser: 'CreateUser',
|
|
21786
22025
|
cycTime: 'CycTime',
|
|
21787
22026
|
dagId: 'DagId',
|
|
21788
22027
|
dagType: 'DagType',
|
|
@@ -21814,6 +22053,7 @@ export class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
21814
22053
|
businessId: 'number',
|
|
21815
22054
|
connection: 'string',
|
|
21816
22055
|
createTime: 'number',
|
|
22056
|
+
createUser: 'string',
|
|
21817
22057
|
cycTime: 'number',
|
|
21818
22058
|
dagId: 'number',
|
|
21819
22059
|
dagType: 'string',
|
|
@@ -22057,6 +22297,7 @@ export class GetManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
22057
22297
|
beginWaitTimeTime?: number;
|
|
22058
22298
|
bizDate?: number;
|
|
22059
22299
|
createTime?: number;
|
|
22300
|
+
createUser?: string;
|
|
22060
22301
|
cycTime?: number;
|
|
22061
22302
|
dagId?: number;
|
|
22062
22303
|
dagType?: string;
|
|
@@ -22075,6 +22316,7 @@ export class GetManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
22075
22316
|
beginWaitTimeTime: 'BeginWaitTimeTime',
|
|
22076
22317
|
bizDate: 'BizDate',
|
|
22077
22318
|
createTime: 'CreateTime',
|
|
22319
|
+
createUser: 'CreateUser',
|
|
22078
22320
|
cycTime: 'CycTime',
|
|
22079
22321
|
dagId: 'DagId',
|
|
22080
22322
|
dagType: 'DagType',
|
|
@@ -22096,6 +22338,7 @@ export class GetManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
22096
22338
|
beginWaitTimeTime: 'number',
|
|
22097
22339
|
bizDate: 'number',
|
|
22098
22340
|
createTime: 'number',
|
|
22341
|
+
createUser: 'string',
|
|
22099
22342
|
cycTime: 'number',
|
|
22100
22343
|
dagId: 'number',
|
|
22101
22344
|
dagType: 'string',
|
|
@@ -23062,6 +23305,49 @@ export class GetMigrationProcessResponseBodyData extends $tea.Model {
|
|
|
23062
23305
|
}
|
|
23063
23306
|
}
|
|
23064
23307
|
|
|
23308
|
+
export class GetMigrationSummaryResponseBodyData extends $tea.Model {
|
|
23309
|
+
createUser?: string;
|
|
23310
|
+
downloadUrl?: string;
|
|
23311
|
+
gmtCreate?: number;
|
|
23312
|
+
gmtModified?: number;
|
|
23313
|
+
migrationId?: number;
|
|
23314
|
+
name?: string;
|
|
23315
|
+
opUser?: string;
|
|
23316
|
+
projectId?: number;
|
|
23317
|
+
status?: string;
|
|
23318
|
+
static names(): { [key: string]: string } {
|
|
23319
|
+
return {
|
|
23320
|
+
createUser: 'CreateUser',
|
|
23321
|
+
downloadUrl: 'DownloadUrl',
|
|
23322
|
+
gmtCreate: 'GmtCreate',
|
|
23323
|
+
gmtModified: 'GmtModified',
|
|
23324
|
+
migrationId: 'MigrationId',
|
|
23325
|
+
name: 'Name',
|
|
23326
|
+
opUser: 'OpUser',
|
|
23327
|
+
projectId: 'ProjectId',
|
|
23328
|
+
status: 'Status',
|
|
23329
|
+
};
|
|
23330
|
+
}
|
|
23331
|
+
|
|
23332
|
+
static types(): { [key: string]: any } {
|
|
23333
|
+
return {
|
|
23334
|
+
createUser: 'string',
|
|
23335
|
+
downloadUrl: 'string',
|
|
23336
|
+
gmtCreate: 'number',
|
|
23337
|
+
gmtModified: 'number',
|
|
23338
|
+
migrationId: 'number',
|
|
23339
|
+
name: 'string',
|
|
23340
|
+
opUser: 'string',
|
|
23341
|
+
projectId: 'number',
|
|
23342
|
+
status: 'string',
|
|
23343
|
+
};
|
|
23344
|
+
}
|
|
23345
|
+
|
|
23346
|
+
constructor(map?: { [key: string]: any }) {
|
|
23347
|
+
super(map);
|
|
23348
|
+
}
|
|
23349
|
+
}
|
|
23350
|
+
|
|
23065
23351
|
export class GetNodeResponseBodyData extends $tea.Model {
|
|
23066
23352
|
baselineId?: number;
|
|
23067
23353
|
businessId?: number;
|
|
@@ -25076,6 +25362,80 @@ export class ListDISyncTasksResponseBodyTaskList extends $tea.Model {
|
|
|
25076
25362
|
}
|
|
25077
25363
|
}
|
|
25078
25364
|
|
|
25365
|
+
export class ListDagsResponseBodyDataDags extends $tea.Model {
|
|
25366
|
+
bizdate?: number;
|
|
25367
|
+
createTime?: number;
|
|
25368
|
+
createUser?: string;
|
|
25369
|
+
dagId?: number;
|
|
25370
|
+
finishTime?: number;
|
|
25371
|
+
gmtdate?: number;
|
|
25372
|
+
modifyTime?: number;
|
|
25373
|
+
name?: string;
|
|
25374
|
+
opSeq?: number;
|
|
25375
|
+
projectId?: number;
|
|
25376
|
+
startTime?: number;
|
|
25377
|
+
status?: string;
|
|
25378
|
+
type?: string;
|
|
25379
|
+
static names(): { [key: string]: string } {
|
|
25380
|
+
return {
|
|
25381
|
+
bizdate: 'Bizdate',
|
|
25382
|
+
createTime: 'CreateTime',
|
|
25383
|
+
createUser: 'CreateUser',
|
|
25384
|
+
dagId: 'DagId',
|
|
25385
|
+
finishTime: 'FinishTime',
|
|
25386
|
+
gmtdate: 'Gmtdate',
|
|
25387
|
+
modifyTime: 'ModifyTime',
|
|
25388
|
+
name: 'Name',
|
|
25389
|
+
opSeq: 'OpSeq',
|
|
25390
|
+
projectId: 'ProjectId',
|
|
25391
|
+
startTime: 'StartTime',
|
|
25392
|
+
status: 'Status',
|
|
25393
|
+
type: 'Type',
|
|
25394
|
+
};
|
|
25395
|
+
}
|
|
25396
|
+
|
|
25397
|
+
static types(): { [key: string]: any } {
|
|
25398
|
+
return {
|
|
25399
|
+
bizdate: 'number',
|
|
25400
|
+
createTime: 'number',
|
|
25401
|
+
createUser: 'string',
|
|
25402
|
+
dagId: 'number',
|
|
25403
|
+
finishTime: 'number',
|
|
25404
|
+
gmtdate: 'number',
|
|
25405
|
+
modifyTime: 'number',
|
|
25406
|
+
name: 'string',
|
|
25407
|
+
opSeq: 'number',
|
|
25408
|
+
projectId: 'number',
|
|
25409
|
+
startTime: 'number',
|
|
25410
|
+
status: 'string',
|
|
25411
|
+
type: 'string',
|
|
25412
|
+
};
|
|
25413
|
+
}
|
|
25414
|
+
|
|
25415
|
+
constructor(map?: { [key: string]: any }) {
|
|
25416
|
+
super(map);
|
|
25417
|
+
}
|
|
25418
|
+
}
|
|
25419
|
+
|
|
25420
|
+
export class ListDagsResponseBodyData extends $tea.Model {
|
|
25421
|
+
dags?: ListDagsResponseBodyDataDags[];
|
|
25422
|
+
static names(): { [key: string]: string } {
|
|
25423
|
+
return {
|
|
25424
|
+
dags: 'Dags',
|
|
25425
|
+
};
|
|
25426
|
+
}
|
|
25427
|
+
|
|
25428
|
+
static types(): { [key: string]: any } {
|
|
25429
|
+
return {
|
|
25430
|
+
dags: { 'type': 'array', 'itemType': ListDagsResponseBodyDataDags },
|
|
25431
|
+
};
|
|
25432
|
+
}
|
|
25433
|
+
|
|
25434
|
+
constructor(map?: { [key: string]: any }) {
|
|
25435
|
+
super(map);
|
|
25436
|
+
}
|
|
25437
|
+
}
|
|
25438
|
+
|
|
25079
25439
|
export class ListDataServiceApiAuthoritiesResponseBodyDataApiAuthorizationListAuthorizationRecords extends $tea.Model {
|
|
25080
25440
|
createdTime?: string;
|
|
25081
25441
|
creatorId?: string;
|
|
@@ -26931,6 +27291,7 @@ export class ListInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
26931
27291
|
businessId?: number;
|
|
26932
27292
|
connection?: string;
|
|
26933
27293
|
createTime?: number;
|
|
27294
|
+
createUser?: string;
|
|
26934
27295
|
cycTime?: number;
|
|
26935
27296
|
dagId?: number;
|
|
26936
27297
|
dagType?: string;
|
|
@@ -26960,6 +27321,7 @@ export class ListInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
26960
27321
|
businessId: 'BusinessId',
|
|
26961
27322
|
connection: 'Connection',
|
|
26962
27323
|
createTime: 'CreateTime',
|
|
27324
|
+
createUser: 'CreateUser',
|
|
26963
27325
|
cycTime: 'CycTime',
|
|
26964
27326
|
dagId: 'DagId',
|
|
26965
27327
|
dagType: 'DagType',
|
|
@@ -26992,6 +27354,7 @@ export class ListInstancesResponseBodyDataInstances extends $tea.Model {
|
|
|
26992
27354
|
businessId: 'number',
|
|
26993
27355
|
connection: 'string',
|
|
26994
27356
|
createTime: 'number',
|
|
27357
|
+
createUser: 'string',
|
|
26995
27358
|
cycTime: 'number',
|
|
26996
27359
|
dagId: 'number',
|
|
26997
27360
|
dagType: 'string',
|
|
@@ -27053,6 +27416,7 @@ export class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
27053
27416
|
beginWaitTimeTime?: number;
|
|
27054
27417
|
bizDate?: number;
|
|
27055
27418
|
createTime?: number;
|
|
27419
|
+
createUser?: string;
|
|
27056
27420
|
cycTime?: number;
|
|
27057
27421
|
dagId?: number;
|
|
27058
27422
|
dagType?: string;
|
|
@@ -27071,6 +27435,7 @@ export class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
27071
27435
|
beginWaitTimeTime: 'BeginWaitTimeTime',
|
|
27072
27436
|
bizDate: 'BizDate',
|
|
27073
27437
|
createTime: 'CreateTime',
|
|
27438
|
+
createUser: 'CreateUser',
|
|
27074
27439
|
cycTime: 'CycTime',
|
|
27075
27440
|
dagId: 'DagId',
|
|
27076
27441
|
dagType: 'DagType',
|
|
@@ -27092,6 +27457,7 @@ export class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
|
27092
27457
|
beginWaitTimeTime: 'number',
|
|
27093
27458
|
bizDate: 'number',
|
|
27094
27459
|
createTime: 'number',
|
|
27460
|
+
createUser: 'string',
|
|
27095
27461
|
cycTime: 'number',
|
|
27096
27462
|
dagId: 'number',
|
|
27097
27463
|
dagType: 'string',
|
|
@@ -29661,6 +30027,19 @@ export default class Client extends OpenApi {
|
|
|
29661
30027
|
return await this.createDataSourceWithOptions(request, runtime);
|
|
29662
30028
|
}
|
|
29663
30029
|
|
|
30030
|
+
async createExportMigrationWithOptions(request: CreateExportMigrationRequest, runtime: $Util.RuntimeOptions): Promise<CreateExportMigrationResponse> {
|
|
30031
|
+
Util.validateModel(request);
|
|
30032
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30033
|
+
body: Util.toMap(request),
|
|
30034
|
+
});
|
|
30035
|
+
return $tea.cast<CreateExportMigrationResponse>(await this.doRPCRequest("CreateExportMigration", "2020-05-18", "HTTPS", "POST", "AK", "json", req, runtime), new CreateExportMigrationResponse({}));
|
|
30036
|
+
}
|
|
30037
|
+
|
|
30038
|
+
async createExportMigration(request: CreateExportMigrationRequest): Promise<CreateExportMigrationResponse> {
|
|
30039
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
30040
|
+
return await this.createExportMigrationWithOptions(request, runtime);
|
|
30041
|
+
}
|
|
30042
|
+
|
|
29664
30043
|
async createFileWithOptions(request: CreateFileRequest, runtime: $Util.RuntimeOptions): Promise<CreateFileResponse> {
|
|
29665
30044
|
Util.validateModel(request);
|
|
29666
30045
|
let req = new $OpenApi.OpenApiRequest({
|
|
@@ -30930,6 +31309,19 @@ export default class Client extends OpenApi {
|
|
|
30930
31309
|
return await this.getMigrationProcessWithOptions(request, runtime);
|
|
30931
31310
|
}
|
|
30932
31311
|
|
|
31312
|
+
async getMigrationSummaryWithOptions(request: GetMigrationSummaryRequest, runtime: $Util.RuntimeOptions): Promise<GetMigrationSummaryResponse> {
|
|
31313
|
+
Util.validateModel(request);
|
|
31314
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
31315
|
+
body: Util.toMap(request),
|
|
31316
|
+
});
|
|
31317
|
+
return $tea.cast<GetMigrationSummaryResponse>(await this.doRPCRequest("GetMigrationSummary", "2020-05-18", "HTTPS", "POST", "AK", "json", req, runtime), new GetMigrationSummaryResponse({}));
|
|
31318
|
+
}
|
|
31319
|
+
|
|
31320
|
+
async getMigrationSummary(request: GetMigrationSummaryRequest): Promise<GetMigrationSummaryResponse> {
|
|
31321
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
31322
|
+
return await this.getMigrationSummaryWithOptions(request, runtime);
|
|
31323
|
+
}
|
|
31324
|
+
|
|
30933
31325
|
async getNodeWithOptions(request: GetNodeRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeResponse> {
|
|
30934
31326
|
Util.validateModel(request);
|
|
30935
31327
|
let req = new $OpenApi.OpenApiRequest({
|
|
@@ -31324,6 +31716,19 @@ export default class Client extends OpenApi {
|
|
|
31324
31716
|
return await this.listDISyncTasksWithOptions(request, runtime);
|
|
31325
31717
|
}
|
|
31326
31718
|
|
|
31719
|
+
async listDagsWithOptions(request: ListDagsRequest, runtime: $Util.RuntimeOptions): Promise<ListDagsResponse> {
|
|
31720
|
+
Util.validateModel(request);
|
|
31721
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
31722
|
+
body: Util.toMap(request),
|
|
31723
|
+
});
|
|
31724
|
+
return $tea.cast<ListDagsResponse>(await this.doRPCRequest("ListDags", "2020-05-18", "HTTPS", "POST", "AK", "json", req, runtime), new ListDagsResponse({}));
|
|
31725
|
+
}
|
|
31726
|
+
|
|
31727
|
+
async listDags(request: ListDagsRequest): Promise<ListDagsResponse> {
|
|
31728
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
31729
|
+
return await this.listDagsWithOptions(request, runtime);
|
|
31730
|
+
}
|
|
31731
|
+
|
|
31327
31732
|
async listDataServiceApiAuthoritiesWithOptions(request: ListDataServiceApiAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiAuthoritiesResponse> {
|
|
31328
31733
|
Util.validateModel(request);
|
|
31329
31734
|
let req = new $OpenApi.OpenApiRequest({
|