@alicloud/dataworks-public20200518 4.3.9 → 4.3.10
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 +159 -151
- package/dist/client.js +310 -279
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +389 -345
package/dist/client.js
CHANGED
|
@@ -2210,6 +2210,7 @@ class CreateTableRequest extends $tea.Model {
|
|
|
2210
2210
|
ownerId: 'OwnerId',
|
|
2211
2211
|
physicsLevelId: 'PhysicsLevelId',
|
|
2212
2212
|
projectId: 'ProjectId',
|
|
2213
|
+
schema: 'Schema',
|
|
2213
2214
|
tableName: 'TableName',
|
|
2214
2215
|
themes: 'Themes',
|
|
2215
2216
|
visibility: 'Visibility',
|
|
@@ -2233,6 +2234,7 @@ class CreateTableRequest extends $tea.Model {
|
|
|
2233
2234
|
ownerId: 'string',
|
|
2234
2235
|
physicsLevelId: 'number',
|
|
2235
2236
|
projectId: 'number',
|
|
2237
|
+
schema: 'string',
|
|
2236
2238
|
tableName: 'string',
|
|
2237
2239
|
themes: { 'type': 'array', 'itemType': CreateTableRequestThemes },
|
|
2238
2240
|
visibility: 'number',
|
|
@@ -3515,6 +3517,7 @@ class DeleteTableRequest extends $tea.Model {
|
|
|
3515
3517
|
appGuid: 'AppGuid',
|
|
3516
3518
|
envType: 'EnvType',
|
|
3517
3519
|
projectId: 'ProjectId',
|
|
3520
|
+
schema: 'Schema',
|
|
3518
3521
|
tableName: 'TableName',
|
|
3519
3522
|
};
|
|
3520
3523
|
}
|
|
@@ -3523,6 +3526,7 @@ class DeleteTableRequest extends $tea.Model {
|
|
|
3523
3526
|
appGuid: 'string',
|
|
3524
3527
|
envType: 'number',
|
|
3525
3528
|
projectId: 'number',
|
|
3529
|
+
schema: 'string',
|
|
3526
3530
|
tableName: 'string',
|
|
3527
3531
|
};
|
|
3528
3532
|
}
|
|
@@ -5194,68 +5198,6 @@ class GetDeploymentResponse extends $tea.Model {
|
|
|
5194
5198
|
}
|
|
5195
5199
|
}
|
|
5196
5200
|
exports.GetDeploymentResponse = GetDeploymentResponse;
|
|
5197
|
-
class GetDutyRosterRequest extends $tea.Model {
|
|
5198
|
-
constructor(map) {
|
|
5199
|
-
super(map);
|
|
5200
|
-
}
|
|
5201
|
-
static names() {
|
|
5202
|
-
return {
|
|
5203
|
-
beginTime: 'BeginTime',
|
|
5204
|
-
dutyRosterIdentifier: 'DutyRosterIdentifier',
|
|
5205
|
-
endTime: 'EndTime',
|
|
5206
|
-
userType: 'UserType',
|
|
5207
|
-
watchkeeper: 'Watchkeeper',
|
|
5208
|
-
};
|
|
5209
|
-
}
|
|
5210
|
-
static types() {
|
|
5211
|
-
return {
|
|
5212
|
-
beginTime: 'number',
|
|
5213
|
-
dutyRosterIdentifier: 'string',
|
|
5214
|
-
endTime: 'number',
|
|
5215
|
-
userType: 'string',
|
|
5216
|
-
watchkeeper: 'string',
|
|
5217
|
-
};
|
|
5218
|
-
}
|
|
5219
|
-
}
|
|
5220
|
-
exports.GetDutyRosterRequest = GetDutyRosterRequest;
|
|
5221
|
-
class GetDutyRosterResponseBody extends $tea.Model {
|
|
5222
|
-
constructor(map) {
|
|
5223
|
-
super(map);
|
|
5224
|
-
}
|
|
5225
|
-
static names() {
|
|
5226
|
-
return {
|
|
5227
|
-
paging: 'Paging',
|
|
5228
|
-
requestId: 'RequestId',
|
|
5229
|
-
};
|
|
5230
|
-
}
|
|
5231
|
-
static types() {
|
|
5232
|
-
return {
|
|
5233
|
-
paging: GetDutyRosterResponseBodyPaging,
|
|
5234
|
-
requestId: 'string',
|
|
5235
|
-
};
|
|
5236
|
-
}
|
|
5237
|
-
}
|
|
5238
|
-
exports.GetDutyRosterResponseBody = GetDutyRosterResponseBody;
|
|
5239
|
-
class GetDutyRosterResponse extends $tea.Model {
|
|
5240
|
-
constructor(map) {
|
|
5241
|
-
super(map);
|
|
5242
|
-
}
|
|
5243
|
-
static names() {
|
|
5244
|
-
return {
|
|
5245
|
-
headers: 'headers',
|
|
5246
|
-
statusCode: 'statusCode',
|
|
5247
|
-
body: 'body',
|
|
5248
|
-
};
|
|
5249
|
-
}
|
|
5250
|
-
static types() {
|
|
5251
|
-
return {
|
|
5252
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5253
|
-
statusCode: 'number',
|
|
5254
|
-
body: GetDutyRosterResponseBody,
|
|
5255
|
-
};
|
|
5256
|
-
}
|
|
5257
|
-
}
|
|
5258
|
-
exports.GetDutyRosterResponse = GetDutyRosterResponse;
|
|
5259
5201
|
class GetExtensionRequest extends $tea.Model {
|
|
5260
5202
|
constructor(map) {
|
|
5261
5203
|
super(map);
|
|
@@ -9862,66 +9804,6 @@ class ListDeploymentsResponse extends $tea.Model {
|
|
|
9862
9804
|
}
|
|
9863
9805
|
}
|
|
9864
9806
|
exports.ListDeploymentsResponse = ListDeploymentsResponse;
|
|
9865
|
-
class ListDutyRostersRequest extends $tea.Model {
|
|
9866
|
-
constructor(map) {
|
|
9867
|
-
super(map);
|
|
9868
|
-
}
|
|
9869
|
-
static names() {
|
|
9870
|
-
return {
|
|
9871
|
-
dutyRosterName: 'DutyRosterName',
|
|
9872
|
-
dutyRosterOwner: 'DutyRosterOwner',
|
|
9873
|
-
pageNumber: 'PageNumber',
|
|
9874
|
-
pageSize: 'PageSize',
|
|
9875
|
-
};
|
|
9876
|
-
}
|
|
9877
|
-
static types() {
|
|
9878
|
-
return {
|
|
9879
|
-
dutyRosterName: 'string',
|
|
9880
|
-
dutyRosterOwner: 'string',
|
|
9881
|
-
pageNumber: 'number',
|
|
9882
|
-
pageSize: 'number',
|
|
9883
|
-
};
|
|
9884
|
-
}
|
|
9885
|
-
}
|
|
9886
|
-
exports.ListDutyRostersRequest = ListDutyRostersRequest;
|
|
9887
|
-
class ListDutyRostersResponseBody extends $tea.Model {
|
|
9888
|
-
constructor(map) {
|
|
9889
|
-
super(map);
|
|
9890
|
-
}
|
|
9891
|
-
static names() {
|
|
9892
|
-
return {
|
|
9893
|
-
paging: 'Paging',
|
|
9894
|
-
requestId: 'RequestId',
|
|
9895
|
-
};
|
|
9896
|
-
}
|
|
9897
|
-
static types() {
|
|
9898
|
-
return {
|
|
9899
|
-
paging: ListDutyRostersResponseBodyPaging,
|
|
9900
|
-
requestId: 'string',
|
|
9901
|
-
};
|
|
9902
|
-
}
|
|
9903
|
-
}
|
|
9904
|
-
exports.ListDutyRostersResponseBody = ListDutyRostersResponseBody;
|
|
9905
|
-
class ListDutyRostersResponse extends $tea.Model {
|
|
9906
|
-
constructor(map) {
|
|
9907
|
-
super(map);
|
|
9908
|
-
}
|
|
9909
|
-
static names() {
|
|
9910
|
-
return {
|
|
9911
|
-
headers: 'headers',
|
|
9912
|
-
statusCode: 'statusCode',
|
|
9913
|
-
body: 'body',
|
|
9914
|
-
};
|
|
9915
|
-
}
|
|
9916
|
-
static types() {
|
|
9917
|
-
return {
|
|
9918
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9919
|
-
statusCode: 'number',
|
|
9920
|
-
body: ListDutyRostersResponseBody,
|
|
9921
|
-
};
|
|
9922
|
-
}
|
|
9923
|
-
}
|
|
9924
|
-
exports.ListDutyRostersResponse = ListDutyRostersResponse;
|
|
9925
9807
|
class ListExtensionsRequest extends $tea.Model {
|
|
9926
9808
|
constructor(map) {
|
|
9927
9809
|
super(map);
|
|
@@ -11762,6 +11644,128 @@ class ListResourceGroupsResponse extends $tea.Model {
|
|
|
11762
11644
|
}
|
|
11763
11645
|
}
|
|
11764
11646
|
exports.ListResourceGroupsResponse = ListResourceGroupsResponse;
|
|
11647
|
+
class ListShiftPersonnelsRequest extends $tea.Model {
|
|
11648
|
+
constructor(map) {
|
|
11649
|
+
super(map);
|
|
11650
|
+
}
|
|
11651
|
+
static names() {
|
|
11652
|
+
return {
|
|
11653
|
+
beginTime: 'BeginTime',
|
|
11654
|
+
endTime: 'EndTime',
|
|
11655
|
+
shiftPersonUID: 'ShiftPersonUID',
|
|
11656
|
+
shiftScheduleIdentifier: 'ShiftScheduleIdentifier',
|
|
11657
|
+
userType: 'UserType',
|
|
11658
|
+
};
|
|
11659
|
+
}
|
|
11660
|
+
static types() {
|
|
11661
|
+
return {
|
|
11662
|
+
beginTime: 'number',
|
|
11663
|
+
endTime: 'number',
|
|
11664
|
+
shiftPersonUID: 'string',
|
|
11665
|
+
shiftScheduleIdentifier: 'string',
|
|
11666
|
+
userType: 'string',
|
|
11667
|
+
};
|
|
11668
|
+
}
|
|
11669
|
+
}
|
|
11670
|
+
exports.ListShiftPersonnelsRequest = ListShiftPersonnelsRequest;
|
|
11671
|
+
class ListShiftPersonnelsResponseBody extends $tea.Model {
|
|
11672
|
+
constructor(map) {
|
|
11673
|
+
super(map);
|
|
11674
|
+
}
|
|
11675
|
+
static names() {
|
|
11676
|
+
return {
|
|
11677
|
+
paging: 'Paging',
|
|
11678
|
+
requestId: 'RequestId',
|
|
11679
|
+
};
|
|
11680
|
+
}
|
|
11681
|
+
static types() {
|
|
11682
|
+
return {
|
|
11683
|
+
paging: ListShiftPersonnelsResponseBodyPaging,
|
|
11684
|
+
requestId: 'string',
|
|
11685
|
+
};
|
|
11686
|
+
}
|
|
11687
|
+
}
|
|
11688
|
+
exports.ListShiftPersonnelsResponseBody = ListShiftPersonnelsResponseBody;
|
|
11689
|
+
class ListShiftPersonnelsResponse extends $tea.Model {
|
|
11690
|
+
constructor(map) {
|
|
11691
|
+
super(map);
|
|
11692
|
+
}
|
|
11693
|
+
static names() {
|
|
11694
|
+
return {
|
|
11695
|
+
headers: 'headers',
|
|
11696
|
+
statusCode: 'statusCode',
|
|
11697
|
+
body: 'body',
|
|
11698
|
+
};
|
|
11699
|
+
}
|
|
11700
|
+
static types() {
|
|
11701
|
+
return {
|
|
11702
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11703
|
+
statusCode: 'number',
|
|
11704
|
+
body: ListShiftPersonnelsResponseBody,
|
|
11705
|
+
};
|
|
11706
|
+
}
|
|
11707
|
+
}
|
|
11708
|
+
exports.ListShiftPersonnelsResponse = ListShiftPersonnelsResponse;
|
|
11709
|
+
class ListShiftSchedulesRequest extends $tea.Model {
|
|
11710
|
+
constructor(map) {
|
|
11711
|
+
super(map);
|
|
11712
|
+
}
|
|
11713
|
+
static names() {
|
|
11714
|
+
return {
|
|
11715
|
+
owner: 'Owner',
|
|
11716
|
+
pageNumber: 'PageNumber',
|
|
11717
|
+
pageSize: 'PageSize',
|
|
11718
|
+
shiftScheduleName: 'ShiftScheduleName',
|
|
11719
|
+
};
|
|
11720
|
+
}
|
|
11721
|
+
static types() {
|
|
11722
|
+
return {
|
|
11723
|
+
owner: 'string',
|
|
11724
|
+
pageNumber: 'number',
|
|
11725
|
+
pageSize: 'number',
|
|
11726
|
+
shiftScheduleName: 'string',
|
|
11727
|
+
};
|
|
11728
|
+
}
|
|
11729
|
+
}
|
|
11730
|
+
exports.ListShiftSchedulesRequest = ListShiftSchedulesRequest;
|
|
11731
|
+
class ListShiftSchedulesResponseBody extends $tea.Model {
|
|
11732
|
+
constructor(map) {
|
|
11733
|
+
super(map);
|
|
11734
|
+
}
|
|
11735
|
+
static names() {
|
|
11736
|
+
return {
|
|
11737
|
+
paging: 'Paging',
|
|
11738
|
+
requestId: 'RequestId',
|
|
11739
|
+
};
|
|
11740
|
+
}
|
|
11741
|
+
static types() {
|
|
11742
|
+
return {
|
|
11743
|
+
paging: ListShiftSchedulesResponseBodyPaging,
|
|
11744
|
+
requestId: 'string',
|
|
11745
|
+
};
|
|
11746
|
+
}
|
|
11747
|
+
}
|
|
11748
|
+
exports.ListShiftSchedulesResponseBody = ListShiftSchedulesResponseBody;
|
|
11749
|
+
class ListShiftSchedulesResponse extends $tea.Model {
|
|
11750
|
+
constructor(map) {
|
|
11751
|
+
super(map);
|
|
11752
|
+
}
|
|
11753
|
+
static names() {
|
|
11754
|
+
return {
|
|
11755
|
+
headers: 'headers',
|
|
11756
|
+
statusCode: 'statusCode',
|
|
11757
|
+
body: 'body',
|
|
11758
|
+
};
|
|
11759
|
+
}
|
|
11760
|
+
static types() {
|
|
11761
|
+
return {
|
|
11762
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11763
|
+
statusCode: 'number',
|
|
11764
|
+
body: ListShiftSchedulesResponseBody,
|
|
11765
|
+
};
|
|
11766
|
+
}
|
|
11767
|
+
}
|
|
11768
|
+
exports.ListShiftSchedulesResponse = ListShiftSchedulesResponse;
|
|
11765
11769
|
class ListSuccessInstanceAmountRequest extends $tea.Model {
|
|
11766
11770
|
constructor(map) {
|
|
11767
11771
|
super(map);
|
|
@@ -12941,6 +12945,7 @@ class SearchMetaTablesRequest extends $tea.Model {
|
|
|
12941
12945
|
keyword: 'Keyword',
|
|
12942
12946
|
pageNumber: 'PageNumber',
|
|
12943
12947
|
pageSize: 'PageSize',
|
|
12948
|
+
schema: 'Schema',
|
|
12944
12949
|
};
|
|
12945
12950
|
}
|
|
12946
12951
|
static types() {
|
|
@@ -12952,6 +12957,7 @@ class SearchMetaTablesRequest extends $tea.Model {
|
|
|
12952
12957
|
keyword: 'string',
|
|
12953
12958
|
pageNumber: 'number',
|
|
12954
12959
|
pageSize: 'number',
|
|
12960
|
+
schema: 'string',
|
|
12955
12961
|
};
|
|
12956
12962
|
}
|
|
12957
12963
|
}
|
|
@@ -14603,6 +14609,7 @@ class UpdateMetaTableRequest extends $tea.Model {
|
|
|
14603
14609
|
newOwnerId: 'NewOwnerId',
|
|
14604
14610
|
projectId: 'ProjectId',
|
|
14605
14611
|
removedLabels: 'RemovedLabels',
|
|
14612
|
+
schema: 'Schema',
|
|
14606
14613
|
tableGuid: 'TableGuid',
|
|
14607
14614
|
tableName: 'TableName',
|
|
14608
14615
|
visibility: 'Visibility',
|
|
@@ -14617,6 +14624,7 @@ class UpdateMetaTableRequest extends $tea.Model {
|
|
|
14617
14624
|
newOwnerId: 'string',
|
|
14618
14625
|
projectId: 'number',
|
|
14619
14626
|
removedLabels: 'string',
|
|
14627
|
+
schema: 'string',
|
|
14620
14628
|
tableGuid: 'string',
|
|
14621
14629
|
tableName: 'string',
|
|
14622
14630
|
visibility: 'number',
|
|
@@ -15118,6 +15126,7 @@ class UpdateTableRequest extends $tea.Model {
|
|
|
15118
15126
|
ownerId: 'OwnerId',
|
|
15119
15127
|
physicsLevelId: 'PhysicsLevelId',
|
|
15120
15128
|
projectId: 'ProjectId',
|
|
15129
|
+
schema: 'Schema',
|
|
15121
15130
|
tableName: 'TableName',
|
|
15122
15131
|
themes: 'Themes',
|
|
15123
15132
|
visibility: 'Visibility',
|
|
@@ -15141,6 +15150,7 @@ class UpdateTableRequest extends $tea.Model {
|
|
|
15141
15150
|
ownerId: 'string',
|
|
15142
15151
|
physicsLevelId: 'number',
|
|
15143
15152
|
projectId: 'number',
|
|
15153
|
+
schema: 'string',
|
|
15144
15154
|
tableName: 'string',
|
|
15145
15155
|
themes: { 'type': 'array', 'itemType': UpdateTableRequestThemes },
|
|
15146
15156
|
visibility: 'number',
|
|
@@ -17282,50 +17292,6 @@ class GetDeploymentResponseBodyData extends $tea.Model {
|
|
|
17282
17292
|
}
|
|
17283
17293
|
}
|
|
17284
17294
|
exports.GetDeploymentResponseBodyData = GetDeploymentResponseBodyData;
|
|
17285
|
-
class GetDutyRosterResponseBodyPagingDutyRoster extends $tea.Model {
|
|
17286
|
-
constructor(map) {
|
|
17287
|
-
super(map);
|
|
17288
|
-
}
|
|
17289
|
-
static names() {
|
|
17290
|
-
return {
|
|
17291
|
-
endLong: 'EndLong',
|
|
17292
|
-
startLong: 'StartLong',
|
|
17293
|
-
watchkeeper: 'Watchkeeper',
|
|
17294
|
-
watchkeeperName: 'WatchkeeperName',
|
|
17295
|
-
};
|
|
17296
|
-
}
|
|
17297
|
-
static types() {
|
|
17298
|
-
return {
|
|
17299
|
-
endLong: 'number',
|
|
17300
|
-
startLong: 'number',
|
|
17301
|
-
watchkeeper: 'string',
|
|
17302
|
-
watchkeeperName: 'string',
|
|
17303
|
-
};
|
|
17304
|
-
}
|
|
17305
|
-
}
|
|
17306
|
-
exports.GetDutyRosterResponseBodyPagingDutyRoster = GetDutyRosterResponseBodyPagingDutyRoster;
|
|
17307
|
-
class GetDutyRosterResponseBodyPaging extends $tea.Model {
|
|
17308
|
-
constructor(map) {
|
|
17309
|
-
super(map);
|
|
17310
|
-
}
|
|
17311
|
-
static names() {
|
|
17312
|
-
return {
|
|
17313
|
-
dutyRoster: 'DutyRoster',
|
|
17314
|
-
pageNumber: 'PageNumber',
|
|
17315
|
-
pageSize: 'PageSize',
|
|
17316
|
-
totalCount: 'TotalCount',
|
|
17317
|
-
};
|
|
17318
|
-
}
|
|
17319
|
-
static types() {
|
|
17320
|
-
return {
|
|
17321
|
-
dutyRoster: { 'type': 'array', 'itemType': GetDutyRosterResponseBodyPagingDutyRoster },
|
|
17322
|
-
pageNumber: 'number',
|
|
17323
|
-
pageSize: 'number',
|
|
17324
|
-
totalCount: 'number',
|
|
17325
|
-
};
|
|
17326
|
-
}
|
|
17327
|
-
}
|
|
17328
|
-
exports.GetDutyRosterResponseBodyPaging = GetDutyRosterResponseBodyPaging;
|
|
17329
17295
|
class GetExtensionResponseBodyExtensionBindEventList extends $tea.Model {
|
|
17330
17296
|
constructor(map) {
|
|
17331
17297
|
super(map);
|
|
@@ -18440,6 +18406,7 @@ class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
|
|
|
18440
18406
|
projectId: 'ProjectId',
|
|
18441
18407
|
projectName: 'ProjectName',
|
|
18442
18408
|
readCount: 'ReadCount',
|
|
18409
|
+
schema: 'Schema',
|
|
18443
18410
|
tableGuid: 'TableGuid',
|
|
18444
18411
|
tableName: 'TableName',
|
|
18445
18412
|
tenantId: 'TenantId',
|
|
@@ -18470,6 +18437,7 @@ class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
|
|
|
18470
18437
|
projectId: 'number',
|
|
18471
18438
|
projectName: 'string',
|
|
18472
18439
|
readCount: 'number',
|
|
18440
|
+
schema: 'string',
|
|
18473
18441
|
tableGuid: 'string',
|
|
18474
18442
|
tableName: 'string',
|
|
18475
18443
|
tenantId: 'number',
|
|
@@ -18637,6 +18605,7 @@ class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
18637
18605
|
partitionKeys: 'PartitionKeys',
|
|
18638
18606
|
projectId: 'ProjectId',
|
|
18639
18607
|
projectName: 'ProjectName',
|
|
18608
|
+
schema: 'Schema',
|
|
18640
18609
|
tableGuid: 'TableGuid',
|
|
18641
18610
|
tableName: 'TableName',
|
|
18642
18611
|
tenantId: 'TenantId',
|
|
@@ -18662,6 +18631,7 @@ class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
18662
18631
|
partitionKeys: 'string',
|
|
18663
18632
|
projectId: 'number',
|
|
18664
18633
|
projectName: 'string',
|
|
18634
|
+
schema: 'string',
|
|
18665
18635
|
tableGuid: 'string',
|
|
18666
18636
|
tableName: 'string',
|
|
18667
18637
|
tenantId: 'number',
|
|
@@ -21744,46 +21714,6 @@ class ListDeploymentsResponseBodyData extends $tea.Model {
|
|
|
21744
21714
|
}
|
|
21745
21715
|
}
|
|
21746
21716
|
exports.ListDeploymentsResponseBodyData = ListDeploymentsResponseBodyData;
|
|
21747
|
-
class ListDutyRostersResponseBodyPagingDutyRosters extends $tea.Model {
|
|
21748
|
-
constructor(map) {
|
|
21749
|
-
super(map);
|
|
21750
|
-
}
|
|
21751
|
-
static names() {
|
|
21752
|
-
return {
|
|
21753
|
-
dutyRosterIdentifier: 'DutyRosterIdentifier',
|
|
21754
|
-
dutyRosterName: 'DutyRosterName',
|
|
21755
|
-
};
|
|
21756
|
-
}
|
|
21757
|
-
static types() {
|
|
21758
|
-
return {
|
|
21759
|
-
dutyRosterIdentifier: 'string',
|
|
21760
|
-
dutyRosterName: 'string',
|
|
21761
|
-
};
|
|
21762
|
-
}
|
|
21763
|
-
}
|
|
21764
|
-
exports.ListDutyRostersResponseBodyPagingDutyRosters = ListDutyRostersResponseBodyPagingDutyRosters;
|
|
21765
|
-
class ListDutyRostersResponseBodyPaging extends $tea.Model {
|
|
21766
|
-
constructor(map) {
|
|
21767
|
-
super(map);
|
|
21768
|
-
}
|
|
21769
|
-
static names() {
|
|
21770
|
-
return {
|
|
21771
|
-
dutyRosters: 'DutyRosters',
|
|
21772
|
-
pageNumber: 'PageNumber',
|
|
21773
|
-
pageSize: 'PageSize',
|
|
21774
|
-
totalCount: 'TotalCount',
|
|
21775
|
-
};
|
|
21776
|
-
}
|
|
21777
|
-
static types() {
|
|
21778
|
-
return {
|
|
21779
|
-
dutyRosters: { 'type': 'array', 'itemType': ListDutyRostersResponseBodyPagingDutyRosters },
|
|
21780
|
-
pageNumber: 'number',
|
|
21781
|
-
pageSize: 'number',
|
|
21782
|
-
totalCount: 'number',
|
|
21783
|
-
};
|
|
21784
|
-
}
|
|
21785
|
-
}
|
|
21786
|
-
exports.ListDutyRostersResponseBodyPaging = ListDutyRostersResponseBodyPaging;
|
|
21787
21717
|
class ListExtensionsResponseBodyPagingInfoExtensionsBindEventList extends $tea.Model {
|
|
21788
21718
|
constructor(map) {
|
|
21789
21719
|
super(map);
|
|
@@ -23420,6 +23350,90 @@ class ListResourceGroupsResponseBodyData extends $tea.Model {
|
|
|
23420
23350
|
}
|
|
23421
23351
|
}
|
|
23422
23352
|
exports.ListResourceGroupsResponseBodyData = ListResourceGroupsResponseBodyData;
|
|
23353
|
+
class ListShiftPersonnelsResponseBodyPagingShiftPersons extends $tea.Model {
|
|
23354
|
+
constructor(map) {
|
|
23355
|
+
super(map);
|
|
23356
|
+
}
|
|
23357
|
+
static names() {
|
|
23358
|
+
return {
|
|
23359
|
+
beginTime: 'BeginTime',
|
|
23360
|
+
endTime: 'EndTime',
|
|
23361
|
+
shiftPersonName: 'ShiftPersonName',
|
|
23362
|
+
shiftPersonUID: 'ShiftPersonUID',
|
|
23363
|
+
};
|
|
23364
|
+
}
|
|
23365
|
+
static types() {
|
|
23366
|
+
return {
|
|
23367
|
+
beginTime: 'number',
|
|
23368
|
+
endTime: 'number',
|
|
23369
|
+
shiftPersonName: 'string',
|
|
23370
|
+
shiftPersonUID: 'string',
|
|
23371
|
+
};
|
|
23372
|
+
}
|
|
23373
|
+
}
|
|
23374
|
+
exports.ListShiftPersonnelsResponseBodyPagingShiftPersons = ListShiftPersonnelsResponseBodyPagingShiftPersons;
|
|
23375
|
+
class ListShiftPersonnelsResponseBodyPaging extends $tea.Model {
|
|
23376
|
+
constructor(map) {
|
|
23377
|
+
super(map);
|
|
23378
|
+
}
|
|
23379
|
+
static names() {
|
|
23380
|
+
return {
|
|
23381
|
+
pageNumber: 'PageNumber',
|
|
23382
|
+
pageSize: 'PageSize',
|
|
23383
|
+
shiftPersons: 'ShiftPersons',
|
|
23384
|
+
totalCount: 'TotalCount',
|
|
23385
|
+
};
|
|
23386
|
+
}
|
|
23387
|
+
static types() {
|
|
23388
|
+
return {
|
|
23389
|
+
pageNumber: 'number',
|
|
23390
|
+
pageSize: 'number',
|
|
23391
|
+
shiftPersons: { 'type': 'array', 'itemType': ListShiftPersonnelsResponseBodyPagingShiftPersons },
|
|
23392
|
+
totalCount: 'number',
|
|
23393
|
+
};
|
|
23394
|
+
}
|
|
23395
|
+
}
|
|
23396
|
+
exports.ListShiftPersonnelsResponseBodyPaging = ListShiftPersonnelsResponseBodyPaging;
|
|
23397
|
+
class ListShiftSchedulesResponseBodyPagingShiftSchedules extends $tea.Model {
|
|
23398
|
+
constructor(map) {
|
|
23399
|
+
super(map);
|
|
23400
|
+
}
|
|
23401
|
+
static names() {
|
|
23402
|
+
return {
|
|
23403
|
+
shiftScheduleIdentifier: 'ShiftScheduleIdentifier',
|
|
23404
|
+
shiftScheduleName: 'ShiftScheduleName',
|
|
23405
|
+
};
|
|
23406
|
+
}
|
|
23407
|
+
static types() {
|
|
23408
|
+
return {
|
|
23409
|
+
shiftScheduleIdentifier: 'string',
|
|
23410
|
+
shiftScheduleName: 'string',
|
|
23411
|
+
};
|
|
23412
|
+
}
|
|
23413
|
+
}
|
|
23414
|
+
exports.ListShiftSchedulesResponseBodyPagingShiftSchedules = ListShiftSchedulesResponseBodyPagingShiftSchedules;
|
|
23415
|
+
class ListShiftSchedulesResponseBodyPaging extends $tea.Model {
|
|
23416
|
+
constructor(map) {
|
|
23417
|
+
super(map);
|
|
23418
|
+
}
|
|
23419
|
+
static names() {
|
|
23420
|
+
return {
|
|
23421
|
+
pageNumber: 'PageNumber',
|
|
23422
|
+
pageSize: 'PageSize',
|
|
23423
|
+
shiftSchedules: 'ShiftSchedules',
|
|
23424
|
+
totalCount: 'TotalCount',
|
|
23425
|
+
};
|
|
23426
|
+
}
|
|
23427
|
+
static types() {
|
|
23428
|
+
return {
|
|
23429
|
+
pageNumber: 'number',
|
|
23430
|
+
pageSize: 'number',
|
|
23431
|
+
shiftSchedules: { 'type': 'array', 'itemType': ListShiftSchedulesResponseBodyPagingShiftSchedules },
|
|
23432
|
+
totalCount: 'number',
|
|
23433
|
+
};
|
|
23434
|
+
}
|
|
23435
|
+
}
|
|
23436
|
+
exports.ListShiftSchedulesResponseBodyPaging = ListShiftSchedulesResponseBodyPaging;
|
|
23423
23437
|
class ListSuccessInstanceAmountResponseBodyInstanceStatusTrendAvgTrend extends $tea.Model {
|
|
23424
23438
|
constructor(map) {
|
|
23425
23439
|
super(map);
|
|
@@ -23693,6 +23707,7 @@ class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
|
23693
23707
|
ownerId: 'OwnerId',
|
|
23694
23708
|
projectId: 'ProjectId',
|
|
23695
23709
|
projectName: 'ProjectName',
|
|
23710
|
+
schema: 'Schema',
|
|
23696
23711
|
tableGuid: 'TableGuid',
|
|
23697
23712
|
tableName: 'TableName',
|
|
23698
23713
|
tenantId: 'TenantId',
|
|
@@ -23707,6 +23722,7 @@ class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
|
23707
23722
|
ownerId: 'string',
|
|
23708
23723
|
projectId: 'number',
|
|
23709
23724
|
projectName: 'string',
|
|
23725
|
+
schema: 'string',
|
|
23710
23726
|
tableGuid: 'string',
|
|
23711
23727
|
tableName: 'string',
|
|
23712
23728
|
tenantId: 'number',
|
|
@@ -25651,6 +25667,9 @@ class Client extends openapi_client_1.default {
|
|
|
25651
25667
|
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
25652
25668
|
query["ProjectId"] = request.projectId;
|
|
25653
25669
|
}
|
|
25670
|
+
if (!tea_util_1.default.isUnset(request.schema)) {
|
|
25671
|
+
query["Schema"] = request.schema;
|
|
25672
|
+
}
|
|
25654
25673
|
if (!tea_util_1.default.isUnset(request.tableName)) {
|
|
25655
25674
|
query["TableName"] = request.tableName;
|
|
25656
25675
|
}
|
|
@@ -26323,6 +26342,9 @@ class Client extends openapi_client_1.default {
|
|
|
26323
26342
|
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
26324
26343
|
query["ProjectId"] = request.projectId;
|
|
26325
26344
|
}
|
|
26345
|
+
if (!tea_util_1.default.isUnset(request.schema)) {
|
|
26346
|
+
query["Schema"] = request.schema;
|
|
26347
|
+
}
|
|
26326
26348
|
if (!tea_util_1.default.isUnset(request.tableName)) {
|
|
26327
26349
|
query["TableName"] = request.tableName;
|
|
26328
26350
|
}
|
|
@@ -27145,44 +27167,6 @@ class Client extends openapi_client_1.default {
|
|
|
27145
27167
|
let runtime = new $Util.RuntimeOptions({});
|
|
27146
27168
|
return await this.getDeploymentWithOptions(request, runtime);
|
|
27147
27169
|
}
|
|
27148
|
-
async getDutyRosterWithOptions(request, runtime) {
|
|
27149
|
-
tea_util_1.default.validateModel(request);
|
|
27150
|
-
let body = {};
|
|
27151
|
-
if (!tea_util_1.default.isUnset(request.beginTime)) {
|
|
27152
|
-
body["BeginTime"] = request.beginTime;
|
|
27153
|
-
}
|
|
27154
|
-
if (!tea_util_1.default.isUnset(request.dutyRosterIdentifier)) {
|
|
27155
|
-
body["DutyRosterIdentifier"] = request.dutyRosterIdentifier;
|
|
27156
|
-
}
|
|
27157
|
-
if (!tea_util_1.default.isUnset(request.endTime)) {
|
|
27158
|
-
body["EndTime"] = request.endTime;
|
|
27159
|
-
}
|
|
27160
|
-
if (!tea_util_1.default.isUnset(request.userType)) {
|
|
27161
|
-
body["UserType"] = request.userType;
|
|
27162
|
-
}
|
|
27163
|
-
if (!tea_util_1.default.isUnset(request.watchkeeper)) {
|
|
27164
|
-
body["Watchkeeper"] = request.watchkeeper;
|
|
27165
|
-
}
|
|
27166
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
27167
|
-
body: openapi_util_1.default.parseToMap(body),
|
|
27168
|
-
});
|
|
27169
|
-
let params = new $OpenApi.Params({
|
|
27170
|
-
action: "GetDutyRoster",
|
|
27171
|
-
version: "2020-05-18",
|
|
27172
|
-
protocol: "HTTPS",
|
|
27173
|
-
pathname: "/",
|
|
27174
|
-
method: "POST",
|
|
27175
|
-
authType: "AK",
|
|
27176
|
-
style: "RPC",
|
|
27177
|
-
reqBodyType: "formData",
|
|
27178
|
-
bodyType: "json",
|
|
27179
|
-
});
|
|
27180
|
-
return $tea.cast(await this.callApi(params, req, runtime), new GetDutyRosterResponse({}));
|
|
27181
|
-
}
|
|
27182
|
-
async getDutyRoster(request) {
|
|
27183
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
27184
|
-
return await this.getDutyRosterWithOptions(request, runtime);
|
|
27185
|
-
}
|
|
27186
27170
|
async getExtensionWithOptions(request, runtime) {
|
|
27187
27171
|
tea_util_1.default.validateModel(request);
|
|
27188
27172
|
let query = {};
|
|
@@ -29483,41 +29467,6 @@ class Client extends openapi_client_1.default {
|
|
|
29483
29467
|
let runtime = new $Util.RuntimeOptions({});
|
|
29484
29468
|
return await this.listDeploymentsWithOptions(request, runtime);
|
|
29485
29469
|
}
|
|
29486
|
-
async listDutyRostersWithOptions(request, runtime) {
|
|
29487
|
-
tea_util_1.default.validateModel(request);
|
|
29488
|
-
let body = {};
|
|
29489
|
-
if (!tea_util_1.default.isUnset(request.dutyRosterName)) {
|
|
29490
|
-
body["DutyRosterName"] = request.dutyRosterName;
|
|
29491
|
-
}
|
|
29492
|
-
if (!tea_util_1.default.isUnset(request.dutyRosterOwner)) {
|
|
29493
|
-
body["DutyRosterOwner"] = request.dutyRosterOwner;
|
|
29494
|
-
}
|
|
29495
|
-
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
29496
|
-
body["PageNumber"] = request.pageNumber;
|
|
29497
|
-
}
|
|
29498
|
-
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
29499
|
-
body["PageSize"] = request.pageSize;
|
|
29500
|
-
}
|
|
29501
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
29502
|
-
body: openapi_util_1.default.parseToMap(body),
|
|
29503
|
-
});
|
|
29504
|
-
let params = new $OpenApi.Params({
|
|
29505
|
-
action: "ListDutyRosters",
|
|
29506
|
-
version: "2020-05-18",
|
|
29507
|
-
protocol: "HTTPS",
|
|
29508
|
-
pathname: "/",
|
|
29509
|
-
method: "POST",
|
|
29510
|
-
authType: "AK",
|
|
29511
|
-
style: "RPC",
|
|
29512
|
-
reqBodyType: "formData",
|
|
29513
|
-
bodyType: "json",
|
|
29514
|
-
});
|
|
29515
|
-
return $tea.cast(await this.callApi(params, req, runtime), new ListDutyRostersResponse({}));
|
|
29516
|
-
}
|
|
29517
|
-
async listDutyRosters(request) {
|
|
29518
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
29519
|
-
return await this.listDutyRostersWithOptions(request, runtime);
|
|
29520
|
-
}
|
|
29521
29470
|
async listExtensionsWithOptions(request, runtime) {
|
|
29522
29471
|
tea_util_1.default.validateModel(request);
|
|
29523
29472
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -30537,6 +30486,79 @@ class Client extends openapi_client_1.default {
|
|
|
30537
30486
|
let runtime = new $Util.RuntimeOptions({});
|
|
30538
30487
|
return await this.listResourceGroupsWithOptions(request, runtime);
|
|
30539
30488
|
}
|
|
30489
|
+
async listShiftPersonnelsWithOptions(request, runtime) {
|
|
30490
|
+
tea_util_1.default.validateModel(request);
|
|
30491
|
+
let body = {};
|
|
30492
|
+
if (!tea_util_1.default.isUnset(request.beginTime)) {
|
|
30493
|
+
body["BeginTime"] = request.beginTime;
|
|
30494
|
+
}
|
|
30495
|
+
if (!tea_util_1.default.isUnset(request.endTime)) {
|
|
30496
|
+
body["EndTime"] = request.endTime;
|
|
30497
|
+
}
|
|
30498
|
+
if (!tea_util_1.default.isUnset(request.shiftPersonUID)) {
|
|
30499
|
+
body["ShiftPersonUID"] = request.shiftPersonUID;
|
|
30500
|
+
}
|
|
30501
|
+
if (!tea_util_1.default.isUnset(request.shiftScheduleIdentifier)) {
|
|
30502
|
+
body["ShiftScheduleIdentifier"] = request.shiftScheduleIdentifier;
|
|
30503
|
+
}
|
|
30504
|
+
if (!tea_util_1.default.isUnset(request.userType)) {
|
|
30505
|
+
body["UserType"] = request.userType;
|
|
30506
|
+
}
|
|
30507
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30508
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
30509
|
+
});
|
|
30510
|
+
let params = new $OpenApi.Params({
|
|
30511
|
+
action: "ListShiftPersonnels",
|
|
30512
|
+
version: "2020-05-18",
|
|
30513
|
+
protocol: "HTTPS",
|
|
30514
|
+
pathname: "/",
|
|
30515
|
+
method: "POST",
|
|
30516
|
+
authType: "AK",
|
|
30517
|
+
style: "RPC",
|
|
30518
|
+
reqBodyType: "formData",
|
|
30519
|
+
bodyType: "json",
|
|
30520
|
+
});
|
|
30521
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListShiftPersonnelsResponse({}));
|
|
30522
|
+
}
|
|
30523
|
+
async listShiftPersonnels(request) {
|
|
30524
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30525
|
+
return await this.listShiftPersonnelsWithOptions(request, runtime);
|
|
30526
|
+
}
|
|
30527
|
+
async listShiftSchedulesWithOptions(request, runtime) {
|
|
30528
|
+
tea_util_1.default.validateModel(request);
|
|
30529
|
+
let body = {};
|
|
30530
|
+
if (!tea_util_1.default.isUnset(request.owner)) {
|
|
30531
|
+
body["Owner"] = request.owner;
|
|
30532
|
+
}
|
|
30533
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
30534
|
+
body["PageNumber"] = request.pageNumber;
|
|
30535
|
+
}
|
|
30536
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
30537
|
+
body["PageSize"] = request.pageSize;
|
|
30538
|
+
}
|
|
30539
|
+
if (!tea_util_1.default.isUnset(request.shiftScheduleName)) {
|
|
30540
|
+
body["ShiftScheduleName"] = request.shiftScheduleName;
|
|
30541
|
+
}
|
|
30542
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30543
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
30544
|
+
});
|
|
30545
|
+
let params = new $OpenApi.Params({
|
|
30546
|
+
action: "ListShiftSchedules",
|
|
30547
|
+
version: "2020-05-18",
|
|
30548
|
+
protocol: "HTTPS",
|
|
30549
|
+
pathname: "/",
|
|
30550
|
+
method: "POST",
|
|
30551
|
+
authType: "AK",
|
|
30552
|
+
style: "RPC",
|
|
30553
|
+
reqBodyType: "formData",
|
|
30554
|
+
bodyType: "json",
|
|
30555
|
+
});
|
|
30556
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListShiftSchedulesResponse({}));
|
|
30557
|
+
}
|
|
30558
|
+
async listShiftSchedules(request) {
|
|
30559
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30560
|
+
return await this.listShiftSchedulesWithOptions(request, runtime);
|
|
30561
|
+
}
|
|
30540
30562
|
async listSuccessInstanceAmountWithOptions(request, runtime) {
|
|
30541
30563
|
tea_util_1.default.validateModel(request);
|
|
30542
30564
|
let body = {};
|
|
@@ -31185,6 +31207,9 @@ class Client extends openapi_client_1.default {
|
|
|
31185
31207
|
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
31186
31208
|
query["PageSize"] = request.pageSize;
|
|
31187
31209
|
}
|
|
31210
|
+
if (!tea_util_1.default.isUnset(request.schema)) {
|
|
31211
|
+
query["Schema"] = request.schema;
|
|
31212
|
+
}
|
|
31188
31213
|
let req = new $OpenApi.OpenApiRequest({
|
|
31189
31214
|
query: openapi_util_1.default.query(query),
|
|
31190
31215
|
});
|
|
@@ -32134,6 +32159,9 @@ class Client extends openapi_client_1.default {
|
|
|
32134
32159
|
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
32135
32160
|
query["ProjectId"] = request.projectId;
|
|
32136
32161
|
}
|
|
32162
|
+
if (!tea_util_1.default.isUnset(request.schema)) {
|
|
32163
|
+
query["Schema"] = request.schema;
|
|
32164
|
+
}
|
|
32137
32165
|
if (!tea_util_1.default.isUnset(request.tableGuid)) {
|
|
32138
32166
|
query["TableGuid"] = request.tableGuid;
|
|
32139
32167
|
}
|
|
@@ -32500,6 +32528,9 @@ class Client extends openapi_client_1.default {
|
|
|
32500
32528
|
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
32501
32529
|
query["ProjectId"] = request.projectId;
|
|
32502
32530
|
}
|
|
32531
|
+
if (!tea_util_1.default.isUnset(request.schema)) {
|
|
32532
|
+
query["Schema"] = request.schema;
|
|
32533
|
+
}
|
|
32503
32534
|
if (!tea_util_1.default.isUnset(request.tableName)) {
|
|
32504
32535
|
query["TableName"] = request.tableName;
|
|
32505
32536
|
}
|