@alicloud/sas20181203 1.1.5 → 1.1.6
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 +63 -1
- package/dist/client.js +176 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +230 -2
package/dist/client.d.ts
CHANGED
|
@@ -3201,6 +3201,7 @@ export declare class DescribePropertyCountResponse extends $tea.Model {
|
|
|
3201
3201
|
}
|
|
3202
3202
|
export declare class DescribePropertyCronDetailRequest extends $tea.Model {
|
|
3203
3203
|
currentPage?: number;
|
|
3204
|
+
extend?: string;
|
|
3204
3205
|
pageSize?: number;
|
|
3205
3206
|
remark?: string;
|
|
3206
3207
|
source?: string;
|
|
@@ -3248,6 +3249,7 @@ export declare class DescribePropertyCronDetailResponse extends $tea.Model {
|
|
|
3248
3249
|
export declare class DescribePropertyPortDetailRequest extends $tea.Model {
|
|
3249
3250
|
bindIp?: string;
|
|
3250
3251
|
currentPage?: number;
|
|
3252
|
+
extend?: string;
|
|
3251
3253
|
pageSize?: number;
|
|
3252
3254
|
port?: string;
|
|
3253
3255
|
procName?: string;
|
|
@@ -3339,6 +3341,7 @@ export declare class DescribePropertyPortItemResponse extends $tea.Model {
|
|
|
3339
3341
|
export declare class DescribePropertyProcDetailRequest extends $tea.Model {
|
|
3340
3342
|
cmdline?: string;
|
|
3341
3343
|
currentPage?: number;
|
|
3344
|
+
extend?: string;
|
|
3342
3345
|
name?: string;
|
|
3343
3346
|
pageSize?: number;
|
|
3344
3347
|
procTimeEnd?: number;
|
|
@@ -3491,6 +3494,7 @@ export declare class DescribePropertyScaDetailResponse extends $tea.Model {
|
|
|
3491
3494
|
}
|
|
3492
3495
|
export declare class DescribePropertySoftwareDetailRequest extends $tea.Model {
|
|
3493
3496
|
currentPage?: number;
|
|
3497
|
+
extend?: string;
|
|
3494
3498
|
installTimeEnd?: number;
|
|
3495
3499
|
installTimeStart?: number;
|
|
3496
3500
|
name?: string;
|
|
@@ -3626,6 +3630,7 @@ export declare class DescribePropertyUsageNewestResponse extends $tea.Model {
|
|
|
3626
3630
|
}
|
|
3627
3631
|
export declare class DescribePropertyUserDetailRequest extends $tea.Model {
|
|
3628
3632
|
currentPage?: number;
|
|
3633
|
+
extend?: string;
|
|
3629
3634
|
isRoot?: string;
|
|
3630
3635
|
lastLoginTimeEnd?: number;
|
|
3631
3636
|
lastLoginTimeStart?: number;
|
|
@@ -5531,6 +5536,61 @@ export declare class ExportVulResponse extends $tea.Model {
|
|
|
5531
5536
|
[key: string]: any;
|
|
5532
5537
|
});
|
|
5533
5538
|
}
|
|
5539
|
+
export declare class ExportWarningRequest extends $tea.Model {
|
|
5540
|
+
dealed?: string;
|
|
5541
|
+
exportType?: string;
|
|
5542
|
+
isCleartextPwd?: number;
|
|
5543
|
+
isSummaryExport?: number;
|
|
5544
|
+
lang?: string;
|
|
5545
|
+
riskIds?: string;
|
|
5546
|
+
riskLevels?: string;
|
|
5547
|
+
riskName?: string;
|
|
5548
|
+
sourceIp?: string;
|
|
5549
|
+
statusList?: string;
|
|
5550
|
+
strategyId?: number;
|
|
5551
|
+
subTypeNames?: string;
|
|
5552
|
+
typeName?: string;
|
|
5553
|
+
typeNames?: string;
|
|
5554
|
+
uuids?: string;
|
|
5555
|
+
static names(): {
|
|
5556
|
+
[key: string]: string;
|
|
5557
|
+
};
|
|
5558
|
+
static types(): {
|
|
5559
|
+
[key: string]: any;
|
|
5560
|
+
};
|
|
5561
|
+
constructor(map?: {
|
|
5562
|
+
[key: string]: any;
|
|
5563
|
+
});
|
|
5564
|
+
}
|
|
5565
|
+
export declare class ExportWarningResponseBody extends $tea.Model {
|
|
5566
|
+
fileName?: string;
|
|
5567
|
+
id?: number;
|
|
5568
|
+
requestId?: string;
|
|
5569
|
+
static names(): {
|
|
5570
|
+
[key: string]: string;
|
|
5571
|
+
};
|
|
5572
|
+
static types(): {
|
|
5573
|
+
[key: string]: any;
|
|
5574
|
+
};
|
|
5575
|
+
constructor(map?: {
|
|
5576
|
+
[key: string]: any;
|
|
5577
|
+
});
|
|
5578
|
+
}
|
|
5579
|
+
export declare class ExportWarningResponse extends $tea.Model {
|
|
5580
|
+
headers: {
|
|
5581
|
+
[key: string]: string;
|
|
5582
|
+
};
|
|
5583
|
+
body: ExportWarningResponseBody;
|
|
5584
|
+
static names(): {
|
|
5585
|
+
[key: string]: string;
|
|
5586
|
+
};
|
|
5587
|
+
static types(): {
|
|
5588
|
+
[key: string]: any;
|
|
5589
|
+
};
|
|
5590
|
+
constructor(map?: {
|
|
5591
|
+
[key: string]: any;
|
|
5592
|
+
});
|
|
5593
|
+
}
|
|
5534
5594
|
export declare class FixCheckWarningsRequest extends $tea.Model {
|
|
5535
5595
|
checkParams?: string;
|
|
5536
5596
|
lang?: string;
|
|
@@ -10412,7 +10472,7 @@ export declare class DescribeVulListResponseBodyVulRecordsExtendContentJsonRpmEn
|
|
|
10412
10472
|
fullVersion?: string;
|
|
10413
10473
|
imageName?: string;
|
|
10414
10474
|
matchDetail?: string;
|
|
10415
|
-
matchList?: string;
|
|
10475
|
+
matchList?: string[];
|
|
10416
10476
|
name?: string;
|
|
10417
10477
|
path?: string;
|
|
10418
10478
|
pid?: string;
|
|
@@ -10907,6 +10967,8 @@ export default class Client extends OpenApi {
|
|
|
10907
10967
|
exportRecord(request: ExportRecordRequest): Promise<ExportRecordResponse>;
|
|
10908
10968
|
exportVulWithOptions(request: ExportVulRequest, runtime: $Util.RuntimeOptions): Promise<ExportVulResponse>;
|
|
10909
10969
|
exportVul(request: ExportVulRequest): Promise<ExportVulResponse>;
|
|
10970
|
+
exportWarningWithOptions(request: ExportWarningRequest, runtime: $Util.RuntimeOptions): Promise<ExportWarningResponse>;
|
|
10971
|
+
exportWarning(request: ExportWarningRequest): Promise<ExportWarningResponse>;
|
|
10910
10972
|
fixCheckWarningsWithOptions(request: FixCheckWarningsRequest, runtime: $Util.RuntimeOptions): Promise<FixCheckWarningsResponse>;
|
|
10911
10973
|
fixCheckWarnings(request: FixCheckWarningsRequest): Promise<FixCheckWarningsResponse>;
|
|
10912
10974
|
getBackupStorageCountWithOptions(runtime: $Util.RuntimeOptions): Promise<GetBackupStorageCountResponse>;
|
package/dist/client.js
CHANGED
|
@@ -4400,6 +4400,7 @@ class DescribePropertyCronDetailRequest extends $tea.Model {
|
|
|
4400
4400
|
static names() {
|
|
4401
4401
|
return {
|
|
4402
4402
|
currentPage: 'CurrentPage',
|
|
4403
|
+
extend: 'Extend',
|
|
4403
4404
|
pageSize: 'PageSize',
|
|
4404
4405
|
remark: 'Remark',
|
|
4405
4406
|
source: 'Source',
|
|
@@ -4410,6 +4411,7 @@ class DescribePropertyCronDetailRequest extends $tea.Model {
|
|
|
4410
4411
|
static types() {
|
|
4411
4412
|
return {
|
|
4412
4413
|
currentPage: 'number',
|
|
4414
|
+
extend: 'string',
|
|
4413
4415
|
pageSize: 'number',
|
|
4414
4416
|
remark: 'string',
|
|
4415
4417
|
source: 'string',
|
|
@@ -4465,6 +4467,7 @@ class DescribePropertyPortDetailRequest extends $tea.Model {
|
|
|
4465
4467
|
return {
|
|
4466
4468
|
bindIp: 'BindIp',
|
|
4467
4469
|
currentPage: 'CurrentPage',
|
|
4470
|
+
extend: 'Extend',
|
|
4468
4471
|
pageSize: 'PageSize',
|
|
4469
4472
|
port: 'Port',
|
|
4470
4473
|
procName: 'ProcName',
|
|
@@ -4476,6 +4479,7 @@ class DescribePropertyPortDetailRequest extends $tea.Model {
|
|
|
4476
4479
|
return {
|
|
4477
4480
|
bindIp: 'string',
|
|
4478
4481
|
currentPage: 'number',
|
|
4482
|
+
extend: 'string',
|
|
4479
4483
|
pageSize: 'number',
|
|
4480
4484
|
port: 'string',
|
|
4481
4485
|
procName: 'string',
|
|
@@ -4591,6 +4595,7 @@ class DescribePropertyProcDetailRequest extends $tea.Model {
|
|
|
4591
4595
|
return {
|
|
4592
4596
|
cmdline: 'Cmdline',
|
|
4593
4597
|
currentPage: 'CurrentPage',
|
|
4598
|
+
extend: 'Extend',
|
|
4594
4599
|
name: 'Name',
|
|
4595
4600
|
pageSize: 'PageSize',
|
|
4596
4601
|
procTimeEnd: 'ProcTimeEnd',
|
|
@@ -4604,6 +4609,7 @@ class DescribePropertyProcDetailRequest extends $tea.Model {
|
|
|
4604
4609
|
return {
|
|
4605
4610
|
cmdline: 'string',
|
|
4606
4611
|
currentPage: 'number',
|
|
4612
|
+
extend: 'string',
|
|
4607
4613
|
name: 'string',
|
|
4608
4614
|
pageSize: 'number',
|
|
4609
4615
|
procTimeEnd: 'number',
|
|
@@ -4812,6 +4818,7 @@ class DescribePropertySoftwareDetailRequest extends $tea.Model {
|
|
|
4812
4818
|
static names() {
|
|
4813
4819
|
return {
|
|
4814
4820
|
currentPage: 'CurrentPage',
|
|
4821
|
+
extend: 'Extend',
|
|
4815
4822
|
installTimeEnd: 'InstallTimeEnd',
|
|
4816
4823
|
installTimeStart: 'InstallTimeStart',
|
|
4817
4824
|
name: 'Name',
|
|
@@ -4825,6 +4832,7 @@ class DescribePropertySoftwareDetailRequest extends $tea.Model {
|
|
|
4825
4832
|
static types() {
|
|
4826
4833
|
return {
|
|
4827
4834
|
currentPage: 'number',
|
|
4835
|
+
extend: 'string',
|
|
4828
4836
|
installTimeEnd: 'number',
|
|
4829
4837
|
installTimeStart: 'number',
|
|
4830
4838
|
name: 'string',
|
|
@@ -4998,6 +5006,7 @@ class DescribePropertyUserDetailRequest extends $tea.Model {
|
|
|
4998
5006
|
static names() {
|
|
4999
5007
|
return {
|
|
5000
5008
|
currentPage: 'CurrentPage',
|
|
5009
|
+
extend: 'Extend',
|
|
5001
5010
|
isRoot: 'IsRoot',
|
|
5002
5011
|
lastLoginTimeEnd: 'LastLoginTimeEnd',
|
|
5003
5012
|
lastLoginTimeStart: 'LastLoginTimeStart',
|
|
@@ -5010,6 +5019,7 @@ class DescribePropertyUserDetailRequest extends $tea.Model {
|
|
|
5010
5019
|
static types() {
|
|
5011
5020
|
return {
|
|
5012
5021
|
currentPage: 'number',
|
|
5022
|
+
extend: 'string',
|
|
5013
5023
|
isRoot: 'string',
|
|
5014
5024
|
lastLoginTimeEnd: 'number',
|
|
5015
5025
|
lastLoginTimeStart: 'number',
|
|
@@ -7641,6 +7651,88 @@ class ExportVulResponse extends $tea.Model {
|
|
|
7641
7651
|
}
|
|
7642
7652
|
}
|
|
7643
7653
|
exports.ExportVulResponse = ExportVulResponse;
|
|
7654
|
+
class ExportWarningRequest extends $tea.Model {
|
|
7655
|
+
constructor(map) {
|
|
7656
|
+
super(map);
|
|
7657
|
+
}
|
|
7658
|
+
static names() {
|
|
7659
|
+
return {
|
|
7660
|
+
dealed: 'Dealed',
|
|
7661
|
+
exportType: 'ExportType',
|
|
7662
|
+
isCleartextPwd: 'IsCleartextPwd',
|
|
7663
|
+
isSummaryExport: 'IsSummaryExport',
|
|
7664
|
+
lang: 'Lang',
|
|
7665
|
+
riskIds: 'RiskIds',
|
|
7666
|
+
riskLevels: 'RiskLevels',
|
|
7667
|
+
riskName: 'RiskName',
|
|
7668
|
+
sourceIp: 'SourceIp',
|
|
7669
|
+
statusList: 'StatusList',
|
|
7670
|
+
strategyId: 'StrategyId',
|
|
7671
|
+
subTypeNames: 'SubTypeNames',
|
|
7672
|
+
typeName: 'TypeName',
|
|
7673
|
+
typeNames: 'TypeNames',
|
|
7674
|
+
uuids: 'Uuids',
|
|
7675
|
+
};
|
|
7676
|
+
}
|
|
7677
|
+
static types() {
|
|
7678
|
+
return {
|
|
7679
|
+
dealed: 'string',
|
|
7680
|
+
exportType: 'string',
|
|
7681
|
+
isCleartextPwd: 'number',
|
|
7682
|
+
isSummaryExport: 'number',
|
|
7683
|
+
lang: 'string',
|
|
7684
|
+
riskIds: 'string',
|
|
7685
|
+
riskLevels: 'string',
|
|
7686
|
+
riskName: 'string',
|
|
7687
|
+
sourceIp: 'string',
|
|
7688
|
+
statusList: 'string',
|
|
7689
|
+
strategyId: 'number',
|
|
7690
|
+
subTypeNames: 'string',
|
|
7691
|
+
typeName: 'string',
|
|
7692
|
+
typeNames: 'string',
|
|
7693
|
+
uuids: 'string',
|
|
7694
|
+
};
|
|
7695
|
+
}
|
|
7696
|
+
}
|
|
7697
|
+
exports.ExportWarningRequest = ExportWarningRequest;
|
|
7698
|
+
class ExportWarningResponseBody extends $tea.Model {
|
|
7699
|
+
constructor(map) {
|
|
7700
|
+
super(map);
|
|
7701
|
+
}
|
|
7702
|
+
static names() {
|
|
7703
|
+
return {
|
|
7704
|
+
fileName: 'FileName',
|
|
7705
|
+
id: 'Id',
|
|
7706
|
+
requestId: 'RequestId',
|
|
7707
|
+
};
|
|
7708
|
+
}
|
|
7709
|
+
static types() {
|
|
7710
|
+
return {
|
|
7711
|
+
fileName: 'string',
|
|
7712
|
+
id: 'number',
|
|
7713
|
+
requestId: 'string',
|
|
7714
|
+
};
|
|
7715
|
+
}
|
|
7716
|
+
}
|
|
7717
|
+
exports.ExportWarningResponseBody = ExportWarningResponseBody;
|
|
7718
|
+
class ExportWarningResponse extends $tea.Model {
|
|
7719
|
+
constructor(map) {
|
|
7720
|
+
super(map);
|
|
7721
|
+
}
|
|
7722
|
+
static names() {
|
|
7723
|
+
return {
|
|
7724
|
+
headers: 'headers',
|
|
7725
|
+
body: 'body',
|
|
7726
|
+
};
|
|
7727
|
+
}
|
|
7728
|
+
static types() {
|
|
7729
|
+
return {
|
|
7730
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7731
|
+
body: ExportWarningResponseBody,
|
|
7732
|
+
};
|
|
7733
|
+
}
|
|
7734
|
+
}
|
|
7735
|
+
exports.ExportWarningResponse = ExportWarningResponse;
|
|
7644
7736
|
class FixCheckWarningsRequest extends $tea.Model {
|
|
7645
7737
|
constructor(map) {
|
|
7646
7738
|
super(map);
|
|
@@ -14821,7 +14913,7 @@ class DescribeVulListResponseBodyVulRecordsExtendContentJsonRpmEntityList extend
|
|
|
14821
14913
|
fullVersion: 'string',
|
|
14822
14914
|
imageName: 'string',
|
|
14823
14915
|
matchDetail: 'string',
|
|
14824
|
-
matchList: 'string',
|
|
14916
|
+
matchList: { 'type': 'array', 'itemType': 'string' },
|
|
14825
14917
|
name: 'string',
|
|
14826
14918
|
path: 'string',
|
|
14827
14919
|
pid: 'string',
|
|
@@ -17831,6 +17923,9 @@ class Client extends openapi_client_1.default {
|
|
|
17831
17923
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
17832
17924
|
query["CurrentPage"] = request.currentPage;
|
|
17833
17925
|
}
|
|
17926
|
+
if (!tea_util_1.default.isUnset(request.extend)) {
|
|
17927
|
+
query["Extend"] = request.extend;
|
|
17928
|
+
}
|
|
17834
17929
|
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
17835
17930
|
query["PageSize"] = request.pageSize;
|
|
17836
17931
|
}
|
|
@@ -17875,6 +17970,9 @@ class Client extends openapi_client_1.default {
|
|
|
17875
17970
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
17876
17971
|
query["CurrentPage"] = request.currentPage;
|
|
17877
17972
|
}
|
|
17973
|
+
if (!tea_util_1.default.isUnset(request.extend)) {
|
|
17974
|
+
query["Extend"] = request.extend;
|
|
17975
|
+
}
|
|
17878
17976
|
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
17879
17977
|
query["PageSize"] = request.pageSize;
|
|
17880
17978
|
}
|
|
@@ -17954,6 +18052,9 @@ class Client extends openapi_client_1.default {
|
|
|
17954
18052
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
17955
18053
|
query["CurrentPage"] = request.currentPage;
|
|
17956
18054
|
}
|
|
18055
|
+
if (!tea_util_1.default.isUnset(request.extend)) {
|
|
18056
|
+
query["Extend"] = request.extend;
|
|
18057
|
+
}
|
|
17957
18058
|
if (!tea_util_1.default.isUnset(request.name)) {
|
|
17958
18059
|
query["Name"] = request.name;
|
|
17959
18060
|
}
|
|
@@ -18119,6 +18220,9 @@ class Client extends openapi_client_1.default {
|
|
|
18119
18220
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
18120
18221
|
query["CurrentPage"] = request.currentPage;
|
|
18121
18222
|
}
|
|
18223
|
+
if (!tea_util_1.default.isUnset(request.extend)) {
|
|
18224
|
+
query["Extend"] = request.extend;
|
|
18225
|
+
}
|
|
18122
18226
|
if (!tea_util_1.default.isUnset(request.installTimeEnd)) {
|
|
18123
18227
|
query["InstallTimeEnd"] = request.installTimeEnd;
|
|
18124
18228
|
}
|
|
@@ -18230,6 +18334,9 @@ class Client extends openapi_client_1.default {
|
|
|
18230
18334
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
18231
18335
|
query["CurrentPage"] = request.currentPage;
|
|
18232
18336
|
}
|
|
18337
|
+
if (!tea_util_1.default.isUnset(request.extend)) {
|
|
18338
|
+
query["Extend"] = request.extend;
|
|
18339
|
+
}
|
|
18233
18340
|
if (!tea_util_1.default.isUnset(request.isRoot)) {
|
|
18234
18341
|
query["IsRoot"] = request.isRoot;
|
|
18235
18342
|
}
|
|
@@ -19762,6 +19869,74 @@ class Client extends openapi_client_1.default {
|
|
|
19762
19869
|
let runtime = new $Util.RuntimeOptions({});
|
|
19763
19870
|
return await this.exportVulWithOptions(request, runtime);
|
|
19764
19871
|
}
|
|
19872
|
+
async exportWarningWithOptions(request, runtime) {
|
|
19873
|
+
tea_util_1.default.validateModel(request);
|
|
19874
|
+
let query = {};
|
|
19875
|
+
if (!tea_util_1.default.isUnset(request.dealed)) {
|
|
19876
|
+
query["Dealed"] = request.dealed;
|
|
19877
|
+
}
|
|
19878
|
+
if (!tea_util_1.default.isUnset(request.exportType)) {
|
|
19879
|
+
query["ExportType"] = request.exportType;
|
|
19880
|
+
}
|
|
19881
|
+
if (!tea_util_1.default.isUnset(request.isCleartextPwd)) {
|
|
19882
|
+
query["IsCleartextPwd"] = request.isCleartextPwd;
|
|
19883
|
+
}
|
|
19884
|
+
if (!tea_util_1.default.isUnset(request.isSummaryExport)) {
|
|
19885
|
+
query["IsSummaryExport"] = request.isSummaryExport;
|
|
19886
|
+
}
|
|
19887
|
+
if (!tea_util_1.default.isUnset(request.lang)) {
|
|
19888
|
+
query["Lang"] = request.lang;
|
|
19889
|
+
}
|
|
19890
|
+
if (!tea_util_1.default.isUnset(request.riskIds)) {
|
|
19891
|
+
query["RiskIds"] = request.riskIds;
|
|
19892
|
+
}
|
|
19893
|
+
if (!tea_util_1.default.isUnset(request.riskLevels)) {
|
|
19894
|
+
query["RiskLevels"] = request.riskLevels;
|
|
19895
|
+
}
|
|
19896
|
+
if (!tea_util_1.default.isUnset(request.riskName)) {
|
|
19897
|
+
query["RiskName"] = request.riskName;
|
|
19898
|
+
}
|
|
19899
|
+
if (!tea_util_1.default.isUnset(request.sourceIp)) {
|
|
19900
|
+
query["SourceIp"] = request.sourceIp;
|
|
19901
|
+
}
|
|
19902
|
+
if (!tea_util_1.default.isUnset(request.statusList)) {
|
|
19903
|
+
query["StatusList"] = request.statusList;
|
|
19904
|
+
}
|
|
19905
|
+
if (!tea_util_1.default.isUnset(request.strategyId)) {
|
|
19906
|
+
query["StrategyId"] = request.strategyId;
|
|
19907
|
+
}
|
|
19908
|
+
if (!tea_util_1.default.isUnset(request.subTypeNames)) {
|
|
19909
|
+
query["SubTypeNames"] = request.subTypeNames;
|
|
19910
|
+
}
|
|
19911
|
+
if (!tea_util_1.default.isUnset(request.typeName)) {
|
|
19912
|
+
query["TypeName"] = request.typeName;
|
|
19913
|
+
}
|
|
19914
|
+
if (!tea_util_1.default.isUnset(request.typeNames)) {
|
|
19915
|
+
query["TypeNames"] = request.typeNames;
|
|
19916
|
+
}
|
|
19917
|
+
if (!tea_util_1.default.isUnset(request.uuids)) {
|
|
19918
|
+
query["Uuids"] = request.uuids;
|
|
19919
|
+
}
|
|
19920
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19921
|
+
query: openapi_util_1.default.query(query),
|
|
19922
|
+
});
|
|
19923
|
+
let params = new $OpenApi.Params({
|
|
19924
|
+
action: "ExportWarning",
|
|
19925
|
+
version: "2018-12-03",
|
|
19926
|
+
protocol: "HTTPS",
|
|
19927
|
+
pathname: "/",
|
|
19928
|
+
method: "POST",
|
|
19929
|
+
authType: "AK",
|
|
19930
|
+
style: "RPC",
|
|
19931
|
+
reqBodyType: "formData",
|
|
19932
|
+
bodyType: "json",
|
|
19933
|
+
});
|
|
19934
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ExportWarningResponse({}));
|
|
19935
|
+
}
|
|
19936
|
+
async exportWarning(request) {
|
|
19937
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
19938
|
+
return await this.exportWarningWithOptions(request, runtime);
|
|
19939
|
+
}
|
|
19765
19940
|
async fixCheckWarningsWithOptions(request, runtime) {
|
|
19766
19941
|
tea_util_1.default.validateModel(request);
|
|
19767
19942
|
let query = {};
|