@alicloud/cloudapi20160714 2.1.5 → 2.2.0
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 +738 -0
- package/dist/client.js +1442 -29
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1844 -31
package/dist/client.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare class AbolishApiResponse extends $tea.Model {
|
|
|
35
35
|
headers: {
|
|
36
36
|
[key: string]: string;
|
|
37
37
|
};
|
|
38
|
+
statusCode: number;
|
|
38
39
|
body: AbolishApiResponseBody;
|
|
39
40
|
static names(): {
|
|
40
41
|
[key: string]: string;
|
|
@@ -46,6 +47,48 @@ export declare class AbolishApiResponse extends $tea.Model {
|
|
|
46
47
|
[key: string]: any;
|
|
47
48
|
});
|
|
48
49
|
}
|
|
50
|
+
export declare class AddAccessControlListEntryRequest extends $tea.Model {
|
|
51
|
+
aclEntrys?: string;
|
|
52
|
+
aclId?: string;
|
|
53
|
+
securityToken?: string;
|
|
54
|
+
static names(): {
|
|
55
|
+
[key: string]: string;
|
|
56
|
+
};
|
|
57
|
+
static types(): {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
};
|
|
60
|
+
constructor(map?: {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
export declare class AddAccessControlListEntryResponseBody extends $tea.Model {
|
|
65
|
+
requestId?: string;
|
|
66
|
+
static names(): {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
69
|
+
static types(): {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
};
|
|
72
|
+
constructor(map?: {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
export declare class AddAccessControlListEntryResponse extends $tea.Model {
|
|
77
|
+
headers: {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
statusCode: number;
|
|
81
|
+
body: AddAccessControlListEntryResponseBody;
|
|
82
|
+
static names(): {
|
|
83
|
+
[key: string]: string;
|
|
84
|
+
};
|
|
85
|
+
static types(): {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
};
|
|
88
|
+
constructor(map?: {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
});
|
|
91
|
+
}
|
|
49
92
|
export declare class AddIpControlPolicyItemRequest extends $tea.Model {
|
|
50
93
|
appId?: string;
|
|
51
94
|
cidrIp?: string;
|
|
@@ -78,6 +121,7 @@ export declare class AddIpControlPolicyItemResponse extends $tea.Model {
|
|
|
78
121
|
headers: {
|
|
79
122
|
[key: string]: string;
|
|
80
123
|
};
|
|
124
|
+
statusCode: number;
|
|
81
125
|
body: AddIpControlPolicyItemResponseBody;
|
|
82
126
|
static names(): {
|
|
83
127
|
[key: string]: string;
|
|
@@ -121,6 +165,7 @@ export declare class AddTrafficSpecialControlResponse extends $tea.Model {
|
|
|
121
165
|
headers: {
|
|
122
166
|
[key: string]: string;
|
|
123
167
|
};
|
|
168
|
+
statusCode: number;
|
|
124
169
|
body: AddTrafficSpecialControlResponseBody;
|
|
125
170
|
static names(): {
|
|
126
171
|
[key: string]: string;
|
|
@@ -165,6 +210,7 @@ export declare class AttachPluginResponse extends $tea.Model {
|
|
|
165
210
|
headers: {
|
|
166
211
|
[key: string]: string;
|
|
167
212
|
};
|
|
213
|
+
statusCode: number;
|
|
168
214
|
body: AttachPluginResponseBody;
|
|
169
215
|
static names(): {
|
|
170
216
|
[key: string]: string;
|
|
@@ -206,6 +252,7 @@ export declare class BatchAbolishApisResponse extends $tea.Model {
|
|
|
206
252
|
headers: {
|
|
207
253
|
[key: string]: string;
|
|
208
254
|
};
|
|
255
|
+
statusCode: number;
|
|
209
256
|
body: BatchAbolishApisResponseBody;
|
|
210
257
|
static names(): {
|
|
211
258
|
[key: string]: string;
|
|
@@ -249,6 +296,7 @@ export declare class BatchDeployApisResponse extends $tea.Model {
|
|
|
249
296
|
headers: {
|
|
250
297
|
[key: string]: string;
|
|
251
298
|
};
|
|
299
|
+
statusCode: number;
|
|
252
300
|
body: BatchDeployApisResponseBody;
|
|
253
301
|
static names(): {
|
|
254
302
|
[key: string]: string;
|
|
@@ -260,6 +308,47 @@ export declare class BatchDeployApisResponse extends $tea.Model {
|
|
|
260
308
|
[key: string]: any;
|
|
261
309
|
});
|
|
262
310
|
}
|
|
311
|
+
export declare class CreateAccessControlListRequest extends $tea.Model {
|
|
312
|
+
aclName?: string;
|
|
313
|
+
securityToken?: string;
|
|
314
|
+
static names(): {
|
|
315
|
+
[key: string]: string;
|
|
316
|
+
};
|
|
317
|
+
static types(): {
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
};
|
|
320
|
+
constructor(map?: {
|
|
321
|
+
[key: string]: any;
|
|
322
|
+
});
|
|
323
|
+
}
|
|
324
|
+
export declare class CreateAccessControlListResponseBody extends $tea.Model {
|
|
325
|
+
requestId?: string;
|
|
326
|
+
static names(): {
|
|
327
|
+
[key: string]: string;
|
|
328
|
+
};
|
|
329
|
+
static types(): {
|
|
330
|
+
[key: string]: any;
|
|
331
|
+
};
|
|
332
|
+
constructor(map?: {
|
|
333
|
+
[key: string]: any;
|
|
334
|
+
});
|
|
335
|
+
}
|
|
336
|
+
export declare class CreateAccessControlListResponse extends $tea.Model {
|
|
337
|
+
headers: {
|
|
338
|
+
[key: string]: string;
|
|
339
|
+
};
|
|
340
|
+
statusCode: number;
|
|
341
|
+
body: CreateAccessControlListResponseBody;
|
|
342
|
+
static names(): {
|
|
343
|
+
[key: string]: string;
|
|
344
|
+
};
|
|
345
|
+
static types(): {
|
|
346
|
+
[key: string]: any;
|
|
347
|
+
};
|
|
348
|
+
constructor(map?: {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
});
|
|
351
|
+
}
|
|
263
352
|
export declare class CreateApiRequest extends $tea.Model {
|
|
264
353
|
allowSignatureMethod?: string;
|
|
265
354
|
apiName?: string;
|
|
@@ -315,6 +404,7 @@ export declare class CreateApiResponse extends $tea.Model {
|
|
|
315
404
|
headers: {
|
|
316
405
|
[key: string]: string;
|
|
317
406
|
};
|
|
407
|
+
statusCode: number;
|
|
318
408
|
body: CreateApiResponseBody;
|
|
319
409
|
static names(): {
|
|
320
410
|
[key: string]: string;
|
|
@@ -367,6 +457,7 @@ export declare class CreateApiGroupResponse extends $tea.Model {
|
|
|
367
457
|
headers: {
|
|
368
458
|
[key: string]: string;
|
|
369
459
|
};
|
|
460
|
+
statusCode: number;
|
|
370
461
|
body: CreateApiGroupResponseBody;
|
|
371
462
|
static names(): {
|
|
372
463
|
[key: string]: string;
|
|
@@ -412,6 +503,7 @@ export declare class CreateApiStageVariableResponse extends $tea.Model {
|
|
|
412
503
|
headers: {
|
|
413
504
|
[key: string]: string;
|
|
414
505
|
};
|
|
506
|
+
statusCode: number;
|
|
415
507
|
body: CreateApiStageVariableResponseBody;
|
|
416
508
|
static names(): {
|
|
417
509
|
[key: string]: string;
|
|
@@ -457,6 +549,7 @@ export declare class CreateAppResponse extends $tea.Model {
|
|
|
457
549
|
headers: {
|
|
458
550
|
[key: string]: string;
|
|
459
551
|
};
|
|
552
|
+
statusCode: number;
|
|
460
553
|
body: CreateAppResponseBody;
|
|
461
554
|
static names(): {
|
|
462
555
|
[key: string]: string;
|
|
@@ -501,6 +594,7 @@ export declare class CreateBackendResponse extends $tea.Model {
|
|
|
501
594
|
headers: {
|
|
502
595
|
[key: string]: string;
|
|
503
596
|
};
|
|
597
|
+
statusCode: number;
|
|
504
598
|
body: CreateBackendResponseBody;
|
|
505
599
|
static names(): {
|
|
506
600
|
[key: string]: string;
|
|
@@ -546,6 +640,7 @@ export declare class CreateBackendModelResponse extends $tea.Model {
|
|
|
546
640
|
headers: {
|
|
547
641
|
[key: string]: string;
|
|
548
642
|
};
|
|
643
|
+
statusCode: number;
|
|
549
644
|
body: CreateBackendModelResponseBody;
|
|
550
645
|
static names(): {
|
|
551
646
|
[key: string]: string;
|
|
@@ -594,6 +689,7 @@ export declare class CreateInstanceResponse extends $tea.Model {
|
|
|
594
689
|
headers: {
|
|
595
690
|
[key: string]: string;
|
|
596
691
|
};
|
|
692
|
+
statusCode: number;
|
|
597
693
|
body: CreateInstanceResponseBody;
|
|
598
694
|
static names(): {
|
|
599
695
|
[key: string]: string;
|
|
@@ -635,6 +731,7 @@ export declare class CreateIntranetDomainResponse extends $tea.Model {
|
|
|
635
731
|
headers: {
|
|
636
732
|
[key: string]: string;
|
|
637
733
|
};
|
|
734
|
+
statusCode: number;
|
|
638
735
|
body: CreateIntranetDomainResponseBody;
|
|
639
736
|
static names(): {
|
|
640
737
|
[key: string]: string;
|
|
@@ -679,6 +776,7 @@ export declare class CreateIpControlResponse extends $tea.Model {
|
|
|
679
776
|
headers: {
|
|
680
777
|
[key: string]: string;
|
|
681
778
|
};
|
|
779
|
+
statusCode: number;
|
|
682
780
|
body: CreateIpControlResponseBody;
|
|
683
781
|
static names(): {
|
|
684
782
|
[key: string]: string;
|
|
@@ -721,6 +819,7 @@ export declare class CreateLogConfigResponse extends $tea.Model {
|
|
|
721
819
|
headers: {
|
|
722
820
|
[key: string]: string;
|
|
723
821
|
};
|
|
822
|
+
statusCode: number;
|
|
724
823
|
body: CreateLogConfigResponseBody;
|
|
725
824
|
static names(): {
|
|
726
825
|
[key: string]: string;
|
|
@@ -772,6 +871,7 @@ export declare class CreateModelResponse extends $tea.Model {
|
|
|
772
871
|
headers: {
|
|
773
872
|
[key: string]: string;
|
|
774
873
|
};
|
|
874
|
+
statusCode: number;
|
|
775
875
|
body: CreateModelResponseBody;
|
|
776
876
|
static names(): {
|
|
777
877
|
[key: string]: string;
|
|
@@ -815,6 +915,7 @@ export declare class CreateMonitorGroupResponse extends $tea.Model {
|
|
|
815
915
|
headers: {
|
|
816
916
|
[key: string]: string;
|
|
817
917
|
};
|
|
918
|
+
statusCode: number;
|
|
818
919
|
body: CreateMonitorGroupResponseBody;
|
|
819
920
|
static names(): {
|
|
820
921
|
[key: string]: string;
|
|
@@ -861,6 +962,7 @@ export declare class CreatePluginResponse extends $tea.Model {
|
|
|
861
962
|
headers: {
|
|
862
963
|
[key: string]: string;
|
|
863
964
|
};
|
|
965
|
+
statusCode: number;
|
|
864
966
|
body: CreatePluginResponseBody;
|
|
865
967
|
static names(): {
|
|
866
968
|
[key: string]: string;
|
|
@@ -905,6 +1007,7 @@ export declare class CreateSignatureResponse extends $tea.Model {
|
|
|
905
1007
|
headers: {
|
|
906
1008
|
[key: string]: string;
|
|
907
1009
|
};
|
|
1010
|
+
statusCode: number;
|
|
908
1011
|
body: CreateSignatureResponseBody;
|
|
909
1012
|
static names(): {
|
|
910
1013
|
[key: string]: string;
|
|
@@ -951,6 +1054,7 @@ export declare class CreateTrafficControlResponse extends $tea.Model {
|
|
|
951
1054
|
headers: {
|
|
952
1055
|
[key: string]: string;
|
|
953
1056
|
};
|
|
1057
|
+
statusCode: number;
|
|
954
1058
|
body: CreateTrafficControlResponseBody;
|
|
955
1059
|
static names(): {
|
|
956
1060
|
[key: string]: string;
|
|
@@ -962,6 +1066,47 @@ export declare class CreateTrafficControlResponse extends $tea.Model {
|
|
|
962
1066
|
[key: string]: any;
|
|
963
1067
|
});
|
|
964
1068
|
}
|
|
1069
|
+
export declare class DeleteAccessControlListRequest extends $tea.Model {
|
|
1070
|
+
aclId?: string;
|
|
1071
|
+
securityToken?: string;
|
|
1072
|
+
static names(): {
|
|
1073
|
+
[key: string]: string;
|
|
1074
|
+
};
|
|
1075
|
+
static types(): {
|
|
1076
|
+
[key: string]: any;
|
|
1077
|
+
};
|
|
1078
|
+
constructor(map?: {
|
|
1079
|
+
[key: string]: any;
|
|
1080
|
+
});
|
|
1081
|
+
}
|
|
1082
|
+
export declare class DeleteAccessControlListResponseBody extends $tea.Model {
|
|
1083
|
+
requestId?: string;
|
|
1084
|
+
static names(): {
|
|
1085
|
+
[key: string]: string;
|
|
1086
|
+
};
|
|
1087
|
+
static types(): {
|
|
1088
|
+
[key: string]: any;
|
|
1089
|
+
};
|
|
1090
|
+
constructor(map?: {
|
|
1091
|
+
[key: string]: any;
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
1094
|
+
export declare class DeleteAccessControlListResponse extends $tea.Model {
|
|
1095
|
+
headers: {
|
|
1096
|
+
[key: string]: string;
|
|
1097
|
+
};
|
|
1098
|
+
statusCode: number;
|
|
1099
|
+
body: DeleteAccessControlListResponseBody;
|
|
1100
|
+
static names(): {
|
|
1101
|
+
[key: string]: string;
|
|
1102
|
+
};
|
|
1103
|
+
static types(): {
|
|
1104
|
+
[key: string]: any;
|
|
1105
|
+
};
|
|
1106
|
+
constructor(map?: {
|
|
1107
|
+
[key: string]: any;
|
|
1108
|
+
});
|
|
1109
|
+
}
|
|
965
1110
|
export declare class DeleteAllTrafficSpecialControlRequest extends $tea.Model {
|
|
966
1111
|
securityToken?: string;
|
|
967
1112
|
trafficControlId?: string;
|
|
@@ -991,6 +1136,7 @@ export declare class DeleteAllTrafficSpecialControlResponse extends $tea.Model {
|
|
|
991
1136
|
headers: {
|
|
992
1137
|
[key: string]: string;
|
|
993
1138
|
};
|
|
1139
|
+
statusCode: number;
|
|
994
1140
|
body: DeleteAllTrafficSpecialControlResponseBody;
|
|
995
1141
|
static names(): {
|
|
996
1142
|
[key: string]: string;
|
|
@@ -1032,6 +1178,7 @@ export declare class DeleteApiResponse extends $tea.Model {
|
|
|
1032
1178
|
headers: {
|
|
1033
1179
|
[key: string]: string;
|
|
1034
1180
|
};
|
|
1181
|
+
statusCode: number;
|
|
1035
1182
|
body: DeleteApiResponseBody;
|
|
1036
1183
|
static names(): {
|
|
1037
1184
|
[key: string]: string;
|
|
@@ -1073,6 +1220,7 @@ export declare class DeleteApiGroupResponse extends $tea.Model {
|
|
|
1073
1220
|
headers: {
|
|
1074
1221
|
[key: string]: string;
|
|
1075
1222
|
};
|
|
1223
|
+
statusCode: number;
|
|
1076
1224
|
body: DeleteApiGroupResponseBody;
|
|
1077
1225
|
static names(): {
|
|
1078
1226
|
[key: string]: string;
|
|
@@ -1115,6 +1263,7 @@ export declare class DeleteApiStageVariableResponse extends $tea.Model {
|
|
|
1115
1263
|
headers: {
|
|
1116
1264
|
[key: string]: string;
|
|
1117
1265
|
};
|
|
1266
|
+
statusCode: number;
|
|
1118
1267
|
body: DeleteApiStageVariableResponseBody;
|
|
1119
1268
|
static names(): {
|
|
1120
1269
|
[key: string]: string;
|
|
@@ -1156,6 +1305,7 @@ export declare class DeleteAppResponse extends $tea.Model {
|
|
|
1156
1305
|
headers: {
|
|
1157
1306
|
[key: string]: string;
|
|
1158
1307
|
};
|
|
1308
|
+
statusCode: number;
|
|
1159
1309
|
body: DeleteAppResponseBody;
|
|
1160
1310
|
static names(): {
|
|
1161
1311
|
[key: string]: string;
|
|
@@ -1196,6 +1346,7 @@ export declare class DeleteBackendResponse extends $tea.Model {
|
|
|
1196
1346
|
headers: {
|
|
1197
1347
|
[key: string]: string;
|
|
1198
1348
|
};
|
|
1349
|
+
statusCode: number;
|
|
1199
1350
|
body: DeleteBackendResponseBody;
|
|
1200
1351
|
static names(): {
|
|
1201
1352
|
[key: string]: string;
|
|
@@ -1239,6 +1390,7 @@ export declare class DeleteBackendModelResponse extends $tea.Model {
|
|
|
1239
1390
|
headers: {
|
|
1240
1391
|
[key: string]: string;
|
|
1241
1392
|
};
|
|
1393
|
+
statusCode: number;
|
|
1242
1394
|
body: DeleteBackendModelResponseBody;
|
|
1243
1395
|
static names(): {
|
|
1244
1396
|
[key: string]: string;
|
|
@@ -1280,6 +1432,7 @@ export declare class DeleteDomainResponse extends $tea.Model {
|
|
|
1280
1432
|
headers: {
|
|
1281
1433
|
[key: string]: string;
|
|
1282
1434
|
};
|
|
1435
|
+
statusCode: number;
|
|
1283
1436
|
body: DeleteDomainResponseBody;
|
|
1284
1437
|
static names(): {
|
|
1285
1438
|
[key: string]: string;
|
|
@@ -1322,6 +1475,7 @@ export declare class DeleteDomainCertificateResponse extends $tea.Model {
|
|
|
1322
1475
|
headers: {
|
|
1323
1476
|
[key: string]: string;
|
|
1324
1477
|
};
|
|
1478
|
+
statusCode: number;
|
|
1325
1479
|
body: DeleteDomainCertificateResponseBody;
|
|
1326
1480
|
static names(): {
|
|
1327
1481
|
[key: string]: string;
|
|
@@ -1362,6 +1516,7 @@ export declare class DeleteInstanceResponse extends $tea.Model {
|
|
|
1362
1516
|
headers: {
|
|
1363
1517
|
[key: string]: string;
|
|
1364
1518
|
};
|
|
1519
|
+
statusCode: number;
|
|
1365
1520
|
body: DeleteInstanceResponseBody;
|
|
1366
1521
|
static names(): {
|
|
1367
1522
|
[key: string]: string;
|
|
@@ -1402,6 +1557,7 @@ export declare class DeleteIpControlResponse extends $tea.Model {
|
|
|
1402
1557
|
headers: {
|
|
1403
1558
|
[key: string]: string;
|
|
1404
1559
|
};
|
|
1560
|
+
statusCode: number;
|
|
1405
1561
|
body: DeleteIpControlResponseBody;
|
|
1406
1562
|
static names(): {
|
|
1407
1563
|
[key: string]: string;
|
|
@@ -1442,6 +1598,7 @@ export declare class DeleteLogConfigResponse extends $tea.Model {
|
|
|
1442
1598
|
headers: {
|
|
1443
1599
|
[key: string]: string;
|
|
1444
1600
|
};
|
|
1601
|
+
statusCode: number;
|
|
1445
1602
|
body: DeleteLogConfigResponseBody;
|
|
1446
1603
|
static names(): {
|
|
1447
1604
|
[key: string]: string;
|
|
@@ -1482,6 +1639,7 @@ export declare class DeleteModelResponse extends $tea.Model {
|
|
|
1482
1639
|
headers: {
|
|
1483
1640
|
[key: string]: string;
|
|
1484
1641
|
};
|
|
1642
|
+
statusCode: number;
|
|
1485
1643
|
body: DeleteModelResponseBody;
|
|
1486
1644
|
static names(): {
|
|
1487
1645
|
[key: string]: string;
|
|
@@ -1523,6 +1681,7 @@ export declare class DeleteMonitorGroupResponse extends $tea.Model {
|
|
|
1523
1681
|
headers: {
|
|
1524
1682
|
[key: string]: string;
|
|
1525
1683
|
};
|
|
1684
|
+
statusCode: number;
|
|
1526
1685
|
body: DeleteMonitorGroupResponseBody;
|
|
1527
1686
|
static names(): {
|
|
1528
1687
|
[key: string]: string;
|
|
@@ -1564,6 +1723,7 @@ export declare class DeletePluginResponse extends $tea.Model {
|
|
|
1564
1723
|
headers: {
|
|
1565
1724
|
[key: string]: string;
|
|
1566
1725
|
};
|
|
1726
|
+
statusCode: number;
|
|
1567
1727
|
body: DeletePluginResponseBody;
|
|
1568
1728
|
static names(): {
|
|
1569
1729
|
[key: string]: string;
|
|
@@ -1604,6 +1764,7 @@ export declare class DeleteSignatureResponse extends $tea.Model {
|
|
|
1604
1764
|
headers: {
|
|
1605
1765
|
[key: string]: string;
|
|
1606
1766
|
};
|
|
1767
|
+
statusCode: number;
|
|
1607
1768
|
body: DeleteSignatureResponseBody;
|
|
1608
1769
|
static names(): {
|
|
1609
1770
|
[key: string]: string;
|
|
@@ -1644,6 +1805,7 @@ export declare class DeleteTrafficControlResponse extends $tea.Model {
|
|
|
1644
1805
|
headers: {
|
|
1645
1806
|
[key: string]: string;
|
|
1646
1807
|
};
|
|
1808
|
+
statusCode: number;
|
|
1647
1809
|
body: DeleteTrafficControlResponseBody;
|
|
1648
1810
|
static names(): {
|
|
1649
1811
|
[key: string]: string;
|
|
@@ -1686,6 +1848,7 @@ export declare class DeleteTrafficSpecialControlResponse extends $tea.Model {
|
|
|
1686
1848
|
headers: {
|
|
1687
1849
|
[key: string]: string;
|
|
1688
1850
|
};
|
|
1851
|
+
statusCode: number;
|
|
1689
1852
|
body: DeleteTrafficSpecialControlResponseBody;
|
|
1690
1853
|
static names(): {
|
|
1691
1854
|
[key: string]: string;
|
|
@@ -1729,6 +1892,7 @@ export declare class DeployApiResponse extends $tea.Model {
|
|
|
1729
1892
|
headers: {
|
|
1730
1893
|
[key: string]: string;
|
|
1731
1894
|
};
|
|
1895
|
+
statusCode: number;
|
|
1732
1896
|
body: DeployApiResponseBody;
|
|
1733
1897
|
static names(): {
|
|
1734
1898
|
[key: string]: string;
|
|
@@ -1770,6 +1934,7 @@ export declare class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
|
1770
1934
|
headers: {
|
|
1771
1935
|
[key: string]: string;
|
|
1772
1936
|
};
|
|
1937
|
+
statusCode: number;
|
|
1773
1938
|
body: DescribeAbolishApiTaskResponseBody;
|
|
1774
1939
|
static names(): {
|
|
1775
1940
|
[key: string]: string;
|
|
@@ -1781,6 +1946,98 @@ export declare class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
|
1781
1946
|
[key: string]: any;
|
|
1782
1947
|
});
|
|
1783
1948
|
}
|
|
1949
|
+
export declare class DescribeAccessControlListAttributeRequest extends $tea.Model {
|
|
1950
|
+
aclId?: string;
|
|
1951
|
+
securityToken?: string;
|
|
1952
|
+
static names(): {
|
|
1953
|
+
[key: string]: string;
|
|
1954
|
+
};
|
|
1955
|
+
static types(): {
|
|
1956
|
+
[key: string]: any;
|
|
1957
|
+
};
|
|
1958
|
+
constructor(map?: {
|
|
1959
|
+
[key: string]: any;
|
|
1960
|
+
});
|
|
1961
|
+
}
|
|
1962
|
+
export declare class DescribeAccessControlListAttributeResponseBody extends $tea.Model {
|
|
1963
|
+
aclEntrys?: DescribeAccessControlListAttributeResponseBodyAclEntrys;
|
|
1964
|
+
aclId?: string;
|
|
1965
|
+
aclName?: string;
|
|
1966
|
+
isUsed?: string;
|
|
1967
|
+
requestId?: string;
|
|
1968
|
+
static names(): {
|
|
1969
|
+
[key: string]: string;
|
|
1970
|
+
};
|
|
1971
|
+
static types(): {
|
|
1972
|
+
[key: string]: any;
|
|
1973
|
+
};
|
|
1974
|
+
constructor(map?: {
|
|
1975
|
+
[key: string]: any;
|
|
1976
|
+
});
|
|
1977
|
+
}
|
|
1978
|
+
export declare class DescribeAccessControlListAttributeResponse extends $tea.Model {
|
|
1979
|
+
headers: {
|
|
1980
|
+
[key: string]: string;
|
|
1981
|
+
};
|
|
1982
|
+
statusCode: number;
|
|
1983
|
+
body: DescribeAccessControlListAttributeResponseBody;
|
|
1984
|
+
static names(): {
|
|
1985
|
+
[key: string]: string;
|
|
1986
|
+
};
|
|
1987
|
+
static types(): {
|
|
1988
|
+
[key: string]: any;
|
|
1989
|
+
};
|
|
1990
|
+
constructor(map?: {
|
|
1991
|
+
[key: string]: any;
|
|
1992
|
+
});
|
|
1993
|
+
}
|
|
1994
|
+
export declare class DescribeAccessControlListsRequest extends $tea.Model {
|
|
1995
|
+
aclName?: string;
|
|
1996
|
+
pageNumber?: number;
|
|
1997
|
+
pageSize?: number;
|
|
1998
|
+
securityToken?: string;
|
|
1999
|
+
static names(): {
|
|
2000
|
+
[key: string]: string;
|
|
2001
|
+
};
|
|
2002
|
+
static types(): {
|
|
2003
|
+
[key: string]: any;
|
|
2004
|
+
};
|
|
2005
|
+
constructor(map?: {
|
|
2006
|
+
[key: string]: any;
|
|
2007
|
+
});
|
|
2008
|
+
}
|
|
2009
|
+
export declare class DescribeAccessControlListsResponseBody extends $tea.Model {
|
|
2010
|
+
acls?: DescribeAccessControlListsResponseBodyAcls;
|
|
2011
|
+
pageNumber?: number;
|
|
2012
|
+
pageSize?: number;
|
|
2013
|
+
requestId?: string;
|
|
2014
|
+
totalCount?: number;
|
|
2015
|
+
static names(): {
|
|
2016
|
+
[key: string]: string;
|
|
2017
|
+
};
|
|
2018
|
+
static types(): {
|
|
2019
|
+
[key: string]: any;
|
|
2020
|
+
};
|
|
2021
|
+
constructor(map?: {
|
|
2022
|
+
[key: string]: any;
|
|
2023
|
+
});
|
|
2024
|
+
}
|
|
2025
|
+
export declare class DescribeAccessControlListsResponse extends $tea.Model {
|
|
2026
|
+
headers: {
|
|
2027
|
+
[key: string]: string;
|
|
2028
|
+
};
|
|
2029
|
+
statusCode: number;
|
|
2030
|
+
body: DescribeAccessControlListsResponseBody;
|
|
2031
|
+
static names(): {
|
|
2032
|
+
[key: string]: string;
|
|
2033
|
+
};
|
|
2034
|
+
static types(): {
|
|
2035
|
+
[key: string]: any;
|
|
2036
|
+
};
|
|
2037
|
+
constructor(map?: {
|
|
2038
|
+
[key: string]: any;
|
|
2039
|
+
});
|
|
2040
|
+
}
|
|
1784
2041
|
export declare class DescribeApiRequest extends $tea.Model {
|
|
1785
2042
|
apiId?: string;
|
|
1786
2043
|
groupId?: string;
|
|
@@ -1846,6 +2103,7 @@ export declare class DescribeApiResponse extends $tea.Model {
|
|
|
1846
2103
|
headers: {
|
|
1847
2104
|
[key: string]: string;
|
|
1848
2105
|
};
|
|
2106
|
+
statusCode: number;
|
|
1849
2107
|
body: DescribeApiResponseBody;
|
|
1850
2108
|
static names(): {
|
|
1851
2109
|
[key: string]: string;
|
|
@@ -1907,6 +2165,7 @@ export declare class DescribeApiDocResponse extends $tea.Model {
|
|
|
1907
2165
|
headers: {
|
|
1908
2166
|
[key: string]: string;
|
|
1909
2167
|
};
|
|
2168
|
+
statusCode: number;
|
|
1910
2169
|
body: DescribeApiDocResponseBody;
|
|
1911
2170
|
static names(): {
|
|
1912
2171
|
[key: string]: string;
|
|
@@ -1978,6 +2237,7 @@ export declare class DescribeApiGroupResponse extends $tea.Model {
|
|
|
1978
2237
|
headers: {
|
|
1979
2238
|
[key: string]: string;
|
|
1980
2239
|
};
|
|
2240
|
+
statusCode: number;
|
|
1981
2241
|
body: DescribeApiGroupResponseBody;
|
|
1982
2242
|
static names(): {
|
|
1983
2243
|
[key: string]: string;
|
|
@@ -2019,6 +2279,7 @@ export declare class DescribeApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
2019
2279
|
headers: {
|
|
2020
2280
|
[key: string]: string;
|
|
2021
2281
|
};
|
|
2282
|
+
statusCode: number;
|
|
2022
2283
|
body: DescribeApiGroupVpcWhitelistResponseBody;
|
|
2023
2284
|
static names(): {
|
|
2024
2285
|
[key: string]: string;
|
|
@@ -2070,6 +2331,7 @@ export declare class DescribeApiGroupsResponse extends $tea.Model {
|
|
|
2070
2331
|
headers: {
|
|
2071
2332
|
[key: string]: string;
|
|
2072
2333
|
};
|
|
2334
|
+
statusCode: number;
|
|
2073
2335
|
body: DescribeApiGroupsResponseBody;
|
|
2074
2336
|
static names(): {
|
|
2075
2337
|
[key: string]: string;
|
|
@@ -2119,6 +2381,7 @@ export declare class DescribeApiHistoriesResponse extends $tea.Model {
|
|
|
2119
2381
|
headers: {
|
|
2120
2382
|
[key: string]: string;
|
|
2121
2383
|
};
|
|
2384
|
+
statusCode: number;
|
|
2122
2385
|
body: DescribeApiHistoriesResponseBody;
|
|
2123
2386
|
static names(): {
|
|
2124
2387
|
[key: string]: string;
|
|
@@ -2196,6 +2459,7 @@ export declare class DescribeApiHistoryResponse extends $tea.Model {
|
|
|
2196
2459
|
headers: {
|
|
2197
2460
|
[key: string]: string;
|
|
2198
2461
|
};
|
|
2462
|
+
statusCode: number;
|
|
2199
2463
|
body: DescribeApiHistoryResponseBody;
|
|
2200
2464
|
static names(): {
|
|
2201
2465
|
[key: string]: string;
|
|
@@ -2244,6 +2508,7 @@ export declare class DescribeApiIpControlsResponse extends $tea.Model {
|
|
|
2244
2508
|
headers: {
|
|
2245
2509
|
[key: string]: string;
|
|
2246
2510
|
};
|
|
2511
|
+
statusCode: number;
|
|
2247
2512
|
body: DescribeApiIpControlsResponseBody;
|
|
2248
2513
|
static names(): {
|
|
2249
2514
|
[key: string]: string;
|
|
@@ -2289,6 +2554,7 @@ export declare class DescribeApiLatencyDataResponse extends $tea.Model {
|
|
|
2289
2554
|
headers: {
|
|
2290
2555
|
[key: string]: string;
|
|
2291
2556
|
};
|
|
2557
|
+
statusCode: number;
|
|
2292
2558
|
body: DescribeApiLatencyDataResponseBody;
|
|
2293
2559
|
static names(): {
|
|
2294
2560
|
[key: string]: string;
|
|
@@ -2333,6 +2599,7 @@ export declare class DescribeApiMarketAttributesResponse extends $tea.Model {
|
|
|
2333
2599
|
headers: {
|
|
2334
2600
|
[key: string]: string;
|
|
2335
2601
|
};
|
|
2602
|
+
statusCode: number;
|
|
2336
2603
|
body: DescribeApiMarketAttributesResponseBody;
|
|
2337
2604
|
static names(): {
|
|
2338
2605
|
[key: string]: string;
|
|
@@ -2379,6 +2646,7 @@ export declare class DescribeApiQpsDataResponse extends $tea.Model {
|
|
|
2379
2646
|
headers: {
|
|
2380
2647
|
[key: string]: string;
|
|
2381
2648
|
};
|
|
2649
|
+
statusCode: number;
|
|
2382
2650
|
body: DescribeApiQpsDataResponseBody;
|
|
2383
2651
|
static names(): {
|
|
2384
2652
|
[key: string]: string;
|
|
@@ -2427,6 +2695,7 @@ export declare class DescribeApiSignaturesResponse extends $tea.Model {
|
|
|
2427
2695
|
headers: {
|
|
2428
2696
|
[key: string]: string;
|
|
2429
2697
|
};
|
|
2698
|
+
statusCode: number;
|
|
2430
2699
|
body: DescribeApiSignaturesResponseBody;
|
|
2431
2700
|
static names(): {
|
|
2432
2701
|
[key: string]: string;
|
|
@@ -2475,6 +2744,7 @@ export declare class DescribeApiTrafficControlsResponse extends $tea.Model {
|
|
|
2475
2744
|
headers: {
|
|
2476
2745
|
[key: string]: string;
|
|
2477
2746
|
};
|
|
2747
|
+
statusCode: number;
|
|
2478
2748
|
body: DescribeApiTrafficControlsResponseBody;
|
|
2479
2749
|
static names(): {
|
|
2480
2750
|
[key: string]: string;
|
|
@@ -2521,6 +2791,7 @@ export declare class DescribeApiTrafficDataResponse extends $tea.Model {
|
|
|
2521
2791
|
headers: {
|
|
2522
2792
|
[key: string]: string;
|
|
2523
2793
|
};
|
|
2794
|
+
statusCode: number;
|
|
2524
2795
|
body: DescribeApiTrafficDataResponseBody;
|
|
2525
2796
|
static names(): {
|
|
2526
2797
|
[key: string]: string;
|
|
@@ -2573,6 +2844,7 @@ export declare class DescribeApisResponse extends $tea.Model {
|
|
|
2573
2844
|
headers: {
|
|
2574
2845
|
[key: string]: string;
|
|
2575
2846
|
};
|
|
2847
|
+
statusCode: number;
|
|
2576
2848
|
body: DescribeApisResponseBody;
|
|
2577
2849
|
static names(): {
|
|
2578
2850
|
[key: string]: string;
|
|
@@ -2588,6 +2860,7 @@ export declare class DescribeApisByAppRequest extends $tea.Model {
|
|
|
2588
2860
|
apiName?: string;
|
|
2589
2861
|
apiUid?: string;
|
|
2590
2862
|
appId?: number;
|
|
2863
|
+
description?: string;
|
|
2591
2864
|
method?: string;
|
|
2592
2865
|
pageNumber?: number;
|
|
2593
2866
|
pageSize?: number;
|
|
@@ -2623,6 +2896,7 @@ export declare class DescribeApisByAppResponse extends $tea.Model {
|
|
|
2623
2896
|
headers: {
|
|
2624
2897
|
[key: string]: string;
|
|
2625
2898
|
};
|
|
2899
|
+
statusCode: number;
|
|
2626
2900
|
body: DescribeApisByAppResponseBody;
|
|
2627
2901
|
static names(): {
|
|
2628
2902
|
[key: string]: string;
|
|
@@ -2670,6 +2944,7 @@ export declare class DescribeApisByBackendResponse extends $tea.Model {
|
|
|
2670
2944
|
headers: {
|
|
2671
2945
|
[key: string]: string;
|
|
2672
2946
|
};
|
|
2947
|
+
statusCode: number;
|
|
2673
2948
|
body: DescribeApisByBackendResponseBody;
|
|
2674
2949
|
static names(): {
|
|
2675
2950
|
[key: string]: string;
|
|
@@ -2716,6 +2991,7 @@ export declare class DescribeApisByIpControlResponse extends $tea.Model {
|
|
|
2716
2991
|
headers: {
|
|
2717
2992
|
[key: string]: string;
|
|
2718
2993
|
};
|
|
2994
|
+
statusCode: number;
|
|
2719
2995
|
body: DescribeApisByIpControlResponseBody;
|
|
2720
2996
|
static names(): {
|
|
2721
2997
|
[key: string]: string;
|
|
@@ -2762,6 +3038,7 @@ export declare class DescribeApisBySignatureResponse extends $tea.Model {
|
|
|
2762
3038
|
headers: {
|
|
2763
3039
|
[key: string]: string;
|
|
2764
3040
|
};
|
|
3041
|
+
statusCode: number;
|
|
2765
3042
|
body: DescribeApisBySignatureResponseBody;
|
|
2766
3043
|
static names(): {
|
|
2767
3044
|
[key: string]: string;
|
|
@@ -2808,6 +3085,7 @@ export declare class DescribeApisByTrafficControlResponse extends $tea.Model {
|
|
|
2808
3085
|
headers: {
|
|
2809
3086
|
[key: string]: string;
|
|
2810
3087
|
};
|
|
3088
|
+
statusCode: number;
|
|
2811
3089
|
body: DescribeApisByTrafficControlResponseBody;
|
|
2812
3090
|
static names(): {
|
|
2813
3091
|
[key: string]: string;
|
|
@@ -2853,6 +3131,7 @@ export declare class DescribeAppResponse extends $tea.Model {
|
|
|
2853
3131
|
headers: {
|
|
2854
3132
|
[key: string]: string;
|
|
2855
3133
|
};
|
|
3134
|
+
statusCode: number;
|
|
2856
3135
|
body: DescribeAppResponseBody;
|
|
2857
3136
|
static names(): {
|
|
2858
3137
|
[key: string]: string;
|
|
@@ -2905,6 +3184,7 @@ export declare class DescribeAppAttributesResponse extends $tea.Model {
|
|
|
2905
3184
|
headers: {
|
|
2906
3185
|
[key: string]: string;
|
|
2907
3186
|
};
|
|
3187
|
+
statusCode: number;
|
|
2908
3188
|
body: DescribeAppAttributesResponseBody;
|
|
2909
3189
|
static names(): {
|
|
2910
3190
|
[key: string]: string;
|
|
@@ -2951,6 +3231,7 @@ export declare class DescribeAppSecurityResponse extends $tea.Model {
|
|
|
2951
3231
|
headers: {
|
|
2952
3232
|
[key: string]: string;
|
|
2953
3233
|
};
|
|
3234
|
+
statusCode: number;
|
|
2954
3235
|
body: DescribeAppSecurityResponseBody;
|
|
2955
3236
|
static names(): {
|
|
2956
3237
|
[key: string]: string;
|
|
@@ -2998,6 +3279,7 @@ export declare class DescribeAppsResponse extends $tea.Model {
|
|
|
2998
3279
|
headers: {
|
|
2999
3280
|
[key: string]: string;
|
|
3000
3281
|
};
|
|
3282
|
+
statusCode: number;
|
|
3001
3283
|
body: DescribeAppsResponseBody;
|
|
3002
3284
|
static names(): {
|
|
3003
3285
|
[key: string]: string;
|
|
@@ -3044,6 +3326,7 @@ export declare class DescribeAuthorizedApisResponse extends $tea.Model {
|
|
|
3044
3326
|
headers: {
|
|
3045
3327
|
[key: string]: string;
|
|
3046
3328
|
};
|
|
3329
|
+
statusCode: number;
|
|
3047
3330
|
body: DescribeAuthorizedApisResponseBody;
|
|
3048
3331
|
static names(): {
|
|
3049
3332
|
[key: string]: string;
|
|
@@ -3095,6 +3378,7 @@ export declare class DescribeAuthorizedAppsResponse extends $tea.Model {
|
|
|
3095
3378
|
headers: {
|
|
3096
3379
|
[key: string]: string;
|
|
3097
3380
|
};
|
|
3381
|
+
statusCode: number;
|
|
3098
3382
|
body: DescribeAuthorizedAppsResponseBody;
|
|
3099
3383
|
static names(): {
|
|
3100
3384
|
[key: string]: string;
|
|
@@ -3136,6 +3420,7 @@ export declare class DescribeBackendInfoResponse extends $tea.Model {
|
|
|
3136
3420
|
headers: {
|
|
3137
3421
|
[key: string]: string;
|
|
3138
3422
|
};
|
|
3423
|
+
statusCode: number;
|
|
3139
3424
|
body: DescribeBackendInfoResponseBody;
|
|
3140
3425
|
static names(): {
|
|
3141
3426
|
[key: string]: string;
|
|
@@ -3183,6 +3468,7 @@ export declare class DescribeBackendListResponse extends $tea.Model {
|
|
|
3183
3468
|
headers: {
|
|
3184
3469
|
[key: string]: string;
|
|
3185
3470
|
};
|
|
3471
|
+
statusCode: number;
|
|
3186
3472
|
body: DescribeBackendListResponseBody;
|
|
3187
3473
|
static names(): {
|
|
3188
3474
|
[key: string]: string;
|
|
@@ -3224,6 +3510,7 @@ export declare class DescribeDeployApiTaskResponse extends $tea.Model {
|
|
|
3224
3510
|
headers: {
|
|
3225
3511
|
[key: string]: string;
|
|
3226
3512
|
};
|
|
3513
|
+
statusCode: number;
|
|
3227
3514
|
body: DescribeDeployApiTaskResponseBody;
|
|
3228
3515
|
static names(): {
|
|
3229
3516
|
[key: string]: string;
|
|
@@ -3294,6 +3581,7 @@ export declare class DescribeDeployedApiResponse extends $tea.Model {
|
|
|
3294
3581
|
headers: {
|
|
3295
3582
|
[key: string]: string;
|
|
3296
3583
|
};
|
|
3584
|
+
statusCode: number;
|
|
3297
3585
|
body: DescribeDeployedApiResponseBody;
|
|
3298
3586
|
static names(): {
|
|
3299
3587
|
[key: string]: string;
|
|
@@ -3345,6 +3633,7 @@ export declare class DescribeDeployedApisResponse extends $tea.Model {
|
|
|
3345
3633
|
headers: {
|
|
3346
3634
|
[key: string]: string;
|
|
3347
3635
|
};
|
|
3636
|
+
statusCode: number;
|
|
3348
3637
|
body: DescribeDeployedApisResponseBody;
|
|
3349
3638
|
static names(): {
|
|
3350
3639
|
[key: string]: string;
|
|
@@ -3398,6 +3687,7 @@ export declare class DescribeDomainResponse extends $tea.Model {
|
|
|
3398
3687
|
headers: {
|
|
3399
3688
|
[key: string]: string;
|
|
3400
3689
|
};
|
|
3690
|
+
statusCode: number;
|
|
3401
3691
|
body: DescribeDomainResponseBody;
|
|
3402
3692
|
static names(): {
|
|
3403
3693
|
[key: string]: string;
|
|
@@ -3447,6 +3737,7 @@ export declare class DescribeHistoryApisResponse extends $tea.Model {
|
|
|
3447
3737
|
headers: {
|
|
3448
3738
|
[key: string]: string;
|
|
3449
3739
|
};
|
|
3740
|
+
statusCode: number;
|
|
3450
3741
|
body: DescribeHistoryApisResponseBody;
|
|
3451
3742
|
static names(): {
|
|
3452
3743
|
[key: string]: string;
|
|
@@ -3458,6 +3749,54 @@ export declare class DescribeHistoryApisResponse extends $tea.Model {
|
|
|
3458
3749
|
[key: string]: any;
|
|
3459
3750
|
});
|
|
3460
3751
|
}
|
|
3752
|
+
export declare class DescribeInstancesRequest extends $tea.Model {
|
|
3753
|
+
enableTagAuthorization?: boolean;
|
|
3754
|
+
instanceId?: string;
|
|
3755
|
+
language?: string;
|
|
3756
|
+
securityToken?: string;
|
|
3757
|
+
tag?: DescribeInstancesRequestTag[];
|
|
3758
|
+
static names(): {
|
|
3759
|
+
[key: string]: string;
|
|
3760
|
+
};
|
|
3761
|
+
static types(): {
|
|
3762
|
+
[key: string]: any;
|
|
3763
|
+
};
|
|
3764
|
+
constructor(map?: {
|
|
3765
|
+
[key: string]: any;
|
|
3766
|
+
});
|
|
3767
|
+
}
|
|
3768
|
+
export declare class DescribeInstancesResponseBody extends $tea.Model {
|
|
3769
|
+
instances?: DescribeInstancesResponseBodyInstances;
|
|
3770
|
+
pageNumber?: number;
|
|
3771
|
+
pageSize?: number;
|
|
3772
|
+
requestId?: string;
|
|
3773
|
+
totalCount?: number;
|
|
3774
|
+
static names(): {
|
|
3775
|
+
[key: string]: string;
|
|
3776
|
+
};
|
|
3777
|
+
static types(): {
|
|
3778
|
+
[key: string]: any;
|
|
3779
|
+
};
|
|
3780
|
+
constructor(map?: {
|
|
3781
|
+
[key: string]: any;
|
|
3782
|
+
});
|
|
3783
|
+
}
|
|
3784
|
+
export declare class DescribeInstancesResponse extends $tea.Model {
|
|
3785
|
+
headers: {
|
|
3786
|
+
[key: string]: string;
|
|
3787
|
+
};
|
|
3788
|
+
statusCode: number;
|
|
3789
|
+
body: DescribeInstancesResponseBody;
|
|
3790
|
+
static names(): {
|
|
3791
|
+
[key: string]: string;
|
|
3792
|
+
};
|
|
3793
|
+
static types(): {
|
|
3794
|
+
[key: string]: any;
|
|
3795
|
+
};
|
|
3796
|
+
constructor(map?: {
|
|
3797
|
+
[key: string]: any;
|
|
3798
|
+
});
|
|
3799
|
+
}
|
|
3461
3800
|
export declare class DescribeIpControlPolicyItemsRequest extends $tea.Model {
|
|
3462
3801
|
ipControlId?: string;
|
|
3463
3802
|
pageNumber?: number;
|
|
@@ -3494,6 +3833,7 @@ export declare class DescribeIpControlPolicyItemsResponse extends $tea.Model {
|
|
|
3494
3833
|
headers: {
|
|
3495
3834
|
[key: string]: string;
|
|
3496
3835
|
};
|
|
3836
|
+
statusCode: number;
|
|
3497
3837
|
body: DescribeIpControlPolicyItemsResponseBody;
|
|
3498
3838
|
static names(): {
|
|
3499
3839
|
[key: string]: string;
|
|
@@ -3542,6 +3882,7 @@ export declare class DescribeIpControlsResponse extends $tea.Model {
|
|
|
3542
3882
|
headers: {
|
|
3543
3883
|
[key: string]: string;
|
|
3544
3884
|
};
|
|
3885
|
+
statusCode: number;
|
|
3545
3886
|
body: DescribeIpControlsResponseBody;
|
|
3546
3887
|
static names(): {
|
|
3547
3888
|
[key: string]: string;
|
|
@@ -3583,6 +3924,7 @@ export declare class DescribeLogConfigResponse extends $tea.Model {
|
|
|
3583
3924
|
headers: {
|
|
3584
3925
|
[key: string]: string;
|
|
3585
3926
|
};
|
|
3927
|
+
statusCode: number;
|
|
3586
3928
|
body: DescribeLogConfigResponseBody;
|
|
3587
3929
|
static names(): {
|
|
3588
3930
|
[key: string]: string;
|
|
@@ -3624,6 +3966,7 @@ export declare class DescribeMarketRemainsQuotaResponse extends $tea.Model {
|
|
|
3624
3966
|
headers: {
|
|
3625
3967
|
[key: string]: string;
|
|
3626
3968
|
};
|
|
3969
|
+
statusCode: number;
|
|
3627
3970
|
body: DescribeMarketRemainsQuotaResponseBody;
|
|
3628
3971
|
static names(): {
|
|
3629
3972
|
[key: string]: string;
|
|
@@ -3671,6 +4014,7 @@ export declare class DescribeModelsResponse extends $tea.Model {
|
|
|
3671
4014
|
headers: {
|
|
3672
4015
|
[key: string]: string;
|
|
3673
4016
|
};
|
|
4017
|
+
statusCode: number;
|
|
3674
4018
|
body: DescribeModelsResponseBody;
|
|
3675
4019
|
static names(): {
|
|
3676
4020
|
[key: string]: string;
|
|
@@ -3712,6 +4056,7 @@ export declare class DescribePluginSchemasResponse extends $tea.Model {
|
|
|
3712
4056
|
headers: {
|
|
3713
4057
|
[key: string]: string;
|
|
3714
4058
|
};
|
|
4059
|
+
statusCode: number;
|
|
3715
4060
|
body: DescribePluginSchemasResponseBody;
|
|
3716
4061
|
static names(): {
|
|
3717
4062
|
[key: string]: string;
|
|
@@ -3754,6 +4099,7 @@ export declare class DescribePluginTemplatesResponse extends $tea.Model {
|
|
|
3754
4099
|
headers: {
|
|
3755
4100
|
[key: string]: string;
|
|
3756
4101
|
};
|
|
4102
|
+
statusCode: number;
|
|
3757
4103
|
body: DescribePluginTemplatesResponseBody;
|
|
3758
4104
|
static names(): {
|
|
3759
4105
|
[key: string]: string;
|
|
@@ -3803,6 +4149,7 @@ export declare class DescribePluginsResponse extends $tea.Model {
|
|
|
3803
4149
|
headers: {
|
|
3804
4150
|
[key: string]: string;
|
|
3805
4151
|
};
|
|
4152
|
+
statusCode: number;
|
|
3806
4153
|
body: DescribePluginsResponseBody;
|
|
3807
4154
|
static names(): {
|
|
3808
4155
|
[key: string]: string;
|
|
@@ -3849,6 +4196,7 @@ export declare class DescribePluginsByApiResponse extends $tea.Model {
|
|
|
3849
4196
|
headers: {
|
|
3850
4197
|
[key: string]: string;
|
|
3851
4198
|
};
|
|
4199
|
+
statusCode: number;
|
|
3852
4200
|
body: DescribePluginsByApiResponseBody;
|
|
3853
4201
|
static names(): {
|
|
3854
4202
|
[key: string]: string;
|
|
@@ -3896,6 +4244,7 @@ export declare class DescribePurchasedApiGroupResponse extends $tea.Model {
|
|
|
3896
4244
|
headers: {
|
|
3897
4245
|
[key: string]: string;
|
|
3898
4246
|
};
|
|
4247
|
+
statusCode: number;
|
|
3899
4248
|
body: DescribePurchasedApiGroupResponseBody;
|
|
3900
4249
|
static names(): {
|
|
3901
4250
|
[key: string]: string;
|
|
@@ -3941,6 +4290,7 @@ export declare class DescribePurchasedApiGroupsResponse extends $tea.Model {
|
|
|
3941
4290
|
headers: {
|
|
3942
4291
|
[key: string]: string;
|
|
3943
4292
|
};
|
|
4293
|
+
statusCode: number;
|
|
3944
4294
|
body: DescribePurchasedApiGroupsResponseBody;
|
|
3945
4295
|
static names(): {
|
|
3946
4296
|
[key: string]: string;
|
|
@@ -3991,6 +4341,7 @@ export declare class DescribePurchasedApisResponse extends $tea.Model {
|
|
|
3991
4341
|
headers: {
|
|
3992
4342
|
[key: string]: string;
|
|
3993
4343
|
};
|
|
4344
|
+
statusCode: number;
|
|
3994
4345
|
body: DescribePurchasedApisResponseBody;
|
|
3995
4346
|
static names(): {
|
|
3996
4347
|
[key: string]: string;
|
|
@@ -4032,6 +4383,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
4032
4383
|
headers: {
|
|
4033
4384
|
[key: string]: string;
|
|
4034
4385
|
};
|
|
4386
|
+
statusCode: number;
|
|
4035
4387
|
body: DescribeRegionsResponseBody;
|
|
4036
4388
|
static names(): {
|
|
4037
4389
|
[key: string]: string;
|
|
@@ -4079,6 +4431,7 @@ export declare class DescribeSignaturesResponse extends $tea.Model {
|
|
|
4079
4431
|
headers: {
|
|
4080
4432
|
[key: string]: string;
|
|
4081
4433
|
};
|
|
4434
|
+
statusCode: number;
|
|
4082
4435
|
body: DescribeSignaturesResponseBody;
|
|
4083
4436
|
static names(): {
|
|
4084
4437
|
[key: string]: string;
|
|
@@ -4122,6 +4475,7 @@ export declare class DescribeSignaturesByApiResponse extends $tea.Model {
|
|
|
4122
4475
|
headers: {
|
|
4123
4476
|
[key: string]: string;
|
|
4124
4477
|
};
|
|
4478
|
+
statusCode: number;
|
|
4125
4479
|
body: DescribeSignaturesByApiResponseBody;
|
|
4126
4480
|
static names(): {
|
|
4127
4481
|
[key: string]: string;
|
|
@@ -4162,6 +4516,7 @@ export declare class DescribeSystemParametersResponse extends $tea.Model {
|
|
|
4162
4516
|
headers: {
|
|
4163
4517
|
[key: string]: string;
|
|
4164
4518
|
};
|
|
4519
|
+
statusCode: number;
|
|
4165
4520
|
body: DescribeSystemParametersResponseBody;
|
|
4166
4521
|
static names(): {
|
|
4167
4522
|
[key: string]: string;
|
|
@@ -4212,6 +4567,7 @@ export declare class DescribeTrafficControlsResponse extends $tea.Model {
|
|
|
4212
4567
|
headers: {
|
|
4213
4568
|
[key: string]: string;
|
|
4214
4569
|
};
|
|
4570
|
+
statusCode: number;
|
|
4215
4571
|
body: DescribeTrafficControlsResponseBody;
|
|
4216
4572
|
static names(): {
|
|
4217
4573
|
[key: string]: string;
|
|
@@ -4255,6 +4611,7 @@ export declare class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
|
4255
4611
|
headers: {
|
|
4256
4612
|
[key: string]: string;
|
|
4257
4613
|
};
|
|
4614
|
+
statusCode: number;
|
|
4258
4615
|
body: DescribeTrafficControlsByApiResponseBody;
|
|
4259
4616
|
static names(): {
|
|
4260
4617
|
[key: string]: string;
|
|
@@ -4296,6 +4653,7 @@ export declare class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
|
4296
4653
|
headers: {
|
|
4297
4654
|
[key: string]: string;
|
|
4298
4655
|
};
|
|
4656
|
+
statusCode: number;
|
|
4299
4657
|
body: DescribeUpdateBackendTaskResponseBody;
|
|
4300
4658
|
static names(): {
|
|
4301
4659
|
[key: string]: string;
|
|
@@ -4337,6 +4695,7 @@ export declare class DescribeUpdateVpcInfoTaskResponse extends $tea.Model {
|
|
|
4337
4695
|
headers: {
|
|
4338
4696
|
[key: string]: string;
|
|
4339
4697
|
};
|
|
4698
|
+
statusCode: number;
|
|
4340
4699
|
body: DescribeUpdateVpcInfoTaskResponseBody;
|
|
4341
4700
|
static names(): {
|
|
4342
4701
|
[key: string]: string;
|
|
@@ -4387,6 +4746,7 @@ export declare class DescribeVpcAccessesResponse extends $tea.Model {
|
|
|
4387
4746
|
headers: {
|
|
4388
4747
|
[key: string]: string;
|
|
4389
4748
|
};
|
|
4749
|
+
statusCode: number;
|
|
4390
4750
|
body: DescribeVpcAccessesResponseBody;
|
|
4391
4751
|
static names(): {
|
|
4392
4752
|
[key: string]: string;
|
|
@@ -4428,6 +4788,7 @@ export declare class DescribeZonesResponse extends $tea.Model {
|
|
|
4428
4788
|
headers: {
|
|
4429
4789
|
[key: string]: string;
|
|
4430
4790
|
};
|
|
4791
|
+
statusCode: number;
|
|
4431
4792
|
body: DescribeZonesResponseBody;
|
|
4432
4793
|
static names(): {
|
|
4433
4794
|
[key: string]: string;
|
|
@@ -4471,6 +4832,7 @@ export declare class DetachPluginResponse extends $tea.Model {
|
|
|
4471
4832
|
headers: {
|
|
4472
4833
|
[key: string]: string;
|
|
4473
4834
|
};
|
|
4835
|
+
statusCode: number;
|
|
4474
4836
|
body: DetachPluginResponseBody;
|
|
4475
4837
|
static names(): {
|
|
4476
4838
|
[key: string]: string;
|
|
@@ -4482,6 +4844,48 @@ export declare class DetachPluginResponse extends $tea.Model {
|
|
|
4482
4844
|
[key: string]: any;
|
|
4483
4845
|
});
|
|
4484
4846
|
}
|
|
4847
|
+
export declare class DisableInstanceAccessControlRequest extends $tea.Model {
|
|
4848
|
+
aclId?: string;
|
|
4849
|
+
instanceId?: string;
|
|
4850
|
+
securityToken?: string;
|
|
4851
|
+
static names(): {
|
|
4852
|
+
[key: string]: string;
|
|
4853
|
+
};
|
|
4854
|
+
static types(): {
|
|
4855
|
+
[key: string]: any;
|
|
4856
|
+
};
|
|
4857
|
+
constructor(map?: {
|
|
4858
|
+
[key: string]: any;
|
|
4859
|
+
});
|
|
4860
|
+
}
|
|
4861
|
+
export declare class DisableInstanceAccessControlResponseBody extends $tea.Model {
|
|
4862
|
+
requestId?: string;
|
|
4863
|
+
static names(): {
|
|
4864
|
+
[key: string]: string;
|
|
4865
|
+
};
|
|
4866
|
+
static types(): {
|
|
4867
|
+
[key: string]: any;
|
|
4868
|
+
};
|
|
4869
|
+
constructor(map?: {
|
|
4870
|
+
[key: string]: any;
|
|
4871
|
+
});
|
|
4872
|
+
}
|
|
4873
|
+
export declare class DisableInstanceAccessControlResponse extends $tea.Model {
|
|
4874
|
+
headers: {
|
|
4875
|
+
[key: string]: string;
|
|
4876
|
+
};
|
|
4877
|
+
statusCode: number;
|
|
4878
|
+
body: DisableInstanceAccessControlResponseBody;
|
|
4879
|
+
static names(): {
|
|
4880
|
+
[key: string]: string;
|
|
4881
|
+
};
|
|
4882
|
+
static types(): {
|
|
4883
|
+
[key: string]: any;
|
|
4884
|
+
};
|
|
4885
|
+
constructor(map?: {
|
|
4886
|
+
[key: string]: any;
|
|
4887
|
+
});
|
|
4888
|
+
}
|
|
4485
4889
|
export declare class DryRunSwaggerRequest extends $tea.Model {
|
|
4486
4890
|
data?: string;
|
|
4487
4891
|
dataFormat?: string;
|
|
@@ -4539,6 +4943,7 @@ export declare class DryRunSwaggerResponse extends $tea.Model {
|
|
|
4539
4943
|
headers: {
|
|
4540
4944
|
[key: string]: string;
|
|
4541
4945
|
};
|
|
4946
|
+
statusCode: number;
|
|
4542
4947
|
body: DryRunSwaggerResponseBody;
|
|
4543
4948
|
static names(): {
|
|
4544
4949
|
[key: string]: string;
|
|
@@ -4550,6 +4955,49 @@ export declare class DryRunSwaggerResponse extends $tea.Model {
|
|
|
4550
4955
|
[key: string]: any;
|
|
4551
4956
|
});
|
|
4552
4957
|
}
|
|
4958
|
+
export declare class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
4959
|
+
aclId?: string;
|
|
4960
|
+
aclType?: string;
|
|
4961
|
+
instanceId?: string;
|
|
4962
|
+
securityToken?: string;
|
|
4963
|
+
static names(): {
|
|
4964
|
+
[key: string]: string;
|
|
4965
|
+
};
|
|
4966
|
+
static types(): {
|
|
4967
|
+
[key: string]: any;
|
|
4968
|
+
};
|
|
4969
|
+
constructor(map?: {
|
|
4970
|
+
[key: string]: any;
|
|
4971
|
+
});
|
|
4972
|
+
}
|
|
4973
|
+
export declare class EnableInstanceAccessControlResponseBody extends $tea.Model {
|
|
4974
|
+
requestId?: string;
|
|
4975
|
+
static names(): {
|
|
4976
|
+
[key: string]: string;
|
|
4977
|
+
};
|
|
4978
|
+
static types(): {
|
|
4979
|
+
[key: string]: any;
|
|
4980
|
+
};
|
|
4981
|
+
constructor(map?: {
|
|
4982
|
+
[key: string]: any;
|
|
4983
|
+
});
|
|
4984
|
+
}
|
|
4985
|
+
export declare class EnableInstanceAccessControlResponse extends $tea.Model {
|
|
4986
|
+
headers: {
|
|
4987
|
+
[key: string]: string;
|
|
4988
|
+
};
|
|
4989
|
+
statusCode: number;
|
|
4990
|
+
body: EnableInstanceAccessControlResponseBody;
|
|
4991
|
+
static names(): {
|
|
4992
|
+
[key: string]: string;
|
|
4993
|
+
};
|
|
4994
|
+
static types(): {
|
|
4995
|
+
[key: string]: any;
|
|
4996
|
+
};
|
|
4997
|
+
constructor(map?: {
|
|
4998
|
+
[key: string]: any;
|
|
4999
|
+
});
|
|
5000
|
+
}
|
|
4553
5001
|
export declare class ImportSwaggerRequest extends $tea.Model {
|
|
4554
5002
|
data?: string;
|
|
4555
5003
|
dataFormat?: string;
|
|
@@ -4608,6 +5056,7 @@ export declare class ImportSwaggerResponse extends $tea.Model {
|
|
|
4608
5056
|
headers: {
|
|
4609
5057
|
[key: string]: string;
|
|
4610
5058
|
};
|
|
5059
|
+
statusCode: number;
|
|
4611
5060
|
body: ImportSwaggerResponseBody;
|
|
4612
5061
|
static names(): {
|
|
4613
5062
|
[key: string]: string;
|
|
@@ -4652,6 +5101,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
4652
5101
|
headers: {
|
|
4653
5102
|
[key: string]: string;
|
|
4654
5103
|
};
|
|
5104
|
+
statusCode: number;
|
|
4655
5105
|
body: ListTagResourcesResponseBody;
|
|
4656
5106
|
static names(): {
|
|
4657
5107
|
[key: string]: string;
|
|
@@ -4718,6 +5168,7 @@ export declare class ModifyApiResponse extends $tea.Model {
|
|
|
4718
5168
|
headers: {
|
|
4719
5169
|
[key: string]: string;
|
|
4720
5170
|
};
|
|
5171
|
+
statusCode: number;
|
|
4721
5172
|
body: ModifyApiResponseBody;
|
|
4722
5173
|
static names(): {
|
|
4723
5174
|
[key: string]: string;
|
|
@@ -4792,6 +5243,7 @@ export declare class ModifyApiConfigurationResponse extends $tea.Model {
|
|
|
4792
5243
|
headers: {
|
|
4793
5244
|
[key: string]: string;
|
|
4794
5245
|
};
|
|
5246
|
+
statusCode: number;
|
|
4795
5247
|
body: ModifyApiConfigurationResponseBody;
|
|
4796
5248
|
static names(): {
|
|
4797
5249
|
[key: string]: string;
|
|
@@ -4848,6 +5300,7 @@ export declare class ModifyApiGroupResponse extends $tea.Model {
|
|
|
4848
5300
|
headers: {
|
|
4849
5301
|
[key: string]: string;
|
|
4850
5302
|
};
|
|
5303
|
+
statusCode: number;
|
|
4851
5304
|
body: ModifyApiGroupResponseBody;
|
|
4852
5305
|
static names(): {
|
|
4853
5306
|
[key: string]: string;
|
|
@@ -4889,6 +5342,7 @@ export declare class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
4889
5342
|
headers: {
|
|
4890
5343
|
[key: string]: string;
|
|
4891
5344
|
};
|
|
5345
|
+
statusCode: number;
|
|
4892
5346
|
body: ModifyApiGroupVpcWhitelistResponseBody;
|
|
4893
5347
|
static names(): {
|
|
4894
5348
|
[key: string]: string;
|
|
@@ -4932,6 +5386,7 @@ export declare class ModifyAppResponse extends $tea.Model {
|
|
|
4932
5386
|
headers: {
|
|
4933
5387
|
[key: string]: string;
|
|
4934
5388
|
};
|
|
5389
|
+
statusCode: number;
|
|
4935
5390
|
body: ModifyAppResponseBody;
|
|
4936
5391
|
static names(): {
|
|
4937
5392
|
[key: string]: string;
|
|
@@ -4975,6 +5430,7 @@ export declare class ModifyBackendResponse extends $tea.Model {
|
|
|
4975
5430
|
headers: {
|
|
4976
5431
|
[key: string]: string;
|
|
4977
5432
|
};
|
|
5433
|
+
statusCode: number;
|
|
4978
5434
|
body: ModifyBackendResponseBody;
|
|
4979
5435
|
static names(): {
|
|
4980
5436
|
[key: string]: string;
|
|
@@ -5021,6 +5477,7 @@ export declare class ModifyBackendModelResponse extends $tea.Model {
|
|
|
5021
5477
|
headers: {
|
|
5022
5478
|
[key: string]: string;
|
|
5023
5479
|
};
|
|
5480
|
+
statusCode: number;
|
|
5024
5481
|
body: ModifyBackendModelResponseBody;
|
|
5025
5482
|
static names(): {
|
|
5026
5483
|
[key: string]: string;
|
|
@@ -5063,6 +5520,7 @@ export declare class ModifyInstanceSpecResponse extends $tea.Model {
|
|
|
5063
5520
|
headers: {
|
|
5064
5521
|
[key: string]: string;
|
|
5065
5522
|
};
|
|
5523
|
+
statusCode: number;
|
|
5066
5524
|
body: ModifyInstanceSpecResponseBody;
|
|
5067
5525
|
static names(): {
|
|
5068
5526
|
[key: string]: string;
|
|
@@ -5105,6 +5563,7 @@ export declare class ModifyIpControlResponse extends $tea.Model {
|
|
|
5105
5563
|
headers: {
|
|
5106
5564
|
[key: string]: string;
|
|
5107
5565
|
};
|
|
5566
|
+
statusCode: number;
|
|
5108
5567
|
body: ModifyIpControlResponseBody;
|
|
5109
5568
|
static names(): {
|
|
5110
5569
|
[key: string]: string;
|
|
@@ -5148,6 +5607,7 @@ export declare class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
|
5148
5607
|
headers: {
|
|
5149
5608
|
[key: string]: string;
|
|
5150
5609
|
};
|
|
5610
|
+
statusCode: number;
|
|
5151
5611
|
body: ModifyIpControlPolicyItemResponseBody;
|
|
5152
5612
|
static names(): {
|
|
5153
5613
|
[key: string]: string;
|
|
@@ -5190,6 +5650,7 @@ export declare class ModifyLogConfigResponse extends $tea.Model {
|
|
|
5190
5650
|
headers: {
|
|
5191
5651
|
[key: string]: string;
|
|
5192
5652
|
};
|
|
5653
|
+
statusCode: number;
|
|
5193
5654
|
body: ModifyLogConfigResponseBody;
|
|
5194
5655
|
static names(): {
|
|
5195
5656
|
[key: string]: string;
|
|
@@ -5233,6 +5694,7 @@ export declare class ModifyModelResponse extends $tea.Model {
|
|
|
5233
5694
|
headers: {
|
|
5234
5695
|
[key: string]: string;
|
|
5235
5696
|
};
|
|
5697
|
+
statusCode: number;
|
|
5236
5698
|
body: ModifyModelResponseBody;
|
|
5237
5699
|
static names(): {
|
|
5238
5700
|
[key: string]: string;
|
|
@@ -5277,6 +5739,7 @@ export declare class ModifyPluginResponse extends $tea.Model {
|
|
|
5277
5739
|
headers: {
|
|
5278
5740
|
[key: string]: string;
|
|
5279
5741
|
};
|
|
5742
|
+
statusCode: number;
|
|
5280
5743
|
body: ModifyPluginResponseBody;
|
|
5281
5744
|
static names(): {
|
|
5282
5745
|
[key: string]: string;
|
|
@@ -5322,6 +5785,7 @@ export declare class ModifySignatureResponse extends $tea.Model {
|
|
|
5322
5785
|
headers: {
|
|
5323
5786
|
[key: string]: string;
|
|
5324
5787
|
};
|
|
5788
|
+
statusCode: number;
|
|
5325
5789
|
body: ModifySignatureResponseBody;
|
|
5326
5790
|
static names(): {
|
|
5327
5791
|
[key: string]: string;
|
|
@@ -5368,6 +5832,7 @@ export declare class ModifyTrafficControlResponse extends $tea.Model {
|
|
|
5368
5832
|
headers: {
|
|
5369
5833
|
[key: string]: string;
|
|
5370
5834
|
};
|
|
5835
|
+
statusCode: number;
|
|
5371
5836
|
body: ModifyTrafficControlResponseBody;
|
|
5372
5837
|
static names(): {
|
|
5373
5838
|
[key: string]: string;
|
|
@@ -5396,6 +5861,7 @@ export declare class OpenApiGatewayServiceResponse extends $tea.Model {
|
|
|
5396
5861
|
headers: {
|
|
5397
5862
|
[key: string]: string;
|
|
5398
5863
|
};
|
|
5864
|
+
statusCode: number;
|
|
5399
5865
|
body: OpenApiGatewayServiceResponseBody;
|
|
5400
5866
|
static names(): {
|
|
5401
5867
|
[key: string]: string;
|
|
@@ -5437,6 +5903,7 @@ export declare class ReactivateDomainResponse extends $tea.Model {
|
|
|
5437
5903
|
headers: {
|
|
5438
5904
|
[key: string]: string;
|
|
5439
5905
|
};
|
|
5906
|
+
statusCode: number;
|
|
5440
5907
|
body: ReactivateDomainResponseBody;
|
|
5441
5908
|
static names(): {
|
|
5442
5909
|
[key: string]: string;
|
|
@@ -5448,6 +5915,48 @@ export declare class ReactivateDomainResponse extends $tea.Model {
|
|
|
5448
5915
|
[key: string]: any;
|
|
5449
5916
|
});
|
|
5450
5917
|
}
|
|
5918
|
+
export declare class RemoveAccessControlListEntryRequest extends $tea.Model {
|
|
5919
|
+
aclEntrys?: string;
|
|
5920
|
+
aclId?: string;
|
|
5921
|
+
securityToken?: string;
|
|
5922
|
+
static names(): {
|
|
5923
|
+
[key: string]: string;
|
|
5924
|
+
};
|
|
5925
|
+
static types(): {
|
|
5926
|
+
[key: string]: any;
|
|
5927
|
+
};
|
|
5928
|
+
constructor(map?: {
|
|
5929
|
+
[key: string]: any;
|
|
5930
|
+
});
|
|
5931
|
+
}
|
|
5932
|
+
export declare class RemoveAccessControlListEntryResponseBody extends $tea.Model {
|
|
5933
|
+
requestId?: string;
|
|
5934
|
+
static names(): {
|
|
5935
|
+
[key: string]: string;
|
|
5936
|
+
};
|
|
5937
|
+
static types(): {
|
|
5938
|
+
[key: string]: any;
|
|
5939
|
+
};
|
|
5940
|
+
constructor(map?: {
|
|
5941
|
+
[key: string]: any;
|
|
5942
|
+
});
|
|
5943
|
+
}
|
|
5944
|
+
export declare class RemoveAccessControlListEntryResponse extends $tea.Model {
|
|
5945
|
+
headers: {
|
|
5946
|
+
[key: string]: string;
|
|
5947
|
+
};
|
|
5948
|
+
statusCode: number;
|
|
5949
|
+
body: RemoveAccessControlListEntryResponseBody;
|
|
5950
|
+
static names(): {
|
|
5951
|
+
[key: string]: string;
|
|
5952
|
+
};
|
|
5953
|
+
static types(): {
|
|
5954
|
+
[key: string]: any;
|
|
5955
|
+
};
|
|
5956
|
+
constructor(map?: {
|
|
5957
|
+
[key: string]: any;
|
|
5958
|
+
});
|
|
5959
|
+
}
|
|
5451
5960
|
export declare class RemoveApisAuthoritiesRequest extends $tea.Model {
|
|
5452
5961
|
apiIds?: string;
|
|
5453
5962
|
appId?: number;
|
|
@@ -5481,6 +5990,7 @@ export declare class RemoveApisAuthoritiesResponse extends $tea.Model {
|
|
|
5481
5990
|
headers: {
|
|
5482
5991
|
[key: string]: string;
|
|
5483
5992
|
};
|
|
5993
|
+
statusCode: number;
|
|
5484
5994
|
body: RemoveApisAuthoritiesResponseBody;
|
|
5485
5995
|
static names(): {
|
|
5486
5996
|
[key: string]: string;
|
|
@@ -5524,6 +6034,7 @@ export declare class RemoveAppsAuthoritiesResponse extends $tea.Model {
|
|
|
5524
6034
|
headers: {
|
|
5525
6035
|
[key: string]: string;
|
|
5526
6036
|
};
|
|
6037
|
+
statusCode: number;
|
|
5527
6038
|
body: RemoveAppsAuthoritiesResponseBody;
|
|
5528
6039
|
static names(): {
|
|
5529
6040
|
[key: string]: string;
|
|
@@ -5567,6 +6078,7 @@ export declare class RemoveIpControlApisResponse extends $tea.Model {
|
|
|
5567
6078
|
headers: {
|
|
5568
6079
|
[key: string]: string;
|
|
5569
6080
|
};
|
|
6081
|
+
statusCode: number;
|
|
5570
6082
|
body: RemoveIpControlApisResponseBody;
|
|
5571
6083
|
static names(): {
|
|
5572
6084
|
[key: string]: string;
|
|
@@ -5608,6 +6120,7 @@ export declare class RemoveIpControlPolicyItemResponse extends $tea.Model {
|
|
|
5608
6120
|
headers: {
|
|
5609
6121
|
[key: string]: string;
|
|
5610
6122
|
};
|
|
6123
|
+
statusCode: number;
|
|
5611
6124
|
body: RemoveIpControlPolicyItemResponseBody;
|
|
5612
6125
|
static names(): {
|
|
5613
6126
|
[key: string]: string;
|
|
@@ -5651,6 +6164,7 @@ export declare class RemoveSignatureApisResponse extends $tea.Model {
|
|
|
5651
6164
|
headers: {
|
|
5652
6165
|
[key: string]: string;
|
|
5653
6166
|
};
|
|
6167
|
+
statusCode: number;
|
|
5654
6168
|
body: RemoveSignatureApisResponseBody;
|
|
5655
6169
|
static names(): {
|
|
5656
6170
|
[key: string]: string;
|
|
@@ -5694,6 +6208,7 @@ export declare class RemoveTrafficControlApisResponse extends $tea.Model {
|
|
|
5694
6208
|
headers: {
|
|
5695
6209
|
[key: string]: string;
|
|
5696
6210
|
};
|
|
6211
|
+
statusCode: number;
|
|
5697
6212
|
body: RemoveTrafficControlApisResponseBody;
|
|
5698
6213
|
static names(): {
|
|
5699
6214
|
[key: string]: string;
|
|
@@ -5738,6 +6253,7 @@ export declare class RemoveVpcAccessResponse extends $tea.Model {
|
|
|
5738
6253
|
headers: {
|
|
5739
6254
|
[key: string]: string;
|
|
5740
6255
|
};
|
|
6256
|
+
statusCode: number;
|
|
5741
6257
|
body: RemoveVpcAccessResponseBody;
|
|
5742
6258
|
static names(): {
|
|
5743
6259
|
[key: string]: string;
|
|
@@ -5782,6 +6298,7 @@ export declare class RemoveVpcAccessAndAbolishApisResponse extends $tea.Model {
|
|
|
5782
6298
|
headers: {
|
|
5783
6299
|
[key: string]: string;
|
|
5784
6300
|
};
|
|
6301
|
+
statusCode: number;
|
|
5785
6302
|
body: RemoveVpcAccessAndAbolishApisResponseBody;
|
|
5786
6303
|
static names(): {
|
|
5787
6304
|
[key: string]: string;
|
|
@@ -5822,6 +6339,7 @@ export declare class ResetAppCodeResponse extends $tea.Model {
|
|
|
5822
6339
|
headers: {
|
|
5823
6340
|
[key: string]: string;
|
|
5824
6341
|
};
|
|
6342
|
+
statusCode: number;
|
|
5825
6343
|
body: ResetAppCodeResponseBody;
|
|
5826
6344
|
static names(): {
|
|
5827
6345
|
[key: string]: string;
|
|
@@ -5862,6 +6380,7 @@ export declare class ResetAppSecretResponse extends $tea.Model {
|
|
|
5862
6380
|
headers: {
|
|
5863
6381
|
[key: string]: string;
|
|
5864
6382
|
};
|
|
6383
|
+
statusCode: number;
|
|
5865
6384
|
body: ResetAppSecretResponseBody;
|
|
5866
6385
|
static names(): {
|
|
5867
6386
|
[key: string]: string;
|
|
@@ -5904,6 +6423,7 @@ export declare class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
5904
6423
|
headers: {
|
|
5905
6424
|
[key: string]: string;
|
|
5906
6425
|
};
|
|
6426
|
+
statusCode: number;
|
|
5907
6427
|
body: SdkGenerateByAppResponseBody;
|
|
5908
6428
|
static names(): {
|
|
5909
6429
|
[key: string]: string;
|
|
@@ -5915,6 +6435,49 @@ export declare class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
5915
6435
|
[key: string]: any;
|
|
5916
6436
|
});
|
|
5917
6437
|
}
|
|
6438
|
+
export declare class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
6439
|
+
appId?: number;
|
|
6440
|
+
language?: string;
|
|
6441
|
+
securityToken?: string;
|
|
6442
|
+
static names(): {
|
|
6443
|
+
[key: string]: string;
|
|
6444
|
+
};
|
|
6445
|
+
static types(): {
|
|
6446
|
+
[key: string]: any;
|
|
6447
|
+
};
|
|
6448
|
+
constructor(map?: {
|
|
6449
|
+
[key: string]: any;
|
|
6450
|
+
});
|
|
6451
|
+
}
|
|
6452
|
+
export declare class SdkGenerateByAppForRegionResponseBody extends $tea.Model {
|
|
6453
|
+
downloadLink?: string;
|
|
6454
|
+
requestId?: string;
|
|
6455
|
+
static names(): {
|
|
6456
|
+
[key: string]: string;
|
|
6457
|
+
};
|
|
6458
|
+
static types(): {
|
|
6459
|
+
[key: string]: any;
|
|
6460
|
+
};
|
|
6461
|
+
constructor(map?: {
|
|
6462
|
+
[key: string]: any;
|
|
6463
|
+
});
|
|
6464
|
+
}
|
|
6465
|
+
export declare class SdkGenerateByAppForRegionResponse extends $tea.Model {
|
|
6466
|
+
headers: {
|
|
6467
|
+
[key: string]: string;
|
|
6468
|
+
};
|
|
6469
|
+
statusCode: number;
|
|
6470
|
+
body: SdkGenerateByAppForRegionResponseBody;
|
|
6471
|
+
static names(): {
|
|
6472
|
+
[key: string]: string;
|
|
6473
|
+
};
|
|
6474
|
+
static types(): {
|
|
6475
|
+
[key: string]: any;
|
|
6476
|
+
};
|
|
6477
|
+
constructor(map?: {
|
|
6478
|
+
[key: string]: any;
|
|
6479
|
+
});
|
|
6480
|
+
}
|
|
5918
6481
|
export declare class SdkGenerateByGroupRequest extends $tea.Model {
|
|
5919
6482
|
groupId?: string;
|
|
5920
6483
|
language?: string;
|
|
@@ -5946,6 +6509,7 @@ export declare class SdkGenerateByGroupResponse extends $tea.Model {
|
|
|
5946
6509
|
headers: {
|
|
5947
6510
|
[key: string]: string;
|
|
5948
6511
|
};
|
|
6512
|
+
statusCode: number;
|
|
5949
6513
|
body: SdkGenerateByGroupResponseBody;
|
|
5950
6514
|
static names(): {
|
|
5951
6515
|
[key: string]: string;
|
|
@@ -5991,6 +6555,7 @@ export declare class SetApisAuthoritiesResponse extends $tea.Model {
|
|
|
5991
6555
|
headers: {
|
|
5992
6556
|
[key: string]: string;
|
|
5993
6557
|
};
|
|
6558
|
+
statusCode: number;
|
|
5994
6559
|
body: SetApisAuthoritiesResponseBody;
|
|
5995
6560
|
static names(): {
|
|
5996
6561
|
[key: string]: string;
|
|
@@ -6036,6 +6601,7 @@ export declare class SetAppsAuthoritiesResponse extends $tea.Model {
|
|
|
6036
6601
|
headers: {
|
|
6037
6602
|
[key: string]: string;
|
|
6038
6603
|
};
|
|
6604
|
+
statusCode: number;
|
|
6039
6605
|
body: SetAppsAuthoritiesResponseBody;
|
|
6040
6606
|
static names(): {
|
|
6041
6607
|
[key: string]: string;
|
|
@@ -6086,6 +6652,7 @@ export declare class SetDomainResponse extends $tea.Model {
|
|
|
6086
6652
|
headers: {
|
|
6087
6653
|
[key: string]: string;
|
|
6088
6654
|
};
|
|
6655
|
+
statusCode: number;
|
|
6089
6656
|
body: SetDomainResponseBody;
|
|
6090
6657
|
static names(): {
|
|
6091
6658
|
[key: string]: string;
|
|
@@ -6105,6 +6672,7 @@ export declare class SetDomainCertificateRequest extends $tea.Model {
|
|
|
6105
6672
|
domainName?: string;
|
|
6106
6673
|
groupId?: string;
|
|
6107
6674
|
securityToken?: string;
|
|
6675
|
+
sslVerifyDepth?: string;
|
|
6108
6676
|
static names(): {
|
|
6109
6677
|
[key: string]: string;
|
|
6110
6678
|
};
|
|
@@ -6131,6 +6699,7 @@ export declare class SetDomainCertificateResponse extends $tea.Model {
|
|
|
6131
6699
|
headers: {
|
|
6132
6700
|
[key: string]: string;
|
|
6133
6701
|
};
|
|
6702
|
+
statusCode: number;
|
|
6134
6703
|
body: SetDomainCertificateResponseBody;
|
|
6135
6704
|
static names(): {
|
|
6136
6705
|
[key: string]: string;
|
|
@@ -6173,6 +6742,7 @@ export declare class SetDomainWebSocketStatusResponse extends $tea.Model {
|
|
|
6173
6742
|
headers: {
|
|
6174
6743
|
[key: string]: string;
|
|
6175
6744
|
};
|
|
6745
|
+
statusCode: number;
|
|
6176
6746
|
body: SetDomainWebSocketStatusResponseBody;
|
|
6177
6747
|
static names(): {
|
|
6178
6748
|
[key: string]: string;
|
|
@@ -6216,6 +6786,7 @@ export declare class SetIpControlApisResponse extends $tea.Model {
|
|
|
6216
6786
|
headers: {
|
|
6217
6787
|
[key: string]: string;
|
|
6218
6788
|
};
|
|
6789
|
+
statusCode: number;
|
|
6219
6790
|
body: SetIpControlApisResponseBody;
|
|
6220
6791
|
static names(): {
|
|
6221
6792
|
[key: string]: string;
|
|
@@ -6259,6 +6830,7 @@ export declare class SetSignatureApisResponse extends $tea.Model {
|
|
|
6259
6830
|
headers: {
|
|
6260
6831
|
[key: string]: string;
|
|
6261
6832
|
};
|
|
6833
|
+
statusCode: number;
|
|
6262
6834
|
body: SetSignatureApisResponseBody;
|
|
6263
6835
|
static names(): {
|
|
6264
6836
|
[key: string]: string;
|
|
@@ -6302,6 +6874,7 @@ export declare class SetTrafficControlApisResponse extends $tea.Model {
|
|
|
6302
6874
|
headers: {
|
|
6303
6875
|
[key: string]: string;
|
|
6304
6876
|
};
|
|
6877
|
+
statusCode: number;
|
|
6305
6878
|
body: SetTrafficControlApisResponseBody;
|
|
6306
6879
|
static names(): {
|
|
6307
6880
|
[key: string]: string;
|
|
@@ -6347,6 +6920,7 @@ export declare class SetVpcAccessResponse extends $tea.Model {
|
|
|
6347
6920
|
headers: {
|
|
6348
6921
|
[key: string]: string;
|
|
6349
6922
|
};
|
|
6923
|
+
statusCode: number;
|
|
6350
6924
|
body: SetVpcAccessResponseBody;
|
|
6351
6925
|
static names(): {
|
|
6352
6926
|
[key: string]: string;
|
|
@@ -6389,6 +6963,7 @@ export declare class SetWildcardDomainPatternsResponse extends $tea.Model {
|
|
|
6389
6963
|
headers: {
|
|
6390
6964
|
[key: string]: string;
|
|
6391
6965
|
};
|
|
6966
|
+
statusCode: number;
|
|
6392
6967
|
body: SetWildcardDomainPatternsResponseBody;
|
|
6393
6968
|
static names(): {
|
|
6394
6969
|
[key: string]: string;
|
|
@@ -6433,6 +7008,7 @@ export declare class SwitchApiResponse extends $tea.Model {
|
|
|
6433
7008
|
headers: {
|
|
6434
7009
|
[key: string]: string;
|
|
6435
7010
|
};
|
|
7011
|
+
statusCode: number;
|
|
6436
7012
|
body: SwitchApiResponseBody;
|
|
6437
7013
|
static names(): {
|
|
6438
7014
|
[key: string]: string;
|
|
@@ -6475,6 +7051,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
6475
7051
|
headers: {
|
|
6476
7052
|
[key: string]: string;
|
|
6477
7053
|
};
|
|
7054
|
+
statusCode: number;
|
|
6478
7055
|
body: TagResourcesResponseBody;
|
|
6479
7056
|
static names(): {
|
|
6480
7057
|
[key: string]: string;
|
|
@@ -6518,6 +7095,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
6518
7095
|
headers: {
|
|
6519
7096
|
[key: string]: string;
|
|
6520
7097
|
};
|
|
7098
|
+
statusCode: number;
|
|
6521
7099
|
body: UntagResourcesResponseBody;
|
|
6522
7100
|
static names(): {
|
|
6523
7101
|
[key: string]: string;
|
|
@@ -6691,6 +7269,56 @@ export declare class DescribeAbolishApiTaskResponseBodyApiAbolishResults extends
|
|
|
6691
7269
|
[key: string]: any;
|
|
6692
7270
|
});
|
|
6693
7271
|
}
|
|
7272
|
+
export declare class DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry extends $tea.Model {
|
|
7273
|
+
aclEntryComment?: string;
|
|
7274
|
+
aclEntryIp?: string;
|
|
7275
|
+
static names(): {
|
|
7276
|
+
[key: string]: string;
|
|
7277
|
+
};
|
|
7278
|
+
static types(): {
|
|
7279
|
+
[key: string]: any;
|
|
7280
|
+
};
|
|
7281
|
+
constructor(map?: {
|
|
7282
|
+
[key: string]: any;
|
|
7283
|
+
});
|
|
7284
|
+
}
|
|
7285
|
+
export declare class DescribeAccessControlListAttributeResponseBodyAclEntrys extends $tea.Model {
|
|
7286
|
+
aclEntry?: DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry[];
|
|
7287
|
+
static names(): {
|
|
7288
|
+
[key: string]: string;
|
|
7289
|
+
};
|
|
7290
|
+
static types(): {
|
|
7291
|
+
[key: string]: any;
|
|
7292
|
+
};
|
|
7293
|
+
constructor(map?: {
|
|
7294
|
+
[key: string]: any;
|
|
7295
|
+
});
|
|
7296
|
+
}
|
|
7297
|
+
export declare class DescribeAccessControlListsResponseBodyAclsAcl extends $tea.Model {
|
|
7298
|
+
aclId?: string;
|
|
7299
|
+
aclName?: string;
|
|
7300
|
+
static names(): {
|
|
7301
|
+
[key: string]: string;
|
|
7302
|
+
};
|
|
7303
|
+
static types(): {
|
|
7304
|
+
[key: string]: any;
|
|
7305
|
+
};
|
|
7306
|
+
constructor(map?: {
|
|
7307
|
+
[key: string]: any;
|
|
7308
|
+
});
|
|
7309
|
+
}
|
|
7310
|
+
export declare class DescribeAccessControlListsResponseBodyAcls extends $tea.Model {
|
|
7311
|
+
acl?: DescribeAccessControlListsResponseBodyAclsAcl[];
|
|
7312
|
+
static names(): {
|
|
7313
|
+
[key: string]: string;
|
|
7314
|
+
};
|
|
7315
|
+
static types(): {
|
|
7316
|
+
[key: string]: any;
|
|
7317
|
+
};
|
|
7318
|
+
constructor(map?: {
|
|
7319
|
+
[key: string]: any;
|
|
7320
|
+
});
|
|
7321
|
+
}
|
|
6694
7322
|
export declare class DescribeApiResponseBodyBackendConfig extends $tea.Model {
|
|
6695
7323
|
backendId?: string;
|
|
6696
7324
|
backendName?: string;
|
|
@@ -8992,6 +9620,96 @@ export declare class DescribeHistoryApisResponseBodyApiHisItems extends $tea.Mod
|
|
|
8992
9620
|
[key: string]: any;
|
|
8993
9621
|
});
|
|
8994
9622
|
}
|
|
9623
|
+
export declare class DescribeInstancesRequestTag extends $tea.Model {
|
|
9624
|
+
key?: string;
|
|
9625
|
+
value?: string;
|
|
9626
|
+
static names(): {
|
|
9627
|
+
[key: string]: string;
|
|
9628
|
+
};
|
|
9629
|
+
static types(): {
|
|
9630
|
+
[key: string]: any;
|
|
9631
|
+
};
|
|
9632
|
+
constructor(map?: {
|
|
9633
|
+
[key: string]: any;
|
|
9634
|
+
});
|
|
9635
|
+
}
|
|
9636
|
+
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributesSpecAttribute extends $tea.Model {
|
|
9637
|
+
localName?: string;
|
|
9638
|
+
value?: string;
|
|
9639
|
+
static names(): {
|
|
9640
|
+
[key: string]: string;
|
|
9641
|
+
};
|
|
9642
|
+
static types(): {
|
|
9643
|
+
[key: string]: any;
|
|
9644
|
+
};
|
|
9645
|
+
constructor(map?: {
|
|
9646
|
+
[key: string]: any;
|
|
9647
|
+
});
|
|
9648
|
+
}
|
|
9649
|
+
export declare class DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributes extends $tea.Model {
|
|
9650
|
+
specAttribute?: DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributesSpecAttribute[];
|
|
9651
|
+
static names(): {
|
|
9652
|
+
[key: string]: string;
|
|
9653
|
+
};
|
|
9654
|
+
static types(): {
|
|
9655
|
+
[key: string]: any;
|
|
9656
|
+
};
|
|
9657
|
+
constructor(map?: {
|
|
9658
|
+
[key: string]: any;
|
|
9659
|
+
});
|
|
9660
|
+
}
|
|
9661
|
+
export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $tea.Model {
|
|
9662
|
+
aclId?: string;
|
|
9663
|
+
aclName?: string;
|
|
9664
|
+
aclStatus?: string;
|
|
9665
|
+
aclType?: string;
|
|
9666
|
+
classicEgressAddress?: string;
|
|
9667
|
+
createdTime?: string;
|
|
9668
|
+
egressIpv6Enable?: boolean;
|
|
9669
|
+
expiredTime?: string;
|
|
9670
|
+
httpsPolicies?: string;
|
|
9671
|
+
instanceChargeType?: string;
|
|
9672
|
+
instanceId?: string;
|
|
9673
|
+
instanceName?: string;
|
|
9674
|
+
instanceRpsLimit?: number;
|
|
9675
|
+
instanceSpec?: string;
|
|
9676
|
+
instanceSpecAttributes?: DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributes;
|
|
9677
|
+
instanceType?: string;
|
|
9678
|
+
internetEgressAddress?: string;
|
|
9679
|
+
regionId?: string;
|
|
9680
|
+
status?: string;
|
|
9681
|
+
supportIpv6?: boolean;
|
|
9682
|
+
userVpcId?: string;
|
|
9683
|
+
userVswitchId?: string;
|
|
9684
|
+
vipTypeList?: string;
|
|
9685
|
+
vpcEgressAddress?: string;
|
|
9686
|
+
vpcIntranetEnable?: boolean;
|
|
9687
|
+
vpcOwnerId?: number;
|
|
9688
|
+
vpcSlbIntranetEnable?: boolean;
|
|
9689
|
+
zoneId?: string;
|
|
9690
|
+
zoneLocalName?: string;
|
|
9691
|
+
static names(): {
|
|
9692
|
+
[key: string]: string;
|
|
9693
|
+
};
|
|
9694
|
+
static types(): {
|
|
9695
|
+
[key: string]: any;
|
|
9696
|
+
};
|
|
9697
|
+
constructor(map?: {
|
|
9698
|
+
[key: string]: any;
|
|
9699
|
+
});
|
|
9700
|
+
}
|
|
9701
|
+
export declare class DescribeInstancesResponseBodyInstances extends $tea.Model {
|
|
9702
|
+
instanceAttribute?: DescribeInstancesResponseBodyInstancesInstanceAttribute[];
|
|
9703
|
+
static names(): {
|
|
9704
|
+
[key: string]: string;
|
|
9705
|
+
};
|
|
9706
|
+
static types(): {
|
|
9707
|
+
[key: string]: any;
|
|
9708
|
+
};
|
|
9709
|
+
constructor(map?: {
|
|
9710
|
+
[key: string]: any;
|
|
9711
|
+
});
|
|
9712
|
+
}
|
|
8995
9713
|
export declare class DescribeIpControlPolicyItemsResponseBodyIpControlPolicyItemsIpControlPolicyItem extends $tea.Model {
|
|
8996
9714
|
appId?: string;
|
|
8997
9715
|
cidrIp?: string;
|
|
@@ -10032,6 +10750,8 @@ export default class Client extends OpenApi {
|
|
|
10032
10750
|
}, endpoint: string): string;
|
|
10033
10751
|
abolishApiWithOptions(request: AbolishApiRequest, runtime: $Util.RuntimeOptions): Promise<AbolishApiResponse>;
|
|
10034
10752
|
abolishApi(request: AbolishApiRequest): Promise<AbolishApiResponse>;
|
|
10753
|
+
addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse>;
|
|
10754
|
+
addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse>;
|
|
10035
10755
|
addIpControlPolicyItemWithOptions(request: AddIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<AddIpControlPolicyItemResponse>;
|
|
10036
10756
|
addIpControlPolicyItem(request: AddIpControlPolicyItemRequest): Promise<AddIpControlPolicyItemResponse>;
|
|
10037
10757
|
addTrafficSpecialControlWithOptions(request: AddTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<AddTrafficSpecialControlResponse>;
|
|
@@ -10042,6 +10762,8 @@ export default class Client extends OpenApi {
|
|
|
10042
10762
|
batchAbolishApis(request: BatchAbolishApisRequest): Promise<BatchAbolishApisResponse>;
|
|
10043
10763
|
batchDeployApisWithOptions(request: BatchDeployApisRequest, runtime: $Util.RuntimeOptions): Promise<BatchDeployApisResponse>;
|
|
10044
10764
|
batchDeployApis(request: BatchDeployApisRequest): Promise<BatchDeployApisResponse>;
|
|
10765
|
+
createAccessControlListWithOptions(request: CreateAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessControlListResponse>;
|
|
10766
|
+
createAccessControlList(request: CreateAccessControlListRequest): Promise<CreateAccessControlListResponse>;
|
|
10045
10767
|
createApiWithOptions(request: CreateApiRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiResponse>;
|
|
10046
10768
|
createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
|
|
10047
10769
|
createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
|
|
@@ -10072,6 +10794,8 @@ export default class Client extends OpenApi {
|
|
|
10072
10794
|
createSignature(request: CreateSignatureRequest): Promise<CreateSignatureResponse>;
|
|
10073
10795
|
createTrafficControlWithOptions(request: CreateTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateTrafficControlResponse>;
|
|
10074
10796
|
createTrafficControl(request: CreateTrafficControlRequest): Promise<CreateTrafficControlResponse>;
|
|
10797
|
+
deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse>;
|
|
10798
|
+
deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse>;
|
|
10075
10799
|
deleteAllTrafficSpecialControlWithOptions(request: DeleteAllTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAllTrafficSpecialControlResponse>;
|
|
10076
10800
|
deleteAllTrafficSpecialControl(request: DeleteAllTrafficSpecialControlRequest): Promise<DeleteAllTrafficSpecialControlResponse>;
|
|
10077
10801
|
deleteApiWithOptions(request: DeleteApiRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiResponse>;
|
|
@@ -10112,6 +10836,10 @@ export default class Client extends OpenApi {
|
|
|
10112
10836
|
deployApi(request: DeployApiRequest): Promise<DeployApiResponse>;
|
|
10113
10837
|
describeAbolishApiTaskWithOptions(request: DescribeAbolishApiTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAbolishApiTaskResponse>;
|
|
10114
10838
|
describeAbolishApiTask(request: DescribeAbolishApiTaskRequest): Promise<DescribeAbolishApiTaskResponse>;
|
|
10839
|
+
describeAccessControlListAttributeWithOptions(request: DescribeAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListAttributeResponse>;
|
|
10840
|
+
describeAccessControlListAttribute(request: DescribeAccessControlListAttributeRequest): Promise<DescribeAccessControlListAttributeResponse>;
|
|
10841
|
+
describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse>;
|
|
10842
|
+
describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse>;
|
|
10115
10843
|
describeApiWithOptions(request: DescribeApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiResponse>;
|
|
10116
10844
|
describeApi(request: DescribeApiRequest): Promise<DescribeApiResponse>;
|
|
10117
10845
|
describeApiDocWithOptions(request: DescribeApiDocRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiDocResponse>;
|
|
@@ -10178,6 +10906,8 @@ export default class Client extends OpenApi {
|
|
|
10178
10906
|
describeDomain(request: DescribeDomainRequest): Promise<DescribeDomainResponse>;
|
|
10179
10907
|
describeHistoryApisWithOptions(request: DescribeHistoryApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryApisResponse>;
|
|
10180
10908
|
describeHistoryApis(request: DescribeHistoryApisRequest): Promise<DescribeHistoryApisResponse>;
|
|
10909
|
+
describeInstancesWithOptions(request: DescribeInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstancesResponse>;
|
|
10910
|
+
describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse>;
|
|
10181
10911
|
describeIpControlPolicyItemsWithOptions(request: DescribeIpControlPolicyItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlPolicyItemsResponse>;
|
|
10182
10912
|
describeIpControlPolicyItems(request: DescribeIpControlPolicyItemsRequest): Promise<DescribeIpControlPolicyItemsResponse>;
|
|
10183
10913
|
describeIpControlsWithOptions(request: DescribeIpControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlsResponse>;
|
|
@@ -10224,8 +10954,12 @@ export default class Client extends OpenApi {
|
|
|
10224
10954
|
describeZones(request: DescribeZonesRequest): Promise<DescribeZonesResponse>;
|
|
10225
10955
|
detachPluginWithOptions(request: DetachPluginRequest, runtime: $Util.RuntimeOptions): Promise<DetachPluginResponse>;
|
|
10226
10956
|
detachPlugin(request: DetachPluginRequest): Promise<DetachPluginResponse>;
|
|
10957
|
+
disableInstanceAccessControlWithOptions(request: DisableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<DisableInstanceAccessControlResponse>;
|
|
10958
|
+
disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse>;
|
|
10227
10959
|
dryRunSwaggerWithOptions(tmpReq: DryRunSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<DryRunSwaggerResponse>;
|
|
10228
10960
|
dryRunSwagger(request: DryRunSwaggerRequest): Promise<DryRunSwaggerResponse>;
|
|
10961
|
+
enableInstanceAccessControlWithOptions(request: EnableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<EnableInstanceAccessControlResponse>;
|
|
10962
|
+
enableInstanceAccessControl(request: EnableInstanceAccessControlRequest): Promise<EnableInstanceAccessControlResponse>;
|
|
10229
10963
|
importSwaggerWithOptions(tmpReq: ImportSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<ImportSwaggerResponse>;
|
|
10230
10964
|
importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
|
|
10231
10965
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
@@ -10264,6 +10998,8 @@ export default class Client extends OpenApi {
|
|
|
10264
10998
|
openApiGatewayService(): Promise<OpenApiGatewayServiceResponse>;
|
|
10265
10999
|
reactivateDomainWithOptions(request: ReactivateDomainRequest, runtime: $Util.RuntimeOptions): Promise<ReactivateDomainResponse>;
|
|
10266
11000
|
reactivateDomain(request: ReactivateDomainRequest): Promise<ReactivateDomainResponse>;
|
|
11001
|
+
removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse>;
|
|
11002
|
+
removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse>;
|
|
10267
11003
|
removeApisAuthoritiesWithOptions(request: RemoveApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveApisAuthoritiesResponse>;
|
|
10268
11004
|
removeApisAuthorities(request: RemoveApisAuthoritiesRequest): Promise<RemoveApisAuthoritiesResponse>;
|
|
10269
11005
|
removeAppsAuthoritiesWithOptions(request: RemoveAppsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAppsAuthoritiesResponse>;
|
|
@@ -10286,6 +11022,8 @@ export default class Client extends OpenApi {
|
|
|
10286
11022
|
resetAppSecret(request: ResetAppSecretRequest): Promise<ResetAppSecretResponse>;
|
|
10287
11023
|
sdkGenerateByAppWithOptions(request: SdkGenerateByAppRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppResponse>;
|
|
10288
11024
|
sdkGenerateByApp(request: SdkGenerateByAppRequest): Promise<SdkGenerateByAppResponse>;
|
|
11025
|
+
sdkGenerateByAppForRegionWithOptions(request: SdkGenerateByAppForRegionRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppForRegionResponse>;
|
|
11026
|
+
sdkGenerateByAppForRegion(request: SdkGenerateByAppForRegionRequest): Promise<SdkGenerateByAppForRegionResponse>;
|
|
10289
11027
|
sdkGenerateByGroupWithOptions(request: SdkGenerateByGroupRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByGroupResponse>;
|
|
10290
11028
|
sdkGenerateByGroup(request: SdkGenerateByGroupRequest): Promise<SdkGenerateByGroupResponse>;
|
|
10291
11029
|
setApisAuthoritiesWithOptions(request: SetApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApisAuthoritiesResponse>;
|