@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/src/client.ts CHANGED
@@ -2822,6 +2822,7 @@ export class CreateTableRequest extends $tea.Model {
2822
2822
  ownerId?: string;
2823
2823
  physicsLevelId?: number;
2824
2824
  projectId?: number;
2825
+ schema?: string;
2825
2826
  tableName?: string;
2826
2827
  themes?: CreateTableRequestThemes[];
2827
2828
  visibility?: number;
@@ -2843,6 +2844,7 @@ export class CreateTableRequest extends $tea.Model {
2843
2844
  ownerId: 'OwnerId',
2844
2845
  physicsLevelId: 'PhysicsLevelId',
2845
2846
  projectId: 'ProjectId',
2847
+ schema: 'Schema',
2846
2848
  tableName: 'TableName',
2847
2849
  themes: 'Themes',
2848
2850
  visibility: 'Visibility',
@@ -2867,6 +2869,7 @@ export class CreateTableRequest extends $tea.Model {
2867
2869
  ownerId: 'string',
2868
2870
  physicsLevelId: 'number',
2869
2871
  projectId: 'number',
2872
+ schema: 'string',
2870
2873
  tableName: 'string',
2871
2874
  themes: { 'type': 'array', 'itemType': CreateTableRequestThemes },
2872
2875
  visibility: 'number',
@@ -4486,12 +4489,14 @@ export class DeleteTableRequest extends $tea.Model {
4486
4489
  appGuid?: string;
4487
4490
  envType?: number;
4488
4491
  projectId?: number;
4492
+ schema?: string;
4489
4493
  tableName?: string;
4490
4494
  static names(): { [key: string]: string } {
4491
4495
  return {
4492
4496
  appGuid: 'AppGuid',
4493
4497
  envType: 'EnvType',
4494
4498
  projectId: 'ProjectId',
4499
+ schema: 'Schema',
4495
4500
  tableName: 'TableName',
4496
4501
  };
4497
4502
  }
@@ -4501,6 +4506,7 @@ export class DeleteTableRequest extends $tea.Model {
4501
4506
  appGuid: 'string',
4502
4507
  envType: 'number',
4503
4508
  projectId: 'number',
4509
+ schema: 'string',
4504
4510
  tableName: 'string',
4505
4511
  };
4506
4512
  }
@@ -6066,6 +6072,72 @@ export class GetDataServiceApiResponse extends $tea.Model {
6066
6072
  }
6067
6073
  }
6068
6074
 
6075
+ export class GetDataServiceApiTestRequest extends $tea.Model {
6076
+ testId?: number;
6077
+ static names(): { [key: string]: string } {
6078
+ return {
6079
+ testId: 'TestId',
6080
+ };
6081
+ }
6082
+
6083
+ static types(): { [key: string]: any } {
6084
+ return {
6085
+ testId: 'number',
6086
+ };
6087
+ }
6088
+
6089
+ constructor(map?: { [key: string]: any }) {
6090
+ super(map);
6091
+ }
6092
+ }
6093
+
6094
+ export class GetDataServiceApiTestResponseBody extends $tea.Model {
6095
+ data?: GetDataServiceApiTestResponseBodyData;
6096
+ requestId?: string;
6097
+ static names(): { [key: string]: string } {
6098
+ return {
6099
+ data: 'Data',
6100
+ requestId: 'RequestId',
6101
+ };
6102
+ }
6103
+
6104
+ static types(): { [key: string]: any } {
6105
+ return {
6106
+ data: GetDataServiceApiTestResponseBodyData,
6107
+ requestId: 'string',
6108
+ };
6109
+ }
6110
+
6111
+ constructor(map?: { [key: string]: any }) {
6112
+ super(map);
6113
+ }
6114
+ }
6115
+
6116
+ export class GetDataServiceApiTestResponse extends $tea.Model {
6117
+ headers: { [key: string]: string };
6118
+ statusCode: number;
6119
+ body: GetDataServiceApiTestResponseBody;
6120
+ static names(): { [key: string]: string } {
6121
+ return {
6122
+ headers: 'headers',
6123
+ statusCode: 'statusCode',
6124
+ body: 'body',
6125
+ };
6126
+ }
6127
+
6128
+ static types(): { [key: string]: any } {
6129
+ return {
6130
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
6131
+ statusCode: 'number',
6132
+ body: GetDataServiceApiTestResponseBody,
6133
+ };
6134
+ }
6135
+
6136
+ constructor(map?: { [key: string]: any }) {
6137
+ super(map);
6138
+ }
6139
+ }
6140
+
6069
6141
  export class GetDataServiceApplicationRequest extends $tea.Model {
6070
6142
  applicationId?: number;
6071
6143
  projectId?: number;
@@ -11604,6 +11676,75 @@ export class ListDataServiceApiAuthoritiesResponse extends $tea.Model {
11604
11676
  }
11605
11677
  }
11606
11678
 
11679
+ export class ListDataServiceApiTestRequest extends $tea.Model {
11680
+ apiId?: number;
11681
+ pageSize?: number;
11682
+ static names(): { [key: string]: string } {
11683
+ return {
11684
+ apiId: 'ApiId',
11685
+ pageSize: 'PageSize',
11686
+ };
11687
+ }
11688
+
11689
+ static types(): { [key: string]: any } {
11690
+ return {
11691
+ apiId: 'number',
11692
+ pageSize: 'number',
11693
+ };
11694
+ }
11695
+
11696
+ constructor(map?: { [key: string]: any }) {
11697
+ super(map);
11698
+ }
11699
+ }
11700
+
11701
+ export class ListDataServiceApiTestResponseBody extends $tea.Model {
11702
+ data?: ListDataServiceApiTestResponseBodyData[];
11703
+ requestId?: string;
11704
+ static names(): { [key: string]: string } {
11705
+ return {
11706
+ data: 'Data',
11707
+ requestId: 'RequestId',
11708
+ };
11709
+ }
11710
+
11711
+ static types(): { [key: string]: any } {
11712
+ return {
11713
+ data: { 'type': 'array', 'itemType': ListDataServiceApiTestResponseBodyData },
11714
+ requestId: 'string',
11715
+ };
11716
+ }
11717
+
11718
+ constructor(map?: { [key: string]: any }) {
11719
+ super(map);
11720
+ }
11721
+ }
11722
+
11723
+ export class ListDataServiceApiTestResponse extends $tea.Model {
11724
+ headers: { [key: string]: string };
11725
+ statusCode: number;
11726
+ body: ListDataServiceApiTestResponseBody;
11727
+ static names(): { [key: string]: string } {
11728
+ return {
11729
+ headers: 'headers',
11730
+ statusCode: 'statusCode',
11731
+ body: 'body',
11732
+ };
11733
+ }
11734
+
11735
+ static types(): { [key: string]: any } {
11736
+ return {
11737
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
11738
+ statusCode: 'number',
11739
+ body: ListDataServiceApiTestResponseBody,
11740
+ };
11741
+ }
11742
+
11743
+ constructor(map?: { [key: string]: any }) {
11744
+ super(map);
11745
+ }
11746
+ }
11747
+
11607
11748
  export class ListDataServiceApisRequest extends $tea.Model {
11608
11749
  apiNameKeyword?: string;
11609
11750
  apiPathKeyword?: string;
@@ -14658,6 +14799,159 @@ export class ListResourceGroupsResponse extends $tea.Model {
14658
14799
  }
14659
14800
  }
14660
14801
 
14802
+ export class ListShiftPersonnelsRequest extends $tea.Model {
14803
+ beginTime?: number;
14804
+ endTime?: number;
14805
+ shiftPersonUID?: string;
14806
+ shiftScheduleIdentifier?: string;
14807
+ userType?: string;
14808
+ static names(): { [key: string]: string } {
14809
+ return {
14810
+ beginTime: 'BeginTime',
14811
+ endTime: 'EndTime',
14812
+ shiftPersonUID: 'ShiftPersonUID',
14813
+ shiftScheduleIdentifier: 'ShiftScheduleIdentifier',
14814
+ userType: 'UserType',
14815
+ };
14816
+ }
14817
+
14818
+ static types(): { [key: string]: any } {
14819
+ return {
14820
+ beginTime: 'number',
14821
+ endTime: 'number',
14822
+ shiftPersonUID: 'string',
14823
+ shiftScheduleIdentifier: 'string',
14824
+ userType: 'string',
14825
+ };
14826
+ }
14827
+
14828
+ constructor(map?: { [key: string]: any }) {
14829
+ super(map);
14830
+ }
14831
+ }
14832
+
14833
+ export class ListShiftPersonnelsResponseBody extends $tea.Model {
14834
+ paging?: ListShiftPersonnelsResponseBodyPaging;
14835
+ requestId?: string;
14836
+ static names(): { [key: string]: string } {
14837
+ return {
14838
+ paging: 'Paging',
14839
+ requestId: 'RequestId',
14840
+ };
14841
+ }
14842
+
14843
+ static types(): { [key: string]: any } {
14844
+ return {
14845
+ paging: ListShiftPersonnelsResponseBodyPaging,
14846
+ requestId: 'string',
14847
+ };
14848
+ }
14849
+
14850
+ constructor(map?: { [key: string]: any }) {
14851
+ super(map);
14852
+ }
14853
+ }
14854
+
14855
+ export class ListShiftPersonnelsResponse extends $tea.Model {
14856
+ headers: { [key: string]: string };
14857
+ statusCode: number;
14858
+ body: ListShiftPersonnelsResponseBody;
14859
+ static names(): { [key: string]: string } {
14860
+ return {
14861
+ headers: 'headers',
14862
+ statusCode: 'statusCode',
14863
+ body: 'body',
14864
+ };
14865
+ }
14866
+
14867
+ static types(): { [key: string]: any } {
14868
+ return {
14869
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
14870
+ statusCode: 'number',
14871
+ body: ListShiftPersonnelsResponseBody,
14872
+ };
14873
+ }
14874
+
14875
+ constructor(map?: { [key: string]: any }) {
14876
+ super(map);
14877
+ }
14878
+ }
14879
+
14880
+ export class ListShiftSchedulesRequest extends $tea.Model {
14881
+ owner?: string;
14882
+ pageNumber?: number;
14883
+ pageSize?: number;
14884
+ shiftScheduleName?: string;
14885
+ static names(): { [key: string]: string } {
14886
+ return {
14887
+ owner: 'Owner',
14888
+ pageNumber: 'PageNumber',
14889
+ pageSize: 'PageSize',
14890
+ shiftScheduleName: 'ShiftScheduleName',
14891
+ };
14892
+ }
14893
+
14894
+ static types(): { [key: string]: any } {
14895
+ return {
14896
+ owner: 'string',
14897
+ pageNumber: 'number',
14898
+ pageSize: 'number',
14899
+ shiftScheduleName: 'string',
14900
+ };
14901
+ }
14902
+
14903
+ constructor(map?: { [key: string]: any }) {
14904
+ super(map);
14905
+ }
14906
+ }
14907
+
14908
+ export class ListShiftSchedulesResponseBody extends $tea.Model {
14909
+ paging?: ListShiftSchedulesResponseBodyPaging;
14910
+ requestId?: string;
14911
+ static names(): { [key: string]: string } {
14912
+ return {
14913
+ paging: 'Paging',
14914
+ requestId: 'RequestId',
14915
+ };
14916
+ }
14917
+
14918
+ static types(): { [key: string]: any } {
14919
+ return {
14920
+ paging: ListShiftSchedulesResponseBodyPaging,
14921
+ requestId: 'string',
14922
+ };
14923
+ }
14924
+
14925
+ constructor(map?: { [key: string]: any }) {
14926
+ super(map);
14927
+ }
14928
+ }
14929
+
14930
+ export class ListShiftSchedulesResponse extends $tea.Model {
14931
+ headers: { [key: string]: string };
14932
+ statusCode: number;
14933
+ body: ListShiftSchedulesResponseBody;
14934
+ static names(): { [key: string]: string } {
14935
+ return {
14936
+ headers: 'headers',
14937
+ statusCode: 'statusCode',
14938
+ body: 'body',
14939
+ };
14940
+ }
14941
+
14942
+ static types(): { [key: string]: any } {
14943
+ return {
14944
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
14945
+ statusCode: 'number',
14946
+ body: ListShiftSchedulesResponseBody,
14947
+ };
14948
+ }
14949
+
14950
+ constructor(map?: { [key: string]: any }) {
14951
+ super(map);
14952
+ }
14953
+ }
14954
+
14661
14955
  export class ListSuccessInstanceAmountRequest extends $tea.Model {
14662
14956
  projectId?: number;
14663
14957
  static names(): { [key: string]: string } {
@@ -16145,6 +16439,7 @@ export class SearchMetaTablesRequest extends $tea.Model {
16145
16439
  keyword?: string;
16146
16440
  pageNumber?: number;
16147
16441
  pageSize?: number;
16442
+ schema?: string;
16148
16443
  static names(): { [key: string]: string } {
16149
16444
  return {
16150
16445
  appGuid: 'AppGuid',
@@ -16154,6 +16449,7 @@ export class SearchMetaTablesRequest extends $tea.Model {
16154
16449
  keyword: 'Keyword',
16155
16450
  pageNumber: 'PageNumber',
16156
16451
  pageSize: 'PageSize',
16452
+ schema: 'Schema',
16157
16453
  };
16158
16454
  }
16159
16455
 
@@ -16166,6 +16462,7 @@ export class SearchMetaTablesRequest extends $tea.Model {
16166
16462
  keyword: 'string',
16167
16463
  pageNumber: 'number',
16168
16464
  pageSize: 'number',
16465
+ schema: 'string',
16169
16466
  };
16170
16467
  }
16171
16468
 
@@ -16796,12 +17093,14 @@ export class SubmitFileRequest extends $tea.Model {
16796
17093
  fileId?: number;
16797
17094
  projectId?: number;
16798
17095
  projectIdentifier?: string;
17096
+ skipAllDeployFileExtensions?: boolean;
16799
17097
  static names(): { [key: string]: string } {
16800
17098
  return {
16801
17099
  comment: 'Comment',
16802
17100
  fileId: 'FileId',
16803
17101
  projectId: 'ProjectId',
16804
17102
  projectIdentifier: 'ProjectIdentifier',
17103
+ skipAllDeployFileExtensions: 'SkipAllDeployFileExtensions',
16805
17104
  };
16806
17105
  }
16807
17106
 
@@ -16811,6 +17110,7 @@ export class SubmitFileRequest extends $tea.Model {
16811
17110
  fileId: 'number',
16812
17111
  projectId: 'number',
16813
17112
  projectIdentifier: 'string',
17113
+ skipAllDeployFileExtensions: 'boolean',
16814
17114
  };
16815
17115
  }
16816
17116
 
@@ -17034,6 +17334,87 @@ export class TerminateDISyncInstanceResponse extends $tea.Model {
17034
17334
  }
17035
17335
  }
17036
17336
 
17337
+ export class TestDataServiceApiRequest extends $tea.Model {
17338
+ apiId?: number;
17339
+ bodyContent?: string;
17340
+ bodyParams?: TestDataServiceApiRequestBodyParams[];
17341
+ headParams?: TestDataServiceApiRequestHeadParams[];
17342
+ pathParams?: TestDataServiceApiRequestPathParams[];
17343
+ queryParam?: TestDataServiceApiRequestQueryParam[];
17344
+ static names(): { [key: string]: string } {
17345
+ return {
17346
+ apiId: 'ApiId',
17347
+ bodyContent: 'BodyContent',
17348
+ bodyParams: 'BodyParams',
17349
+ headParams: 'HeadParams',
17350
+ pathParams: 'PathParams',
17351
+ queryParam: 'QueryParam',
17352
+ };
17353
+ }
17354
+
17355
+ static types(): { [key: string]: any } {
17356
+ return {
17357
+ apiId: 'number',
17358
+ bodyContent: 'string',
17359
+ bodyParams: { 'type': 'array', 'itemType': TestDataServiceApiRequestBodyParams },
17360
+ headParams: { 'type': 'array', 'itemType': TestDataServiceApiRequestHeadParams },
17361
+ pathParams: { 'type': 'array', 'itemType': TestDataServiceApiRequestPathParams },
17362
+ queryParam: { 'type': 'array', 'itemType': TestDataServiceApiRequestQueryParam },
17363
+ };
17364
+ }
17365
+
17366
+ constructor(map?: { [key: string]: any }) {
17367
+ super(map);
17368
+ }
17369
+ }
17370
+
17371
+ export class TestDataServiceApiResponseBody extends $tea.Model {
17372
+ data?: TestDataServiceApiResponseBodyData;
17373
+ requestId?: string;
17374
+ static names(): { [key: string]: string } {
17375
+ return {
17376
+ data: 'Data',
17377
+ requestId: 'RequestId',
17378
+ };
17379
+ }
17380
+
17381
+ static types(): { [key: string]: any } {
17382
+ return {
17383
+ data: TestDataServiceApiResponseBodyData,
17384
+ requestId: 'string',
17385
+ };
17386
+ }
17387
+
17388
+ constructor(map?: { [key: string]: any }) {
17389
+ super(map);
17390
+ }
17391
+ }
17392
+
17393
+ export class TestDataServiceApiResponse extends $tea.Model {
17394
+ headers: { [key: string]: string };
17395
+ statusCode: number;
17396
+ body: TestDataServiceApiResponseBody;
17397
+ static names(): { [key: string]: string } {
17398
+ return {
17399
+ headers: 'headers',
17400
+ statusCode: 'statusCode',
17401
+ body: 'body',
17402
+ };
17403
+ }
17404
+
17405
+ static types(): { [key: string]: any } {
17406
+ return {
17407
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
17408
+ statusCode: 'number',
17409
+ body: TestDataServiceApiResponseBody,
17410
+ };
17411
+ }
17412
+
17413
+ constructor(map?: { [key: string]: any }) {
17414
+ super(map);
17415
+ }
17416
+ }
17417
+
17037
17418
  export class TestNetworkConnectionRequest extends $tea.Model {
17038
17419
  datasourceName?: string;
17039
17420
  envType?: string;
@@ -18182,6 +18563,7 @@ export class UpdateMetaTableRequest extends $tea.Model {
18182
18563
  newOwnerId?: string;
18183
18564
  projectId?: number;
18184
18565
  removedLabels?: string;
18566
+ schema?: string;
18185
18567
  tableGuid?: string;
18186
18568
  tableName?: string;
18187
18569
  visibility?: number;
@@ -18194,6 +18576,7 @@ export class UpdateMetaTableRequest extends $tea.Model {
18194
18576
  newOwnerId: 'NewOwnerId',
18195
18577
  projectId: 'ProjectId',
18196
18578
  removedLabels: 'RemovedLabels',
18579
+ schema: 'Schema',
18197
18580
  tableGuid: 'TableGuid',
18198
18581
  tableName: 'TableName',
18199
18582
  visibility: 'Visibility',
@@ -18209,6 +18592,7 @@ export class UpdateMetaTableRequest extends $tea.Model {
18209
18592
  newOwnerId: 'string',
18210
18593
  projectId: 'number',
18211
18594
  removedLabels: 'string',
18595
+ schema: 'string',
18212
18596
  tableGuid: 'string',
18213
18597
  tableName: 'string',
18214
18598
  visibility: 'number',
@@ -18845,6 +19229,7 @@ export class UpdateTableRequest extends $tea.Model {
18845
19229
  ownerId?: string;
18846
19230
  physicsLevelId?: number;
18847
19231
  projectId?: number;
19232
+ schema?: string;
18848
19233
  tableName?: string;
18849
19234
  themes?: UpdateTableRequestThemes[];
18850
19235
  visibility?: number;
@@ -18866,6 +19251,7 @@ export class UpdateTableRequest extends $tea.Model {
18866
19251
  ownerId: 'OwnerId',
18867
19252
  physicsLevelId: 'PhysicsLevelId',
18868
19253
  projectId: 'ProjectId',
19254
+ schema: 'Schema',
18869
19255
  tableName: 'TableName',
18870
19256
  themes: 'Themes',
18871
19257
  visibility: 'Visibility',
@@ -18890,6 +19276,7 @@ export class UpdateTableRequest extends $tea.Model {
18890
19276
  ownerId: 'string',
18891
19277
  physicsLevelId: 'number',
18892
19278
  projectId: 'number',
19279
+ schema: 'string',
18893
19280
  tableName: 'string',
18894
19281
  themes: { 'type': 'array', 'itemType': UpdateTableRequestThemes },
18895
19282
  visibility: 'number',
@@ -20949,6 +21336,46 @@ export class GetDataServiceApiResponseBodyData extends $tea.Model {
20949
21336
  }
20950
21337
  }
20951
21338
 
21339
+ export class GetDataServiceApiTestResponseBodyData extends $tea.Model {
21340
+ apiId?: number;
21341
+ costTime?: string;
21342
+ debugInfo?: string;
21343
+ nodesDebugInfo?: string;
21344
+ paramMap?: string;
21345
+ retCode?: number;
21346
+ retResult?: string;
21347
+ status?: string;
21348
+ static names(): { [key: string]: string } {
21349
+ return {
21350
+ apiId: 'ApiId',
21351
+ costTime: 'CostTime',
21352
+ debugInfo: 'DebugInfo',
21353
+ nodesDebugInfo: 'NodesDebugInfo',
21354
+ paramMap: 'ParamMap',
21355
+ retCode: 'RetCode',
21356
+ retResult: 'RetResult',
21357
+ status: 'Status',
21358
+ };
21359
+ }
21360
+
21361
+ static types(): { [key: string]: any } {
21362
+ return {
21363
+ apiId: 'number',
21364
+ costTime: 'string',
21365
+ debugInfo: 'string',
21366
+ nodesDebugInfo: 'string',
21367
+ paramMap: 'string',
21368
+ retCode: 'number',
21369
+ retResult: 'string',
21370
+ status: 'string',
21371
+ };
21372
+ }
21373
+
21374
+ constructor(map?: { [key: string]: any }) {
21375
+ super(map);
21376
+ }
21377
+ }
21378
+
20952
21379
  export class GetDataServiceApplicationResponseBodyData extends $tea.Model {
20953
21380
  applicationCode?: string;
20954
21381
  applicationId?: number;
@@ -23104,6 +23531,7 @@ export class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
23104
23531
  projectId?: number;
23105
23532
  projectName?: string;
23106
23533
  readCount?: number;
23534
+ schema?: string;
23107
23535
  tableGuid?: string;
23108
23536
  tableName?: string;
23109
23537
  tenantId?: number;
@@ -23132,6 +23560,7 @@ export class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
23132
23560
  projectId: 'ProjectId',
23133
23561
  projectName: 'ProjectName',
23134
23562
  readCount: 'ReadCount',
23563
+ schema: 'Schema',
23135
23564
  tableGuid: 'TableGuid',
23136
23565
  tableName: 'TableName',
23137
23566
  tenantId: 'TenantId',
@@ -23163,6 +23592,7 @@ export class GetMetaTableBasicInfoResponseBodyData extends $tea.Model {
23163
23592
  projectId: 'number',
23164
23593
  projectName: 'string',
23165
23594
  readCount: 'number',
23595
+ schema: 'string',
23166
23596
  tableGuid: 'string',
23167
23597
  tableName: 'string',
23168
23598
  tenantId: 'number',
@@ -23372,6 +23802,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
23372
23802
  partitionKeys?: string;
23373
23803
  projectId?: number;
23374
23804
  projectName?: string;
23805
+ schema?: string;
23375
23806
  tableGuid?: string;
23376
23807
  tableName?: string;
23377
23808
  tenantId?: number;
@@ -23395,6 +23826,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
23395
23826
  partitionKeys: 'PartitionKeys',
23396
23827
  projectId: 'ProjectId',
23397
23828
  projectName: 'ProjectName',
23829
+ schema: 'Schema',
23398
23830
  tableGuid: 'TableGuid',
23399
23831
  tableName: 'TableName',
23400
23832
  tenantId: 'TenantId',
@@ -23421,6 +23853,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
23421
23853
  partitionKeys: 'string',
23422
23854
  projectId: 'number',
23423
23855
  projectName: 'string',
23856
+ schema: 'string',
23424
23857
  tableGuid: 'string',
23425
23858
  tableName: 'string',
23426
23859
  tenantId: 'number',
@@ -26010,6 +26443,46 @@ export class ListDataServiceApiAuthoritiesResponseBodyData extends $tea.Model {
26010
26443
  }
26011
26444
  }
26012
26445
 
26446
+ export class ListDataServiceApiTestResponseBodyData extends $tea.Model {
26447
+ apiId?: number;
26448
+ costTime?: number;
26449
+ createTime?: number;
26450
+ paramMap?: string;
26451
+ retCode?: number;
26452
+ retResult?: string;
26453
+ status?: string;
26454
+ testId?: number;
26455
+ static names(): { [key: string]: string } {
26456
+ return {
26457
+ apiId: 'ApiId',
26458
+ costTime: 'CostTime',
26459
+ createTime: 'CreateTime',
26460
+ paramMap: 'ParamMap',
26461
+ retCode: 'RetCode',
26462
+ retResult: 'RetResult',
26463
+ status: 'Status',
26464
+ testId: 'TestId',
26465
+ };
26466
+ }
26467
+
26468
+ static types(): { [key: string]: any } {
26469
+ return {
26470
+ apiId: 'number',
26471
+ costTime: 'number',
26472
+ createTime: 'number',
26473
+ paramMap: 'string',
26474
+ retCode: 'number',
26475
+ retResult: 'string',
26476
+ status: 'string',
26477
+ testId: 'number',
26478
+ };
26479
+ }
26480
+
26481
+ constructor(map?: { [key: string]: any }) {
26482
+ super(map);
26483
+ }
26484
+ }
26485
+
26013
26486
  export class ListDataServiceApisResponseBodyDataApisRegistrationDetailsRegistrationErrorCodes extends $tea.Model {
26014
26487
  errorCode?: string;
26015
26488
  errorMessage?: string;
@@ -29618,6 +30091,112 @@ export class ListResourceGroupsResponseBodyData extends $tea.Model {
29618
30091
  }
29619
30092
  }
29620
30093
 
30094
+ export class ListShiftPersonnelsResponseBodyPagingShiftPersons extends $tea.Model {
30095
+ beginTime?: number;
30096
+ endTime?: number;
30097
+ shiftPersonName?: string;
30098
+ shiftPersonUID?: string;
30099
+ static names(): { [key: string]: string } {
30100
+ return {
30101
+ beginTime: 'BeginTime',
30102
+ endTime: 'EndTime',
30103
+ shiftPersonName: 'ShiftPersonName',
30104
+ shiftPersonUID: 'ShiftPersonUID',
30105
+ };
30106
+ }
30107
+
30108
+ static types(): { [key: string]: any } {
30109
+ return {
30110
+ beginTime: 'number',
30111
+ endTime: 'number',
30112
+ shiftPersonName: 'string',
30113
+ shiftPersonUID: 'string',
30114
+ };
30115
+ }
30116
+
30117
+ constructor(map?: { [key: string]: any }) {
30118
+ super(map);
30119
+ }
30120
+ }
30121
+
30122
+ export class ListShiftPersonnelsResponseBodyPaging extends $tea.Model {
30123
+ pageNumber?: number;
30124
+ pageSize?: number;
30125
+ shiftPersons?: ListShiftPersonnelsResponseBodyPagingShiftPersons[];
30126
+ totalCount?: number;
30127
+ static names(): { [key: string]: string } {
30128
+ return {
30129
+ pageNumber: 'PageNumber',
30130
+ pageSize: 'PageSize',
30131
+ shiftPersons: 'ShiftPersons',
30132
+ totalCount: 'TotalCount',
30133
+ };
30134
+ }
30135
+
30136
+ static types(): { [key: string]: any } {
30137
+ return {
30138
+ pageNumber: 'number',
30139
+ pageSize: 'number',
30140
+ shiftPersons: { 'type': 'array', 'itemType': ListShiftPersonnelsResponseBodyPagingShiftPersons },
30141
+ totalCount: 'number',
30142
+ };
30143
+ }
30144
+
30145
+ constructor(map?: { [key: string]: any }) {
30146
+ super(map);
30147
+ }
30148
+ }
30149
+
30150
+ export class ListShiftSchedulesResponseBodyPagingShiftSchedules extends $tea.Model {
30151
+ shiftScheduleIdentifier?: string;
30152
+ shiftScheduleName?: string;
30153
+ static names(): { [key: string]: string } {
30154
+ return {
30155
+ shiftScheduleIdentifier: 'ShiftScheduleIdentifier',
30156
+ shiftScheduleName: 'ShiftScheduleName',
30157
+ };
30158
+ }
30159
+
30160
+ static types(): { [key: string]: any } {
30161
+ return {
30162
+ shiftScheduleIdentifier: 'string',
30163
+ shiftScheduleName: 'string',
30164
+ };
30165
+ }
30166
+
30167
+ constructor(map?: { [key: string]: any }) {
30168
+ super(map);
30169
+ }
30170
+ }
30171
+
30172
+ export class ListShiftSchedulesResponseBodyPaging extends $tea.Model {
30173
+ pageNumber?: number;
30174
+ pageSize?: number;
30175
+ shiftSchedules?: ListShiftSchedulesResponseBodyPagingShiftSchedules[];
30176
+ totalCount?: number;
30177
+ static names(): { [key: string]: string } {
30178
+ return {
30179
+ pageNumber: 'PageNumber',
30180
+ pageSize: 'PageSize',
30181
+ shiftSchedules: 'ShiftSchedules',
30182
+ totalCount: 'TotalCount',
30183
+ };
30184
+ }
30185
+
30186
+ static types(): { [key: string]: any } {
30187
+ return {
30188
+ pageNumber: 'number',
30189
+ pageSize: 'number',
30190
+ shiftSchedules: { 'type': 'array', 'itemType': ListShiftSchedulesResponseBodyPagingShiftSchedules },
30191
+ totalCount: 'number',
30192
+ };
30193
+ }
30194
+
30195
+ constructor(map?: { [key: string]: any }) {
30196
+ super(map);
30197
+ }
30198
+ }
30199
+
29621
30200
  export class ListSuccessInstanceAmountResponseBodyInstanceStatusTrendAvgTrend extends $tea.Model {
29622
30201
  count?: number;
29623
30202
  timePoint?: string;
@@ -29956,6 +30535,7 @@ export class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
29956
30535
  ownerId?: string;
29957
30536
  projectId?: number;
29958
30537
  projectName?: string;
30538
+ schema?: string;
29959
30539
  tableGuid?: string;
29960
30540
  tableName?: string;
29961
30541
  tenantId?: number;
@@ -29968,6 +30548,7 @@ export class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
29968
30548
  ownerId: 'OwnerId',
29969
30549
  projectId: 'ProjectId',
29970
30550
  projectName: 'ProjectName',
30551
+ schema: 'Schema',
29971
30552
  tableGuid: 'TableGuid',
29972
30553
  tableName: 'TableName',
29973
30554
  tenantId: 'TenantId',
@@ -29983,6 +30564,7 @@ export class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
29983
30564
  ownerId: 'string',
29984
30565
  projectId: 'number',
29985
30566
  projectName: 'string',
30567
+ schema: 'string',
29986
30568
  tableGuid: 'string',
29987
30569
  tableName: 'string',
29988
30570
  tenantId: 'number',
@@ -30110,6 +30692,113 @@ export class TerminateDISyncInstanceResponseBodyData extends $tea.Model {
30110
30692
  }
30111
30693
  }
30112
30694
 
30695
+ export class TestDataServiceApiRequestBodyParams extends $tea.Model {
30696
+ paramKey?: string;
30697
+ paramValue?: string;
30698
+ static names(): { [key: string]: string } {
30699
+ return {
30700
+ paramKey: 'ParamKey',
30701
+ paramValue: 'ParamValue',
30702
+ };
30703
+ }
30704
+
30705
+ static types(): { [key: string]: any } {
30706
+ return {
30707
+ paramKey: 'string',
30708
+ paramValue: 'string',
30709
+ };
30710
+ }
30711
+
30712
+ constructor(map?: { [key: string]: any }) {
30713
+ super(map);
30714
+ }
30715
+ }
30716
+
30717
+ export class TestDataServiceApiRequestHeadParams extends $tea.Model {
30718
+ paramKey?: string;
30719
+ paramValue?: string;
30720
+ static names(): { [key: string]: string } {
30721
+ return {
30722
+ paramKey: 'ParamKey',
30723
+ paramValue: 'ParamValue',
30724
+ };
30725
+ }
30726
+
30727
+ static types(): { [key: string]: any } {
30728
+ return {
30729
+ paramKey: 'string',
30730
+ paramValue: 'string',
30731
+ };
30732
+ }
30733
+
30734
+ constructor(map?: { [key: string]: any }) {
30735
+ super(map);
30736
+ }
30737
+ }
30738
+
30739
+ export class TestDataServiceApiRequestPathParams extends $tea.Model {
30740
+ paramKey?: string;
30741
+ paramValue?: string;
30742
+ static names(): { [key: string]: string } {
30743
+ return {
30744
+ paramKey: 'ParamKey',
30745
+ paramValue: 'ParamValue',
30746
+ };
30747
+ }
30748
+
30749
+ static types(): { [key: string]: any } {
30750
+ return {
30751
+ paramKey: 'string',
30752
+ paramValue: 'string',
30753
+ };
30754
+ }
30755
+
30756
+ constructor(map?: { [key: string]: any }) {
30757
+ super(map);
30758
+ }
30759
+ }
30760
+
30761
+ export class TestDataServiceApiRequestQueryParam extends $tea.Model {
30762
+ paramKey?: string;
30763
+ paramValue?: string;
30764
+ static names(): { [key: string]: string } {
30765
+ return {
30766
+ paramKey: 'ParamKey',
30767
+ paramValue: 'ParamValue',
30768
+ };
30769
+ }
30770
+
30771
+ static types(): { [key: string]: any } {
30772
+ return {
30773
+ paramKey: 'string',
30774
+ paramValue: 'string',
30775
+ };
30776
+ }
30777
+
30778
+ constructor(map?: { [key: string]: any }) {
30779
+ super(map);
30780
+ }
30781
+ }
30782
+
30783
+ export class TestDataServiceApiResponseBodyData extends $tea.Model {
30784
+ testId?: string;
30785
+ static names(): { [key: string]: string } {
30786
+ return {
30787
+ testId: 'TestId',
30788
+ };
30789
+ }
30790
+
30791
+ static types(): { [key: string]: any } {
30792
+ return {
30793
+ testId: 'string',
30794
+ };
30795
+ }
30796
+
30797
+ constructor(map?: { [key: string]: any }) {
30798
+ super(map);
30799
+ }
30800
+ }
30801
+
30113
30802
  export class TestNetworkConnectionResponseBodyTaskList extends $tea.Model {
30114
30803
  connectMessage?: string;
30115
30804
  connectStatus?: boolean;
@@ -32235,6 +32924,10 @@ export default class Client extends OpenApi {
32235
32924
  query["ProjectId"] = request.projectId;
32236
32925
  }
32237
32926
 
32927
+ if (!Util.isUnset(request.schema)) {
32928
+ query["Schema"] = request.schema;
32929
+ }
32930
+
32238
32931
  if (!Util.isUnset(request.tableName)) {
32239
32932
  query["TableName"] = request.tableName;
32240
32933
  }
@@ -33017,6 +33710,10 @@ export default class Client extends OpenApi {
33017
33710
  query["ProjectId"] = request.projectId;
33018
33711
  }
33019
33712
 
33713
+ if (!Util.isUnset(request.schema)) {
33714
+ query["Schema"] = request.schema;
33715
+ }
33716
+
33020
33717
  if (!Util.isUnset(request.tableName)) {
33021
33718
  query["TableName"] = request.tableName;
33022
33719
  }
@@ -33706,6 +34403,31 @@ export default class Client extends OpenApi {
33706
34403
  return await this.getDataServiceApiWithOptions(request, runtime);
33707
34404
  }
33708
34405
 
34406
+ async getDataServiceApiTestWithOptions(request: GetDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApiTestResponse> {
34407
+ Util.validateModel(request);
34408
+ let query = OpenApiUtil.query(Util.toMap(request));
34409
+ let req = new $OpenApi.OpenApiRequest({
34410
+ query: OpenApiUtil.query(query),
34411
+ });
34412
+ let params = new $OpenApi.Params({
34413
+ action: "GetDataServiceApiTest",
34414
+ version: "2020-05-18",
34415
+ protocol: "HTTPS",
34416
+ pathname: "/",
34417
+ method: "GET",
34418
+ authType: "AK",
34419
+ style: "RPC",
34420
+ reqBodyType: "formData",
34421
+ bodyType: "json",
34422
+ });
34423
+ return $tea.cast<GetDataServiceApiTestResponse>(await this.callApi(params, req, runtime), new GetDataServiceApiTestResponse({}));
34424
+ }
34425
+
34426
+ async getDataServiceApiTest(request: GetDataServiceApiTestRequest): Promise<GetDataServiceApiTestResponse> {
34427
+ let runtime = new $Util.RuntimeOptions({ });
34428
+ return await this.getDataServiceApiTestWithOptions(request, runtime);
34429
+ }
34430
+
33709
34431
  async getDataServiceApplicationWithOptions(request: GetDataServiceApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApplicationResponse> {
33710
34432
  Util.validateModel(request);
33711
34433
  let body : {[key: string ]: any} = { };
@@ -36196,6 +36918,31 @@ export default class Client extends OpenApi {
36196
36918
  return await this.listDataServiceApiAuthoritiesWithOptions(request, runtime);
36197
36919
  }
36198
36920
 
36921
+ async listDataServiceApiTestWithOptions(request: ListDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiTestResponse> {
36922
+ Util.validateModel(request);
36923
+ let query = OpenApiUtil.query(Util.toMap(request));
36924
+ let req = new $OpenApi.OpenApiRequest({
36925
+ query: OpenApiUtil.query(query),
36926
+ });
36927
+ let params = new $OpenApi.Params({
36928
+ action: "ListDataServiceApiTest",
36929
+ version: "2020-05-18",
36930
+ protocol: "HTTPS",
36931
+ pathname: "/",
36932
+ method: "GET",
36933
+ authType: "AK",
36934
+ style: "RPC",
36935
+ reqBodyType: "formData",
36936
+ bodyType: "json",
36937
+ });
36938
+ return $tea.cast<ListDataServiceApiTestResponse>(await this.callApi(params, req, runtime), new ListDataServiceApiTestResponse({}));
36939
+ }
36940
+
36941
+ async listDataServiceApiTest(request: ListDataServiceApiTestRequest): Promise<ListDataServiceApiTestResponse> {
36942
+ let runtime = new $Util.RuntimeOptions({ });
36943
+ return await this.listDataServiceApiTestWithOptions(request, runtime);
36944
+ }
36945
+
36199
36946
  async listDataServiceApisWithOptions(request: ListDataServiceApisRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApisResponse> {
36200
36947
  Util.validateModel(request);
36201
36948
  let body : {[key: string ]: any} = { };
@@ -37774,6 +38521,92 @@ export default class Client extends OpenApi {
37774
38521
  return await this.listResourceGroupsWithOptions(request, runtime);
37775
38522
  }
37776
38523
 
38524
+ async listShiftPersonnelsWithOptions(request: ListShiftPersonnelsRequest, runtime: $Util.RuntimeOptions): Promise<ListShiftPersonnelsResponse> {
38525
+ Util.validateModel(request);
38526
+ let body : {[key: string ]: any} = { };
38527
+ if (!Util.isUnset(request.beginTime)) {
38528
+ body["BeginTime"] = request.beginTime;
38529
+ }
38530
+
38531
+ if (!Util.isUnset(request.endTime)) {
38532
+ body["EndTime"] = request.endTime;
38533
+ }
38534
+
38535
+ if (!Util.isUnset(request.shiftPersonUID)) {
38536
+ body["ShiftPersonUID"] = request.shiftPersonUID;
38537
+ }
38538
+
38539
+ if (!Util.isUnset(request.shiftScheduleIdentifier)) {
38540
+ body["ShiftScheduleIdentifier"] = request.shiftScheduleIdentifier;
38541
+ }
38542
+
38543
+ if (!Util.isUnset(request.userType)) {
38544
+ body["UserType"] = request.userType;
38545
+ }
38546
+
38547
+ let req = new $OpenApi.OpenApiRequest({
38548
+ body: OpenApiUtil.parseToMap(body),
38549
+ });
38550
+ let params = new $OpenApi.Params({
38551
+ action: "ListShiftPersonnels",
38552
+ version: "2020-05-18",
38553
+ protocol: "HTTPS",
38554
+ pathname: "/",
38555
+ method: "POST",
38556
+ authType: "AK",
38557
+ style: "RPC",
38558
+ reqBodyType: "formData",
38559
+ bodyType: "json",
38560
+ });
38561
+ return $tea.cast<ListShiftPersonnelsResponse>(await this.callApi(params, req, runtime), new ListShiftPersonnelsResponse({}));
38562
+ }
38563
+
38564
+ async listShiftPersonnels(request: ListShiftPersonnelsRequest): Promise<ListShiftPersonnelsResponse> {
38565
+ let runtime = new $Util.RuntimeOptions({ });
38566
+ return await this.listShiftPersonnelsWithOptions(request, runtime);
38567
+ }
38568
+
38569
+ async listShiftSchedulesWithOptions(request: ListShiftSchedulesRequest, runtime: $Util.RuntimeOptions): Promise<ListShiftSchedulesResponse> {
38570
+ Util.validateModel(request);
38571
+ let body : {[key: string ]: any} = { };
38572
+ if (!Util.isUnset(request.owner)) {
38573
+ body["Owner"] = request.owner;
38574
+ }
38575
+
38576
+ if (!Util.isUnset(request.pageNumber)) {
38577
+ body["PageNumber"] = request.pageNumber;
38578
+ }
38579
+
38580
+ if (!Util.isUnset(request.pageSize)) {
38581
+ body["PageSize"] = request.pageSize;
38582
+ }
38583
+
38584
+ if (!Util.isUnset(request.shiftScheduleName)) {
38585
+ body["ShiftScheduleName"] = request.shiftScheduleName;
38586
+ }
38587
+
38588
+ let req = new $OpenApi.OpenApiRequest({
38589
+ body: OpenApiUtil.parseToMap(body),
38590
+ });
38591
+ let params = new $OpenApi.Params({
38592
+ action: "ListShiftSchedules",
38593
+ version: "2020-05-18",
38594
+ protocol: "HTTPS",
38595
+ pathname: "/",
38596
+ method: "POST",
38597
+ authType: "AK",
38598
+ style: "RPC",
38599
+ reqBodyType: "formData",
38600
+ bodyType: "json",
38601
+ });
38602
+ return $tea.cast<ListShiftSchedulesResponse>(await this.callApi(params, req, runtime), new ListShiftSchedulesResponse({}));
38603
+ }
38604
+
38605
+ async listShiftSchedules(request: ListShiftSchedulesRequest): Promise<ListShiftSchedulesResponse> {
38606
+ let runtime = new $Util.RuntimeOptions({ });
38607
+ return await this.listShiftSchedulesWithOptions(request, runtime);
38608
+ }
38609
+
37777
38610
  async listSuccessInstanceAmountWithOptions(request: ListSuccessInstanceAmountRequest, runtime: $Util.RuntimeOptions): Promise<ListSuccessInstanceAmountResponse> {
37778
38611
  Util.validateModel(request);
37779
38612
  let body : {[key: string ]: any} = { };
@@ -38535,6 +39368,10 @@ export default class Client extends OpenApi {
38535
39368
  query["PageSize"] = request.pageSize;
38536
39369
  }
38537
39370
 
39371
+ if (!Util.isUnset(request.schema)) {
39372
+ query["Schema"] = request.schema;
39373
+ }
39374
+
38538
39375
  let req = new $OpenApi.OpenApiRequest({
38539
39376
  query: OpenApiUtil.query(query),
38540
39377
  });
@@ -38831,6 +39668,10 @@ export default class Client extends OpenApi {
38831
39668
  body["ProjectIdentifier"] = request.projectIdentifier;
38832
39669
  }
38833
39670
 
39671
+ if (!Util.isUnset(request.skipAllDeployFileExtensions)) {
39672
+ body["SkipAllDeployFileExtensions"] = request.skipAllDeployFileExtensions;
39673
+ }
39674
+
38834
39675
  let req = new $OpenApi.OpenApiRequest({
38835
39676
  body: OpenApiUtil.parseToMap(body),
38836
39677
  });
@@ -38923,6 +39764,57 @@ export default class Client extends OpenApi {
38923
39764
  return await this.terminateDISyncInstanceWithOptions(request, runtime);
38924
39765
  }
38925
39766
 
39767
+ async testDataServiceApiWithOptions(request: TestDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<TestDataServiceApiResponse> {
39768
+ Util.validateModel(request);
39769
+ let query = { };
39770
+ if (!Util.isUnset(request.apiId)) {
39771
+ query["ApiId"] = request.apiId;
39772
+ }
39773
+
39774
+ let body : {[key: string ]: any} = { };
39775
+ if (!Util.isUnset(request.bodyContent)) {
39776
+ body["BodyContent"] = request.bodyContent;
39777
+ }
39778
+
39779
+ if (!Util.isUnset(request.bodyParams)) {
39780
+ body["BodyParams"] = request.bodyParams;
39781
+ }
39782
+
39783
+ if (!Util.isUnset(request.headParams)) {
39784
+ body["HeadParams"] = request.headParams;
39785
+ }
39786
+
39787
+ if (!Util.isUnset(request.pathParams)) {
39788
+ body["PathParams"] = request.pathParams;
39789
+ }
39790
+
39791
+ if (!Util.isUnset(request.queryParam)) {
39792
+ body["QueryParam"] = request.queryParam;
39793
+ }
39794
+
39795
+ let req = new $OpenApi.OpenApiRequest({
39796
+ query: OpenApiUtil.query(query),
39797
+ body: OpenApiUtil.parseToMap(body),
39798
+ });
39799
+ let params = new $OpenApi.Params({
39800
+ action: "TestDataServiceApi",
39801
+ version: "2020-05-18",
39802
+ protocol: "HTTPS",
39803
+ pathname: "/",
39804
+ method: "POST",
39805
+ authType: "AK",
39806
+ style: "RPC",
39807
+ reqBodyType: "formData",
39808
+ bodyType: "json",
39809
+ });
39810
+ return $tea.cast<TestDataServiceApiResponse>(await this.callApi(params, req, runtime), new TestDataServiceApiResponse({}));
39811
+ }
39812
+
39813
+ async testDataServiceApi(request: TestDataServiceApiRequest): Promise<TestDataServiceApiResponse> {
39814
+ let runtime = new $Util.RuntimeOptions({ });
39815
+ return await this.testDataServiceApiWithOptions(request, runtime);
39816
+ }
39817
+
38926
39818
  async testNetworkConnectionWithOptions(request: TestNetworkConnectionRequest, runtime: $Util.RuntimeOptions): Promise<TestNetworkConnectionResponse> {
38927
39819
  Util.validateModel(request);
38928
39820
  let query = { };
@@ -39607,6 +40499,10 @@ export default class Client extends OpenApi {
39607
40499
  query["ProjectId"] = request.projectId;
39608
40500
  }
39609
40501
 
40502
+ if (!Util.isUnset(request.schema)) {
40503
+ query["Schema"] = request.schema;
40504
+ }
40505
+
39610
40506
  if (!Util.isUnset(request.tableGuid)) {
39611
40507
  query["TableGuid"] = request.tableGuid;
39612
40508
  }
@@ -40054,6 +40950,10 @@ export default class Client extends OpenApi {
40054
40950
  query["ProjectId"] = request.projectId;
40055
40951
  }
40056
40952
 
40953
+ if (!Util.isUnset(request.schema)) {
40954
+ query["Schema"] = request.schema;
40955
+ }
40956
+
40057
40957
  if (!Util.isUnset(request.tableName)) {
40058
40958
  query["TableName"] = request.tableName;
40059
40959
  }