@alicloud/dataworks-public20200518 4.3.8 → 4.3.11
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 +397 -0
- package/dist/client.js +732 -6
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +900 -0
package/dist/client.d.ts
CHANGED
|
@@ -1529,6 +1529,7 @@ export declare class CreateTableRequest extends $tea.Model {
|
|
|
1529
1529
|
ownerId?: string;
|
|
1530
1530
|
physicsLevelId?: number;
|
|
1531
1531
|
projectId?: number;
|
|
1532
|
+
schema?: string;
|
|
1532
1533
|
tableName?: string;
|
|
1533
1534
|
themes?: CreateTableRequestThemes[];
|
|
1534
1535
|
visibility?: number;
|
|
@@ -2455,6 +2456,7 @@ export declare class DeleteTableRequest extends $tea.Model {
|
|
|
2455
2456
|
appGuid?: string;
|
|
2456
2457
|
envType?: number;
|
|
2457
2458
|
projectId?: number;
|
|
2459
|
+
schema?: string;
|
|
2458
2460
|
tableName?: string;
|
|
2459
2461
|
static names(): {
|
|
2460
2462
|
[key: string]: string;
|
|
@@ -3359,6 +3361,47 @@ export declare class GetDataServiceApiResponse extends $tea.Model {
|
|
|
3359
3361
|
[key: string]: any;
|
|
3360
3362
|
});
|
|
3361
3363
|
}
|
|
3364
|
+
export declare class GetDataServiceApiTestRequest extends $tea.Model {
|
|
3365
|
+
testId?: number;
|
|
3366
|
+
static names(): {
|
|
3367
|
+
[key: string]: string;
|
|
3368
|
+
};
|
|
3369
|
+
static types(): {
|
|
3370
|
+
[key: string]: any;
|
|
3371
|
+
};
|
|
3372
|
+
constructor(map?: {
|
|
3373
|
+
[key: string]: any;
|
|
3374
|
+
});
|
|
3375
|
+
}
|
|
3376
|
+
export declare class GetDataServiceApiTestResponseBody extends $tea.Model {
|
|
3377
|
+
data?: GetDataServiceApiTestResponseBodyData;
|
|
3378
|
+
requestId?: string;
|
|
3379
|
+
static names(): {
|
|
3380
|
+
[key: string]: string;
|
|
3381
|
+
};
|
|
3382
|
+
static types(): {
|
|
3383
|
+
[key: string]: any;
|
|
3384
|
+
};
|
|
3385
|
+
constructor(map?: {
|
|
3386
|
+
[key: string]: any;
|
|
3387
|
+
});
|
|
3388
|
+
}
|
|
3389
|
+
export declare class GetDataServiceApiTestResponse extends $tea.Model {
|
|
3390
|
+
headers: {
|
|
3391
|
+
[key: string]: string;
|
|
3392
|
+
};
|
|
3393
|
+
statusCode: number;
|
|
3394
|
+
body: GetDataServiceApiTestResponseBody;
|
|
3395
|
+
static names(): {
|
|
3396
|
+
[key: string]: string;
|
|
3397
|
+
};
|
|
3398
|
+
static types(): {
|
|
3399
|
+
[key: string]: any;
|
|
3400
|
+
};
|
|
3401
|
+
constructor(map?: {
|
|
3402
|
+
[key: string]: any;
|
|
3403
|
+
});
|
|
3404
|
+
}
|
|
3362
3405
|
export declare class GetDataServiceApplicationRequest extends $tea.Model {
|
|
3363
3406
|
applicationId?: number;
|
|
3364
3407
|
projectId?: number;
|
|
@@ -6499,6 +6542,48 @@ export declare class ListDataServiceApiAuthoritiesResponse extends $tea.Model {
|
|
|
6499
6542
|
[key: string]: any;
|
|
6500
6543
|
});
|
|
6501
6544
|
}
|
|
6545
|
+
export declare class ListDataServiceApiTestRequest extends $tea.Model {
|
|
6546
|
+
apiId?: number;
|
|
6547
|
+
pageSize?: number;
|
|
6548
|
+
static names(): {
|
|
6549
|
+
[key: string]: string;
|
|
6550
|
+
};
|
|
6551
|
+
static types(): {
|
|
6552
|
+
[key: string]: any;
|
|
6553
|
+
};
|
|
6554
|
+
constructor(map?: {
|
|
6555
|
+
[key: string]: any;
|
|
6556
|
+
});
|
|
6557
|
+
}
|
|
6558
|
+
export declare class ListDataServiceApiTestResponseBody extends $tea.Model {
|
|
6559
|
+
data?: ListDataServiceApiTestResponseBodyData[];
|
|
6560
|
+
requestId?: string;
|
|
6561
|
+
static names(): {
|
|
6562
|
+
[key: string]: string;
|
|
6563
|
+
};
|
|
6564
|
+
static types(): {
|
|
6565
|
+
[key: string]: any;
|
|
6566
|
+
};
|
|
6567
|
+
constructor(map?: {
|
|
6568
|
+
[key: string]: any;
|
|
6569
|
+
});
|
|
6570
|
+
}
|
|
6571
|
+
export declare class ListDataServiceApiTestResponse extends $tea.Model {
|
|
6572
|
+
headers: {
|
|
6573
|
+
[key: string]: string;
|
|
6574
|
+
};
|
|
6575
|
+
statusCode: number;
|
|
6576
|
+
body: ListDataServiceApiTestResponseBody;
|
|
6577
|
+
static names(): {
|
|
6578
|
+
[key: string]: string;
|
|
6579
|
+
};
|
|
6580
|
+
static types(): {
|
|
6581
|
+
[key: string]: any;
|
|
6582
|
+
};
|
|
6583
|
+
constructor(map?: {
|
|
6584
|
+
[key: string]: any;
|
|
6585
|
+
});
|
|
6586
|
+
}
|
|
6502
6587
|
export declare class ListDataServiceApisRequest extends $tea.Model {
|
|
6503
6588
|
apiNameKeyword?: string;
|
|
6504
6589
|
apiPathKeyword?: string;
|
|
@@ -8201,6 +8286,95 @@ export declare class ListResourceGroupsResponse extends $tea.Model {
|
|
|
8201
8286
|
[key: string]: any;
|
|
8202
8287
|
});
|
|
8203
8288
|
}
|
|
8289
|
+
export declare class ListShiftPersonnelsRequest extends $tea.Model {
|
|
8290
|
+
beginTime?: number;
|
|
8291
|
+
endTime?: number;
|
|
8292
|
+
shiftPersonUID?: string;
|
|
8293
|
+
shiftScheduleIdentifier?: string;
|
|
8294
|
+
userType?: string;
|
|
8295
|
+
static names(): {
|
|
8296
|
+
[key: string]: string;
|
|
8297
|
+
};
|
|
8298
|
+
static types(): {
|
|
8299
|
+
[key: string]: any;
|
|
8300
|
+
};
|
|
8301
|
+
constructor(map?: {
|
|
8302
|
+
[key: string]: any;
|
|
8303
|
+
});
|
|
8304
|
+
}
|
|
8305
|
+
export declare class ListShiftPersonnelsResponseBody extends $tea.Model {
|
|
8306
|
+
paging?: ListShiftPersonnelsResponseBodyPaging;
|
|
8307
|
+
requestId?: string;
|
|
8308
|
+
static names(): {
|
|
8309
|
+
[key: string]: string;
|
|
8310
|
+
};
|
|
8311
|
+
static types(): {
|
|
8312
|
+
[key: string]: any;
|
|
8313
|
+
};
|
|
8314
|
+
constructor(map?: {
|
|
8315
|
+
[key: string]: any;
|
|
8316
|
+
});
|
|
8317
|
+
}
|
|
8318
|
+
export declare class ListShiftPersonnelsResponse extends $tea.Model {
|
|
8319
|
+
headers: {
|
|
8320
|
+
[key: string]: string;
|
|
8321
|
+
};
|
|
8322
|
+
statusCode: number;
|
|
8323
|
+
body: ListShiftPersonnelsResponseBody;
|
|
8324
|
+
static names(): {
|
|
8325
|
+
[key: string]: string;
|
|
8326
|
+
};
|
|
8327
|
+
static types(): {
|
|
8328
|
+
[key: string]: any;
|
|
8329
|
+
};
|
|
8330
|
+
constructor(map?: {
|
|
8331
|
+
[key: string]: any;
|
|
8332
|
+
});
|
|
8333
|
+
}
|
|
8334
|
+
export declare class ListShiftSchedulesRequest extends $tea.Model {
|
|
8335
|
+
owner?: string;
|
|
8336
|
+
pageNumber?: number;
|
|
8337
|
+
pageSize?: number;
|
|
8338
|
+
shiftScheduleName?: string;
|
|
8339
|
+
static names(): {
|
|
8340
|
+
[key: string]: string;
|
|
8341
|
+
};
|
|
8342
|
+
static types(): {
|
|
8343
|
+
[key: string]: any;
|
|
8344
|
+
};
|
|
8345
|
+
constructor(map?: {
|
|
8346
|
+
[key: string]: any;
|
|
8347
|
+
});
|
|
8348
|
+
}
|
|
8349
|
+
export declare class ListShiftSchedulesResponseBody extends $tea.Model {
|
|
8350
|
+
paging?: ListShiftSchedulesResponseBodyPaging;
|
|
8351
|
+
requestId?: string;
|
|
8352
|
+
static names(): {
|
|
8353
|
+
[key: string]: string;
|
|
8354
|
+
};
|
|
8355
|
+
static types(): {
|
|
8356
|
+
[key: string]: any;
|
|
8357
|
+
};
|
|
8358
|
+
constructor(map?: {
|
|
8359
|
+
[key: string]: any;
|
|
8360
|
+
});
|
|
8361
|
+
}
|
|
8362
|
+
export declare class ListShiftSchedulesResponse extends $tea.Model {
|
|
8363
|
+
headers: {
|
|
8364
|
+
[key: string]: string;
|
|
8365
|
+
};
|
|
8366
|
+
statusCode: number;
|
|
8367
|
+
body: ListShiftSchedulesResponseBody;
|
|
8368
|
+
static names(): {
|
|
8369
|
+
[key: string]: string;
|
|
8370
|
+
};
|
|
8371
|
+
static types(): {
|
|
8372
|
+
[key: string]: any;
|
|
8373
|
+
};
|
|
8374
|
+
constructor(map?: {
|
|
8375
|
+
[key: string]: any;
|
|
8376
|
+
});
|
|
8377
|
+
}
|
|
8204
8378
|
export declare class ListSuccessInstanceAmountRequest extends $tea.Model {
|
|
8205
8379
|
projectId?: number;
|
|
8206
8380
|
static names(): {
|
|
@@ -9048,6 +9222,7 @@ export declare class SearchMetaTablesRequest extends $tea.Model {
|
|
|
9048
9222
|
keyword?: string;
|
|
9049
9223
|
pageNumber?: number;
|
|
9050
9224
|
pageSize?: number;
|
|
9225
|
+
schema?: string;
|
|
9051
9226
|
static names(): {
|
|
9052
9227
|
[key: string]: string;
|
|
9053
9228
|
};
|
|
@@ -9417,6 +9592,7 @@ export declare class SubmitFileRequest extends $tea.Model {
|
|
|
9417
9592
|
fileId?: number;
|
|
9418
9593
|
projectId?: number;
|
|
9419
9594
|
projectIdentifier?: string;
|
|
9595
|
+
skipAllDeployFileExtensions?: boolean;
|
|
9420
9596
|
static names(): {
|
|
9421
9597
|
[key: string]: string;
|
|
9422
9598
|
};
|
|
@@ -9550,6 +9726,52 @@ export declare class TerminateDISyncInstanceResponse extends $tea.Model {
|
|
|
9550
9726
|
[key: string]: any;
|
|
9551
9727
|
});
|
|
9552
9728
|
}
|
|
9729
|
+
export declare class TestDataServiceApiRequest extends $tea.Model {
|
|
9730
|
+
apiId?: number;
|
|
9731
|
+
bodyContent?: string;
|
|
9732
|
+
bodyParams?: TestDataServiceApiRequestBodyParams[];
|
|
9733
|
+
headParams?: TestDataServiceApiRequestHeadParams[];
|
|
9734
|
+
pathParams?: TestDataServiceApiRequestPathParams[];
|
|
9735
|
+
queryParam?: TestDataServiceApiRequestQueryParam[];
|
|
9736
|
+
static names(): {
|
|
9737
|
+
[key: string]: string;
|
|
9738
|
+
};
|
|
9739
|
+
static types(): {
|
|
9740
|
+
[key: string]: any;
|
|
9741
|
+
};
|
|
9742
|
+
constructor(map?: {
|
|
9743
|
+
[key: string]: any;
|
|
9744
|
+
});
|
|
9745
|
+
}
|
|
9746
|
+
export declare class TestDataServiceApiResponseBody extends $tea.Model {
|
|
9747
|
+
data?: TestDataServiceApiResponseBodyData;
|
|
9748
|
+
requestId?: string;
|
|
9749
|
+
static names(): {
|
|
9750
|
+
[key: string]: string;
|
|
9751
|
+
};
|
|
9752
|
+
static types(): {
|
|
9753
|
+
[key: string]: any;
|
|
9754
|
+
};
|
|
9755
|
+
constructor(map?: {
|
|
9756
|
+
[key: string]: any;
|
|
9757
|
+
});
|
|
9758
|
+
}
|
|
9759
|
+
export declare class TestDataServiceApiResponse extends $tea.Model {
|
|
9760
|
+
headers: {
|
|
9761
|
+
[key: string]: string;
|
|
9762
|
+
};
|
|
9763
|
+
statusCode: number;
|
|
9764
|
+
body: TestDataServiceApiResponseBody;
|
|
9765
|
+
static names(): {
|
|
9766
|
+
[key: string]: string;
|
|
9767
|
+
};
|
|
9768
|
+
static types(): {
|
|
9769
|
+
[key: string]: any;
|
|
9770
|
+
};
|
|
9771
|
+
constructor(map?: {
|
|
9772
|
+
[key: string]: any;
|
|
9773
|
+
});
|
|
9774
|
+
}
|
|
9553
9775
|
export declare class TestNetworkConnectionRequest extends $tea.Model {
|
|
9554
9776
|
datasourceName?: string;
|
|
9555
9777
|
envType?: string;
|
|
@@ -10185,6 +10407,7 @@ export declare class UpdateMetaTableRequest extends $tea.Model {
|
|
|
10185
10407
|
newOwnerId?: string;
|
|
10186
10408
|
projectId?: number;
|
|
10187
10409
|
removedLabels?: string;
|
|
10410
|
+
schema?: string;
|
|
10188
10411
|
tableGuid?: string;
|
|
10189
10412
|
tableName?: string;
|
|
10190
10413
|
visibility?: number;
|
|
@@ -10545,6 +10768,7 @@ export declare class UpdateTableRequest extends $tea.Model {
|
|
|
10545
10768
|
ownerId?: string;
|
|
10546
10769
|
physicsLevelId?: number;
|
|
10547
10770
|
projectId?: number;
|
|
10771
|
+
schema?: string;
|
|
10548
10772
|
tableName?: string;
|
|
10549
10773
|
themes?: UpdateTableRequestThemes[];
|
|
10550
10774
|
visibility?: number;
|
|
@@ -11606,6 +11830,25 @@ export declare class GetDataServiceApiResponseBodyData extends $tea.Model {
|
|
|
11606
11830
|
[key: string]: any;
|
|
11607
11831
|
});
|
|
11608
11832
|
}
|
|
11833
|
+
export declare class GetDataServiceApiTestResponseBodyData extends $tea.Model {
|
|
11834
|
+
apiId?: number;
|
|
11835
|
+
costTime?: string;
|
|
11836
|
+
debugInfo?: string;
|
|
11837
|
+
nodesDebugInfo?: string;
|
|
11838
|
+
paramMap?: string;
|
|
11839
|
+
retCode?: number;
|
|
11840
|
+
retResult?: string;
|
|
11841
|
+
status?: string;
|
|
11842
|
+
static names(): {
|
|
11843
|
+
[key: string]: string;
|
|
11844
|
+
};
|
|
11845
|
+
static types(): {
|
|
11846
|
+
[key: string]: any;
|
|
11847
|
+
};
|
|
11848
|
+
constructor(map?: {
|
|
11849
|
+
[key: string]: any;
|
|
11850
|
+
});
|
|
11851
|
+
}
|
|
11609
11852
|
export declare class GetDataServiceApplicationResponseBodyData extends $tea.Model {
|
|
11610
11853
|
applicationCode?: string;
|
|
11611
11854
|
applicationId?: number;
|
|
@@ -12674,6 +12917,7 @@ export declare class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
|
|
|
12674
12917
|
projectId?: number;
|
|
12675
12918
|
projectName?: string;
|
|
12676
12919
|
readCount?: number;
|
|
12920
|
+
schema?: string;
|
|
12677
12921
|
tableGuid?: string;
|
|
12678
12922
|
tableName?: string;
|
|
12679
12923
|
tenantId?: number;
|
|
@@ -12794,6 +13038,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
12794
13038
|
partitionKeys?: string;
|
|
12795
13039
|
projectId?: number;
|
|
12796
13040
|
projectName?: string;
|
|
13041
|
+
schema?: string;
|
|
12797
13042
|
tableGuid?: string;
|
|
12798
13043
|
tableName?: string;
|
|
12799
13044
|
tenantId?: number;
|
|
@@ -14077,6 +14322,25 @@ export declare class ListDataServiceApiAuthoritiesResponseBodyData extends $tea.
|
|
|
14077
14322
|
[key: string]: any;
|
|
14078
14323
|
});
|
|
14079
14324
|
}
|
|
14325
|
+
export declare class ListDataServiceApiTestResponseBodyData extends $tea.Model {
|
|
14326
|
+
apiId?: number;
|
|
14327
|
+
costTime?: number;
|
|
14328
|
+
createTime?: number;
|
|
14329
|
+
paramMap?: string;
|
|
14330
|
+
retCode?: number;
|
|
14331
|
+
retResult?: string;
|
|
14332
|
+
status?: string;
|
|
14333
|
+
testId?: number;
|
|
14334
|
+
static names(): {
|
|
14335
|
+
[key: string]: string;
|
|
14336
|
+
};
|
|
14337
|
+
static types(): {
|
|
14338
|
+
[key: string]: any;
|
|
14339
|
+
};
|
|
14340
|
+
constructor(map?: {
|
|
14341
|
+
[key: string]: any;
|
|
14342
|
+
});
|
|
14343
|
+
}
|
|
14080
14344
|
export declare class ListDataServiceApisResponseBodyDataApisRegistrationDetailsRegistrationErrorCodes extends $tea.Model {
|
|
14081
14345
|
errorCode?: string;
|
|
14082
14346
|
errorMessage?: string;
|
|
@@ -15820,6 +16084,64 @@ export declare class ListResourceGroupsResponseBodyData extends $tea.Model {
|
|
|
15820
16084
|
[key: string]: any;
|
|
15821
16085
|
});
|
|
15822
16086
|
}
|
|
16087
|
+
export declare class ListShiftPersonnelsResponseBodyPagingShiftPersons extends $tea.Model {
|
|
16088
|
+
beginTime?: number;
|
|
16089
|
+
endTime?: number;
|
|
16090
|
+
shiftPersonName?: string;
|
|
16091
|
+
shiftPersonUID?: string;
|
|
16092
|
+
static names(): {
|
|
16093
|
+
[key: string]: string;
|
|
16094
|
+
};
|
|
16095
|
+
static types(): {
|
|
16096
|
+
[key: string]: any;
|
|
16097
|
+
};
|
|
16098
|
+
constructor(map?: {
|
|
16099
|
+
[key: string]: any;
|
|
16100
|
+
});
|
|
16101
|
+
}
|
|
16102
|
+
export declare class ListShiftPersonnelsResponseBodyPaging extends $tea.Model {
|
|
16103
|
+
pageNumber?: number;
|
|
16104
|
+
pageSize?: number;
|
|
16105
|
+
shiftPersons?: ListShiftPersonnelsResponseBodyPagingShiftPersons[];
|
|
16106
|
+
totalCount?: number;
|
|
16107
|
+
static names(): {
|
|
16108
|
+
[key: string]: string;
|
|
16109
|
+
};
|
|
16110
|
+
static types(): {
|
|
16111
|
+
[key: string]: any;
|
|
16112
|
+
};
|
|
16113
|
+
constructor(map?: {
|
|
16114
|
+
[key: string]: any;
|
|
16115
|
+
});
|
|
16116
|
+
}
|
|
16117
|
+
export declare class ListShiftSchedulesResponseBodyPagingShiftSchedules extends $tea.Model {
|
|
16118
|
+
shiftScheduleIdentifier?: string;
|
|
16119
|
+
shiftScheduleName?: string;
|
|
16120
|
+
static names(): {
|
|
16121
|
+
[key: string]: string;
|
|
16122
|
+
};
|
|
16123
|
+
static types(): {
|
|
16124
|
+
[key: string]: any;
|
|
16125
|
+
};
|
|
16126
|
+
constructor(map?: {
|
|
16127
|
+
[key: string]: any;
|
|
16128
|
+
});
|
|
16129
|
+
}
|
|
16130
|
+
export declare class ListShiftSchedulesResponseBodyPaging extends $tea.Model {
|
|
16131
|
+
pageNumber?: number;
|
|
16132
|
+
pageSize?: number;
|
|
16133
|
+
shiftSchedules?: ListShiftSchedulesResponseBodyPagingShiftSchedules[];
|
|
16134
|
+
totalCount?: number;
|
|
16135
|
+
static names(): {
|
|
16136
|
+
[key: string]: string;
|
|
16137
|
+
};
|
|
16138
|
+
static types(): {
|
|
16139
|
+
[key: string]: any;
|
|
16140
|
+
};
|
|
16141
|
+
constructor(map?: {
|
|
16142
|
+
[key: string]: any;
|
|
16143
|
+
});
|
|
16144
|
+
}
|
|
15823
16145
|
export declare class ListSuccessInstanceAmountResponseBodyInstanceStatusTrendAvgTrend extends $tea.Model {
|
|
15824
16146
|
count?: number;
|
|
15825
16147
|
timePoint?: string;
|
|
@@ -16006,6 +16328,7 @@ export declare class SearchMetaTablesResponseBodyDataDataEntityList extends $tea
|
|
|
16006
16328
|
ownerId?: string;
|
|
16007
16329
|
projectId?: number;
|
|
16008
16330
|
projectName?: string;
|
|
16331
|
+
schema?: string;
|
|
16009
16332
|
tableGuid?: string;
|
|
16010
16333
|
tableName?: string;
|
|
16011
16334
|
tenantId?: number;
|
|
@@ -16086,6 +16409,70 @@ export declare class TerminateDISyncInstanceResponseBodyData extends $tea.Model
|
|
|
16086
16409
|
[key: string]: any;
|
|
16087
16410
|
});
|
|
16088
16411
|
}
|
|
16412
|
+
export declare class TestDataServiceApiRequestBodyParams extends $tea.Model {
|
|
16413
|
+
paramKey?: string;
|
|
16414
|
+
paramValue?: string;
|
|
16415
|
+
static names(): {
|
|
16416
|
+
[key: string]: string;
|
|
16417
|
+
};
|
|
16418
|
+
static types(): {
|
|
16419
|
+
[key: string]: any;
|
|
16420
|
+
};
|
|
16421
|
+
constructor(map?: {
|
|
16422
|
+
[key: string]: any;
|
|
16423
|
+
});
|
|
16424
|
+
}
|
|
16425
|
+
export declare class TestDataServiceApiRequestHeadParams extends $tea.Model {
|
|
16426
|
+
paramKey?: string;
|
|
16427
|
+
paramValue?: string;
|
|
16428
|
+
static names(): {
|
|
16429
|
+
[key: string]: string;
|
|
16430
|
+
};
|
|
16431
|
+
static types(): {
|
|
16432
|
+
[key: string]: any;
|
|
16433
|
+
};
|
|
16434
|
+
constructor(map?: {
|
|
16435
|
+
[key: string]: any;
|
|
16436
|
+
});
|
|
16437
|
+
}
|
|
16438
|
+
export declare class TestDataServiceApiRequestPathParams extends $tea.Model {
|
|
16439
|
+
paramKey?: string;
|
|
16440
|
+
paramValue?: string;
|
|
16441
|
+
static names(): {
|
|
16442
|
+
[key: string]: string;
|
|
16443
|
+
};
|
|
16444
|
+
static types(): {
|
|
16445
|
+
[key: string]: any;
|
|
16446
|
+
};
|
|
16447
|
+
constructor(map?: {
|
|
16448
|
+
[key: string]: any;
|
|
16449
|
+
});
|
|
16450
|
+
}
|
|
16451
|
+
export declare class TestDataServiceApiRequestQueryParam extends $tea.Model {
|
|
16452
|
+
paramKey?: string;
|
|
16453
|
+
paramValue?: string;
|
|
16454
|
+
static names(): {
|
|
16455
|
+
[key: string]: string;
|
|
16456
|
+
};
|
|
16457
|
+
static types(): {
|
|
16458
|
+
[key: string]: any;
|
|
16459
|
+
};
|
|
16460
|
+
constructor(map?: {
|
|
16461
|
+
[key: string]: any;
|
|
16462
|
+
});
|
|
16463
|
+
}
|
|
16464
|
+
export declare class TestDataServiceApiResponseBodyData extends $tea.Model {
|
|
16465
|
+
testId?: string;
|
|
16466
|
+
static names(): {
|
|
16467
|
+
[key: string]: string;
|
|
16468
|
+
};
|
|
16469
|
+
static types(): {
|
|
16470
|
+
[key: string]: any;
|
|
16471
|
+
};
|
|
16472
|
+
constructor(map?: {
|
|
16473
|
+
[key: string]: any;
|
|
16474
|
+
});
|
|
16475
|
+
}
|
|
16089
16476
|
export declare class TestNetworkConnectionResponseBodyTaskList extends $tea.Model {
|
|
16090
16477
|
connectMessage?: string;
|
|
16091
16478
|
connectStatus?: boolean;
|
|
@@ -16407,6 +16794,8 @@ export default class Client extends OpenApi {
|
|
|
16407
16794
|
getDag(request: GetDagRequest): Promise<GetDagResponse>;
|
|
16408
16795
|
getDataServiceApiWithOptions(request: GetDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApiResponse>;
|
|
16409
16796
|
getDataServiceApi(request: GetDataServiceApiRequest): Promise<GetDataServiceApiResponse>;
|
|
16797
|
+
getDataServiceApiTestWithOptions(request: GetDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApiTestResponse>;
|
|
16798
|
+
getDataServiceApiTest(request: GetDataServiceApiTestRequest): Promise<GetDataServiceApiTestResponse>;
|
|
16410
16799
|
getDataServiceApplicationWithOptions(request: GetDataServiceApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApplicationResponse>;
|
|
16411
16800
|
getDataServiceApplication(request: GetDataServiceApplicationRequest): Promise<GetDataServiceApplicationResponse>;
|
|
16412
16801
|
getDataServiceFolderWithOptions(request: GetDataServiceFolderRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceFolderResponse>;
|
|
@@ -16543,6 +16932,8 @@ export default class Client extends OpenApi {
|
|
|
16543
16932
|
listDags(request: ListDagsRequest): Promise<ListDagsResponse>;
|
|
16544
16933
|
listDataServiceApiAuthoritiesWithOptions(request: ListDataServiceApiAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiAuthoritiesResponse>;
|
|
16545
16934
|
listDataServiceApiAuthorities(request: ListDataServiceApiAuthoritiesRequest): Promise<ListDataServiceApiAuthoritiesResponse>;
|
|
16935
|
+
listDataServiceApiTestWithOptions(request: ListDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiTestResponse>;
|
|
16936
|
+
listDataServiceApiTest(request: ListDataServiceApiTestRequest): Promise<ListDataServiceApiTestResponse>;
|
|
16546
16937
|
listDataServiceApisWithOptions(request: ListDataServiceApisRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApisResponse>;
|
|
16547
16938
|
listDataServiceApis(request: ListDataServiceApisRequest): Promise<ListDataServiceApisResponse>;
|
|
16548
16939
|
listDataServiceApplicationsWithOptions(request: ListDataServiceApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApplicationsResponse>;
|
|
@@ -16615,6 +17006,10 @@ export default class Client extends OpenApi {
|
|
|
16615
17006
|
listReminds(request: ListRemindsRequest): Promise<ListRemindsResponse>;
|
|
16616
17007
|
listResourceGroupsWithOptions(request: ListResourceGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListResourceGroupsResponse>;
|
|
16617
17008
|
listResourceGroups(request: ListResourceGroupsRequest): Promise<ListResourceGroupsResponse>;
|
|
17009
|
+
listShiftPersonnelsWithOptions(request: ListShiftPersonnelsRequest, runtime: $Util.RuntimeOptions): Promise<ListShiftPersonnelsResponse>;
|
|
17010
|
+
listShiftPersonnels(request: ListShiftPersonnelsRequest): Promise<ListShiftPersonnelsResponse>;
|
|
17011
|
+
listShiftSchedulesWithOptions(request: ListShiftSchedulesRequest, runtime: $Util.RuntimeOptions): Promise<ListShiftSchedulesResponse>;
|
|
17012
|
+
listShiftSchedules(request: ListShiftSchedulesRequest): Promise<ListShiftSchedulesResponse>;
|
|
16618
17013
|
listSuccessInstanceAmountWithOptions(request: ListSuccessInstanceAmountRequest, runtime: $Util.RuntimeOptions): Promise<ListSuccessInstanceAmountResponse>;
|
|
16619
17014
|
listSuccessInstanceAmount(request: ListSuccessInstanceAmountRequest): Promise<ListSuccessInstanceAmountResponse>;
|
|
16620
17015
|
listTableLevelWithOptions(request: ListTableLevelRequest, runtime: $Util.RuntimeOptions): Promise<ListTableLevelResponse>;
|
|
@@ -16673,6 +17068,8 @@ export default class Client extends OpenApi {
|
|
|
16673
17068
|
suspendInstance(request: SuspendInstanceRequest): Promise<SuspendInstanceResponse>;
|
|
16674
17069
|
terminateDISyncInstanceWithOptions(request: TerminateDISyncInstanceRequest, runtime: $Util.RuntimeOptions): Promise<TerminateDISyncInstanceResponse>;
|
|
16675
17070
|
terminateDISyncInstance(request: TerminateDISyncInstanceRequest): Promise<TerminateDISyncInstanceResponse>;
|
|
17071
|
+
testDataServiceApiWithOptions(request: TestDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<TestDataServiceApiResponse>;
|
|
17072
|
+
testDataServiceApi(request: TestDataServiceApiRequest): Promise<TestDataServiceApiResponse>;
|
|
16676
17073
|
testNetworkConnectionWithOptions(request: TestNetworkConnectionRequest, runtime: $Util.RuntimeOptions): Promise<TestNetworkConnectionResponse>;
|
|
16677
17074
|
testNetworkConnection(request: TestNetworkConnectionRequest): Promise<TestNetworkConnectionResponse>;
|
|
16678
17075
|
topTenElapsedTimeInstanceWithOptions(request: TopTenElapsedTimeInstanceRequest, runtime: $Util.RuntimeOptions): Promise<TopTenElapsedTimeInstanceResponse>;
|