@alicloud/dataworks-public20200518 4.3.6 → 4.3.7
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 +508 -0
- package/dist/client.js +964 -47
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1161 -27
package/src/client.ts
CHANGED
|
@@ -6315,6 +6315,69 @@ export class GetDeploymentResponse extends $tea.Model {
|
|
|
6315
6315
|
}
|
|
6316
6316
|
}
|
|
6317
6317
|
|
|
6318
|
+
export class GetExtensionRequest extends $tea.Model {
|
|
6319
|
+
extensionCode?: string;
|
|
6320
|
+
static names(): { [key: string]: string } {
|
|
6321
|
+
return {
|
|
6322
|
+
extensionCode: 'ExtensionCode',
|
|
6323
|
+
};
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
static types(): { [key: string]: any } {
|
|
6327
|
+
return {
|
|
6328
|
+
extensionCode: 'string',
|
|
6329
|
+
};
|
|
6330
|
+
}
|
|
6331
|
+
|
|
6332
|
+
constructor(map?: { [key: string]: any }) {
|
|
6333
|
+
super(map);
|
|
6334
|
+
}
|
|
6335
|
+
}
|
|
6336
|
+
|
|
6337
|
+
export class GetExtensionResponseBody extends $tea.Model {
|
|
6338
|
+
extension?: GetExtensionResponseBodyExtension;
|
|
6339
|
+
requestId?: string;
|
|
6340
|
+
static names(): { [key: string]: string } {
|
|
6341
|
+
return {
|
|
6342
|
+
extension: 'Extension',
|
|
6343
|
+
requestId: 'RequestId',
|
|
6344
|
+
};
|
|
6345
|
+
}
|
|
6346
|
+
|
|
6347
|
+
static types(): { [key: string]: any } {
|
|
6348
|
+
return {
|
|
6349
|
+
extension: GetExtensionResponseBodyExtension,
|
|
6350
|
+
requestId: 'string',
|
|
6351
|
+
};
|
|
6352
|
+
}
|
|
6353
|
+
|
|
6354
|
+
constructor(map?: { [key: string]: any }) {
|
|
6355
|
+
super(map);
|
|
6356
|
+
}
|
|
6357
|
+
}
|
|
6358
|
+
|
|
6359
|
+
export class GetExtensionResponse extends $tea.Model {
|
|
6360
|
+
headers: { [key: string]: string };
|
|
6361
|
+
body: GetExtensionResponseBody;
|
|
6362
|
+
static names(): { [key: string]: string } {
|
|
6363
|
+
return {
|
|
6364
|
+
headers: 'headers',
|
|
6365
|
+
body: 'body',
|
|
6366
|
+
};
|
|
6367
|
+
}
|
|
6368
|
+
|
|
6369
|
+
static types(): { [key: string]: any } {
|
|
6370
|
+
return {
|
|
6371
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6372
|
+
body: GetExtensionResponseBody,
|
|
6373
|
+
};
|
|
6374
|
+
}
|
|
6375
|
+
|
|
6376
|
+
constructor(map?: { [key: string]: any }) {
|
|
6377
|
+
super(map);
|
|
6378
|
+
}
|
|
6379
|
+
}
|
|
6380
|
+
|
|
6318
6381
|
export class GetFileRequest extends $tea.Model {
|
|
6319
6382
|
fileId?: number;
|
|
6320
6383
|
nodeId?: number;
|
|
@@ -9240,6 +9303,72 @@ export class GetOpSensitiveDataResponse extends $tea.Model {
|
|
|
9240
9303
|
}
|
|
9241
9304
|
}
|
|
9242
9305
|
|
|
9306
|
+
export class GetOptionValueForProjectRequest extends $tea.Model {
|
|
9307
|
+
extensionCode?: string;
|
|
9308
|
+
projectId?: string;
|
|
9309
|
+
static names(): { [key: string]: string } {
|
|
9310
|
+
return {
|
|
9311
|
+
extensionCode: 'ExtensionCode',
|
|
9312
|
+
projectId: 'ProjectId',
|
|
9313
|
+
};
|
|
9314
|
+
}
|
|
9315
|
+
|
|
9316
|
+
static types(): { [key: string]: any } {
|
|
9317
|
+
return {
|
|
9318
|
+
extensionCode: 'string',
|
|
9319
|
+
projectId: 'string',
|
|
9320
|
+
};
|
|
9321
|
+
}
|
|
9322
|
+
|
|
9323
|
+
constructor(map?: { [key: string]: any }) {
|
|
9324
|
+
super(map);
|
|
9325
|
+
}
|
|
9326
|
+
}
|
|
9327
|
+
|
|
9328
|
+
export class GetOptionValueForProjectResponseBody extends $tea.Model {
|
|
9329
|
+
optionValue?: string;
|
|
9330
|
+
requestId?: string;
|
|
9331
|
+
static names(): { [key: string]: string } {
|
|
9332
|
+
return {
|
|
9333
|
+
optionValue: 'OptionValue',
|
|
9334
|
+
requestId: 'RequestId',
|
|
9335
|
+
};
|
|
9336
|
+
}
|
|
9337
|
+
|
|
9338
|
+
static types(): { [key: string]: any } {
|
|
9339
|
+
return {
|
|
9340
|
+
optionValue: 'string',
|
|
9341
|
+
requestId: 'string',
|
|
9342
|
+
};
|
|
9343
|
+
}
|
|
9344
|
+
|
|
9345
|
+
constructor(map?: { [key: string]: any }) {
|
|
9346
|
+
super(map);
|
|
9347
|
+
}
|
|
9348
|
+
}
|
|
9349
|
+
|
|
9350
|
+
export class GetOptionValueForProjectResponse extends $tea.Model {
|
|
9351
|
+
headers: { [key: string]: string };
|
|
9352
|
+
body: GetOptionValueForProjectResponseBody;
|
|
9353
|
+
static names(): { [key: string]: string } {
|
|
9354
|
+
return {
|
|
9355
|
+
headers: 'headers',
|
|
9356
|
+
body: 'body',
|
|
9357
|
+
};
|
|
9358
|
+
}
|
|
9359
|
+
|
|
9360
|
+
static types(): { [key: string]: any } {
|
|
9361
|
+
return {
|
|
9362
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9363
|
+
body: GetOptionValueForProjectResponseBody,
|
|
9364
|
+
};
|
|
9365
|
+
}
|
|
9366
|
+
|
|
9367
|
+
constructor(map?: { [key: string]: any }) {
|
|
9368
|
+
super(map);
|
|
9369
|
+
}
|
|
9370
|
+
}
|
|
9371
|
+
|
|
9243
9372
|
export class GetPermissionApplyOrderDetailRequest extends $tea.Model {
|
|
9244
9373
|
flowId?: string;
|
|
9245
9374
|
static names(): { [key: string]: string } {
|
|
@@ -10662,6 +10791,168 @@ export class ListConnectionsResponse extends $tea.Model {
|
|
|
10662
10791
|
}
|
|
10663
10792
|
}
|
|
10664
10793
|
|
|
10794
|
+
export class ListCurrentTasksForResourceGroupRequest extends $tea.Model {
|
|
10795
|
+
pageNumber?: number;
|
|
10796
|
+
pageSize?: number;
|
|
10797
|
+
projectEnv?: string;
|
|
10798
|
+
resourceGroupIdentifier?: string;
|
|
10799
|
+
status?: number;
|
|
10800
|
+
static names(): { [key: string]: string } {
|
|
10801
|
+
return {
|
|
10802
|
+
pageNumber: 'PageNumber',
|
|
10803
|
+
pageSize: 'PageSize',
|
|
10804
|
+
projectEnv: 'ProjectEnv',
|
|
10805
|
+
resourceGroupIdentifier: 'ResourceGroupIdentifier',
|
|
10806
|
+
status: 'Status',
|
|
10807
|
+
};
|
|
10808
|
+
}
|
|
10809
|
+
|
|
10810
|
+
static types(): { [key: string]: any } {
|
|
10811
|
+
return {
|
|
10812
|
+
pageNumber: 'number',
|
|
10813
|
+
pageSize: 'number',
|
|
10814
|
+
projectEnv: 'string',
|
|
10815
|
+
resourceGroupIdentifier: 'string',
|
|
10816
|
+
status: 'number',
|
|
10817
|
+
};
|
|
10818
|
+
}
|
|
10819
|
+
|
|
10820
|
+
constructor(map?: { [key: string]: any }) {
|
|
10821
|
+
super(map);
|
|
10822
|
+
}
|
|
10823
|
+
}
|
|
10824
|
+
|
|
10825
|
+
export class ListCurrentTasksForResourceGroupResponseBody extends $tea.Model {
|
|
10826
|
+
data?: ListCurrentTasksForResourceGroupResponseBodyData;
|
|
10827
|
+
errorCode?: string;
|
|
10828
|
+
errorMessage?: string;
|
|
10829
|
+
httpStatusCode?: number;
|
|
10830
|
+
requestId?: string;
|
|
10831
|
+
success?: boolean;
|
|
10832
|
+
static names(): { [key: string]: string } {
|
|
10833
|
+
return {
|
|
10834
|
+
data: 'Data',
|
|
10835
|
+
errorCode: 'ErrorCode',
|
|
10836
|
+
errorMessage: 'ErrorMessage',
|
|
10837
|
+
httpStatusCode: 'HttpStatusCode',
|
|
10838
|
+
requestId: 'RequestId',
|
|
10839
|
+
success: 'Success',
|
|
10840
|
+
};
|
|
10841
|
+
}
|
|
10842
|
+
|
|
10843
|
+
static types(): { [key: string]: any } {
|
|
10844
|
+
return {
|
|
10845
|
+
data: ListCurrentTasksForResourceGroupResponseBodyData,
|
|
10846
|
+
errorCode: 'string',
|
|
10847
|
+
errorMessage: 'string',
|
|
10848
|
+
httpStatusCode: 'number',
|
|
10849
|
+
requestId: 'string',
|
|
10850
|
+
success: 'boolean',
|
|
10851
|
+
};
|
|
10852
|
+
}
|
|
10853
|
+
|
|
10854
|
+
constructor(map?: { [key: string]: any }) {
|
|
10855
|
+
super(map);
|
|
10856
|
+
}
|
|
10857
|
+
}
|
|
10858
|
+
|
|
10859
|
+
export class ListCurrentTasksForResourceGroupResponse extends $tea.Model {
|
|
10860
|
+
headers: { [key: string]: string };
|
|
10861
|
+
body: ListCurrentTasksForResourceGroupResponseBody;
|
|
10862
|
+
static names(): { [key: string]: string } {
|
|
10863
|
+
return {
|
|
10864
|
+
headers: 'headers',
|
|
10865
|
+
body: 'body',
|
|
10866
|
+
};
|
|
10867
|
+
}
|
|
10868
|
+
|
|
10869
|
+
static types(): { [key: string]: any } {
|
|
10870
|
+
return {
|
|
10871
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10872
|
+
body: ListCurrentTasksForResourceGroupResponseBody,
|
|
10873
|
+
};
|
|
10874
|
+
}
|
|
10875
|
+
|
|
10876
|
+
constructor(map?: { [key: string]: any }) {
|
|
10877
|
+
super(map);
|
|
10878
|
+
}
|
|
10879
|
+
}
|
|
10880
|
+
|
|
10881
|
+
export class ListCurrentUsageForResourceGroupRequest extends $tea.Model {
|
|
10882
|
+
projectEnv?: string;
|
|
10883
|
+
resourceGroupIdentifier?: string;
|
|
10884
|
+
static names(): { [key: string]: string } {
|
|
10885
|
+
return {
|
|
10886
|
+
projectEnv: 'ProjectEnv',
|
|
10887
|
+
resourceGroupIdentifier: 'ResourceGroupIdentifier',
|
|
10888
|
+
};
|
|
10889
|
+
}
|
|
10890
|
+
|
|
10891
|
+
static types(): { [key: string]: any } {
|
|
10892
|
+
return {
|
|
10893
|
+
projectEnv: 'string',
|
|
10894
|
+
resourceGroupIdentifier: 'string',
|
|
10895
|
+
};
|
|
10896
|
+
}
|
|
10897
|
+
|
|
10898
|
+
constructor(map?: { [key: string]: any }) {
|
|
10899
|
+
super(map);
|
|
10900
|
+
}
|
|
10901
|
+
}
|
|
10902
|
+
|
|
10903
|
+
export class ListCurrentUsageForResourceGroupResponseBody extends $tea.Model {
|
|
10904
|
+
data?: ListCurrentUsageForResourceGroupResponseBodyData;
|
|
10905
|
+
errorMessage?: string;
|
|
10906
|
+
httpStatusCode?: number;
|
|
10907
|
+
requestId?: string;
|
|
10908
|
+
success?: boolean;
|
|
10909
|
+
static names(): { [key: string]: string } {
|
|
10910
|
+
return {
|
|
10911
|
+
data: 'Data',
|
|
10912
|
+
errorMessage: 'ErrorMessage',
|
|
10913
|
+
httpStatusCode: 'HttpStatusCode',
|
|
10914
|
+
requestId: 'RequestId',
|
|
10915
|
+
success: 'Success',
|
|
10916
|
+
};
|
|
10917
|
+
}
|
|
10918
|
+
|
|
10919
|
+
static types(): { [key: string]: any } {
|
|
10920
|
+
return {
|
|
10921
|
+
data: ListCurrentUsageForResourceGroupResponseBodyData,
|
|
10922
|
+
errorMessage: 'string',
|
|
10923
|
+
httpStatusCode: 'number',
|
|
10924
|
+
requestId: 'string',
|
|
10925
|
+
success: 'boolean',
|
|
10926
|
+
};
|
|
10927
|
+
}
|
|
10928
|
+
|
|
10929
|
+
constructor(map?: { [key: string]: any }) {
|
|
10930
|
+
super(map);
|
|
10931
|
+
}
|
|
10932
|
+
}
|
|
10933
|
+
|
|
10934
|
+
export class ListCurrentUsageForResourceGroupResponse extends $tea.Model {
|
|
10935
|
+
headers: { [key: string]: string };
|
|
10936
|
+
body: ListCurrentUsageForResourceGroupResponseBody;
|
|
10937
|
+
static names(): { [key: string]: string } {
|
|
10938
|
+
return {
|
|
10939
|
+
headers: 'headers',
|
|
10940
|
+
body: 'body',
|
|
10941
|
+
};
|
|
10942
|
+
}
|
|
10943
|
+
|
|
10944
|
+
static types(): { [key: string]: any } {
|
|
10945
|
+
return {
|
|
10946
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10947
|
+
body: ListCurrentUsageForResourceGroupResponseBody,
|
|
10948
|
+
};
|
|
10949
|
+
}
|
|
10950
|
+
|
|
10951
|
+
constructor(map?: { [key: string]: any }) {
|
|
10952
|
+
super(map);
|
|
10953
|
+
}
|
|
10954
|
+
}
|
|
10955
|
+
|
|
10665
10956
|
export class ListDIProjectConfigRequest extends $tea.Model {
|
|
10666
10957
|
destinationType?: string;
|
|
10667
10958
|
projectId?: number;
|
|
@@ -11589,6 +11880,72 @@ export class ListDeploymentsResponse extends $tea.Model {
|
|
|
11589
11880
|
}
|
|
11590
11881
|
}
|
|
11591
11882
|
|
|
11883
|
+
export class ListExtensionsRequest extends $tea.Model {
|
|
11884
|
+
pageNumber?: number;
|
|
11885
|
+
pageSize?: number;
|
|
11886
|
+
static names(): { [key: string]: string } {
|
|
11887
|
+
return {
|
|
11888
|
+
pageNumber: 'PageNumber',
|
|
11889
|
+
pageSize: 'PageSize',
|
|
11890
|
+
};
|
|
11891
|
+
}
|
|
11892
|
+
|
|
11893
|
+
static types(): { [key: string]: any } {
|
|
11894
|
+
return {
|
|
11895
|
+
pageNumber: 'number',
|
|
11896
|
+
pageSize: 'number',
|
|
11897
|
+
};
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11900
|
+
constructor(map?: { [key: string]: any }) {
|
|
11901
|
+
super(map);
|
|
11902
|
+
}
|
|
11903
|
+
}
|
|
11904
|
+
|
|
11905
|
+
export class ListExtensionsResponseBody extends $tea.Model {
|
|
11906
|
+
pagingInfo?: ListExtensionsResponseBodyPagingInfo;
|
|
11907
|
+
requestId?: string;
|
|
11908
|
+
static names(): { [key: string]: string } {
|
|
11909
|
+
return {
|
|
11910
|
+
pagingInfo: 'PagingInfo',
|
|
11911
|
+
requestId: 'RequestId',
|
|
11912
|
+
};
|
|
11913
|
+
}
|
|
11914
|
+
|
|
11915
|
+
static types(): { [key: string]: any } {
|
|
11916
|
+
return {
|
|
11917
|
+
pagingInfo: ListExtensionsResponseBodyPagingInfo,
|
|
11918
|
+
requestId: 'string',
|
|
11919
|
+
};
|
|
11920
|
+
}
|
|
11921
|
+
|
|
11922
|
+
constructor(map?: { [key: string]: any }) {
|
|
11923
|
+
super(map);
|
|
11924
|
+
}
|
|
11925
|
+
}
|
|
11926
|
+
|
|
11927
|
+
export class ListExtensionsResponse extends $tea.Model {
|
|
11928
|
+
headers: { [key: string]: string };
|
|
11929
|
+
body: ListExtensionsResponseBody;
|
|
11930
|
+
static names(): { [key: string]: string } {
|
|
11931
|
+
return {
|
|
11932
|
+
headers: 'headers',
|
|
11933
|
+
body: 'body',
|
|
11934
|
+
};
|
|
11935
|
+
}
|
|
11936
|
+
|
|
11937
|
+
static types(): { [key: string]: any } {
|
|
11938
|
+
return {
|
|
11939
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11940
|
+
body: ListExtensionsResponseBody,
|
|
11941
|
+
};
|
|
11942
|
+
}
|
|
11943
|
+
|
|
11944
|
+
constructor(map?: { [key: string]: any }) {
|
|
11945
|
+
super(map);
|
|
11946
|
+
}
|
|
11947
|
+
}
|
|
11948
|
+
|
|
11592
11949
|
export class ListFileTypeRequest extends $tea.Model {
|
|
11593
11950
|
keyword?: string;
|
|
11594
11951
|
locale?: string;
|
|
@@ -11943,6 +12300,96 @@ export class ListFoldersResponse extends $tea.Model {
|
|
|
11943
12300
|
}
|
|
11944
12301
|
}
|
|
11945
12302
|
|
|
12303
|
+
export class ListHistoryTasksForResourceGroupRequest extends $tea.Model {
|
|
12304
|
+
endTime?: number;
|
|
12305
|
+
pageNumber?: number;
|
|
12306
|
+
pageSize?: number;
|
|
12307
|
+
projectEnv?: string;
|
|
12308
|
+
resourceGroupIdentifier?: string;
|
|
12309
|
+
startTime?: number;
|
|
12310
|
+
static names(): { [key: string]: string } {
|
|
12311
|
+
return {
|
|
12312
|
+
endTime: 'EndTime',
|
|
12313
|
+
pageNumber: 'PageNumber',
|
|
12314
|
+
pageSize: 'PageSize',
|
|
12315
|
+
projectEnv: 'ProjectEnv',
|
|
12316
|
+
resourceGroupIdentifier: 'ResourceGroupIdentifier',
|
|
12317
|
+
startTime: 'StartTime',
|
|
12318
|
+
};
|
|
12319
|
+
}
|
|
12320
|
+
|
|
12321
|
+
static types(): { [key: string]: any } {
|
|
12322
|
+
return {
|
|
12323
|
+
endTime: 'number',
|
|
12324
|
+
pageNumber: 'number',
|
|
12325
|
+
pageSize: 'number',
|
|
12326
|
+
projectEnv: 'string',
|
|
12327
|
+
resourceGroupIdentifier: 'string',
|
|
12328
|
+
startTime: 'number',
|
|
12329
|
+
};
|
|
12330
|
+
}
|
|
12331
|
+
|
|
12332
|
+
constructor(map?: { [key: string]: any }) {
|
|
12333
|
+
super(map);
|
|
12334
|
+
}
|
|
12335
|
+
}
|
|
12336
|
+
|
|
12337
|
+
export class ListHistoryTasksForResourceGroupResponseBody extends $tea.Model {
|
|
12338
|
+
data?: ListHistoryTasksForResourceGroupResponseBodyData;
|
|
12339
|
+
errorCode?: string;
|
|
12340
|
+
errorMessage?: string;
|
|
12341
|
+
httpStatusCode?: number;
|
|
12342
|
+
requestId?: string;
|
|
12343
|
+
success?: boolean;
|
|
12344
|
+
static names(): { [key: string]: string } {
|
|
12345
|
+
return {
|
|
12346
|
+
data: 'Data',
|
|
12347
|
+
errorCode: 'ErrorCode',
|
|
12348
|
+
errorMessage: 'ErrorMessage',
|
|
12349
|
+
httpStatusCode: 'HttpStatusCode',
|
|
12350
|
+
requestId: 'RequestId',
|
|
12351
|
+
success: 'Success',
|
|
12352
|
+
};
|
|
12353
|
+
}
|
|
12354
|
+
|
|
12355
|
+
static types(): { [key: string]: any } {
|
|
12356
|
+
return {
|
|
12357
|
+
data: ListHistoryTasksForResourceGroupResponseBodyData,
|
|
12358
|
+
errorCode: 'string',
|
|
12359
|
+
errorMessage: 'string',
|
|
12360
|
+
httpStatusCode: 'number',
|
|
12361
|
+
requestId: 'string',
|
|
12362
|
+
success: 'boolean',
|
|
12363
|
+
};
|
|
12364
|
+
}
|
|
12365
|
+
|
|
12366
|
+
constructor(map?: { [key: string]: any }) {
|
|
12367
|
+
super(map);
|
|
12368
|
+
}
|
|
12369
|
+
}
|
|
12370
|
+
|
|
12371
|
+
export class ListHistoryTasksForResourceGroupResponse extends $tea.Model {
|
|
12372
|
+
headers: { [key: string]: string };
|
|
12373
|
+
body: ListHistoryTasksForResourceGroupResponseBody;
|
|
12374
|
+
static names(): { [key: string]: string } {
|
|
12375
|
+
return {
|
|
12376
|
+
headers: 'headers',
|
|
12377
|
+
body: 'body',
|
|
12378
|
+
};
|
|
12379
|
+
}
|
|
12380
|
+
|
|
12381
|
+
static types(): { [key: string]: any } {
|
|
12382
|
+
return {
|
|
12383
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12384
|
+
body: ListHistoryTasksForResourceGroupResponseBody,
|
|
12385
|
+
};
|
|
12386
|
+
}
|
|
12387
|
+
|
|
12388
|
+
constructor(map?: { [key: string]: any }) {
|
|
12389
|
+
super(map);
|
|
12390
|
+
}
|
|
12391
|
+
}
|
|
12392
|
+
|
|
11946
12393
|
export class ListInstanceAmountRequest extends $tea.Model {
|
|
11947
12394
|
beginDate?: string;
|
|
11948
12395
|
endDate?: string;
|
|
@@ -13868,15 +14315,99 @@ export class ListTopicsRequest extends $tea.Model {
|
|
|
13868
14315
|
|
|
13869
14316
|
static types(): { [key: string]: any } {
|
|
13870
14317
|
return {
|
|
13871
|
-
beginTime: 'string',
|
|
13872
|
-
endTime: 'string',
|
|
13873
|
-
instanceId: 'number',
|
|
13874
|
-
nodeId: 'number',
|
|
13875
|
-
owner: 'string',
|
|
13876
|
-
pageNumber: 'number',
|
|
13877
|
-
pageSize: 'number',
|
|
13878
|
-
topicStatuses: 'string',
|
|
13879
|
-
topicTypes: 'string',
|
|
14318
|
+
beginTime: 'string',
|
|
14319
|
+
endTime: 'string',
|
|
14320
|
+
instanceId: 'number',
|
|
14321
|
+
nodeId: 'number',
|
|
14322
|
+
owner: 'string',
|
|
14323
|
+
pageNumber: 'number',
|
|
14324
|
+
pageSize: 'number',
|
|
14325
|
+
topicStatuses: 'string',
|
|
14326
|
+
topicTypes: 'string',
|
|
14327
|
+
};
|
|
14328
|
+
}
|
|
14329
|
+
|
|
14330
|
+
constructor(map?: { [key: string]: any }) {
|
|
14331
|
+
super(map);
|
|
14332
|
+
}
|
|
14333
|
+
}
|
|
14334
|
+
|
|
14335
|
+
export class ListTopicsResponseBody extends $tea.Model {
|
|
14336
|
+
data?: ListTopicsResponseBodyData;
|
|
14337
|
+
errorCode?: string;
|
|
14338
|
+
errorMessage?: string;
|
|
14339
|
+
httpStatusCode?: number;
|
|
14340
|
+
requestId?: string;
|
|
14341
|
+
success?: boolean;
|
|
14342
|
+
static names(): { [key: string]: string } {
|
|
14343
|
+
return {
|
|
14344
|
+
data: 'Data',
|
|
14345
|
+
errorCode: 'ErrorCode',
|
|
14346
|
+
errorMessage: 'ErrorMessage',
|
|
14347
|
+
httpStatusCode: 'HttpStatusCode',
|
|
14348
|
+
requestId: 'RequestId',
|
|
14349
|
+
success: 'Success',
|
|
14350
|
+
};
|
|
14351
|
+
}
|
|
14352
|
+
|
|
14353
|
+
static types(): { [key: string]: any } {
|
|
14354
|
+
return {
|
|
14355
|
+
data: ListTopicsResponseBodyData,
|
|
14356
|
+
errorCode: 'string',
|
|
14357
|
+
errorMessage: 'string',
|
|
14358
|
+
httpStatusCode: 'number',
|
|
14359
|
+
requestId: 'string',
|
|
14360
|
+
success: 'boolean',
|
|
14361
|
+
};
|
|
14362
|
+
}
|
|
14363
|
+
|
|
14364
|
+
constructor(map?: { [key: string]: any }) {
|
|
14365
|
+
super(map);
|
|
14366
|
+
}
|
|
14367
|
+
}
|
|
14368
|
+
|
|
14369
|
+
export class ListTopicsResponse extends $tea.Model {
|
|
14370
|
+
headers: { [key: string]: string };
|
|
14371
|
+
body: ListTopicsResponseBody;
|
|
14372
|
+
static names(): { [key: string]: string } {
|
|
14373
|
+
return {
|
|
14374
|
+
headers: 'headers',
|
|
14375
|
+
body: 'body',
|
|
14376
|
+
};
|
|
14377
|
+
}
|
|
14378
|
+
|
|
14379
|
+
static types(): { [key: string]: any } {
|
|
14380
|
+
return {
|
|
14381
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14382
|
+
body: ListTopicsResponseBody,
|
|
14383
|
+
};
|
|
14384
|
+
}
|
|
14385
|
+
|
|
14386
|
+
constructor(map?: { [key: string]: any }) {
|
|
14387
|
+
super(map);
|
|
14388
|
+
}
|
|
14389
|
+
}
|
|
14390
|
+
|
|
14391
|
+
export class ListUsageForResourceGroupRequest extends $tea.Model {
|
|
14392
|
+
endTime?: number;
|
|
14393
|
+
projectEnv?: string;
|
|
14394
|
+
resourceGroupIdentifier?: string;
|
|
14395
|
+
startTime?: number;
|
|
14396
|
+
static names(): { [key: string]: string } {
|
|
14397
|
+
return {
|
|
14398
|
+
endTime: 'EndTime',
|
|
14399
|
+
projectEnv: 'ProjectEnv',
|
|
14400
|
+
resourceGroupIdentifier: 'ResourceGroupIdentifier',
|
|
14401
|
+
startTime: 'StartTime',
|
|
14402
|
+
};
|
|
14403
|
+
}
|
|
14404
|
+
|
|
14405
|
+
static types(): { [key: string]: any } {
|
|
14406
|
+
return {
|
|
14407
|
+
endTime: 'number',
|
|
14408
|
+
projectEnv: 'string',
|
|
14409
|
+
resourceGroupIdentifier: 'string',
|
|
14410
|
+
startTime: 'number',
|
|
13880
14411
|
};
|
|
13881
14412
|
}
|
|
13882
14413
|
|
|
@@ -13885,8 +14416,8 @@ export class ListTopicsRequest extends $tea.Model {
|
|
|
13885
14416
|
}
|
|
13886
14417
|
}
|
|
13887
14418
|
|
|
13888
|
-
export class
|
|
13889
|
-
data?:
|
|
14419
|
+
export class ListUsageForResourceGroupResponseBody extends $tea.Model {
|
|
14420
|
+
data?: ListUsageForResourceGroupResponseBodyData[];
|
|
13890
14421
|
errorCode?: string;
|
|
13891
14422
|
errorMessage?: string;
|
|
13892
14423
|
httpStatusCode?: number;
|
|
@@ -13905,7 +14436,7 @@ export class ListTopicsResponseBody extends $tea.Model {
|
|
|
13905
14436
|
|
|
13906
14437
|
static types(): { [key: string]: any } {
|
|
13907
14438
|
return {
|
|
13908
|
-
data:
|
|
14439
|
+
data: { 'type': 'array', 'itemType': ListUsageForResourceGroupResponseBodyData },
|
|
13909
14440
|
errorCode: 'string',
|
|
13910
14441
|
errorMessage: 'string',
|
|
13911
14442
|
httpStatusCode: 'number',
|
|
@@ -13919,9 +14450,9 @@ export class ListTopicsResponseBody extends $tea.Model {
|
|
|
13919
14450
|
}
|
|
13920
14451
|
}
|
|
13921
14452
|
|
|
13922
|
-
export class
|
|
14453
|
+
export class ListUsageForResourceGroupResponse extends $tea.Model {
|
|
13923
14454
|
headers: { [key: string]: string };
|
|
13924
|
-
body:
|
|
14455
|
+
body: ListUsageForResourceGroupResponseBody;
|
|
13925
14456
|
static names(): { [key: string]: string } {
|
|
13926
14457
|
return {
|
|
13927
14458
|
headers: 'headers',
|
|
@@ -13932,7 +14463,7 @@ export class ListTopicsResponse extends $tea.Model {
|
|
|
13932
14463
|
static types(): { [key: string]: any } {
|
|
13933
14464
|
return {
|
|
13934
14465
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13935
|
-
body:
|
|
14466
|
+
body: ListUsageForResourceGroupResponseBody,
|
|
13936
14467
|
};
|
|
13937
14468
|
}
|
|
13938
14469
|
|
|
@@ -20348,6 +20879,99 @@ export class GetDeploymentResponseBodyData extends $tea.Model {
|
|
|
20348
20879
|
}
|
|
20349
20880
|
}
|
|
20350
20881
|
|
|
20882
|
+
export class GetExtensionResponseBodyExtensionBindEventList extends $tea.Model {
|
|
20883
|
+
eventCode?: string;
|
|
20884
|
+
eventName?: string;
|
|
20885
|
+
static names(): { [key: string]: string } {
|
|
20886
|
+
return {
|
|
20887
|
+
eventCode: 'EventCode',
|
|
20888
|
+
eventName: 'EventName',
|
|
20889
|
+
};
|
|
20890
|
+
}
|
|
20891
|
+
|
|
20892
|
+
static types(): { [key: string]: any } {
|
|
20893
|
+
return {
|
|
20894
|
+
eventCode: 'string',
|
|
20895
|
+
eventName: 'string',
|
|
20896
|
+
};
|
|
20897
|
+
}
|
|
20898
|
+
|
|
20899
|
+
constructor(map?: { [key: string]: any }) {
|
|
20900
|
+
super(map);
|
|
20901
|
+
}
|
|
20902
|
+
}
|
|
20903
|
+
|
|
20904
|
+
export class GetExtensionResponseBodyExtensionEventCategoryList extends $tea.Model {
|
|
20905
|
+
categoryCode?: string;
|
|
20906
|
+
categoryName?: string;
|
|
20907
|
+
static names(): { [key: string]: string } {
|
|
20908
|
+
return {
|
|
20909
|
+
categoryCode: 'CategoryCode',
|
|
20910
|
+
categoryName: 'CategoryName',
|
|
20911
|
+
};
|
|
20912
|
+
}
|
|
20913
|
+
|
|
20914
|
+
static types(): { [key: string]: any } {
|
|
20915
|
+
return {
|
|
20916
|
+
categoryCode: 'string',
|
|
20917
|
+
categoryName: 'string',
|
|
20918
|
+
};
|
|
20919
|
+
}
|
|
20920
|
+
|
|
20921
|
+
constructor(map?: { [key: string]: any }) {
|
|
20922
|
+
super(map);
|
|
20923
|
+
}
|
|
20924
|
+
}
|
|
20925
|
+
|
|
20926
|
+
export class GetExtensionResponseBodyExtension extends $tea.Model {
|
|
20927
|
+
bindEventList?: GetExtensionResponseBodyExtensionBindEventList[];
|
|
20928
|
+
detailUrl?: string;
|
|
20929
|
+
eventCategoryList?: GetExtensionResponseBodyExtensionEventCategoryList[];
|
|
20930
|
+
extensionCode?: string;
|
|
20931
|
+
extensionDesc?: string;
|
|
20932
|
+
extensionName?: string;
|
|
20933
|
+
helpDocUrl?: string;
|
|
20934
|
+
optionSetting?: string;
|
|
20935
|
+
parameterSetting?: string;
|
|
20936
|
+
projectTesting?: number;
|
|
20937
|
+
status?: number;
|
|
20938
|
+
static names(): { [key: string]: string } {
|
|
20939
|
+
return {
|
|
20940
|
+
bindEventList: 'BindEventList',
|
|
20941
|
+
detailUrl: 'DetailUrl',
|
|
20942
|
+
eventCategoryList: 'EventCategoryList',
|
|
20943
|
+
extensionCode: 'ExtensionCode',
|
|
20944
|
+
extensionDesc: 'ExtensionDesc',
|
|
20945
|
+
extensionName: 'ExtensionName',
|
|
20946
|
+
helpDocUrl: 'HelpDocUrl',
|
|
20947
|
+
optionSetting: 'OptionSetting',
|
|
20948
|
+
parameterSetting: 'ParameterSetting',
|
|
20949
|
+
projectTesting: 'ProjectTesting',
|
|
20950
|
+
status: 'Status',
|
|
20951
|
+
};
|
|
20952
|
+
}
|
|
20953
|
+
|
|
20954
|
+
static types(): { [key: string]: any } {
|
|
20955
|
+
return {
|
|
20956
|
+
bindEventList: { 'type': 'array', 'itemType': GetExtensionResponseBodyExtensionBindEventList },
|
|
20957
|
+
detailUrl: 'string',
|
|
20958
|
+
eventCategoryList: { 'type': 'array', 'itemType': GetExtensionResponseBodyExtensionEventCategoryList },
|
|
20959
|
+
extensionCode: 'string',
|
|
20960
|
+
extensionDesc: 'string',
|
|
20961
|
+
extensionName: 'string',
|
|
20962
|
+
helpDocUrl: 'string',
|
|
20963
|
+
optionSetting: 'string',
|
|
20964
|
+
parameterSetting: 'string',
|
|
20965
|
+
projectTesting: 'number',
|
|
20966
|
+
status: 'number',
|
|
20967
|
+
};
|
|
20968
|
+
}
|
|
20969
|
+
|
|
20970
|
+
constructor(map?: { [key: string]: any }) {
|
|
20971
|
+
super(map);
|
|
20972
|
+
}
|
|
20973
|
+
}
|
|
20974
|
+
|
|
20351
20975
|
export class GetFileResponseBodyDataFile extends $tea.Model {
|
|
20352
20976
|
advancedSettings?: string;
|
|
20353
20977
|
autoParsing?: boolean;
|
|
@@ -24333,6 +24957,93 @@ export class ListConnectionsResponseBodyData extends $tea.Model {
|
|
|
24333
24957
|
}
|
|
24334
24958
|
}
|
|
24335
24959
|
|
|
24960
|
+
export class ListCurrentTasksForResourceGroupResponseBodyDataTasks extends $tea.Model {
|
|
24961
|
+
concurrency?: string;
|
|
24962
|
+
projectName?: string;
|
|
24963
|
+
status?: number;
|
|
24964
|
+
taskId?: string;
|
|
24965
|
+
taskName?: string;
|
|
24966
|
+
taskSource?: string;
|
|
24967
|
+
taskType?: number;
|
|
24968
|
+
static names(): { [key: string]: string } {
|
|
24969
|
+
return {
|
|
24970
|
+
concurrency: 'Concurrency',
|
|
24971
|
+
projectName: 'ProjectName',
|
|
24972
|
+
status: 'Status',
|
|
24973
|
+
taskId: 'TaskId',
|
|
24974
|
+
taskName: 'TaskName',
|
|
24975
|
+
taskSource: 'TaskSource',
|
|
24976
|
+
taskType: 'TaskType',
|
|
24977
|
+
};
|
|
24978
|
+
}
|
|
24979
|
+
|
|
24980
|
+
static types(): { [key: string]: any } {
|
|
24981
|
+
return {
|
|
24982
|
+
concurrency: 'string',
|
|
24983
|
+
projectName: 'string',
|
|
24984
|
+
status: 'number',
|
|
24985
|
+
taskId: 'string',
|
|
24986
|
+
taskName: 'string',
|
|
24987
|
+
taskSource: 'string',
|
|
24988
|
+
taskType: 'number',
|
|
24989
|
+
};
|
|
24990
|
+
}
|
|
24991
|
+
|
|
24992
|
+
constructor(map?: { [key: string]: any }) {
|
|
24993
|
+
super(map);
|
|
24994
|
+
}
|
|
24995
|
+
}
|
|
24996
|
+
|
|
24997
|
+
export class ListCurrentTasksForResourceGroupResponseBodyData extends $tea.Model {
|
|
24998
|
+
pageNum?: number;
|
|
24999
|
+
pageSize?: number;
|
|
25000
|
+
tasks?: ListCurrentTasksForResourceGroupResponseBodyDataTasks[];
|
|
25001
|
+
totalNum?: number;
|
|
25002
|
+
static names(): { [key: string]: string } {
|
|
25003
|
+
return {
|
|
25004
|
+
pageNum: 'PageNum',
|
|
25005
|
+
pageSize: 'PageSize',
|
|
25006
|
+
tasks: 'Tasks',
|
|
25007
|
+
totalNum: 'TotalNum',
|
|
25008
|
+
};
|
|
25009
|
+
}
|
|
25010
|
+
|
|
25011
|
+
static types(): { [key: string]: any } {
|
|
25012
|
+
return {
|
|
25013
|
+
pageNum: 'number',
|
|
25014
|
+
pageSize: 'number',
|
|
25015
|
+
tasks: { 'type': 'array', 'itemType': ListCurrentTasksForResourceGroupResponseBodyDataTasks },
|
|
25016
|
+
totalNum: 'number',
|
|
25017
|
+
};
|
|
25018
|
+
}
|
|
25019
|
+
|
|
25020
|
+
constructor(map?: { [key: string]: any }) {
|
|
25021
|
+
super(map);
|
|
25022
|
+
}
|
|
25023
|
+
}
|
|
25024
|
+
|
|
25025
|
+
export class ListCurrentUsageForResourceGroupResponseBodyData extends $tea.Model {
|
|
25026
|
+
recodeTime?: number;
|
|
25027
|
+
usage?: number;
|
|
25028
|
+
static names(): { [key: string]: string } {
|
|
25029
|
+
return {
|
|
25030
|
+
recodeTime: 'RecodeTime',
|
|
25031
|
+
usage: 'Usage',
|
|
25032
|
+
};
|
|
25033
|
+
}
|
|
25034
|
+
|
|
25035
|
+
static types(): { [key: string]: any } {
|
|
25036
|
+
return {
|
|
25037
|
+
recodeTime: 'number',
|
|
25038
|
+
usage: 'number',
|
|
25039
|
+
};
|
|
25040
|
+
}
|
|
25041
|
+
|
|
25042
|
+
constructor(map?: { [key: string]: any }) {
|
|
25043
|
+
super(map);
|
|
25044
|
+
}
|
|
25045
|
+
}
|
|
25046
|
+
|
|
24336
25047
|
export class ListDIProjectConfigResponseBodyData extends $tea.Model {
|
|
24337
25048
|
config?: string;
|
|
24338
25049
|
static names(): { [key: string]: string } {
|
|
@@ -25960,6 +26671,90 @@ export class ListDeploymentsResponseBodyData extends $tea.Model {
|
|
|
25960
26671
|
}
|
|
25961
26672
|
}
|
|
25962
26673
|
|
|
26674
|
+
export class ListExtensionsResponseBodyPagingInfoExtensionsBindEventList extends $tea.Model {
|
|
26675
|
+
eventCode?: string;
|
|
26676
|
+
eventName?: string;
|
|
26677
|
+
static names(): { [key: string]: string } {
|
|
26678
|
+
return {
|
|
26679
|
+
eventCode: 'EventCode',
|
|
26680
|
+
eventName: 'EventName',
|
|
26681
|
+
};
|
|
26682
|
+
}
|
|
26683
|
+
|
|
26684
|
+
static types(): { [key: string]: any } {
|
|
26685
|
+
return {
|
|
26686
|
+
eventCode: 'string',
|
|
26687
|
+
eventName: 'string',
|
|
26688
|
+
};
|
|
26689
|
+
}
|
|
26690
|
+
|
|
26691
|
+
constructor(map?: { [key: string]: any }) {
|
|
26692
|
+
super(map);
|
|
26693
|
+
}
|
|
26694
|
+
}
|
|
26695
|
+
|
|
26696
|
+
export class ListExtensionsResponseBodyPagingInfoExtensions extends $tea.Model {
|
|
26697
|
+
bindEventList?: ListExtensionsResponseBodyPagingInfoExtensionsBindEventList[];
|
|
26698
|
+
extensionCode?: string;
|
|
26699
|
+
extensionDesc?: string;
|
|
26700
|
+
extensionName?: string;
|
|
26701
|
+
owner?: string;
|
|
26702
|
+
status?: number;
|
|
26703
|
+
static names(): { [key: string]: string } {
|
|
26704
|
+
return {
|
|
26705
|
+
bindEventList: 'BindEventList',
|
|
26706
|
+
extensionCode: 'ExtensionCode',
|
|
26707
|
+
extensionDesc: 'ExtensionDesc',
|
|
26708
|
+
extensionName: 'ExtensionName',
|
|
26709
|
+
owner: 'Owner',
|
|
26710
|
+
status: 'Status',
|
|
26711
|
+
};
|
|
26712
|
+
}
|
|
26713
|
+
|
|
26714
|
+
static types(): { [key: string]: any } {
|
|
26715
|
+
return {
|
|
26716
|
+
bindEventList: { 'type': 'array', 'itemType': ListExtensionsResponseBodyPagingInfoExtensionsBindEventList },
|
|
26717
|
+
extensionCode: 'string',
|
|
26718
|
+
extensionDesc: 'string',
|
|
26719
|
+
extensionName: 'string',
|
|
26720
|
+
owner: 'string',
|
|
26721
|
+
status: 'number',
|
|
26722
|
+
};
|
|
26723
|
+
}
|
|
26724
|
+
|
|
26725
|
+
constructor(map?: { [key: string]: any }) {
|
|
26726
|
+
super(map);
|
|
26727
|
+
}
|
|
26728
|
+
}
|
|
26729
|
+
|
|
26730
|
+
export class ListExtensionsResponseBodyPagingInfo extends $tea.Model {
|
|
26731
|
+
extensions?: ListExtensionsResponseBodyPagingInfoExtensions[];
|
|
26732
|
+
pageNumber?: number;
|
|
26733
|
+
pageSize?: number;
|
|
26734
|
+
totalCount?: number;
|
|
26735
|
+
static names(): { [key: string]: string } {
|
|
26736
|
+
return {
|
|
26737
|
+
extensions: 'Extensions',
|
|
26738
|
+
pageNumber: 'PageNumber',
|
|
26739
|
+
pageSize: 'PageSize',
|
|
26740
|
+
totalCount: 'TotalCount',
|
|
26741
|
+
};
|
|
26742
|
+
}
|
|
26743
|
+
|
|
26744
|
+
static types(): { [key: string]: any } {
|
|
26745
|
+
return {
|
|
26746
|
+
extensions: { 'type': 'array', 'itemType': ListExtensionsResponseBodyPagingInfoExtensions },
|
|
26747
|
+
pageNumber: 'number',
|
|
26748
|
+
pageSize: 'number',
|
|
26749
|
+
totalCount: 'number',
|
|
26750
|
+
};
|
|
26751
|
+
}
|
|
26752
|
+
|
|
26753
|
+
constructor(map?: { [key: string]: any }) {
|
|
26754
|
+
super(map);
|
|
26755
|
+
}
|
|
26756
|
+
}
|
|
26757
|
+
|
|
25963
26758
|
export class ListFileTypeResponseBodyNodeTypeInfoListNodeTypeInfo extends $tea.Model {
|
|
25964
26759
|
nodeType?: number;
|
|
25965
26760
|
nodeTypeName?: string;
|
|
@@ -26212,8 +27007,70 @@ export class ListFoldersResponseBodyDataFolders extends $tea.Model {
|
|
|
26212
27007
|
|
|
26213
27008
|
static types(): { [key: string]: any } {
|
|
26214
27009
|
return {
|
|
26215
|
-
folderId: 'string',
|
|
26216
|
-
folderPath: 'string',
|
|
27010
|
+
folderId: 'string',
|
|
27011
|
+
folderPath: 'string',
|
|
27012
|
+
};
|
|
27013
|
+
}
|
|
27014
|
+
|
|
27015
|
+
constructor(map?: { [key: string]: any }) {
|
|
27016
|
+
super(map);
|
|
27017
|
+
}
|
|
27018
|
+
}
|
|
27019
|
+
|
|
27020
|
+
export class ListFoldersResponseBodyData extends $tea.Model {
|
|
27021
|
+
folders?: ListFoldersResponseBodyDataFolders[];
|
|
27022
|
+
pageNumber?: number;
|
|
27023
|
+
pageSize?: number;
|
|
27024
|
+
totalCount?: number;
|
|
27025
|
+
static names(): { [key: string]: string } {
|
|
27026
|
+
return {
|
|
27027
|
+
folders: 'Folders',
|
|
27028
|
+
pageNumber: 'PageNumber',
|
|
27029
|
+
pageSize: 'PageSize',
|
|
27030
|
+
totalCount: 'TotalCount',
|
|
27031
|
+
};
|
|
27032
|
+
}
|
|
27033
|
+
|
|
27034
|
+
static types(): { [key: string]: any } {
|
|
27035
|
+
return {
|
|
27036
|
+
folders: { 'type': 'array', 'itemType': ListFoldersResponseBodyDataFolders },
|
|
27037
|
+
pageNumber: 'number',
|
|
27038
|
+
pageSize: 'number',
|
|
27039
|
+
totalCount: 'number',
|
|
27040
|
+
};
|
|
27041
|
+
}
|
|
27042
|
+
|
|
27043
|
+
constructor(map?: { [key: string]: any }) {
|
|
27044
|
+
super(map);
|
|
27045
|
+
}
|
|
27046
|
+
}
|
|
27047
|
+
|
|
27048
|
+
export class ListHistoryTasksForResourceGroupResponseBodyDataTasks extends $tea.Model {
|
|
27049
|
+
concurrency?: number;
|
|
27050
|
+
projectName?: string;
|
|
27051
|
+
status?: number;
|
|
27052
|
+
taskId?: string;
|
|
27053
|
+
taskName?: string;
|
|
27054
|
+
taskType?: number;
|
|
27055
|
+
static names(): { [key: string]: string } {
|
|
27056
|
+
return {
|
|
27057
|
+
concurrency: 'Concurrency',
|
|
27058
|
+
projectName: 'ProjectName',
|
|
27059
|
+
status: 'Status',
|
|
27060
|
+
taskId: 'TaskId',
|
|
27061
|
+
taskName: 'TaskName',
|
|
27062
|
+
taskType: 'TaskType',
|
|
27063
|
+
};
|
|
27064
|
+
}
|
|
27065
|
+
|
|
27066
|
+
static types(): { [key: string]: any } {
|
|
27067
|
+
return {
|
|
27068
|
+
concurrency: 'number',
|
|
27069
|
+
projectName: 'string',
|
|
27070
|
+
status: 'number',
|
|
27071
|
+
taskId: 'string',
|
|
27072
|
+
taskName: 'string',
|
|
27073
|
+
taskType: 'number',
|
|
26217
27074
|
};
|
|
26218
27075
|
}
|
|
26219
27076
|
|
|
@@ -26222,26 +27079,26 @@ export class ListFoldersResponseBodyDataFolders extends $tea.Model {
|
|
|
26222
27079
|
}
|
|
26223
27080
|
}
|
|
26224
27081
|
|
|
26225
|
-
export class
|
|
26226
|
-
|
|
26227
|
-
pageNumber?: number;
|
|
27082
|
+
export class ListHistoryTasksForResourceGroupResponseBodyData extends $tea.Model {
|
|
27083
|
+
pageNum?: number;
|
|
26228
27084
|
pageSize?: number;
|
|
26229
|
-
|
|
27085
|
+
tasks?: ListHistoryTasksForResourceGroupResponseBodyDataTasks[];
|
|
27086
|
+
totalNum?: number;
|
|
26230
27087
|
static names(): { [key: string]: string } {
|
|
26231
27088
|
return {
|
|
26232
|
-
|
|
26233
|
-
pageNumber: 'PageNumber',
|
|
27089
|
+
pageNum: 'PageNum',
|
|
26234
27090
|
pageSize: 'PageSize',
|
|
26235
|
-
|
|
27091
|
+
tasks: 'Tasks',
|
|
27092
|
+
totalNum: 'TotalNum',
|
|
26236
27093
|
};
|
|
26237
27094
|
}
|
|
26238
27095
|
|
|
26239
27096
|
static types(): { [key: string]: any } {
|
|
26240
27097
|
return {
|
|
26241
|
-
|
|
26242
|
-
pageNumber: 'number',
|
|
27098
|
+
pageNum: 'number',
|
|
26243
27099
|
pageSize: 'number',
|
|
26244
|
-
|
|
27100
|
+
tasks: { 'type': 'array', 'itemType': ListHistoryTasksForResourceGroupResponseBodyDataTasks },
|
|
27101
|
+
totalNum: 'number',
|
|
26245
27102
|
};
|
|
26246
27103
|
}
|
|
26247
27104
|
|
|
@@ -28184,6 +29041,28 @@ export class ListTopicsResponseBodyData extends $tea.Model {
|
|
|
28184
29041
|
}
|
|
28185
29042
|
}
|
|
28186
29043
|
|
|
29044
|
+
export class ListUsageForResourceGroupResponseBodyData extends $tea.Model {
|
|
29045
|
+
recodeTime?: number;
|
|
29046
|
+
usage?: number;
|
|
29047
|
+
static names(): { [key: string]: string } {
|
|
29048
|
+
return {
|
|
29049
|
+
recodeTime: 'RecodeTime',
|
|
29050
|
+
usage: 'Usage',
|
|
29051
|
+
};
|
|
29052
|
+
}
|
|
29053
|
+
|
|
29054
|
+
static types(): { [key: string]: any } {
|
|
29055
|
+
return {
|
|
29056
|
+
recodeTime: 'number',
|
|
29057
|
+
usage: 'number',
|
|
29058
|
+
};
|
|
29059
|
+
}
|
|
29060
|
+
|
|
29061
|
+
constructor(map?: { [key: string]: any }) {
|
|
29062
|
+
super(map);
|
|
29063
|
+
}
|
|
29064
|
+
}
|
|
29065
|
+
|
|
28187
29066
|
export class QueryDISyncTaskConfigProcessResultResponseBodyData extends $tea.Model {
|
|
28188
29067
|
message?: string;
|
|
28189
29068
|
status?: string;
|
|
@@ -32197,6 +33076,35 @@ export default class Client extends OpenApi {
|
|
|
32197
33076
|
return await this.getDeploymentWithOptions(request, runtime);
|
|
32198
33077
|
}
|
|
32199
33078
|
|
|
33079
|
+
async getExtensionWithOptions(request: GetExtensionRequest, runtime: $Util.RuntimeOptions): Promise<GetExtensionResponse> {
|
|
33080
|
+
Util.validateModel(request);
|
|
33081
|
+
let query = { };
|
|
33082
|
+
if (!Util.isUnset(request.extensionCode)) {
|
|
33083
|
+
query["ExtensionCode"] = request.extensionCode;
|
|
33084
|
+
}
|
|
33085
|
+
|
|
33086
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33087
|
+
query: OpenApiUtil.query(query),
|
|
33088
|
+
});
|
|
33089
|
+
let params = new $OpenApi.Params({
|
|
33090
|
+
action: "GetExtension",
|
|
33091
|
+
version: "2020-05-18",
|
|
33092
|
+
protocol: "HTTPS",
|
|
33093
|
+
pathname: "/",
|
|
33094
|
+
method: "POST",
|
|
33095
|
+
authType: "AK",
|
|
33096
|
+
style: "RPC",
|
|
33097
|
+
reqBodyType: "formData",
|
|
33098
|
+
bodyType: "json",
|
|
33099
|
+
});
|
|
33100
|
+
return $tea.cast<GetExtensionResponse>(await this.callApi(params, req, runtime), new GetExtensionResponse({}));
|
|
33101
|
+
}
|
|
33102
|
+
|
|
33103
|
+
async getExtension(request: GetExtensionRequest): Promise<GetExtensionResponse> {
|
|
33104
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33105
|
+
return await this.getExtensionWithOptions(request, runtime);
|
|
33106
|
+
}
|
|
33107
|
+
|
|
32200
33108
|
async getFileWithOptions(request: GetFileRequest, runtime: $Util.RuntimeOptions): Promise<GetFileResponse> {
|
|
32201
33109
|
Util.validateModel(request);
|
|
32202
33110
|
let body : {[key: string ]: any} = { };
|
|
@@ -33534,6 +34442,39 @@ export default class Client extends OpenApi {
|
|
|
33534
34442
|
return await this.getOpSensitiveDataWithOptions(request, runtime);
|
|
33535
34443
|
}
|
|
33536
34444
|
|
|
34445
|
+
async getOptionValueForProjectWithOptions(request: GetOptionValueForProjectRequest, runtime: $Util.RuntimeOptions): Promise<GetOptionValueForProjectResponse> {
|
|
34446
|
+
Util.validateModel(request);
|
|
34447
|
+
let body : {[key: string ]: any} = { };
|
|
34448
|
+
if (!Util.isUnset(request.extensionCode)) {
|
|
34449
|
+
body["ExtensionCode"] = request.extensionCode;
|
|
34450
|
+
}
|
|
34451
|
+
|
|
34452
|
+
if (!Util.isUnset(request.projectId)) {
|
|
34453
|
+
body["ProjectId"] = request.projectId;
|
|
34454
|
+
}
|
|
34455
|
+
|
|
34456
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34457
|
+
body: OpenApiUtil.parseToMap(body),
|
|
34458
|
+
});
|
|
34459
|
+
let params = new $OpenApi.Params({
|
|
34460
|
+
action: "GetOptionValueForProject",
|
|
34461
|
+
version: "2020-05-18",
|
|
34462
|
+
protocol: "HTTPS",
|
|
34463
|
+
pathname: "/",
|
|
34464
|
+
method: "POST",
|
|
34465
|
+
authType: "AK",
|
|
34466
|
+
style: "RPC",
|
|
34467
|
+
reqBodyType: "formData",
|
|
34468
|
+
bodyType: "json",
|
|
34469
|
+
});
|
|
34470
|
+
return $tea.cast<GetOptionValueForProjectResponse>(await this.callApi(params, req, runtime), new GetOptionValueForProjectResponse({}));
|
|
34471
|
+
}
|
|
34472
|
+
|
|
34473
|
+
async getOptionValueForProject(request: GetOptionValueForProjectRequest): Promise<GetOptionValueForProjectResponse> {
|
|
34474
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
34475
|
+
return await this.getOptionValueForProjectWithOptions(request, runtime);
|
|
34476
|
+
}
|
|
34477
|
+
|
|
33537
34478
|
async getPermissionApplyOrderDetailWithOptions(request: GetPermissionApplyOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetPermissionApplyOrderDetailResponse> {
|
|
33538
34479
|
Util.validateModel(request);
|
|
33539
34480
|
let query = { };
|
|
@@ -34200,6 +35141,84 @@ export default class Client extends OpenApi {
|
|
|
34200
35141
|
return await this.listConnectionsWithOptions(request, runtime);
|
|
34201
35142
|
}
|
|
34202
35143
|
|
|
35144
|
+
async listCurrentTasksForResourceGroupWithOptions(request: ListCurrentTasksForResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListCurrentTasksForResourceGroupResponse> {
|
|
35145
|
+
Util.validateModel(request);
|
|
35146
|
+
let body : {[key: string ]: any} = { };
|
|
35147
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
35148
|
+
body["PageNumber"] = request.pageNumber;
|
|
35149
|
+
}
|
|
35150
|
+
|
|
35151
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
35152
|
+
body["PageSize"] = request.pageSize;
|
|
35153
|
+
}
|
|
35154
|
+
|
|
35155
|
+
if (!Util.isUnset(request.projectEnv)) {
|
|
35156
|
+
body["ProjectEnv"] = request.projectEnv;
|
|
35157
|
+
}
|
|
35158
|
+
|
|
35159
|
+
if (!Util.isUnset(request.resourceGroupIdentifier)) {
|
|
35160
|
+
body["ResourceGroupIdentifier"] = request.resourceGroupIdentifier;
|
|
35161
|
+
}
|
|
35162
|
+
|
|
35163
|
+
if (!Util.isUnset(request.status)) {
|
|
35164
|
+
body["Status"] = request.status;
|
|
35165
|
+
}
|
|
35166
|
+
|
|
35167
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
35168
|
+
body: OpenApiUtil.parseToMap(body),
|
|
35169
|
+
});
|
|
35170
|
+
let params = new $OpenApi.Params({
|
|
35171
|
+
action: "ListCurrentTasksForResourceGroup",
|
|
35172
|
+
version: "2020-05-18",
|
|
35173
|
+
protocol: "HTTPS",
|
|
35174
|
+
pathname: "/",
|
|
35175
|
+
method: "POST",
|
|
35176
|
+
authType: "AK",
|
|
35177
|
+
style: "RPC",
|
|
35178
|
+
reqBodyType: "formData",
|
|
35179
|
+
bodyType: "json",
|
|
35180
|
+
});
|
|
35181
|
+
return $tea.cast<ListCurrentTasksForResourceGroupResponse>(await this.callApi(params, req, runtime), new ListCurrentTasksForResourceGroupResponse({}));
|
|
35182
|
+
}
|
|
35183
|
+
|
|
35184
|
+
async listCurrentTasksForResourceGroup(request: ListCurrentTasksForResourceGroupRequest): Promise<ListCurrentTasksForResourceGroupResponse> {
|
|
35185
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
35186
|
+
return await this.listCurrentTasksForResourceGroupWithOptions(request, runtime);
|
|
35187
|
+
}
|
|
35188
|
+
|
|
35189
|
+
async listCurrentUsageForResourceGroupWithOptions(request: ListCurrentUsageForResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListCurrentUsageForResourceGroupResponse> {
|
|
35190
|
+
Util.validateModel(request);
|
|
35191
|
+
let body : {[key: string ]: any} = { };
|
|
35192
|
+
if (!Util.isUnset(request.projectEnv)) {
|
|
35193
|
+
body["ProjectEnv"] = request.projectEnv;
|
|
35194
|
+
}
|
|
35195
|
+
|
|
35196
|
+
if (!Util.isUnset(request.resourceGroupIdentifier)) {
|
|
35197
|
+
body["ResourceGroupIdentifier"] = request.resourceGroupIdentifier;
|
|
35198
|
+
}
|
|
35199
|
+
|
|
35200
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
35201
|
+
body: OpenApiUtil.parseToMap(body),
|
|
35202
|
+
});
|
|
35203
|
+
let params = new $OpenApi.Params({
|
|
35204
|
+
action: "ListCurrentUsageForResourceGroup",
|
|
35205
|
+
version: "2020-05-18",
|
|
35206
|
+
protocol: "HTTPS",
|
|
35207
|
+
pathname: "/",
|
|
35208
|
+
method: "POST",
|
|
35209
|
+
authType: "AK",
|
|
35210
|
+
style: "RPC",
|
|
35211
|
+
reqBodyType: "formData",
|
|
35212
|
+
bodyType: "json",
|
|
35213
|
+
});
|
|
35214
|
+
return $tea.cast<ListCurrentUsageForResourceGroupResponse>(await this.callApi(params, req, runtime), new ListCurrentUsageForResourceGroupResponse({}));
|
|
35215
|
+
}
|
|
35216
|
+
|
|
35217
|
+
async listCurrentUsageForResourceGroup(request: ListCurrentUsageForResourceGroupRequest): Promise<ListCurrentUsageForResourceGroupResponse> {
|
|
35218
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
35219
|
+
return await this.listCurrentUsageForResourceGroupWithOptions(request, runtime);
|
|
35220
|
+
}
|
|
35221
|
+
|
|
34203
35222
|
async listDIProjectConfigWithOptions(request: ListDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListDIProjectConfigResponse> {
|
|
34204
35223
|
Util.validateModel(request);
|
|
34205
35224
|
let query = { };
|
|
@@ -34695,6 +35714,31 @@ export default class Client extends OpenApi {
|
|
|
34695
35714
|
return await this.listDeploymentsWithOptions(request, runtime);
|
|
34696
35715
|
}
|
|
34697
35716
|
|
|
35717
|
+
async listExtensionsWithOptions(request: ListExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<ListExtensionsResponse> {
|
|
35718
|
+
Util.validateModel(request);
|
|
35719
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
35720
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
35721
|
+
query: OpenApiUtil.query(query),
|
|
35722
|
+
});
|
|
35723
|
+
let params = new $OpenApi.Params({
|
|
35724
|
+
action: "ListExtensions",
|
|
35725
|
+
version: "2020-05-18",
|
|
35726
|
+
protocol: "HTTPS",
|
|
35727
|
+
pathname: "/",
|
|
35728
|
+
method: "GET",
|
|
35729
|
+
authType: "AK",
|
|
35730
|
+
style: "RPC",
|
|
35731
|
+
reqBodyType: "formData",
|
|
35732
|
+
bodyType: "json",
|
|
35733
|
+
});
|
|
35734
|
+
return $tea.cast<ListExtensionsResponse>(await this.callApi(params, req, runtime), new ListExtensionsResponse({}));
|
|
35735
|
+
}
|
|
35736
|
+
|
|
35737
|
+
async listExtensions(request: ListExtensionsRequest): Promise<ListExtensionsResponse> {
|
|
35738
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
35739
|
+
return await this.listExtensionsWithOptions(request, runtime);
|
|
35740
|
+
}
|
|
35741
|
+
|
|
34698
35742
|
async listFileTypeWithOptions(request: ListFileTypeRequest, runtime: $Util.RuntimeOptions): Promise<ListFileTypeResponse> {
|
|
34699
35743
|
Util.validateModel(request);
|
|
34700
35744
|
let body : {[key: string ]: any} = { };
|
|
@@ -34899,6 +35943,55 @@ export default class Client extends OpenApi {
|
|
|
34899
35943
|
return await this.listFoldersWithOptions(request, runtime);
|
|
34900
35944
|
}
|
|
34901
35945
|
|
|
35946
|
+
async listHistoryTasksForResourceGroupWithOptions(request: ListHistoryTasksForResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListHistoryTasksForResourceGroupResponse> {
|
|
35947
|
+
Util.validateModel(request);
|
|
35948
|
+
let body : {[key: string ]: any} = { };
|
|
35949
|
+
if (!Util.isUnset(request.endTime)) {
|
|
35950
|
+
body["EndTime"] = request.endTime;
|
|
35951
|
+
}
|
|
35952
|
+
|
|
35953
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
35954
|
+
body["PageNumber"] = request.pageNumber;
|
|
35955
|
+
}
|
|
35956
|
+
|
|
35957
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
35958
|
+
body["PageSize"] = request.pageSize;
|
|
35959
|
+
}
|
|
35960
|
+
|
|
35961
|
+
if (!Util.isUnset(request.projectEnv)) {
|
|
35962
|
+
body["ProjectEnv"] = request.projectEnv;
|
|
35963
|
+
}
|
|
35964
|
+
|
|
35965
|
+
if (!Util.isUnset(request.resourceGroupIdentifier)) {
|
|
35966
|
+
body["ResourceGroupIdentifier"] = request.resourceGroupIdentifier;
|
|
35967
|
+
}
|
|
35968
|
+
|
|
35969
|
+
if (!Util.isUnset(request.startTime)) {
|
|
35970
|
+
body["StartTime"] = request.startTime;
|
|
35971
|
+
}
|
|
35972
|
+
|
|
35973
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
35974
|
+
body: OpenApiUtil.parseToMap(body),
|
|
35975
|
+
});
|
|
35976
|
+
let params = new $OpenApi.Params({
|
|
35977
|
+
action: "ListHistoryTasksForResourceGroup",
|
|
35978
|
+
version: "2020-05-18",
|
|
35979
|
+
protocol: "HTTPS",
|
|
35980
|
+
pathname: "/",
|
|
35981
|
+
method: "POST",
|
|
35982
|
+
authType: "AK",
|
|
35983
|
+
style: "RPC",
|
|
35984
|
+
reqBodyType: "formData",
|
|
35985
|
+
bodyType: "json",
|
|
35986
|
+
});
|
|
35987
|
+
return $tea.cast<ListHistoryTasksForResourceGroupResponse>(await this.callApi(params, req, runtime), new ListHistoryTasksForResourceGroupResponse({}));
|
|
35988
|
+
}
|
|
35989
|
+
|
|
35990
|
+
async listHistoryTasksForResourceGroup(request: ListHistoryTasksForResourceGroupRequest): Promise<ListHistoryTasksForResourceGroupResponse> {
|
|
35991
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
35992
|
+
return await this.listHistoryTasksForResourceGroupWithOptions(request, runtime);
|
|
35993
|
+
}
|
|
35994
|
+
|
|
34902
35995
|
async listInstanceAmountWithOptions(request: ListInstanceAmountRequest, runtime: $Util.RuntimeOptions): Promise<ListInstanceAmountResponse> {
|
|
34903
35996
|
Util.validateModel(request);
|
|
34904
35997
|
let body : {[key: string ]: any} = { };
|
|
@@ -35916,6 +37009,47 @@ export default class Client extends OpenApi {
|
|
|
35916
37009
|
return await this.listTopicsWithOptions(request, runtime);
|
|
35917
37010
|
}
|
|
35918
37011
|
|
|
37012
|
+
async listUsageForResourceGroupWithOptions(request: ListUsageForResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListUsageForResourceGroupResponse> {
|
|
37013
|
+
Util.validateModel(request);
|
|
37014
|
+
let body : {[key: string ]: any} = { };
|
|
37015
|
+
if (!Util.isUnset(request.endTime)) {
|
|
37016
|
+
body["EndTime"] = request.endTime;
|
|
37017
|
+
}
|
|
37018
|
+
|
|
37019
|
+
if (!Util.isUnset(request.projectEnv)) {
|
|
37020
|
+
body["ProjectEnv"] = request.projectEnv;
|
|
37021
|
+
}
|
|
37022
|
+
|
|
37023
|
+
if (!Util.isUnset(request.resourceGroupIdentifier)) {
|
|
37024
|
+
body["ResourceGroupIdentifier"] = request.resourceGroupIdentifier;
|
|
37025
|
+
}
|
|
37026
|
+
|
|
37027
|
+
if (!Util.isUnset(request.startTime)) {
|
|
37028
|
+
body["StartTime"] = request.startTime;
|
|
37029
|
+
}
|
|
37030
|
+
|
|
37031
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
37032
|
+
body: OpenApiUtil.parseToMap(body),
|
|
37033
|
+
});
|
|
37034
|
+
let params = new $OpenApi.Params({
|
|
37035
|
+
action: "ListUsageForResourceGroup",
|
|
37036
|
+
version: "2020-05-18",
|
|
37037
|
+
protocol: "HTTPS",
|
|
37038
|
+
pathname: "/",
|
|
37039
|
+
method: "POST",
|
|
37040
|
+
authType: "AK",
|
|
37041
|
+
style: "RPC",
|
|
37042
|
+
reqBodyType: "formData",
|
|
37043
|
+
bodyType: "json",
|
|
37044
|
+
});
|
|
37045
|
+
return $tea.cast<ListUsageForResourceGroupResponse>(await this.callApi(params, req, runtime), new ListUsageForResourceGroupResponse({}));
|
|
37046
|
+
}
|
|
37047
|
+
|
|
37048
|
+
async listUsageForResourceGroup(request: ListUsageForResourceGroupRequest): Promise<ListUsageForResourceGroupResponse> {
|
|
37049
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
37050
|
+
return await this.listUsageForResourceGroupWithOptions(request, runtime);
|
|
37051
|
+
}
|
|
37052
|
+
|
|
35919
37053
|
async publishDataServiceApiWithOptions(request: PublishDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<PublishDataServiceApiResponse> {
|
|
35920
37054
|
Util.validateModel(request);
|
|
35921
37055
|
let body : {[key: string ]: any} = { };
|