@alicloud/dataworks-public20200518 4.3.4 → 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 +542 -0
- package/dist/client.js +1006 -25
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1218 -0
package/src/client.ts
CHANGED
|
@@ -1522,6 +1522,8 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1522
1522
|
fileName?: string;
|
|
1523
1523
|
fileType?: number;
|
|
1524
1524
|
inputList?: string;
|
|
1525
|
+
inputParameters?: string;
|
|
1526
|
+
outputParameters?: string;
|
|
1525
1527
|
owner?: string;
|
|
1526
1528
|
paraValue?: string;
|
|
1527
1529
|
projectId?: number;
|
|
@@ -1551,6 +1553,8 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1551
1553
|
fileName: 'FileName',
|
|
1552
1554
|
fileType: 'FileType',
|
|
1553
1555
|
inputList: 'InputList',
|
|
1556
|
+
inputParameters: 'InputParameters',
|
|
1557
|
+
outputParameters: 'OutputParameters',
|
|
1554
1558
|
owner: 'Owner',
|
|
1555
1559
|
paraValue: 'ParaValue',
|
|
1556
1560
|
projectId: 'ProjectId',
|
|
@@ -1583,6 +1587,8 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1583
1587
|
fileName: 'string',
|
|
1584
1588
|
fileType: 'number',
|
|
1585
1589
|
inputList: 'string',
|
|
1590
|
+
inputParameters: 'string',
|
|
1591
|
+
outputParameters: 'string',
|
|
1586
1592
|
owner: 'string',
|
|
1587
1593
|
paraValue: 'string',
|
|
1588
1594
|
projectId: 'number',
|
|
@@ -6309,6 +6315,69 @@ export class GetDeploymentResponse extends $tea.Model {
|
|
|
6309
6315
|
}
|
|
6310
6316
|
}
|
|
6311
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
|
+
|
|
6312
6381
|
export class GetFileRequest extends $tea.Model {
|
|
6313
6382
|
fileId?: number;
|
|
6314
6383
|
nodeId?: number;
|
|
@@ -9234,6 +9303,72 @@ export class GetOpSensitiveDataResponse extends $tea.Model {
|
|
|
9234
9303
|
}
|
|
9235
9304
|
}
|
|
9236
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
|
+
|
|
9237
9372
|
export class GetPermissionApplyOrderDetailRequest extends $tea.Model {
|
|
9238
9373
|
flowId?: string;
|
|
9239
9374
|
static names(): { [key: string]: string } {
|
|
@@ -10656,6 +10791,168 @@ export class ListConnectionsResponse extends $tea.Model {
|
|
|
10656
10791
|
}
|
|
10657
10792
|
}
|
|
10658
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
|
+
|
|
10659
10956
|
export class ListDIProjectConfigRequest extends $tea.Model {
|
|
10660
10957
|
destinationType?: string;
|
|
10661
10958
|
projectId?: number;
|
|
@@ -11583,6 +11880,72 @@ export class ListDeploymentsResponse extends $tea.Model {
|
|
|
11583
11880
|
}
|
|
11584
11881
|
}
|
|
11585
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
|
+
|
|
11586
11949
|
export class ListFileTypeRequest extends $tea.Model {
|
|
11587
11950
|
keyword?: string;
|
|
11588
11951
|
locale?: string;
|
|
@@ -11937,6 +12300,96 @@ export class ListFoldersResponse extends $tea.Model {
|
|
|
11937
12300
|
}
|
|
11938
12301
|
}
|
|
11939
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
|
+
|
|
11940
12393
|
export class ListInstanceAmountRequest extends $tea.Model {
|
|
11941
12394
|
beginDate?: string;
|
|
11942
12395
|
endDate?: string;
|
|
@@ -13935,6 +14388,90 @@ export class ListTopicsResponse extends $tea.Model {
|
|
|
13935
14388
|
}
|
|
13936
14389
|
}
|
|
13937
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',
|
|
14411
|
+
};
|
|
14412
|
+
}
|
|
14413
|
+
|
|
14414
|
+
constructor(map?: { [key: string]: any }) {
|
|
14415
|
+
super(map);
|
|
14416
|
+
}
|
|
14417
|
+
}
|
|
14418
|
+
|
|
14419
|
+
export class ListUsageForResourceGroupResponseBody extends $tea.Model {
|
|
14420
|
+
data?: ListUsageForResourceGroupResponseBodyData[];
|
|
14421
|
+
errorCode?: string;
|
|
14422
|
+
errorMessage?: string;
|
|
14423
|
+
httpStatusCode?: number;
|
|
14424
|
+
requestId?: string;
|
|
14425
|
+
success?: boolean;
|
|
14426
|
+
static names(): { [key: string]: string } {
|
|
14427
|
+
return {
|
|
14428
|
+
data: 'Data',
|
|
14429
|
+
errorCode: 'ErrorCode',
|
|
14430
|
+
errorMessage: 'ErrorMessage',
|
|
14431
|
+
httpStatusCode: 'HttpStatusCode',
|
|
14432
|
+
requestId: 'RequestId',
|
|
14433
|
+
success: 'Success',
|
|
14434
|
+
};
|
|
14435
|
+
}
|
|
14436
|
+
|
|
14437
|
+
static types(): { [key: string]: any } {
|
|
14438
|
+
return {
|
|
14439
|
+
data: { 'type': 'array', 'itemType': ListUsageForResourceGroupResponseBodyData },
|
|
14440
|
+
errorCode: 'string',
|
|
14441
|
+
errorMessage: 'string',
|
|
14442
|
+
httpStatusCode: 'number',
|
|
14443
|
+
requestId: 'string',
|
|
14444
|
+
success: 'boolean',
|
|
14445
|
+
};
|
|
14446
|
+
}
|
|
14447
|
+
|
|
14448
|
+
constructor(map?: { [key: string]: any }) {
|
|
14449
|
+
super(map);
|
|
14450
|
+
}
|
|
14451
|
+
}
|
|
14452
|
+
|
|
14453
|
+
export class ListUsageForResourceGroupResponse extends $tea.Model {
|
|
14454
|
+
headers: { [key: string]: string };
|
|
14455
|
+
body: ListUsageForResourceGroupResponseBody;
|
|
14456
|
+
static names(): { [key: string]: string } {
|
|
14457
|
+
return {
|
|
14458
|
+
headers: 'headers',
|
|
14459
|
+
body: 'body',
|
|
14460
|
+
};
|
|
14461
|
+
}
|
|
14462
|
+
|
|
14463
|
+
static types(): { [key: string]: any } {
|
|
14464
|
+
return {
|
|
14465
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14466
|
+
body: ListUsageForResourceGroupResponseBody,
|
|
14467
|
+
};
|
|
14468
|
+
}
|
|
14469
|
+
|
|
14470
|
+
constructor(map?: { [key: string]: any }) {
|
|
14471
|
+
super(map);
|
|
14472
|
+
}
|
|
14473
|
+
}
|
|
14474
|
+
|
|
13938
14475
|
export class PublishDataServiceApiRequest extends $tea.Model {
|
|
13939
14476
|
apiId?: number;
|
|
13940
14477
|
projectId?: number;
|
|
@@ -16541,7 +17078,9 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
16541
17078
|
fileId?: number;
|
|
16542
17079
|
fileName?: string;
|
|
16543
17080
|
inputList?: string;
|
|
17081
|
+
inputParameters?: string;
|
|
16544
17082
|
outputList?: string;
|
|
17083
|
+
outputParameters?: string;
|
|
16545
17084
|
owner?: string;
|
|
16546
17085
|
paraValue?: string;
|
|
16547
17086
|
projectId?: number;
|
|
@@ -16570,7 +17109,9 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
16570
17109
|
fileId: 'FileId',
|
|
16571
17110
|
fileName: 'FileName',
|
|
16572
17111
|
inputList: 'InputList',
|
|
17112
|
+
inputParameters: 'InputParameters',
|
|
16573
17113
|
outputList: 'OutputList',
|
|
17114
|
+
outputParameters: 'OutputParameters',
|
|
16574
17115
|
owner: 'Owner',
|
|
16575
17116
|
paraValue: 'ParaValue',
|
|
16576
17117
|
projectId: 'ProjectId',
|
|
@@ -16602,7 +17143,9 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
16602
17143
|
fileId: 'number',
|
|
16603
17144
|
fileName: 'string',
|
|
16604
17145
|
inputList: 'string',
|
|
17146
|
+
inputParameters: 'string',
|
|
16605
17147
|
outputList: 'string',
|
|
17148
|
+
outputParameters: 'string',
|
|
16606
17149
|
owner: 'string',
|
|
16607
17150
|
paraValue: 'string',
|
|
16608
17151
|
projectId: 'number',
|
|
@@ -20336,6 +20879,99 @@ export class GetDeploymentResponseBodyData extends $tea.Model {
|
|
|
20336
20879
|
}
|
|
20337
20880
|
}
|
|
20338
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
|
+
|
|
20339
20975
|
export class GetFileResponseBodyDataFile extends $tea.Model {
|
|
20340
20976
|
advancedSettings?: string;
|
|
20341
20977
|
autoParsing?: boolean;
|
|
@@ -20440,6 +21076,28 @@ export class GetFileResponseBodyDataNodeConfigurationInputList extends $tea.Mode
|
|
|
20440
21076
|
}
|
|
20441
21077
|
}
|
|
20442
21078
|
|
|
21079
|
+
export class GetFileResponseBodyDataNodeConfigurationInputParameters extends $tea.Model {
|
|
21080
|
+
parameterName?: string;
|
|
21081
|
+
valueSource?: string;
|
|
21082
|
+
static names(): { [key: string]: string } {
|
|
21083
|
+
return {
|
|
21084
|
+
parameterName: 'ParameterName',
|
|
21085
|
+
valueSource: 'ValueSource',
|
|
21086
|
+
};
|
|
21087
|
+
}
|
|
21088
|
+
|
|
21089
|
+
static types(): { [key: string]: any } {
|
|
21090
|
+
return {
|
|
21091
|
+
parameterName: 'string',
|
|
21092
|
+
valueSource: 'string',
|
|
21093
|
+
};
|
|
21094
|
+
}
|
|
21095
|
+
|
|
21096
|
+
constructor(map?: { [key: string]: any }) {
|
|
21097
|
+
super(map);
|
|
21098
|
+
}
|
|
21099
|
+
}
|
|
21100
|
+
|
|
20443
21101
|
export class GetFileResponseBodyDataNodeConfigurationOutputList extends $tea.Model {
|
|
20444
21102
|
output?: string;
|
|
20445
21103
|
refTableName?: string;
|
|
@@ -20462,6 +21120,34 @@ export class GetFileResponseBodyDataNodeConfigurationOutputList extends $tea.Mod
|
|
|
20462
21120
|
}
|
|
20463
21121
|
}
|
|
20464
21122
|
|
|
21123
|
+
export class GetFileResponseBodyDataNodeConfigurationOutputParameters extends $tea.Model {
|
|
21124
|
+
description?: string;
|
|
21125
|
+
parameterName?: string;
|
|
21126
|
+
type?: string;
|
|
21127
|
+
value?: string;
|
|
21128
|
+
static names(): { [key: string]: string } {
|
|
21129
|
+
return {
|
|
21130
|
+
description: 'Description',
|
|
21131
|
+
parameterName: 'ParameterName',
|
|
21132
|
+
type: 'Type',
|
|
21133
|
+
value: 'Value',
|
|
21134
|
+
};
|
|
21135
|
+
}
|
|
21136
|
+
|
|
21137
|
+
static types(): { [key: string]: any } {
|
|
21138
|
+
return {
|
|
21139
|
+
description: 'string',
|
|
21140
|
+
parameterName: 'string',
|
|
21141
|
+
type: 'string',
|
|
21142
|
+
value: 'string',
|
|
21143
|
+
};
|
|
21144
|
+
}
|
|
21145
|
+
|
|
21146
|
+
constructor(map?: { [key: string]: any }) {
|
|
21147
|
+
super(map);
|
|
21148
|
+
}
|
|
21149
|
+
}
|
|
21150
|
+
|
|
20465
21151
|
export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
20466
21152
|
autoRerunIntervalMillis?: number;
|
|
20467
21153
|
autoRerunTimes?: number;
|
|
@@ -20471,7 +21157,9 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
20471
21157
|
dependentType?: string;
|
|
20472
21158
|
endEffectDate?: number;
|
|
20473
21159
|
inputList?: GetFileResponseBodyDataNodeConfigurationInputList[];
|
|
21160
|
+
inputParameters?: GetFileResponseBodyDataNodeConfigurationInputParameters[];
|
|
20474
21161
|
outputList?: GetFileResponseBodyDataNodeConfigurationOutputList[];
|
|
21162
|
+
outputParameters?: GetFileResponseBodyDataNodeConfigurationOutputParameters[];
|
|
20475
21163
|
paraValue?: string;
|
|
20476
21164
|
rerunMode?: string;
|
|
20477
21165
|
resourceGroupId?: number;
|
|
@@ -20489,7 +21177,9 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
20489
21177
|
dependentType: 'DependentType',
|
|
20490
21178
|
endEffectDate: 'EndEffectDate',
|
|
20491
21179
|
inputList: 'InputList',
|
|
21180
|
+
inputParameters: 'InputParameters',
|
|
20492
21181
|
outputList: 'OutputList',
|
|
21182
|
+
outputParameters: 'OutputParameters',
|
|
20493
21183
|
paraValue: 'ParaValue',
|
|
20494
21184
|
rerunMode: 'RerunMode',
|
|
20495
21185
|
resourceGroupId: 'ResourceGroupId',
|
|
@@ -20510,7 +21200,9 @@ export class GetFileResponseBodyDataNodeConfiguration extends $tea.Model {
|
|
|
20510
21200
|
dependentType: 'string',
|
|
20511
21201
|
endEffectDate: 'number',
|
|
20512
21202
|
inputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputList },
|
|
21203
|
+
inputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputParameters },
|
|
20513
21204
|
outputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputList },
|
|
21205
|
+
outputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputParameters },
|
|
20514
21206
|
paraValue: 'string',
|
|
20515
21207
|
rerunMode: 'string',
|
|
20516
21208
|
resourceGroupId: 'number',
|
|
@@ -24265,6 +24957,93 @@ export class ListConnectionsResponseBodyData extends $tea.Model {
|
|
|
24265
24957
|
}
|
|
24266
24958
|
}
|
|
24267
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
|
+
|
|
24268
25047
|
export class ListDIProjectConfigResponseBodyData extends $tea.Model {
|
|
24269
25048
|
config?: string;
|
|
24270
25049
|
static names(): { [key: string]: string } {
|
|
@@ -25892,6 +26671,90 @@ export class ListDeploymentsResponseBodyData extends $tea.Model {
|
|
|
25892
26671
|
}
|
|
25893
26672
|
}
|
|
25894
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
|
+
|
|
25895
26758
|
export class ListFileTypeResponseBodyNodeTypeInfoListNodeTypeInfo extends $tea.Model {
|
|
25896
26759
|
nodeType?: number;
|
|
25897
26760
|
nodeTypeName?: string;
|
|
@@ -26182,6 +27045,68 @@ export class ListFoldersResponseBodyData extends $tea.Model {
|
|
|
26182
27045
|
}
|
|
26183
27046
|
}
|
|
26184
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',
|
|
27074
|
+
};
|
|
27075
|
+
}
|
|
27076
|
+
|
|
27077
|
+
constructor(map?: { [key: string]: any }) {
|
|
27078
|
+
super(map);
|
|
27079
|
+
}
|
|
27080
|
+
}
|
|
27081
|
+
|
|
27082
|
+
export class ListHistoryTasksForResourceGroupResponseBodyData extends $tea.Model {
|
|
27083
|
+
pageNum?: number;
|
|
27084
|
+
pageSize?: number;
|
|
27085
|
+
tasks?: ListHistoryTasksForResourceGroupResponseBodyDataTasks[];
|
|
27086
|
+
totalNum?: number;
|
|
27087
|
+
static names(): { [key: string]: string } {
|
|
27088
|
+
return {
|
|
27089
|
+
pageNum: 'PageNum',
|
|
27090
|
+
pageSize: 'PageSize',
|
|
27091
|
+
tasks: 'Tasks',
|
|
27092
|
+
totalNum: 'TotalNum',
|
|
27093
|
+
};
|
|
27094
|
+
}
|
|
27095
|
+
|
|
27096
|
+
static types(): { [key: string]: any } {
|
|
27097
|
+
return {
|
|
27098
|
+
pageNum: 'number',
|
|
27099
|
+
pageSize: 'number',
|
|
27100
|
+
tasks: { 'type': 'array', 'itemType': ListHistoryTasksForResourceGroupResponseBodyDataTasks },
|
|
27101
|
+
totalNum: 'number',
|
|
27102
|
+
};
|
|
27103
|
+
}
|
|
27104
|
+
|
|
27105
|
+
constructor(map?: { [key: string]: any }) {
|
|
27106
|
+
super(map);
|
|
27107
|
+
}
|
|
27108
|
+
}
|
|
27109
|
+
|
|
26185
27110
|
export class ListInstanceAmountResponseBodyInstanceCounts extends $tea.Model {
|
|
26186
27111
|
count?: number;
|
|
26187
27112
|
date?: number;
|
|
@@ -28116,6 +29041,28 @@ export class ListTopicsResponseBodyData extends $tea.Model {
|
|
|
28116
29041
|
}
|
|
28117
29042
|
}
|
|
28118
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
|
+
|
|
28119
29066
|
export class QueryDISyncTaskConfigProcessResultResponseBodyData extends $tea.Model {
|
|
28120
29067
|
message?: string;
|
|
28121
29068
|
status?: string;
|
|
@@ -29610,6 +30557,14 @@ export default class Client extends OpenApi {
|
|
|
29610
30557
|
body["InputList"] = request.inputList;
|
|
29611
30558
|
}
|
|
29612
30559
|
|
|
30560
|
+
if (!Util.isUnset(request.inputParameters)) {
|
|
30561
|
+
body["InputParameters"] = request.inputParameters;
|
|
30562
|
+
}
|
|
30563
|
+
|
|
30564
|
+
if (!Util.isUnset(request.outputParameters)) {
|
|
30565
|
+
body["OutputParameters"] = request.outputParameters;
|
|
30566
|
+
}
|
|
30567
|
+
|
|
29613
30568
|
if (!Util.isUnset(request.owner)) {
|
|
29614
30569
|
body["Owner"] = request.owner;
|
|
29615
30570
|
}
|
|
@@ -32121,6 +33076,35 @@ export default class Client extends OpenApi {
|
|
|
32121
33076
|
return await this.getDeploymentWithOptions(request, runtime);
|
|
32122
33077
|
}
|
|
32123
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
|
+
|
|
32124
33108
|
async getFileWithOptions(request: GetFileRequest, runtime: $Util.RuntimeOptions): Promise<GetFileResponse> {
|
|
32125
33109
|
Util.validateModel(request);
|
|
32126
33110
|
let body : {[key: string ]: any} = { };
|
|
@@ -33458,6 +34442,39 @@ export default class Client extends OpenApi {
|
|
|
33458
34442
|
return await this.getOpSensitiveDataWithOptions(request, runtime);
|
|
33459
34443
|
}
|
|
33460
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
|
+
|
|
33461
34478
|
async getPermissionApplyOrderDetailWithOptions(request: GetPermissionApplyOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetPermissionApplyOrderDetailResponse> {
|
|
33462
34479
|
Util.validateModel(request);
|
|
33463
34480
|
let query = { };
|
|
@@ -34124,6 +35141,84 @@ export default class Client extends OpenApi {
|
|
|
34124
35141
|
return await this.listConnectionsWithOptions(request, runtime);
|
|
34125
35142
|
}
|
|
34126
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
|
+
|
|
34127
35222
|
async listDIProjectConfigWithOptions(request: ListDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListDIProjectConfigResponse> {
|
|
34128
35223
|
Util.validateModel(request);
|
|
34129
35224
|
let query = { };
|
|
@@ -34619,6 +35714,31 @@ export default class Client extends OpenApi {
|
|
|
34619
35714
|
return await this.listDeploymentsWithOptions(request, runtime);
|
|
34620
35715
|
}
|
|
34621
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
|
+
|
|
34622
35742
|
async listFileTypeWithOptions(request: ListFileTypeRequest, runtime: $Util.RuntimeOptions): Promise<ListFileTypeResponse> {
|
|
34623
35743
|
Util.validateModel(request);
|
|
34624
35744
|
let body : {[key: string ]: any} = { };
|
|
@@ -34823,6 +35943,55 @@ export default class Client extends OpenApi {
|
|
|
34823
35943
|
return await this.listFoldersWithOptions(request, runtime);
|
|
34824
35944
|
}
|
|
34825
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
|
+
|
|
34826
35995
|
async listInstanceAmountWithOptions(request: ListInstanceAmountRequest, runtime: $Util.RuntimeOptions): Promise<ListInstanceAmountResponse> {
|
|
34827
35996
|
Util.validateModel(request);
|
|
34828
35997
|
let body : {[key: string ]: any} = { };
|
|
@@ -35840,6 +37009,47 @@ export default class Client extends OpenApi {
|
|
|
35840
37009
|
return await this.listTopicsWithOptions(request, runtime);
|
|
35841
37010
|
}
|
|
35842
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
|
+
|
|
35843
37053
|
async publishDataServiceApiWithOptions(request: PublishDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<PublishDataServiceApiResponse> {
|
|
35844
37054
|
Util.validateModel(request);
|
|
35845
37055
|
let body : {[key: string ]: any} = { };
|
|
@@ -37276,10 +38486,18 @@ export default class Client extends OpenApi {
|
|
|
37276
38486
|
body["InputList"] = request.inputList;
|
|
37277
38487
|
}
|
|
37278
38488
|
|
|
38489
|
+
if (!Util.isUnset(request.inputParameters)) {
|
|
38490
|
+
body["InputParameters"] = request.inputParameters;
|
|
38491
|
+
}
|
|
38492
|
+
|
|
37279
38493
|
if (!Util.isUnset(request.outputList)) {
|
|
37280
38494
|
body["OutputList"] = request.outputList;
|
|
37281
38495
|
}
|
|
37282
38496
|
|
|
38497
|
+
if (!Util.isUnset(request.outputParameters)) {
|
|
38498
|
+
body["OutputParameters"] = request.outputParameters;
|
|
38499
|
+
}
|
|
38500
|
+
|
|
37283
38501
|
if (!Util.isUnset(request.owner)) {
|
|
37284
38502
|
body["Owner"] = request.owner;
|
|
37285
38503
|
}
|