@alicloud/cloudapi20160714 2.1.3 → 2.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 +221 -0
- package/dist/client.js +547 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +777 -0
package/dist/client.js
CHANGED
|
@@ -64,12 +64,14 @@ class AbolishApiResponse extends $tea.Model {
|
|
|
64
64
|
static names() {
|
|
65
65
|
return {
|
|
66
66
|
headers: 'headers',
|
|
67
|
+
statusCode: 'statusCode',
|
|
67
68
|
body: 'body',
|
|
68
69
|
};
|
|
69
70
|
}
|
|
70
71
|
static types() {
|
|
71
72
|
return {
|
|
72
73
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
74
|
+
statusCode: 'number',
|
|
73
75
|
body: AbolishApiResponseBody,
|
|
74
76
|
};
|
|
75
77
|
}
|
|
@@ -122,12 +124,14 @@ class AddIpControlPolicyItemResponse extends $tea.Model {
|
|
|
122
124
|
static names() {
|
|
123
125
|
return {
|
|
124
126
|
headers: 'headers',
|
|
127
|
+
statusCode: 'statusCode',
|
|
125
128
|
body: 'body',
|
|
126
129
|
};
|
|
127
130
|
}
|
|
128
131
|
static types() {
|
|
129
132
|
return {
|
|
130
133
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
134
|
+
statusCode: 'number',
|
|
131
135
|
body: AddIpControlPolicyItemResponseBody,
|
|
132
136
|
};
|
|
133
137
|
}
|
|
@@ -180,12 +184,14 @@ class AddTrafficSpecialControlResponse extends $tea.Model {
|
|
|
180
184
|
static names() {
|
|
181
185
|
return {
|
|
182
186
|
headers: 'headers',
|
|
187
|
+
statusCode: 'statusCode',
|
|
183
188
|
body: 'body',
|
|
184
189
|
};
|
|
185
190
|
}
|
|
186
191
|
static types() {
|
|
187
192
|
return {
|
|
188
193
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
194
|
+
statusCode: 'number',
|
|
189
195
|
body: AddTrafficSpecialControlResponseBody,
|
|
190
196
|
};
|
|
191
197
|
}
|
|
@@ -240,12 +246,14 @@ class AttachPluginResponse extends $tea.Model {
|
|
|
240
246
|
static names() {
|
|
241
247
|
return {
|
|
242
248
|
headers: 'headers',
|
|
249
|
+
statusCode: 'statusCode',
|
|
243
250
|
body: 'body',
|
|
244
251
|
};
|
|
245
252
|
}
|
|
246
253
|
static types() {
|
|
247
254
|
return {
|
|
248
255
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
256
|
+
statusCode: 'number',
|
|
249
257
|
body: AttachPluginResponseBody,
|
|
250
258
|
};
|
|
251
259
|
}
|
|
@@ -294,12 +302,14 @@ class BatchAbolishApisResponse extends $tea.Model {
|
|
|
294
302
|
static names() {
|
|
295
303
|
return {
|
|
296
304
|
headers: 'headers',
|
|
305
|
+
statusCode: 'statusCode',
|
|
297
306
|
body: 'body',
|
|
298
307
|
};
|
|
299
308
|
}
|
|
300
309
|
static types() {
|
|
301
310
|
return {
|
|
302
311
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
312
|
+
statusCode: 'number',
|
|
303
313
|
body: BatchAbolishApisResponseBody,
|
|
304
314
|
};
|
|
305
315
|
}
|
|
@@ -352,12 +362,14 @@ class BatchDeployApisResponse extends $tea.Model {
|
|
|
352
362
|
static names() {
|
|
353
363
|
return {
|
|
354
364
|
headers: 'headers',
|
|
365
|
+
statusCode: 'statusCode',
|
|
355
366
|
body: 'body',
|
|
356
367
|
};
|
|
357
368
|
}
|
|
358
369
|
static types() {
|
|
359
370
|
return {
|
|
360
371
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
372
|
+
statusCode: 'number',
|
|
361
373
|
body: BatchDeployApisResponseBody,
|
|
362
374
|
};
|
|
363
375
|
}
|
|
@@ -456,12 +468,14 @@ class CreateApiResponse extends $tea.Model {
|
|
|
456
468
|
static names() {
|
|
457
469
|
return {
|
|
458
470
|
headers: 'headers',
|
|
471
|
+
statusCode: 'statusCode',
|
|
459
472
|
body: 'body',
|
|
460
473
|
};
|
|
461
474
|
}
|
|
462
475
|
static types() {
|
|
463
476
|
return {
|
|
464
477
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
478
|
+
statusCode: 'number',
|
|
465
479
|
body: CreateApiResponseBody,
|
|
466
480
|
};
|
|
467
481
|
}
|
|
@@ -532,12 +546,14 @@ class CreateApiGroupResponse extends $tea.Model {
|
|
|
532
546
|
static names() {
|
|
533
547
|
return {
|
|
534
548
|
headers: 'headers',
|
|
549
|
+
statusCode: 'statusCode',
|
|
535
550
|
body: 'body',
|
|
536
551
|
};
|
|
537
552
|
}
|
|
538
553
|
static types() {
|
|
539
554
|
return {
|
|
540
555
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
556
|
+
statusCode: 'number',
|
|
541
557
|
body: CreateApiGroupResponseBody,
|
|
542
558
|
};
|
|
543
559
|
}
|
|
@@ -594,12 +610,14 @@ class CreateApiStageVariableResponse extends $tea.Model {
|
|
|
594
610
|
static names() {
|
|
595
611
|
return {
|
|
596
612
|
headers: 'headers',
|
|
613
|
+
statusCode: 'statusCode',
|
|
597
614
|
body: 'body',
|
|
598
615
|
};
|
|
599
616
|
}
|
|
600
617
|
static types() {
|
|
601
618
|
return {
|
|
602
619
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
620
|
+
statusCode: 'number',
|
|
603
621
|
body: CreateApiStageVariableResponseBody,
|
|
604
622
|
};
|
|
605
623
|
}
|
|
@@ -656,12 +674,14 @@ class CreateAppResponse extends $tea.Model {
|
|
|
656
674
|
static names() {
|
|
657
675
|
return {
|
|
658
676
|
headers: 'headers',
|
|
677
|
+
statusCode: 'statusCode',
|
|
659
678
|
body: 'body',
|
|
660
679
|
};
|
|
661
680
|
}
|
|
662
681
|
static types() {
|
|
663
682
|
return {
|
|
664
683
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
684
|
+
statusCode: 'number',
|
|
665
685
|
body: CreateAppResponseBody,
|
|
666
686
|
};
|
|
667
687
|
}
|
|
@@ -716,12 +736,14 @@ class CreateBackendResponse extends $tea.Model {
|
|
|
716
736
|
static names() {
|
|
717
737
|
return {
|
|
718
738
|
headers: 'headers',
|
|
739
|
+
statusCode: 'statusCode',
|
|
719
740
|
body: 'body',
|
|
720
741
|
};
|
|
721
742
|
}
|
|
722
743
|
static types() {
|
|
723
744
|
return {
|
|
724
745
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
746
|
+
statusCode: 'number',
|
|
725
747
|
body: CreateBackendResponseBody,
|
|
726
748
|
};
|
|
727
749
|
}
|
|
@@ -778,12 +800,14 @@ class CreateBackendModelResponse extends $tea.Model {
|
|
|
778
800
|
static names() {
|
|
779
801
|
return {
|
|
780
802
|
headers: 'headers',
|
|
803
|
+
statusCode: 'statusCode',
|
|
781
804
|
body: 'body',
|
|
782
805
|
};
|
|
783
806
|
}
|
|
784
807
|
static types() {
|
|
785
808
|
return {
|
|
786
809
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
810
|
+
statusCode: 'number',
|
|
787
811
|
body: CreateBackendModelResponseBody,
|
|
788
812
|
};
|
|
789
813
|
}
|
|
@@ -846,12 +870,14 @@ class CreateInstanceResponse extends $tea.Model {
|
|
|
846
870
|
static names() {
|
|
847
871
|
return {
|
|
848
872
|
headers: 'headers',
|
|
873
|
+
statusCode: 'statusCode',
|
|
849
874
|
body: 'body',
|
|
850
875
|
};
|
|
851
876
|
}
|
|
852
877
|
static types() {
|
|
853
878
|
return {
|
|
854
879
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
880
|
+
statusCode: 'number',
|
|
855
881
|
body: CreateInstanceResponseBody,
|
|
856
882
|
};
|
|
857
883
|
}
|
|
@@ -900,12 +926,14 @@ class CreateIntranetDomainResponse extends $tea.Model {
|
|
|
900
926
|
static names() {
|
|
901
927
|
return {
|
|
902
928
|
headers: 'headers',
|
|
929
|
+
statusCode: 'statusCode',
|
|
903
930
|
body: 'body',
|
|
904
931
|
};
|
|
905
932
|
}
|
|
906
933
|
static types() {
|
|
907
934
|
return {
|
|
908
935
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
936
|
+
statusCode: 'number',
|
|
909
937
|
body: CreateIntranetDomainResponseBody,
|
|
910
938
|
};
|
|
911
939
|
}
|
|
@@ -960,12 +988,14 @@ class CreateIpControlResponse extends $tea.Model {
|
|
|
960
988
|
static names() {
|
|
961
989
|
return {
|
|
962
990
|
headers: 'headers',
|
|
991
|
+
statusCode: 'statusCode',
|
|
963
992
|
body: 'body',
|
|
964
993
|
};
|
|
965
994
|
}
|
|
966
995
|
static types() {
|
|
967
996
|
return {
|
|
968
997
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
998
|
+
statusCode: 'number',
|
|
969
999
|
body: CreateIpControlResponseBody,
|
|
970
1000
|
};
|
|
971
1001
|
}
|
|
@@ -1016,12 +1046,14 @@ class CreateLogConfigResponse extends $tea.Model {
|
|
|
1016
1046
|
static names() {
|
|
1017
1047
|
return {
|
|
1018
1048
|
headers: 'headers',
|
|
1049
|
+
statusCode: 'statusCode',
|
|
1019
1050
|
body: 'body',
|
|
1020
1051
|
};
|
|
1021
1052
|
}
|
|
1022
1053
|
static types() {
|
|
1023
1054
|
return {
|
|
1024
1055
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1056
|
+
statusCode: 'number',
|
|
1025
1057
|
body: CreateLogConfigResponseBody,
|
|
1026
1058
|
};
|
|
1027
1059
|
}
|
|
@@ -1090,12 +1122,14 @@ class CreateModelResponse extends $tea.Model {
|
|
|
1090
1122
|
static names() {
|
|
1091
1123
|
return {
|
|
1092
1124
|
headers: 'headers',
|
|
1125
|
+
statusCode: 'statusCode',
|
|
1093
1126
|
body: 'body',
|
|
1094
1127
|
};
|
|
1095
1128
|
}
|
|
1096
1129
|
static types() {
|
|
1097
1130
|
return {
|
|
1098
1131
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1132
|
+
statusCode: 'number',
|
|
1099
1133
|
body: CreateModelResponseBody,
|
|
1100
1134
|
};
|
|
1101
1135
|
}
|
|
@@ -1148,12 +1182,14 @@ class CreateMonitorGroupResponse extends $tea.Model {
|
|
|
1148
1182
|
static names() {
|
|
1149
1183
|
return {
|
|
1150
1184
|
headers: 'headers',
|
|
1185
|
+
statusCode: 'statusCode',
|
|
1151
1186
|
body: 'body',
|
|
1152
1187
|
};
|
|
1153
1188
|
}
|
|
1154
1189
|
static types() {
|
|
1155
1190
|
return {
|
|
1156
1191
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1192
|
+
statusCode: 'number',
|
|
1157
1193
|
body: CreateMonitorGroupResponseBody,
|
|
1158
1194
|
};
|
|
1159
1195
|
}
|
|
@@ -1212,12 +1248,14 @@ class CreatePluginResponse extends $tea.Model {
|
|
|
1212
1248
|
static names() {
|
|
1213
1249
|
return {
|
|
1214
1250
|
headers: 'headers',
|
|
1251
|
+
statusCode: 'statusCode',
|
|
1215
1252
|
body: 'body',
|
|
1216
1253
|
};
|
|
1217
1254
|
}
|
|
1218
1255
|
static types() {
|
|
1219
1256
|
return {
|
|
1220
1257
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1258
|
+
statusCode: 'number',
|
|
1221
1259
|
body: CreatePluginResponseBody,
|
|
1222
1260
|
};
|
|
1223
1261
|
}
|
|
@@ -1272,12 +1310,14 @@ class CreateSignatureResponse extends $tea.Model {
|
|
|
1272
1310
|
static names() {
|
|
1273
1311
|
return {
|
|
1274
1312
|
headers: 'headers',
|
|
1313
|
+
statusCode: 'statusCode',
|
|
1275
1314
|
body: 'body',
|
|
1276
1315
|
};
|
|
1277
1316
|
}
|
|
1278
1317
|
static types() {
|
|
1279
1318
|
return {
|
|
1280
1319
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1320
|
+
statusCode: 'number',
|
|
1281
1321
|
body: CreateSignatureResponseBody,
|
|
1282
1322
|
};
|
|
1283
1323
|
}
|
|
@@ -1336,12 +1376,14 @@ class CreateTrafficControlResponse extends $tea.Model {
|
|
|
1336
1376
|
static names() {
|
|
1337
1377
|
return {
|
|
1338
1378
|
headers: 'headers',
|
|
1379
|
+
statusCode: 'statusCode',
|
|
1339
1380
|
body: 'body',
|
|
1340
1381
|
};
|
|
1341
1382
|
}
|
|
1342
1383
|
static types() {
|
|
1343
1384
|
return {
|
|
1344
1385
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1386
|
+
statusCode: 'number',
|
|
1345
1387
|
body: CreateTrafficControlResponseBody,
|
|
1346
1388
|
};
|
|
1347
1389
|
}
|
|
@@ -1388,12 +1430,14 @@ class DeleteAllTrafficSpecialControlResponse extends $tea.Model {
|
|
|
1388
1430
|
static names() {
|
|
1389
1431
|
return {
|
|
1390
1432
|
headers: 'headers',
|
|
1433
|
+
statusCode: 'statusCode',
|
|
1391
1434
|
body: 'body',
|
|
1392
1435
|
};
|
|
1393
1436
|
}
|
|
1394
1437
|
static types() {
|
|
1395
1438
|
return {
|
|
1396
1439
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1440
|
+
statusCode: 'number',
|
|
1397
1441
|
body: DeleteAllTrafficSpecialControlResponseBody,
|
|
1398
1442
|
};
|
|
1399
1443
|
}
|
|
@@ -1442,12 +1486,14 @@ class DeleteApiResponse extends $tea.Model {
|
|
|
1442
1486
|
static names() {
|
|
1443
1487
|
return {
|
|
1444
1488
|
headers: 'headers',
|
|
1489
|
+
statusCode: 'statusCode',
|
|
1445
1490
|
body: 'body',
|
|
1446
1491
|
};
|
|
1447
1492
|
}
|
|
1448
1493
|
static types() {
|
|
1449
1494
|
return {
|
|
1450
1495
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1496
|
+
statusCode: 'number',
|
|
1451
1497
|
body: DeleteApiResponseBody,
|
|
1452
1498
|
};
|
|
1453
1499
|
}
|
|
@@ -1496,12 +1542,14 @@ class DeleteApiGroupResponse extends $tea.Model {
|
|
|
1496
1542
|
static names() {
|
|
1497
1543
|
return {
|
|
1498
1544
|
headers: 'headers',
|
|
1545
|
+
statusCode: 'statusCode',
|
|
1499
1546
|
body: 'body',
|
|
1500
1547
|
};
|
|
1501
1548
|
}
|
|
1502
1549
|
static types() {
|
|
1503
1550
|
return {
|
|
1504
1551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1552
|
+
statusCode: 'number',
|
|
1505
1553
|
body: DeleteApiGroupResponseBody,
|
|
1506
1554
|
};
|
|
1507
1555
|
}
|
|
@@ -1552,12 +1600,14 @@ class DeleteApiStageVariableResponse extends $tea.Model {
|
|
|
1552
1600
|
static names() {
|
|
1553
1601
|
return {
|
|
1554
1602
|
headers: 'headers',
|
|
1603
|
+
statusCode: 'statusCode',
|
|
1555
1604
|
body: 'body',
|
|
1556
1605
|
};
|
|
1557
1606
|
}
|
|
1558
1607
|
static types() {
|
|
1559
1608
|
return {
|
|
1560
1609
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1610
|
+
statusCode: 'number',
|
|
1561
1611
|
body: DeleteApiStageVariableResponseBody,
|
|
1562
1612
|
};
|
|
1563
1613
|
}
|
|
@@ -1606,12 +1656,14 @@ class DeleteAppResponse extends $tea.Model {
|
|
|
1606
1656
|
static names() {
|
|
1607
1657
|
return {
|
|
1608
1658
|
headers: 'headers',
|
|
1659
|
+
statusCode: 'statusCode',
|
|
1609
1660
|
body: 'body',
|
|
1610
1661
|
};
|
|
1611
1662
|
}
|
|
1612
1663
|
static types() {
|
|
1613
1664
|
return {
|
|
1614
1665
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1666
|
+
statusCode: 'number',
|
|
1615
1667
|
body: DeleteAppResponseBody,
|
|
1616
1668
|
};
|
|
1617
1669
|
}
|
|
@@ -1658,12 +1710,14 @@ class DeleteBackendResponse extends $tea.Model {
|
|
|
1658
1710
|
static names() {
|
|
1659
1711
|
return {
|
|
1660
1712
|
headers: 'headers',
|
|
1713
|
+
statusCode: 'statusCode',
|
|
1661
1714
|
body: 'body',
|
|
1662
1715
|
};
|
|
1663
1716
|
}
|
|
1664
1717
|
static types() {
|
|
1665
1718
|
return {
|
|
1666
1719
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1720
|
+
statusCode: 'number',
|
|
1667
1721
|
body: DeleteBackendResponseBody,
|
|
1668
1722
|
};
|
|
1669
1723
|
}
|
|
@@ -1716,12 +1770,14 @@ class DeleteBackendModelResponse extends $tea.Model {
|
|
|
1716
1770
|
static names() {
|
|
1717
1771
|
return {
|
|
1718
1772
|
headers: 'headers',
|
|
1773
|
+
statusCode: 'statusCode',
|
|
1719
1774
|
body: 'body',
|
|
1720
1775
|
};
|
|
1721
1776
|
}
|
|
1722
1777
|
static types() {
|
|
1723
1778
|
return {
|
|
1724
1779
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1780
|
+
statusCode: 'number',
|
|
1725
1781
|
body: DeleteBackendModelResponseBody,
|
|
1726
1782
|
};
|
|
1727
1783
|
}
|
|
@@ -1770,12 +1826,14 @@ class DeleteDomainResponse extends $tea.Model {
|
|
|
1770
1826
|
static names() {
|
|
1771
1827
|
return {
|
|
1772
1828
|
headers: 'headers',
|
|
1829
|
+
statusCode: 'statusCode',
|
|
1773
1830
|
body: 'body',
|
|
1774
1831
|
};
|
|
1775
1832
|
}
|
|
1776
1833
|
static types() {
|
|
1777
1834
|
return {
|
|
1778
1835
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1836
|
+
statusCode: 'number',
|
|
1779
1837
|
body: DeleteDomainResponseBody,
|
|
1780
1838
|
};
|
|
1781
1839
|
}
|
|
@@ -1826,12 +1884,14 @@ class DeleteDomainCertificateResponse extends $tea.Model {
|
|
|
1826
1884
|
static names() {
|
|
1827
1885
|
return {
|
|
1828
1886
|
headers: 'headers',
|
|
1887
|
+
statusCode: 'statusCode',
|
|
1829
1888
|
body: 'body',
|
|
1830
1889
|
};
|
|
1831
1890
|
}
|
|
1832
1891
|
static types() {
|
|
1833
1892
|
return {
|
|
1834
1893
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1894
|
+
statusCode: 'number',
|
|
1835
1895
|
body: DeleteDomainCertificateResponseBody,
|
|
1836
1896
|
};
|
|
1837
1897
|
}
|
|
@@ -1878,12 +1938,14 @@ class DeleteInstanceResponse extends $tea.Model {
|
|
|
1878
1938
|
static names() {
|
|
1879
1939
|
return {
|
|
1880
1940
|
headers: 'headers',
|
|
1941
|
+
statusCode: 'statusCode',
|
|
1881
1942
|
body: 'body',
|
|
1882
1943
|
};
|
|
1883
1944
|
}
|
|
1884
1945
|
static types() {
|
|
1885
1946
|
return {
|
|
1886
1947
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1948
|
+
statusCode: 'number',
|
|
1887
1949
|
body: DeleteInstanceResponseBody,
|
|
1888
1950
|
};
|
|
1889
1951
|
}
|
|
@@ -1930,12 +1992,14 @@ class DeleteIpControlResponse extends $tea.Model {
|
|
|
1930
1992
|
static names() {
|
|
1931
1993
|
return {
|
|
1932
1994
|
headers: 'headers',
|
|
1995
|
+
statusCode: 'statusCode',
|
|
1933
1996
|
body: 'body',
|
|
1934
1997
|
};
|
|
1935
1998
|
}
|
|
1936
1999
|
static types() {
|
|
1937
2000
|
return {
|
|
1938
2001
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2002
|
+
statusCode: 'number',
|
|
1939
2003
|
body: DeleteIpControlResponseBody,
|
|
1940
2004
|
};
|
|
1941
2005
|
}
|
|
@@ -1982,12 +2046,14 @@ class DeleteLogConfigResponse extends $tea.Model {
|
|
|
1982
2046
|
static names() {
|
|
1983
2047
|
return {
|
|
1984
2048
|
headers: 'headers',
|
|
2049
|
+
statusCode: 'statusCode',
|
|
1985
2050
|
body: 'body',
|
|
1986
2051
|
};
|
|
1987
2052
|
}
|
|
1988
2053
|
static types() {
|
|
1989
2054
|
return {
|
|
1990
2055
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2056
|
+
statusCode: 'number',
|
|
1991
2057
|
body: DeleteLogConfigResponseBody,
|
|
1992
2058
|
};
|
|
1993
2059
|
}
|
|
@@ -2034,12 +2100,14 @@ class DeleteModelResponse extends $tea.Model {
|
|
|
2034
2100
|
static names() {
|
|
2035
2101
|
return {
|
|
2036
2102
|
headers: 'headers',
|
|
2103
|
+
statusCode: 'statusCode',
|
|
2037
2104
|
body: 'body',
|
|
2038
2105
|
};
|
|
2039
2106
|
}
|
|
2040
2107
|
static types() {
|
|
2041
2108
|
return {
|
|
2042
2109
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2110
|
+
statusCode: 'number',
|
|
2043
2111
|
body: DeleteModelResponseBody,
|
|
2044
2112
|
};
|
|
2045
2113
|
}
|
|
@@ -2088,12 +2156,14 @@ class DeleteMonitorGroupResponse extends $tea.Model {
|
|
|
2088
2156
|
static names() {
|
|
2089
2157
|
return {
|
|
2090
2158
|
headers: 'headers',
|
|
2159
|
+
statusCode: 'statusCode',
|
|
2091
2160
|
body: 'body',
|
|
2092
2161
|
};
|
|
2093
2162
|
}
|
|
2094
2163
|
static types() {
|
|
2095
2164
|
return {
|
|
2096
2165
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2166
|
+
statusCode: 'number',
|
|
2097
2167
|
body: DeleteMonitorGroupResponseBody,
|
|
2098
2168
|
};
|
|
2099
2169
|
}
|
|
@@ -2142,12 +2212,14 @@ class DeletePluginResponse extends $tea.Model {
|
|
|
2142
2212
|
static names() {
|
|
2143
2213
|
return {
|
|
2144
2214
|
headers: 'headers',
|
|
2215
|
+
statusCode: 'statusCode',
|
|
2145
2216
|
body: 'body',
|
|
2146
2217
|
};
|
|
2147
2218
|
}
|
|
2148
2219
|
static types() {
|
|
2149
2220
|
return {
|
|
2150
2221
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2222
|
+
statusCode: 'number',
|
|
2151
2223
|
body: DeletePluginResponseBody,
|
|
2152
2224
|
};
|
|
2153
2225
|
}
|
|
@@ -2194,12 +2266,14 @@ class DeleteSignatureResponse extends $tea.Model {
|
|
|
2194
2266
|
static names() {
|
|
2195
2267
|
return {
|
|
2196
2268
|
headers: 'headers',
|
|
2269
|
+
statusCode: 'statusCode',
|
|
2197
2270
|
body: 'body',
|
|
2198
2271
|
};
|
|
2199
2272
|
}
|
|
2200
2273
|
static types() {
|
|
2201
2274
|
return {
|
|
2202
2275
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2276
|
+
statusCode: 'number',
|
|
2203
2277
|
body: DeleteSignatureResponseBody,
|
|
2204
2278
|
};
|
|
2205
2279
|
}
|
|
@@ -2246,12 +2320,14 @@ class DeleteTrafficControlResponse extends $tea.Model {
|
|
|
2246
2320
|
static names() {
|
|
2247
2321
|
return {
|
|
2248
2322
|
headers: 'headers',
|
|
2323
|
+
statusCode: 'statusCode',
|
|
2249
2324
|
body: 'body',
|
|
2250
2325
|
};
|
|
2251
2326
|
}
|
|
2252
2327
|
static types() {
|
|
2253
2328
|
return {
|
|
2254
2329
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2330
|
+
statusCode: 'number',
|
|
2255
2331
|
body: DeleteTrafficControlResponseBody,
|
|
2256
2332
|
};
|
|
2257
2333
|
}
|
|
@@ -2302,12 +2378,14 @@ class DeleteTrafficSpecialControlResponse extends $tea.Model {
|
|
|
2302
2378
|
static names() {
|
|
2303
2379
|
return {
|
|
2304
2380
|
headers: 'headers',
|
|
2381
|
+
statusCode: 'statusCode',
|
|
2305
2382
|
body: 'body',
|
|
2306
2383
|
};
|
|
2307
2384
|
}
|
|
2308
2385
|
static types() {
|
|
2309
2386
|
return {
|
|
2310
2387
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2388
|
+
statusCode: 'number',
|
|
2311
2389
|
body: DeleteTrafficSpecialControlResponseBody,
|
|
2312
2390
|
};
|
|
2313
2391
|
}
|
|
@@ -2360,12 +2438,14 @@ class DeployApiResponse extends $tea.Model {
|
|
|
2360
2438
|
static names() {
|
|
2361
2439
|
return {
|
|
2362
2440
|
headers: 'headers',
|
|
2441
|
+
statusCode: 'statusCode',
|
|
2363
2442
|
body: 'body',
|
|
2364
2443
|
};
|
|
2365
2444
|
}
|
|
2366
2445
|
static types() {
|
|
2367
2446
|
return {
|
|
2368
2447
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2448
|
+
statusCode: 'number',
|
|
2369
2449
|
body: DeployApiResponseBody,
|
|
2370
2450
|
};
|
|
2371
2451
|
}
|
|
@@ -2414,12 +2494,14 @@ class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
|
2414
2494
|
static names() {
|
|
2415
2495
|
return {
|
|
2416
2496
|
headers: 'headers',
|
|
2497
|
+
statusCode: 'statusCode',
|
|
2417
2498
|
body: 'body',
|
|
2418
2499
|
};
|
|
2419
2500
|
}
|
|
2420
2501
|
static types() {
|
|
2421
2502
|
return {
|
|
2422
2503
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2504
|
+
statusCode: 'number',
|
|
2423
2505
|
body: DescribeAbolishApiTaskResponseBody,
|
|
2424
2506
|
};
|
|
2425
2507
|
}
|
|
@@ -2538,12 +2620,14 @@ class DescribeApiResponse extends $tea.Model {
|
|
|
2538
2620
|
static names() {
|
|
2539
2621
|
return {
|
|
2540
2622
|
headers: 'headers',
|
|
2623
|
+
statusCode: 'statusCode',
|
|
2541
2624
|
body: 'body',
|
|
2542
2625
|
};
|
|
2543
2626
|
}
|
|
2544
2627
|
static types() {
|
|
2545
2628
|
return {
|
|
2546
2629
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2630
|
+
statusCode: 'number',
|
|
2547
2631
|
body: DescribeApiResponseBody,
|
|
2548
2632
|
};
|
|
2549
2633
|
}
|
|
@@ -2632,12 +2716,14 @@ class DescribeApiDocResponse extends $tea.Model {
|
|
|
2632
2716
|
static names() {
|
|
2633
2717
|
return {
|
|
2634
2718
|
headers: 'headers',
|
|
2719
|
+
statusCode: 'statusCode',
|
|
2635
2720
|
body: 'body',
|
|
2636
2721
|
};
|
|
2637
2722
|
}
|
|
2638
2723
|
static types() {
|
|
2639
2724
|
return {
|
|
2640
2725
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2726
|
+
statusCode: 'number',
|
|
2641
2727
|
body: DescribeApiDocResponseBody,
|
|
2642
2728
|
};
|
|
2643
2729
|
}
|
|
@@ -2746,12 +2832,14 @@ class DescribeApiGroupResponse extends $tea.Model {
|
|
|
2746
2832
|
static names() {
|
|
2747
2833
|
return {
|
|
2748
2834
|
headers: 'headers',
|
|
2835
|
+
statusCode: 'statusCode',
|
|
2749
2836
|
body: 'body',
|
|
2750
2837
|
};
|
|
2751
2838
|
}
|
|
2752
2839
|
static types() {
|
|
2753
2840
|
return {
|
|
2754
2841
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2842
|
+
statusCode: 'number',
|
|
2755
2843
|
body: DescribeApiGroupResponseBody,
|
|
2756
2844
|
};
|
|
2757
2845
|
}
|
|
@@ -2800,12 +2888,14 @@ class DescribeApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
2800
2888
|
static names() {
|
|
2801
2889
|
return {
|
|
2802
2890
|
headers: 'headers',
|
|
2891
|
+
statusCode: 'statusCode',
|
|
2803
2892
|
body: 'body',
|
|
2804
2893
|
};
|
|
2805
2894
|
}
|
|
2806
2895
|
static types() {
|
|
2807
2896
|
return {
|
|
2808
2897
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2898
|
+
statusCode: 'number',
|
|
2809
2899
|
body: DescribeApiGroupVpcWhitelistResponseBody,
|
|
2810
2900
|
};
|
|
2811
2901
|
}
|
|
@@ -2874,12 +2964,14 @@ class DescribeApiGroupsResponse extends $tea.Model {
|
|
|
2874
2964
|
static names() {
|
|
2875
2965
|
return {
|
|
2876
2966
|
headers: 'headers',
|
|
2967
|
+
statusCode: 'statusCode',
|
|
2877
2968
|
body: 'body',
|
|
2878
2969
|
};
|
|
2879
2970
|
}
|
|
2880
2971
|
static types() {
|
|
2881
2972
|
return {
|
|
2882
2973
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2974
|
+
statusCode: 'number',
|
|
2883
2975
|
body: DescribeApiGroupsResponseBody,
|
|
2884
2976
|
};
|
|
2885
2977
|
}
|
|
@@ -2944,12 +3036,14 @@ class DescribeApiHistoriesResponse extends $tea.Model {
|
|
|
2944
3036
|
static names() {
|
|
2945
3037
|
return {
|
|
2946
3038
|
headers: 'headers',
|
|
3039
|
+
statusCode: 'statusCode',
|
|
2947
3040
|
body: 'body',
|
|
2948
3041
|
};
|
|
2949
3042
|
}
|
|
2950
3043
|
static types() {
|
|
2951
3044
|
return {
|
|
2952
3045
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3046
|
+
statusCode: 'number',
|
|
2953
3047
|
body: DescribeApiHistoriesResponseBody,
|
|
2954
3048
|
};
|
|
2955
3049
|
}
|
|
@@ -3070,12 +3164,14 @@ class DescribeApiHistoryResponse extends $tea.Model {
|
|
|
3070
3164
|
static names() {
|
|
3071
3165
|
return {
|
|
3072
3166
|
headers: 'headers',
|
|
3167
|
+
statusCode: 'statusCode',
|
|
3073
3168
|
body: 'body',
|
|
3074
3169
|
};
|
|
3075
3170
|
}
|
|
3076
3171
|
static types() {
|
|
3077
3172
|
return {
|
|
3078
3173
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3174
|
+
statusCode: 'number',
|
|
3079
3175
|
body: DescribeApiHistoryResponseBody,
|
|
3080
3176
|
};
|
|
3081
3177
|
}
|
|
@@ -3138,12 +3234,14 @@ class DescribeApiIpControlsResponse extends $tea.Model {
|
|
|
3138
3234
|
static names() {
|
|
3139
3235
|
return {
|
|
3140
3236
|
headers: 'headers',
|
|
3237
|
+
statusCode: 'statusCode',
|
|
3141
3238
|
body: 'body',
|
|
3142
3239
|
};
|
|
3143
3240
|
}
|
|
3144
3241
|
static types() {
|
|
3145
3242
|
return {
|
|
3146
3243
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3244
|
+
statusCode: 'number',
|
|
3147
3245
|
body: DescribeApiIpControlsResponseBody,
|
|
3148
3246
|
};
|
|
3149
3247
|
}
|
|
@@ -3200,12 +3298,14 @@ class DescribeApiLatencyDataResponse extends $tea.Model {
|
|
|
3200
3298
|
static names() {
|
|
3201
3299
|
return {
|
|
3202
3300
|
headers: 'headers',
|
|
3301
|
+
statusCode: 'statusCode',
|
|
3203
3302
|
body: 'body',
|
|
3204
3303
|
};
|
|
3205
3304
|
}
|
|
3206
3305
|
static types() {
|
|
3207
3306
|
return {
|
|
3208
3307
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3308
|
+
statusCode: 'number',
|
|
3209
3309
|
body: DescribeApiLatencyDataResponseBody,
|
|
3210
3310
|
};
|
|
3211
3311
|
}
|
|
@@ -3260,12 +3360,14 @@ class DescribeApiMarketAttributesResponse extends $tea.Model {
|
|
|
3260
3360
|
static names() {
|
|
3261
3361
|
return {
|
|
3262
3362
|
headers: 'headers',
|
|
3363
|
+
statusCode: 'statusCode',
|
|
3263
3364
|
body: 'body',
|
|
3264
3365
|
};
|
|
3265
3366
|
}
|
|
3266
3367
|
static types() {
|
|
3267
3368
|
return {
|
|
3268
3369
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3370
|
+
statusCode: 'number',
|
|
3269
3371
|
body: DescribeApiMarketAttributesResponseBody,
|
|
3270
3372
|
};
|
|
3271
3373
|
}
|
|
@@ -3324,12 +3426,14 @@ class DescribeApiQpsDataResponse extends $tea.Model {
|
|
|
3324
3426
|
static names() {
|
|
3325
3427
|
return {
|
|
3326
3428
|
headers: 'headers',
|
|
3429
|
+
statusCode: 'statusCode',
|
|
3327
3430
|
body: 'body',
|
|
3328
3431
|
};
|
|
3329
3432
|
}
|
|
3330
3433
|
static types() {
|
|
3331
3434
|
return {
|
|
3332
3435
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3436
|
+
statusCode: 'number',
|
|
3333
3437
|
body: DescribeApiQpsDataResponseBody,
|
|
3334
3438
|
};
|
|
3335
3439
|
}
|
|
@@ -3392,12 +3496,14 @@ class DescribeApiSignaturesResponse extends $tea.Model {
|
|
|
3392
3496
|
static names() {
|
|
3393
3497
|
return {
|
|
3394
3498
|
headers: 'headers',
|
|
3499
|
+
statusCode: 'statusCode',
|
|
3395
3500
|
body: 'body',
|
|
3396
3501
|
};
|
|
3397
3502
|
}
|
|
3398
3503
|
static types() {
|
|
3399
3504
|
return {
|
|
3400
3505
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3506
|
+
statusCode: 'number',
|
|
3401
3507
|
body: DescribeApiSignaturesResponseBody,
|
|
3402
3508
|
};
|
|
3403
3509
|
}
|
|
@@ -3460,12 +3566,14 @@ class DescribeApiTrafficControlsResponse extends $tea.Model {
|
|
|
3460
3566
|
static names() {
|
|
3461
3567
|
return {
|
|
3462
3568
|
headers: 'headers',
|
|
3569
|
+
statusCode: 'statusCode',
|
|
3463
3570
|
body: 'body',
|
|
3464
3571
|
};
|
|
3465
3572
|
}
|
|
3466
3573
|
static types() {
|
|
3467
3574
|
return {
|
|
3468
3575
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3576
|
+
statusCode: 'number',
|
|
3469
3577
|
body: DescribeApiTrafficControlsResponseBody,
|
|
3470
3578
|
};
|
|
3471
3579
|
}
|
|
@@ -3524,12 +3632,14 @@ class DescribeApiTrafficDataResponse extends $tea.Model {
|
|
|
3524
3632
|
static names() {
|
|
3525
3633
|
return {
|
|
3526
3634
|
headers: 'headers',
|
|
3635
|
+
statusCode: 'statusCode',
|
|
3527
3636
|
body: 'body',
|
|
3528
3637
|
};
|
|
3529
3638
|
}
|
|
3530
3639
|
static types() {
|
|
3531
3640
|
return {
|
|
3532
3641
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3642
|
+
statusCode: 'number',
|
|
3533
3643
|
body: DescribeApiTrafficDataResponseBody,
|
|
3534
3644
|
};
|
|
3535
3645
|
}
|
|
@@ -3600,12 +3710,14 @@ class DescribeApisResponse extends $tea.Model {
|
|
|
3600
3710
|
static names() {
|
|
3601
3711
|
return {
|
|
3602
3712
|
headers: 'headers',
|
|
3713
|
+
statusCode: 'statusCode',
|
|
3603
3714
|
body: 'body',
|
|
3604
3715
|
};
|
|
3605
3716
|
}
|
|
3606
3717
|
static types() {
|
|
3607
3718
|
return {
|
|
3608
3719
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3720
|
+
statusCode: 'number',
|
|
3609
3721
|
body: DescribeApisResponseBody,
|
|
3610
3722
|
};
|
|
3611
3723
|
}
|
|
@@ -3672,12 +3784,14 @@ class DescribeApisByAppResponse extends $tea.Model {
|
|
|
3672
3784
|
static names() {
|
|
3673
3785
|
return {
|
|
3674
3786
|
headers: 'headers',
|
|
3787
|
+
statusCode: 'statusCode',
|
|
3675
3788
|
body: 'body',
|
|
3676
3789
|
};
|
|
3677
3790
|
}
|
|
3678
3791
|
static types() {
|
|
3679
3792
|
return {
|
|
3680
3793
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3794
|
+
statusCode: 'number',
|
|
3681
3795
|
body: DescribeApisByAppResponseBody,
|
|
3682
3796
|
};
|
|
3683
3797
|
}
|
|
@@ -3738,12 +3852,14 @@ class DescribeApisByBackendResponse extends $tea.Model {
|
|
|
3738
3852
|
static names() {
|
|
3739
3853
|
return {
|
|
3740
3854
|
headers: 'headers',
|
|
3855
|
+
statusCode: 'statusCode',
|
|
3741
3856
|
body: 'body',
|
|
3742
3857
|
};
|
|
3743
3858
|
}
|
|
3744
3859
|
static types() {
|
|
3745
3860
|
return {
|
|
3746
3861
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3862
|
+
statusCode: 'number',
|
|
3747
3863
|
body: DescribeApisByBackendResponseBody,
|
|
3748
3864
|
};
|
|
3749
3865
|
}
|
|
@@ -3802,12 +3918,14 @@ class DescribeApisByIpControlResponse extends $tea.Model {
|
|
|
3802
3918
|
static names() {
|
|
3803
3919
|
return {
|
|
3804
3920
|
headers: 'headers',
|
|
3921
|
+
statusCode: 'statusCode',
|
|
3805
3922
|
body: 'body',
|
|
3806
3923
|
};
|
|
3807
3924
|
}
|
|
3808
3925
|
static types() {
|
|
3809
3926
|
return {
|
|
3810
3927
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3928
|
+
statusCode: 'number',
|
|
3811
3929
|
body: DescribeApisByIpControlResponseBody,
|
|
3812
3930
|
};
|
|
3813
3931
|
}
|
|
@@ -3866,12 +3984,14 @@ class DescribeApisBySignatureResponse extends $tea.Model {
|
|
|
3866
3984
|
static names() {
|
|
3867
3985
|
return {
|
|
3868
3986
|
headers: 'headers',
|
|
3987
|
+
statusCode: 'statusCode',
|
|
3869
3988
|
body: 'body',
|
|
3870
3989
|
};
|
|
3871
3990
|
}
|
|
3872
3991
|
static types() {
|
|
3873
3992
|
return {
|
|
3874
3993
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3994
|
+
statusCode: 'number',
|
|
3875
3995
|
body: DescribeApisBySignatureResponseBody,
|
|
3876
3996
|
};
|
|
3877
3997
|
}
|
|
@@ -3930,12 +4050,14 @@ class DescribeApisByTrafficControlResponse extends $tea.Model {
|
|
|
3930
4050
|
static names() {
|
|
3931
4051
|
return {
|
|
3932
4052
|
headers: 'headers',
|
|
4053
|
+
statusCode: 'statusCode',
|
|
3933
4054
|
body: 'body',
|
|
3934
4055
|
};
|
|
3935
4056
|
}
|
|
3936
4057
|
static types() {
|
|
3937
4058
|
return {
|
|
3938
4059
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4060
|
+
statusCode: 'number',
|
|
3939
4061
|
body: DescribeApisByTrafficControlResponseBody,
|
|
3940
4062
|
};
|
|
3941
4063
|
}
|
|
@@ -3992,12 +4114,14 @@ class DescribeAppResponse extends $tea.Model {
|
|
|
3992
4114
|
static names() {
|
|
3993
4115
|
return {
|
|
3994
4116
|
headers: 'headers',
|
|
4117
|
+
statusCode: 'statusCode',
|
|
3995
4118
|
body: 'body',
|
|
3996
4119
|
};
|
|
3997
4120
|
}
|
|
3998
4121
|
static types() {
|
|
3999
4122
|
return {
|
|
4000
4123
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4124
|
+
statusCode: 'number',
|
|
4001
4125
|
body: DescribeAppResponseBody,
|
|
4002
4126
|
};
|
|
4003
4127
|
}
|
|
@@ -4068,12 +4192,14 @@ class DescribeAppAttributesResponse extends $tea.Model {
|
|
|
4068
4192
|
static names() {
|
|
4069
4193
|
return {
|
|
4070
4194
|
headers: 'headers',
|
|
4195
|
+
statusCode: 'statusCode',
|
|
4071
4196
|
body: 'body',
|
|
4072
4197
|
};
|
|
4073
4198
|
}
|
|
4074
4199
|
static types() {
|
|
4075
4200
|
return {
|
|
4076
4201
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4202
|
+
statusCode: 'number',
|
|
4077
4203
|
body: DescribeAppAttributesResponseBody,
|
|
4078
4204
|
};
|
|
4079
4205
|
}
|
|
@@ -4132,12 +4258,14 @@ class DescribeAppSecurityResponse extends $tea.Model {
|
|
|
4132
4258
|
static names() {
|
|
4133
4259
|
return {
|
|
4134
4260
|
headers: 'headers',
|
|
4261
|
+
statusCode: 'statusCode',
|
|
4135
4262
|
body: 'body',
|
|
4136
4263
|
};
|
|
4137
4264
|
}
|
|
4138
4265
|
static types() {
|
|
4139
4266
|
return {
|
|
4140
4267
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4268
|
+
statusCode: 'number',
|
|
4141
4269
|
body: DescribeAppSecurityResponseBody,
|
|
4142
4270
|
};
|
|
4143
4271
|
}
|
|
@@ -4198,12 +4326,14 @@ class DescribeAppsResponse extends $tea.Model {
|
|
|
4198
4326
|
static names() {
|
|
4199
4327
|
return {
|
|
4200
4328
|
headers: 'headers',
|
|
4329
|
+
statusCode: 'statusCode',
|
|
4201
4330
|
body: 'body',
|
|
4202
4331
|
};
|
|
4203
4332
|
}
|
|
4204
4333
|
static types() {
|
|
4205
4334
|
return {
|
|
4206
4335
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4336
|
+
statusCode: 'number',
|
|
4207
4337
|
body: DescribeAppsResponseBody,
|
|
4208
4338
|
};
|
|
4209
4339
|
}
|
|
@@ -4262,12 +4392,14 @@ class DescribeAuthorizedApisResponse extends $tea.Model {
|
|
|
4262
4392
|
static names() {
|
|
4263
4393
|
return {
|
|
4264
4394
|
headers: 'headers',
|
|
4395
|
+
statusCode: 'statusCode',
|
|
4265
4396
|
body: 'body',
|
|
4266
4397
|
};
|
|
4267
4398
|
}
|
|
4268
4399
|
static types() {
|
|
4269
4400
|
return {
|
|
4270
4401
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4402
|
+
statusCode: 'number',
|
|
4271
4403
|
body: DescribeAuthorizedApisResponseBody,
|
|
4272
4404
|
};
|
|
4273
4405
|
}
|
|
@@ -4336,12 +4468,14 @@ class DescribeAuthorizedAppsResponse extends $tea.Model {
|
|
|
4336
4468
|
static names() {
|
|
4337
4469
|
return {
|
|
4338
4470
|
headers: 'headers',
|
|
4471
|
+
statusCode: 'statusCode',
|
|
4339
4472
|
body: 'body',
|
|
4340
4473
|
};
|
|
4341
4474
|
}
|
|
4342
4475
|
static types() {
|
|
4343
4476
|
return {
|
|
4344
4477
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4478
|
+
statusCode: 'number',
|
|
4345
4479
|
body: DescribeAuthorizedAppsResponseBody,
|
|
4346
4480
|
};
|
|
4347
4481
|
}
|
|
@@ -4390,12 +4524,14 @@ class DescribeBackendInfoResponse extends $tea.Model {
|
|
|
4390
4524
|
static names() {
|
|
4391
4525
|
return {
|
|
4392
4526
|
headers: 'headers',
|
|
4527
|
+
statusCode: 'statusCode',
|
|
4393
4528
|
body: 'body',
|
|
4394
4529
|
};
|
|
4395
4530
|
}
|
|
4396
4531
|
static types() {
|
|
4397
4532
|
return {
|
|
4398
4533
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4534
|
+
statusCode: 'number',
|
|
4399
4535
|
body: DescribeBackendInfoResponseBody,
|
|
4400
4536
|
};
|
|
4401
4537
|
}
|
|
@@ -4456,12 +4592,14 @@ class DescribeBackendListResponse extends $tea.Model {
|
|
|
4456
4592
|
static names() {
|
|
4457
4593
|
return {
|
|
4458
4594
|
headers: 'headers',
|
|
4595
|
+
statusCode: 'statusCode',
|
|
4459
4596
|
body: 'body',
|
|
4460
4597
|
};
|
|
4461
4598
|
}
|
|
4462
4599
|
static types() {
|
|
4463
4600
|
return {
|
|
4464
4601
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4602
|
+
statusCode: 'number',
|
|
4465
4603
|
body: DescribeBackendListResponseBody,
|
|
4466
4604
|
};
|
|
4467
4605
|
}
|
|
@@ -4510,12 +4648,14 @@ class DescribeDeployApiTaskResponse extends $tea.Model {
|
|
|
4510
4648
|
static names() {
|
|
4511
4649
|
return {
|
|
4512
4650
|
headers: 'headers',
|
|
4651
|
+
statusCode: 'statusCode',
|
|
4513
4652
|
body: 'body',
|
|
4514
4653
|
};
|
|
4515
4654
|
}
|
|
4516
4655
|
static types() {
|
|
4517
4656
|
return {
|
|
4518
4657
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4658
|
+
statusCode: 'number',
|
|
4519
4659
|
body: DescribeDeployApiTaskResponseBody,
|
|
4520
4660
|
};
|
|
4521
4661
|
}
|
|
@@ -4622,12 +4762,14 @@ class DescribeDeployedApiResponse extends $tea.Model {
|
|
|
4622
4762
|
static names() {
|
|
4623
4763
|
return {
|
|
4624
4764
|
headers: 'headers',
|
|
4765
|
+
statusCode: 'statusCode',
|
|
4625
4766
|
body: 'body',
|
|
4626
4767
|
};
|
|
4627
4768
|
}
|
|
4628
4769
|
static types() {
|
|
4629
4770
|
return {
|
|
4630
4771
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4772
|
+
statusCode: 'number',
|
|
4631
4773
|
body: DescribeDeployedApiResponseBody,
|
|
4632
4774
|
};
|
|
4633
4775
|
}
|
|
@@ -4696,12 +4838,14 @@ class DescribeDeployedApisResponse extends $tea.Model {
|
|
|
4696
4838
|
static names() {
|
|
4697
4839
|
return {
|
|
4698
4840
|
headers: 'headers',
|
|
4841
|
+
statusCode: 'statusCode',
|
|
4699
4842
|
body: 'body',
|
|
4700
4843
|
};
|
|
4701
4844
|
}
|
|
4702
4845
|
static types() {
|
|
4703
4846
|
return {
|
|
4704
4847
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4848
|
+
statusCode: 'number',
|
|
4705
4849
|
body: DescribeDeployedApisResponseBody,
|
|
4706
4850
|
};
|
|
4707
4851
|
}
|
|
@@ -4774,12 +4918,14 @@ class DescribeDomainResponse extends $tea.Model {
|
|
|
4774
4918
|
static names() {
|
|
4775
4919
|
return {
|
|
4776
4920
|
headers: 'headers',
|
|
4921
|
+
statusCode: 'statusCode',
|
|
4777
4922
|
body: 'body',
|
|
4778
4923
|
};
|
|
4779
4924
|
}
|
|
4780
4925
|
static types() {
|
|
4781
4926
|
return {
|
|
4782
4927
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4928
|
+
statusCode: 'number',
|
|
4783
4929
|
body: DescribeDomainResponseBody,
|
|
4784
4930
|
};
|
|
4785
4931
|
}
|
|
@@ -4844,12 +4990,14 @@ class DescribeHistoryApisResponse extends $tea.Model {
|
|
|
4844
4990
|
static names() {
|
|
4845
4991
|
return {
|
|
4846
4992
|
headers: 'headers',
|
|
4993
|
+
statusCode: 'statusCode',
|
|
4847
4994
|
body: 'body',
|
|
4848
4995
|
};
|
|
4849
4996
|
}
|
|
4850
4997
|
static types() {
|
|
4851
4998
|
return {
|
|
4852
4999
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5000
|
+
statusCode: 'number',
|
|
4853
5001
|
body: DescribeHistoryApisResponseBody,
|
|
4854
5002
|
};
|
|
4855
5003
|
}
|
|
@@ -4910,12 +5058,14 @@ class DescribeIpControlPolicyItemsResponse extends $tea.Model {
|
|
|
4910
5058
|
static names() {
|
|
4911
5059
|
return {
|
|
4912
5060
|
headers: 'headers',
|
|
5061
|
+
statusCode: 'statusCode',
|
|
4913
5062
|
body: 'body',
|
|
4914
5063
|
};
|
|
4915
5064
|
}
|
|
4916
5065
|
static types() {
|
|
4917
5066
|
return {
|
|
4918
5067
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5068
|
+
statusCode: 'number',
|
|
4919
5069
|
body: DescribeIpControlPolicyItemsResponseBody,
|
|
4920
5070
|
};
|
|
4921
5071
|
}
|
|
@@ -4978,12 +5128,14 @@ class DescribeIpControlsResponse extends $tea.Model {
|
|
|
4978
5128
|
static names() {
|
|
4979
5129
|
return {
|
|
4980
5130
|
headers: 'headers',
|
|
5131
|
+
statusCode: 'statusCode',
|
|
4981
5132
|
body: 'body',
|
|
4982
5133
|
};
|
|
4983
5134
|
}
|
|
4984
5135
|
static types() {
|
|
4985
5136
|
return {
|
|
4986
5137
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5138
|
+
statusCode: 'number',
|
|
4987
5139
|
body: DescribeIpControlsResponseBody,
|
|
4988
5140
|
};
|
|
4989
5141
|
}
|
|
@@ -5032,12 +5184,14 @@ class DescribeLogConfigResponse extends $tea.Model {
|
|
|
5032
5184
|
static names() {
|
|
5033
5185
|
return {
|
|
5034
5186
|
headers: 'headers',
|
|
5187
|
+
statusCode: 'statusCode',
|
|
5035
5188
|
body: 'body',
|
|
5036
5189
|
};
|
|
5037
5190
|
}
|
|
5038
5191
|
static types() {
|
|
5039
5192
|
return {
|
|
5040
5193
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5194
|
+
statusCode: 'number',
|
|
5041
5195
|
body: DescribeLogConfigResponseBody,
|
|
5042
5196
|
};
|
|
5043
5197
|
}
|
|
@@ -5086,12 +5240,14 @@ class DescribeMarketRemainsQuotaResponse extends $tea.Model {
|
|
|
5086
5240
|
static names() {
|
|
5087
5241
|
return {
|
|
5088
5242
|
headers: 'headers',
|
|
5243
|
+
statusCode: 'statusCode',
|
|
5089
5244
|
body: 'body',
|
|
5090
5245
|
};
|
|
5091
5246
|
}
|
|
5092
5247
|
static types() {
|
|
5093
5248
|
return {
|
|
5094
5249
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5250
|
+
statusCode: 'number',
|
|
5095
5251
|
body: DescribeMarketRemainsQuotaResponseBody,
|
|
5096
5252
|
};
|
|
5097
5253
|
}
|
|
@@ -5152,12 +5308,14 @@ class DescribeModelsResponse extends $tea.Model {
|
|
|
5152
5308
|
static names() {
|
|
5153
5309
|
return {
|
|
5154
5310
|
headers: 'headers',
|
|
5311
|
+
statusCode: 'statusCode',
|
|
5155
5312
|
body: 'body',
|
|
5156
5313
|
};
|
|
5157
5314
|
}
|
|
5158
5315
|
static types() {
|
|
5159
5316
|
return {
|
|
5160
5317
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5318
|
+
statusCode: 'number',
|
|
5161
5319
|
body: DescribeModelsResponseBody,
|
|
5162
5320
|
};
|
|
5163
5321
|
}
|
|
@@ -5206,12 +5364,14 @@ class DescribePluginSchemasResponse extends $tea.Model {
|
|
|
5206
5364
|
static names() {
|
|
5207
5365
|
return {
|
|
5208
5366
|
headers: 'headers',
|
|
5367
|
+
statusCode: 'statusCode',
|
|
5209
5368
|
body: 'body',
|
|
5210
5369
|
};
|
|
5211
5370
|
}
|
|
5212
5371
|
static types() {
|
|
5213
5372
|
return {
|
|
5214
5373
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5374
|
+
statusCode: 'number',
|
|
5215
5375
|
body: DescribePluginSchemasResponseBody,
|
|
5216
5376
|
};
|
|
5217
5377
|
}
|
|
@@ -5262,12 +5422,14 @@ class DescribePluginTemplatesResponse extends $tea.Model {
|
|
|
5262
5422
|
static names() {
|
|
5263
5423
|
return {
|
|
5264
5424
|
headers: 'headers',
|
|
5425
|
+
statusCode: 'statusCode',
|
|
5265
5426
|
body: 'body',
|
|
5266
5427
|
};
|
|
5267
5428
|
}
|
|
5268
5429
|
static types() {
|
|
5269
5430
|
return {
|
|
5270
5431
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5432
|
+
statusCode: 'number',
|
|
5271
5433
|
body: DescribePluginTemplatesResponseBody,
|
|
5272
5434
|
};
|
|
5273
5435
|
}
|
|
@@ -5332,12 +5494,14 @@ class DescribePluginsResponse extends $tea.Model {
|
|
|
5332
5494
|
static names() {
|
|
5333
5495
|
return {
|
|
5334
5496
|
headers: 'headers',
|
|
5497
|
+
statusCode: 'statusCode',
|
|
5335
5498
|
body: 'body',
|
|
5336
5499
|
};
|
|
5337
5500
|
}
|
|
5338
5501
|
static types() {
|
|
5339
5502
|
return {
|
|
5340
5503
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5504
|
+
statusCode: 'number',
|
|
5341
5505
|
body: DescribePluginsResponseBody,
|
|
5342
5506
|
};
|
|
5343
5507
|
}
|
|
@@ -5396,12 +5560,14 @@ class DescribePluginsByApiResponse extends $tea.Model {
|
|
|
5396
5560
|
static names() {
|
|
5397
5561
|
return {
|
|
5398
5562
|
headers: 'headers',
|
|
5563
|
+
statusCode: 'statusCode',
|
|
5399
5564
|
body: 'body',
|
|
5400
5565
|
};
|
|
5401
5566
|
}
|
|
5402
5567
|
static types() {
|
|
5403
5568
|
return {
|
|
5404
5569
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5570
|
+
statusCode: 'number',
|
|
5405
5571
|
body: DescribePluginsByApiResponseBody,
|
|
5406
5572
|
};
|
|
5407
5573
|
}
|
|
@@ -5462,12 +5628,14 @@ class DescribePurchasedApiGroupResponse extends $tea.Model {
|
|
|
5462
5628
|
static names() {
|
|
5463
5629
|
return {
|
|
5464
5630
|
headers: 'headers',
|
|
5631
|
+
statusCode: 'statusCode',
|
|
5465
5632
|
body: 'body',
|
|
5466
5633
|
};
|
|
5467
5634
|
}
|
|
5468
5635
|
static types() {
|
|
5469
5636
|
return {
|
|
5470
5637
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5638
|
+
statusCode: 'number',
|
|
5471
5639
|
body: DescribePurchasedApiGroupResponseBody,
|
|
5472
5640
|
};
|
|
5473
5641
|
}
|
|
@@ -5524,12 +5692,14 @@ class DescribePurchasedApiGroupsResponse extends $tea.Model {
|
|
|
5524
5692
|
static names() {
|
|
5525
5693
|
return {
|
|
5526
5694
|
headers: 'headers',
|
|
5695
|
+
statusCode: 'statusCode',
|
|
5527
5696
|
body: 'body',
|
|
5528
5697
|
};
|
|
5529
5698
|
}
|
|
5530
5699
|
static types() {
|
|
5531
5700
|
return {
|
|
5532
5701
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5702
|
+
statusCode: 'number',
|
|
5533
5703
|
body: DescribePurchasedApiGroupsResponseBody,
|
|
5534
5704
|
};
|
|
5535
5705
|
}
|
|
@@ -5596,12 +5766,14 @@ class DescribePurchasedApisResponse extends $tea.Model {
|
|
|
5596
5766
|
static names() {
|
|
5597
5767
|
return {
|
|
5598
5768
|
headers: 'headers',
|
|
5769
|
+
statusCode: 'statusCode',
|
|
5599
5770
|
body: 'body',
|
|
5600
5771
|
};
|
|
5601
5772
|
}
|
|
5602
5773
|
static types() {
|
|
5603
5774
|
return {
|
|
5604
5775
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5776
|
+
statusCode: 'number',
|
|
5605
5777
|
body: DescribePurchasedApisResponseBody,
|
|
5606
5778
|
};
|
|
5607
5779
|
}
|
|
@@ -5650,12 +5822,14 @@ class DescribeRegionsResponse extends $tea.Model {
|
|
|
5650
5822
|
static names() {
|
|
5651
5823
|
return {
|
|
5652
5824
|
headers: 'headers',
|
|
5825
|
+
statusCode: 'statusCode',
|
|
5653
5826
|
body: 'body',
|
|
5654
5827
|
};
|
|
5655
5828
|
}
|
|
5656
5829
|
static types() {
|
|
5657
5830
|
return {
|
|
5658
5831
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5832
|
+
statusCode: 'number',
|
|
5659
5833
|
body: DescribeRegionsResponseBody,
|
|
5660
5834
|
};
|
|
5661
5835
|
}
|
|
@@ -5716,12 +5890,14 @@ class DescribeSignaturesResponse extends $tea.Model {
|
|
|
5716
5890
|
static names() {
|
|
5717
5891
|
return {
|
|
5718
5892
|
headers: 'headers',
|
|
5893
|
+
statusCode: 'statusCode',
|
|
5719
5894
|
body: 'body',
|
|
5720
5895
|
};
|
|
5721
5896
|
}
|
|
5722
5897
|
static types() {
|
|
5723
5898
|
return {
|
|
5724
5899
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5900
|
+
statusCode: 'number',
|
|
5725
5901
|
body: DescribeSignaturesResponseBody,
|
|
5726
5902
|
};
|
|
5727
5903
|
}
|
|
@@ -5774,12 +5950,14 @@ class DescribeSignaturesByApiResponse extends $tea.Model {
|
|
|
5774
5950
|
static names() {
|
|
5775
5951
|
return {
|
|
5776
5952
|
headers: 'headers',
|
|
5953
|
+
statusCode: 'statusCode',
|
|
5777
5954
|
body: 'body',
|
|
5778
5955
|
};
|
|
5779
5956
|
}
|
|
5780
5957
|
static types() {
|
|
5781
5958
|
return {
|
|
5782
5959
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5960
|
+
statusCode: 'number',
|
|
5783
5961
|
body: DescribeSignaturesByApiResponseBody,
|
|
5784
5962
|
};
|
|
5785
5963
|
}
|
|
@@ -5826,12 +6004,14 @@ class DescribeSystemParametersResponse extends $tea.Model {
|
|
|
5826
6004
|
static names() {
|
|
5827
6005
|
return {
|
|
5828
6006
|
headers: 'headers',
|
|
6007
|
+
statusCode: 'statusCode',
|
|
5829
6008
|
body: 'body',
|
|
5830
6009
|
};
|
|
5831
6010
|
}
|
|
5832
6011
|
static types() {
|
|
5833
6012
|
return {
|
|
5834
6013
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6014
|
+
statusCode: 'number',
|
|
5835
6015
|
body: DescribeSystemParametersResponseBody,
|
|
5836
6016
|
};
|
|
5837
6017
|
}
|
|
@@ -5898,12 +6078,14 @@ class DescribeTrafficControlsResponse extends $tea.Model {
|
|
|
5898
6078
|
static names() {
|
|
5899
6079
|
return {
|
|
5900
6080
|
headers: 'headers',
|
|
6081
|
+
statusCode: 'statusCode',
|
|
5901
6082
|
body: 'body',
|
|
5902
6083
|
};
|
|
5903
6084
|
}
|
|
5904
6085
|
static types() {
|
|
5905
6086
|
return {
|
|
5906
6087
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6088
|
+
statusCode: 'number',
|
|
5907
6089
|
body: DescribeTrafficControlsResponseBody,
|
|
5908
6090
|
};
|
|
5909
6091
|
}
|
|
@@ -5956,12 +6138,14 @@ class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
|
5956
6138
|
static names() {
|
|
5957
6139
|
return {
|
|
5958
6140
|
headers: 'headers',
|
|
6141
|
+
statusCode: 'statusCode',
|
|
5959
6142
|
body: 'body',
|
|
5960
6143
|
};
|
|
5961
6144
|
}
|
|
5962
6145
|
static types() {
|
|
5963
6146
|
return {
|
|
5964
6147
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6148
|
+
statusCode: 'number',
|
|
5965
6149
|
body: DescribeTrafficControlsByApiResponseBody,
|
|
5966
6150
|
};
|
|
5967
6151
|
}
|
|
@@ -6010,12 +6194,14 @@ class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
|
6010
6194
|
static names() {
|
|
6011
6195
|
return {
|
|
6012
6196
|
headers: 'headers',
|
|
6197
|
+
statusCode: 'statusCode',
|
|
6013
6198
|
body: 'body',
|
|
6014
6199
|
};
|
|
6015
6200
|
}
|
|
6016
6201
|
static types() {
|
|
6017
6202
|
return {
|
|
6018
6203
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6204
|
+
statusCode: 'number',
|
|
6019
6205
|
body: DescribeUpdateBackendTaskResponseBody,
|
|
6020
6206
|
};
|
|
6021
6207
|
}
|
|
@@ -6064,12 +6250,14 @@ class DescribeUpdateVpcInfoTaskResponse extends $tea.Model {
|
|
|
6064
6250
|
static names() {
|
|
6065
6251
|
return {
|
|
6066
6252
|
headers: 'headers',
|
|
6253
|
+
statusCode: 'statusCode',
|
|
6067
6254
|
body: 'body',
|
|
6068
6255
|
};
|
|
6069
6256
|
}
|
|
6070
6257
|
static types() {
|
|
6071
6258
|
return {
|
|
6072
6259
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6260
|
+
statusCode: 'number',
|
|
6073
6261
|
body: DescribeUpdateVpcInfoTaskResponseBody,
|
|
6074
6262
|
};
|
|
6075
6263
|
}
|
|
@@ -6136,12 +6324,14 @@ class DescribeVpcAccessesResponse extends $tea.Model {
|
|
|
6136
6324
|
static names() {
|
|
6137
6325
|
return {
|
|
6138
6326
|
headers: 'headers',
|
|
6327
|
+
statusCode: 'statusCode',
|
|
6139
6328
|
body: 'body',
|
|
6140
6329
|
};
|
|
6141
6330
|
}
|
|
6142
6331
|
static types() {
|
|
6143
6332
|
return {
|
|
6144
6333
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6334
|
+
statusCode: 'number',
|
|
6145
6335
|
body: DescribeVpcAccessesResponseBody,
|
|
6146
6336
|
};
|
|
6147
6337
|
}
|
|
@@ -6190,12 +6380,14 @@ class DescribeZonesResponse extends $tea.Model {
|
|
|
6190
6380
|
static names() {
|
|
6191
6381
|
return {
|
|
6192
6382
|
headers: 'headers',
|
|
6383
|
+
statusCode: 'statusCode',
|
|
6193
6384
|
body: 'body',
|
|
6194
6385
|
};
|
|
6195
6386
|
}
|
|
6196
6387
|
static types() {
|
|
6197
6388
|
return {
|
|
6198
6389
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6390
|
+
statusCode: 'number',
|
|
6199
6391
|
body: DescribeZonesResponseBody,
|
|
6200
6392
|
};
|
|
6201
6393
|
}
|
|
@@ -6248,12 +6440,14 @@ class DetachPluginResponse extends $tea.Model {
|
|
|
6248
6440
|
static names() {
|
|
6249
6441
|
return {
|
|
6250
6442
|
headers: 'headers',
|
|
6443
|
+
statusCode: 'statusCode',
|
|
6251
6444
|
body: 'body',
|
|
6252
6445
|
};
|
|
6253
6446
|
}
|
|
6254
6447
|
static types() {
|
|
6255
6448
|
return {
|
|
6256
6449
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6450
|
+
statusCode: 'number',
|
|
6257
6451
|
body: DetachPluginResponseBody,
|
|
6258
6452
|
};
|
|
6259
6453
|
}
|
|
@@ -6344,12 +6538,14 @@ class DryRunSwaggerResponse extends $tea.Model {
|
|
|
6344
6538
|
static names() {
|
|
6345
6539
|
return {
|
|
6346
6540
|
headers: 'headers',
|
|
6541
|
+
statusCode: 'statusCode',
|
|
6347
6542
|
body: 'body',
|
|
6348
6543
|
};
|
|
6349
6544
|
}
|
|
6350
6545
|
static types() {
|
|
6351
6546
|
return {
|
|
6352
6547
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6548
|
+
statusCode: 'number',
|
|
6353
6549
|
body: DryRunSwaggerResponseBody,
|
|
6354
6550
|
};
|
|
6355
6551
|
}
|
|
@@ -6442,12 +6638,14 @@ class ImportSwaggerResponse extends $tea.Model {
|
|
|
6442
6638
|
static names() {
|
|
6443
6639
|
return {
|
|
6444
6640
|
headers: 'headers',
|
|
6641
|
+
statusCode: 'statusCode',
|
|
6445
6642
|
body: 'body',
|
|
6446
6643
|
};
|
|
6447
6644
|
}
|
|
6448
6645
|
static types() {
|
|
6449
6646
|
return {
|
|
6450
6647
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6648
|
+
statusCode: 'number',
|
|
6451
6649
|
body: ImportSwaggerResponseBody,
|
|
6452
6650
|
};
|
|
6453
6651
|
}
|
|
@@ -6502,12 +6700,14 @@ class ListTagResourcesResponse extends $tea.Model {
|
|
|
6502
6700
|
static names() {
|
|
6503
6701
|
return {
|
|
6504
6702
|
headers: 'headers',
|
|
6703
|
+
statusCode: 'statusCode',
|
|
6505
6704
|
body: 'body',
|
|
6506
6705
|
};
|
|
6507
6706
|
}
|
|
6508
6707
|
static types() {
|
|
6509
6708
|
return {
|
|
6510
6709
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6710
|
+
statusCode: 'number',
|
|
6511
6711
|
body: ListTagResourcesResponseBody,
|
|
6512
6712
|
};
|
|
6513
6713
|
}
|
|
@@ -6606,17 +6806,141 @@ class ModifyApiResponse extends $tea.Model {
|
|
|
6606
6806
|
static names() {
|
|
6607
6807
|
return {
|
|
6608
6808
|
headers: 'headers',
|
|
6809
|
+
statusCode: 'statusCode',
|
|
6609
6810
|
body: 'body',
|
|
6610
6811
|
};
|
|
6611
6812
|
}
|
|
6612
6813
|
static types() {
|
|
6613
6814
|
return {
|
|
6614
6815
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6816
|
+
statusCode: 'number',
|
|
6615
6817
|
body: ModifyApiResponseBody,
|
|
6616
6818
|
};
|
|
6617
6819
|
}
|
|
6618
6820
|
}
|
|
6619
6821
|
exports.ModifyApiResponse = ModifyApiResponse;
|
|
6822
|
+
class ModifyApiConfigurationRequest extends $tea.Model {
|
|
6823
|
+
constructor(map) {
|
|
6824
|
+
super(map);
|
|
6825
|
+
}
|
|
6826
|
+
static names() {
|
|
6827
|
+
return {
|
|
6828
|
+
allowSignatureMethod: 'AllowSignatureMethod',
|
|
6829
|
+
apiId: 'ApiId',
|
|
6830
|
+
apiName: 'ApiName',
|
|
6831
|
+
appCodeAuthType: 'AppCodeAuthType',
|
|
6832
|
+
authType: 'AuthType',
|
|
6833
|
+
backendName: 'BackendName',
|
|
6834
|
+
bodyFormat: 'BodyFormat',
|
|
6835
|
+
bodyModel: 'BodyModel',
|
|
6836
|
+
contentTypeCategory: 'ContentTypeCategory',
|
|
6837
|
+
contentTypeValue: 'ContentTypeValue',
|
|
6838
|
+
description: 'Description',
|
|
6839
|
+
disableInternet: 'DisableInternet',
|
|
6840
|
+
errorCodeSamples: 'ErrorCodeSamples',
|
|
6841
|
+
failResultSample: 'FailResultSample',
|
|
6842
|
+
forceNonceCheck: 'ForceNonceCheck',
|
|
6843
|
+
functionComputeConfig: 'FunctionComputeConfig',
|
|
6844
|
+
httpConfig: 'HttpConfig',
|
|
6845
|
+
mockConfig: 'MockConfig',
|
|
6846
|
+
modelName: 'ModelName',
|
|
6847
|
+
ossConfig: 'OssConfig',
|
|
6848
|
+
postBodyDescription: 'PostBodyDescription',
|
|
6849
|
+
requestHttpMethod: 'RequestHttpMethod',
|
|
6850
|
+
requestMode: 'RequestMode',
|
|
6851
|
+
requestParameters: 'RequestParameters',
|
|
6852
|
+
requestPath: 'RequestPath',
|
|
6853
|
+
requestProtocol: 'RequestProtocol',
|
|
6854
|
+
resultSample: 'ResultSample',
|
|
6855
|
+
resultType: 'ResultType',
|
|
6856
|
+
securityToken: 'SecurityToken',
|
|
6857
|
+
serviceParameters: 'ServiceParameters',
|
|
6858
|
+
serviceParametersMap: 'ServiceParametersMap',
|
|
6859
|
+
serviceProtocol: 'ServiceProtocol',
|
|
6860
|
+
serviceTimeout: 'ServiceTimeout',
|
|
6861
|
+
useBackendService: 'UseBackendService',
|
|
6862
|
+
visibility: 'Visibility',
|
|
6863
|
+
vpcConfig: 'VpcConfig',
|
|
6864
|
+
};
|
|
6865
|
+
}
|
|
6866
|
+
static types() {
|
|
6867
|
+
return {
|
|
6868
|
+
allowSignatureMethod: 'string',
|
|
6869
|
+
apiId: 'string',
|
|
6870
|
+
apiName: 'string',
|
|
6871
|
+
appCodeAuthType: 'string',
|
|
6872
|
+
authType: 'string',
|
|
6873
|
+
backendName: 'string',
|
|
6874
|
+
bodyFormat: 'string',
|
|
6875
|
+
bodyModel: 'string',
|
|
6876
|
+
contentTypeCategory: 'string',
|
|
6877
|
+
contentTypeValue: 'string',
|
|
6878
|
+
description: 'string',
|
|
6879
|
+
disableInternet: 'boolean',
|
|
6880
|
+
errorCodeSamples: 'string',
|
|
6881
|
+
failResultSample: 'string',
|
|
6882
|
+
forceNonceCheck: 'boolean',
|
|
6883
|
+
functionComputeConfig: 'string',
|
|
6884
|
+
httpConfig: 'string',
|
|
6885
|
+
mockConfig: 'string',
|
|
6886
|
+
modelName: 'string',
|
|
6887
|
+
ossConfig: 'string',
|
|
6888
|
+
postBodyDescription: 'string',
|
|
6889
|
+
requestHttpMethod: 'string',
|
|
6890
|
+
requestMode: 'string',
|
|
6891
|
+
requestParameters: 'string',
|
|
6892
|
+
requestPath: 'string',
|
|
6893
|
+
requestProtocol: 'string',
|
|
6894
|
+
resultSample: 'string',
|
|
6895
|
+
resultType: 'string',
|
|
6896
|
+
securityToken: 'string',
|
|
6897
|
+
serviceParameters: 'string',
|
|
6898
|
+
serviceParametersMap: 'string',
|
|
6899
|
+
serviceProtocol: 'string',
|
|
6900
|
+
serviceTimeout: 'number',
|
|
6901
|
+
useBackendService: 'boolean',
|
|
6902
|
+
visibility: 'string',
|
|
6903
|
+
vpcConfig: 'string',
|
|
6904
|
+
};
|
|
6905
|
+
}
|
|
6906
|
+
}
|
|
6907
|
+
exports.ModifyApiConfigurationRequest = ModifyApiConfigurationRequest;
|
|
6908
|
+
class ModifyApiConfigurationResponseBody extends $tea.Model {
|
|
6909
|
+
constructor(map) {
|
|
6910
|
+
super(map);
|
|
6911
|
+
}
|
|
6912
|
+
static names() {
|
|
6913
|
+
return {
|
|
6914
|
+
requestId: 'RequestId',
|
|
6915
|
+
};
|
|
6916
|
+
}
|
|
6917
|
+
static types() {
|
|
6918
|
+
return {
|
|
6919
|
+
requestId: 'string',
|
|
6920
|
+
};
|
|
6921
|
+
}
|
|
6922
|
+
}
|
|
6923
|
+
exports.ModifyApiConfigurationResponseBody = ModifyApiConfigurationResponseBody;
|
|
6924
|
+
class ModifyApiConfigurationResponse extends $tea.Model {
|
|
6925
|
+
constructor(map) {
|
|
6926
|
+
super(map);
|
|
6927
|
+
}
|
|
6928
|
+
static names() {
|
|
6929
|
+
return {
|
|
6930
|
+
headers: 'headers',
|
|
6931
|
+
statusCode: 'statusCode',
|
|
6932
|
+
body: 'body',
|
|
6933
|
+
};
|
|
6934
|
+
}
|
|
6935
|
+
static types() {
|
|
6936
|
+
return {
|
|
6937
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6938
|
+
statusCode: 'number',
|
|
6939
|
+
body: ModifyApiConfigurationResponseBody,
|
|
6940
|
+
};
|
|
6941
|
+
}
|
|
6942
|
+
}
|
|
6943
|
+
exports.ModifyApiConfigurationResponse = ModifyApiConfigurationResponse;
|
|
6620
6944
|
class ModifyApiGroupRequest extends $tea.Model {
|
|
6621
6945
|
constructor(map) {
|
|
6622
6946
|
super(map);
|
|
@@ -6690,12 +7014,14 @@ class ModifyApiGroupResponse extends $tea.Model {
|
|
|
6690
7014
|
static names() {
|
|
6691
7015
|
return {
|
|
6692
7016
|
headers: 'headers',
|
|
7017
|
+
statusCode: 'statusCode',
|
|
6693
7018
|
body: 'body',
|
|
6694
7019
|
};
|
|
6695
7020
|
}
|
|
6696
7021
|
static types() {
|
|
6697
7022
|
return {
|
|
6698
7023
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7024
|
+
statusCode: 'number',
|
|
6699
7025
|
body: ModifyApiGroupResponseBody,
|
|
6700
7026
|
};
|
|
6701
7027
|
}
|
|
@@ -6744,12 +7070,14 @@ class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
6744
7070
|
static names() {
|
|
6745
7071
|
return {
|
|
6746
7072
|
headers: 'headers',
|
|
7073
|
+
statusCode: 'statusCode',
|
|
6747
7074
|
body: 'body',
|
|
6748
7075
|
};
|
|
6749
7076
|
}
|
|
6750
7077
|
static types() {
|
|
6751
7078
|
return {
|
|
6752
7079
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7080
|
+
statusCode: 'number',
|
|
6753
7081
|
body: ModifyApiGroupVpcWhitelistResponseBody,
|
|
6754
7082
|
};
|
|
6755
7083
|
}
|
|
@@ -6802,12 +7130,14 @@ class ModifyAppResponse extends $tea.Model {
|
|
|
6802
7130
|
static names() {
|
|
6803
7131
|
return {
|
|
6804
7132
|
headers: 'headers',
|
|
7133
|
+
statusCode: 'statusCode',
|
|
6805
7134
|
body: 'body',
|
|
6806
7135
|
};
|
|
6807
7136
|
}
|
|
6808
7137
|
static types() {
|
|
6809
7138
|
return {
|
|
6810
7139
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7140
|
+
statusCode: 'number',
|
|
6811
7141
|
body: ModifyAppResponseBody,
|
|
6812
7142
|
};
|
|
6813
7143
|
}
|
|
@@ -6860,12 +7190,14 @@ class ModifyBackendResponse extends $tea.Model {
|
|
|
6860
7190
|
static names() {
|
|
6861
7191
|
return {
|
|
6862
7192
|
headers: 'headers',
|
|
7193
|
+
statusCode: 'statusCode',
|
|
6863
7194
|
body: 'body',
|
|
6864
7195
|
};
|
|
6865
7196
|
}
|
|
6866
7197
|
static types() {
|
|
6867
7198
|
return {
|
|
6868
7199
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7200
|
+
statusCode: 'number',
|
|
6869
7201
|
body: ModifyBackendResponseBody,
|
|
6870
7202
|
};
|
|
6871
7203
|
}
|
|
@@ -6924,12 +7256,14 @@ class ModifyBackendModelResponse extends $tea.Model {
|
|
|
6924
7256
|
static names() {
|
|
6925
7257
|
return {
|
|
6926
7258
|
headers: 'headers',
|
|
7259
|
+
statusCode: 'statusCode',
|
|
6927
7260
|
body: 'body',
|
|
6928
7261
|
};
|
|
6929
7262
|
}
|
|
6930
7263
|
static types() {
|
|
6931
7264
|
return {
|
|
6932
7265
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7266
|
+
statusCode: 'number',
|
|
6933
7267
|
body: ModifyBackendModelResponseBody,
|
|
6934
7268
|
};
|
|
6935
7269
|
}
|
|
@@ -6980,12 +7314,14 @@ class ModifyInstanceSpecResponse extends $tea.Model {
|
|
|
6980
7314
|
static names() {
|
|
6981
7315
|
return {
|
|
6982
7316
|
headers: 'headers',
|
|
7317
|
+
statusCode: 'statusCode',
|
|
6983
7318
|
body: 'body',
|
|
6984
7319
|
};
|
|
6985
7320
|
}
|
|
6986
7321
|
static types() {
|
|
6987
7322
|
return {
|
|
6988
7323
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7324
|
+
statusCode: 'number',
|
|
6989
7325
|
body: ModifyInstanceSpecResponseBody,
|
|
6990
7326
|
};
|
|
6991
7327
|
}
|
|
@@ -7036,12 +7372,14 @@ class ModifyIpControlResponse extends $tea.Model {
|
|
|
7036
7372
|
static names() {
|
|
7037
7373
|
return {
|
|
7038
7374
|
headers: 'headers',
|
|
7375
|
+
statusCode: 'statusCode',
|
|
7039
7376
|
body: 'body',
|
|
7040
7377
|
};
|
|
7041
7378
|
}
|
|
7042
7379
|
static types() {
|
|
7043
7380
|
return {
|
|
7044
7381
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7382
|
+
statusCode: 'number',
|
|
7045
7383
|
body: ModifyIpControlResponseBody,
|
|
7046
7384
|
};
|
|
7047
7385
|
}
|
|
@@ -7094,12 +7432,14 @@ class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
|
7094
7432
|
static names() {
|
|
7095
7433
|
return {
|
|
7096
7434
|
headers: 'headers',
|
|
7435
|
+
statusCode: 'statusCode',
|
|
7097
7436
|
body: 'body',
|
|
7098
7437
|
};
|
|
7099
7438
|
}
|
|
7100
7439
|
static types() {
|
|
7101
7440
|
return {
|
|
7102
7441
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7442
|
+
statusCode: 'number',
|
|
7103
7443
|
body: ModifyIpControlPolicyItemResponseBody,
|
|
7104
7444
|
};
|
|
7105
7445
|
}
|
|
@@ -7150,12 +7490,14 @@ class ModifyLogConfigResponse extends $tea.Model {
|
|
|
7150
7490
|
static names() {
|
|
7151
7491
|
return {
|
|
7152
7492
|
headers: 'headers',
|
|
7493
|
+
statusCode: 'statusCode',
|
|
7153
7494
|
body: 'body',
|
|
7154
7495
|
};
|
|
7155
7496
|
}
|
|
7156
7497
|
static types() {
|
|
7157
7498
|
return {
|
|
7158
7499
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7500
|
+
statusCode: 'number',
|
|
7159
7501
|
body: ModifyLogConfigResponseBody,
|
|
7160
7502
|
};
|
|
7161
7503
|
}
|
|
@@ -7208,12 +7550,14 @@ class ModifyModelResponse extends $tea.Model {
|
|
|
7208
7550
|
static names() {
|
|
7209
7551
|
return {
|
|
7210
7552
|
headers: 'headers',
|
|
7553
|
+
statusCode: 'statusCode',
|
|
7211
7554
|
body: 'body',
|
|
7212
7555
|
};
|
|
7213
7556
|
}
|
|
7214
7557
|
static types() {
|
|
7215
7558
|
return {
|
|
7216
7559
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7560
|
+
statusCode: 'number',
|
|
7217
7561
|
body: ModifyModelResponseBody,
|
|
7218
7562
|
};
|
|
7219
7563
|
}
|
|
@@ -7268,12 +7612,14 @@ class ModifyPluginResponse extends $tea.Model {
|
|
|
7268
7612
|
static names() {
|
|
7269
7613
|
return {
|
|
7270
7614
|
headers: 'headers',
|
|
7615
|
+
statusCode: 'statusCode',
|
|
7271
7616
|
body: 'body',
|
|
7272
7617
|
};
|
|
7273
7618
|
}
|
|
7274
7619
|
static types() {
|
|
7275
7620
|
return {
|
|
7276
7621
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7622
|
+
statusCode: 'number',
|
|
7277
7623
|
body: ModifyPluginResponseBody,
|
|
7278
7624
|
};
|
|
7279
7625
|
}
|
|
@@ -7330,12 +7676,14 @@ class ModifySignatureResponse extends $tea.Model {
|
|
|
7330
7676
|
static names() {
|
|
7331
7677
|
return {
|
|
7332
7678
|
headers: 'headers',
|
|
7679
|
+
statusCode: 'statusCode',
|
|
7333
7680
|
body: 'body',
|
|
7334
7681
|
};
|
|
7335
7682
|
}
|
|
7336
7683
|
static types() {
|
|
7337
7684
|
return {
|
|
7338
7685
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7686
|
+
statusCode: 'number',
|
|
7339
7687
|
body: ModifySignatureResponseBody,
|
|
7340
7688
|
};
|
|
7341
7689
|
}
|
|
@@ -7394,12 +7742,14 @@ class ModifyTrafficControlResponse extends $tea.Model {
|
|
|
7394
7742
|
static names() {
|
|
7395
7743
|
return {
|
|
7396
7744
|
headers: 'headers',
|
|
7745
|
+
statusCode: 'statusCode',
|
|
7397
7746
|
body: 'body',
|
|
7398
7747
|
};
|
|
7399
7748
|
}
|
|
7400
7749
|
static types() {
|
|
7401
7750
|
return {
|
|
7402
7751
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7752
|
+
statusCode: 'number',
|
|
7403
7753
|
body: ModifyTrafficControlResponseBody,
|
|
7404
7754
|
};
|
|
7405
7755
|
}
|
|
@@ -7430,12 +7780,14 @@ class OpenApiGatewayServiceResponse extends $tea.Model {
|
|
|
7430
7780
|
static names() {
|
|
7431
7781
|
return {
|
|
7432
7782
|
headers: 'headers',
|
|
7783
|
+
statusCode: 'statusCode',
|
|
7433
7784
|
body: 'body',
|
|
7434
7785
|
};
|
|
7435
7786
|
}
|
|
7436
7787
|
static types() {
|
|
7437
7788
|
return {
|
|
7438
7789
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7790
|
+
statusCode: 'number',
|
|
7439
7791
|
body: OpenApiGatewayServiceResponseBody,
|
|
7440
7792
|
};
|
|
7441
7793
|
}
|
|
@@ -7484,12 +7836,14 @@ class ReactivateDomainResponse extends $tea.Model {
|
|
|
7484
7836
|
static names() {
|
|
7485
7837
|
return {
|
|
7486
7838
|
headers: 'headers',
|
|
7839
|
+
statusCode: 'statusCode',
|
|
7487
7840
|
body: 'body',
|
|
7488
7841
|
};
|
|
7489
7842
|
}
|
|
7490
7843
|
static types() {
|
|
7491
7844
|
return {
|
|
7492
7845
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7846
|
+
statusCode: 'number',
|
|
7493
7847
|
body: ReactivateDomainResponseBody,
|
|
7494
7848
|
};
|
|
7495
7849
|
}
|
|
@@ -7544,12 +7898,14 @@ class RemoveApisAuthoritiesResponse extends $tea.Model {
|
|
|
7544
7898
|
static names() {
|
|
7545
7899
|
return {
|
|
7546
7900
|
headers: 'headers',
|
|
7901
|
+
statusCode: 'statusCode',
|
|
7547
7902
|
body: 'body',
|
|
7548
7903
|
};
|
|
7549
7904
|
}
|
|
7550
7905
|
static types() {
|
|
7551
7906
|
return {
|
|
7552
7907
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7908
|
+
statusCode: 'number',
|
|
7553
7909
|
body: RemoveApisAuthoritiesResponseBody,
|
|
7554
7910
|
};
|
|
7555
7911
|
}
|
|
@@ -7602,12 +7958,14 @@ class RemoveAppsAuthoritiesResponse extends $tea.Model {
|
|
|
7602
7958
|
static names() {
|
|
7603
7959
|
return {
|
|
7604
7960
|
headers: 'headers',
|
|
7961
|
+
statusCode: 'statusCode',
|
|
7605
7962
|
body: 'body',
|
|
7606
7963
|
};
|
|
7607
7964
|
}
|
|
7608
7965
|
static types() {
|
|
7609
7966
|
return {
|
|
7610
7967
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7968
|
+
statusCode: 'number',
|
|
7611
7969
|
body: RemoveAppsAuthoritiesResponseBody,
|
|
7612
7970
|
};
|
|
7613
7971
|
}
|
|
@@ -7660,12 +8018,14 @@ class RemoveIpControlApisResponse extends $tea.Model {
|
|
|
7660
8018
|
static names() {
|
|
7661
8019
|
return {
|
|
7662
8020
|
headers: 'headers',
|
|
8021
|
+
statusCode: 'statusCode',
|
|
7663
8022
|
body: 'body',
|
|
7664
8023
|
};
|
|
7665
8024
|
}
|
|
7666
8025
|
static types() {
|
|
7667
8026
|
return {
|
|
7668
8027
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8028
|
+
statusCode: 'number',
|
|
7669
8029
|
body: RemoveIpControlApisResponseBody,
|
|
7670
8030
|
};
|
|
7671
8031
|
}
|
|
@@ -7714,12 +8074,14 @@ class RemoveIpControlPolicyItemResponse extends $tea.Model {
|
|
|
7714
8074
|
static names() {
|
|
7715
8075
|
return {
|
|
7716
8076
|
headers: 'headers',
|
|
8077
|
+
statusCode: 'statusCode',
|
|
7717
8078
|
body: 'body',
|
|
7718
8079
|
};
|
|
7719
8080
|
}
|
|
7720
8081
|
static types() {
|
|
7721
8082
|
return {
|
|
7722
8083
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8084
|
+
statusCode: 'number',
|
|
7723
8085
|
body: RemoveIpControlPolicyItemResponseBody,
|
|
7724
8086
|
};
|
|
7725
8087
|
}
|
|
@@ -7772,12 +8134,14 @@ class RemoveSignatureApisResponse extends $tea.Model {
|
|
|
7772
8134
|
static names() {
|
|
7773
8135
|
return {
|
|
7774
8136
|
headers: 'headers',
|
|
8137
|
+
statusCode: 'statusCode',
|
|
7775
8138
|
body: 'body',
|
|
7776
8139
|
};
|
|
7777
8140
|
}
|
|
7778
8141
|
static types() {
|
|
7779
8142
|
return {
|
|
7780
8143
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8144
|
+
statusCode: 'number',
|
|
7781
8145
|
body: RemoveSignatureApisResponseBody,
|
|
7782
8146
|
};
|
|
7783
8147
|
}
|
|
@@ -7830,12 +8194,14 @@ class RemoveTrafficControlApisResponse extends $tea.Model {
|
|
|
7830
8194
|
static names() {
|
|
7831
8195
|
return {
|
|
7832
8196
|
headers: 'headers',
|
|
8197
|
+
statusCode: 'statusCode',
|
|
7833
8198
|
body: 'body',
|
|
7834
8199
|
};
|
|
7835
8200
|
}
|
|
7836
8201
|
static types() {
|
|
7837
8202
|
return {
|
|
7838
8203
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8204
|
+
statusCode: 'number',
|
|
7839
8205
|
body: RemoveTrafficControlApisResponseBody,
|
|
7840
8206
|
};
|
|
7841
8207
|
}
|
|
@@ -7890,12 +8256,14 @@ class RemoveVpcAccessResponse extends $tea.Model {
|
|
|
7890
8256
|
static names() {
|
|
7891
8257
|
return {
|
|
7892
8258
|
headers: 'headers',
|
|
8259
|
+
statusCode: 'statusCode',
|
|
7893
8260
|
body: 'body',
|
|
7894
8261
|
};
|
|
7895
8262
|
}
|
|
7896
8263
|
static types() {
|
|
7897
8264
|
return {
|
|
7898
8265
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8266
|
+
statusCode: 'number',
|
|
7899
8267
|
body: RemoveVpcAccessResponseBody,
|
|
7900
8268
|
};
|
|
7901
8269
|
}
|
|
@@ -7950,12 +8318,14 @@ class RemoveVpcAccessAndAbolishApisResponse extends $tea.Model {
|
|
|
7950
8318
|
static names() {
|
|
7951
8319
|
return {
|
|
7952
8320
|
headers: 'headers',
|
|
8321
|
+
statusCode: 'statusCode',
|
|
7953
8322
|
body: 'body',
|
|
7954
8323
|
};
|
|
7955
8324
|
}
|
|
7956
8325
|
static types() {
|
|
7957
8326
|
return {
|
|
7958
8327
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8328
|
+
statusCode: 'number',
|
|
7959
8329
|
body: RemoveVpcAccessAndAbolishApisResponseBody,
|
|
7960
8330
|
};
|
|
7961
8331
|
}
|
|
@@ -8002,12 +8372,14 @@ class ResetAppCodeResponse extends $tea.Model {
|
|
|
8002
8372
|
static names() {
|
|
8003
8373
|
return {
|
|
8004
8374
|
headers: 'headers',
|
|
8375
|
+
statusCode: 'statusCode',
|
|
8005
8376
|
body: 'body',
|
|
8006
8377
|
};
|
|
8007
8378
|
}
|
|
8008
8379
|
static types() {
|
|
8009
8380
|
return {
|
|
8010
8381
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8382
|
+
statusCode: 'number',
|
|
8011
8383
|
body: ResetAppCodeResponseBody,
|
|
8012
8384
|
};
|
|
8013
8385
|
}
|
|
@@ -8054,12 +8426,14 @@ class ResetAppSecretResponse extends $tea.Model {
|
|
|
8054
8426
|
static names() {
|
|
8055
8427
|
return {
|
|
8056
8428
|
headers: 'headers',
|
|
8429
|
+
statusCode: 'statusCode',
|
|
8057
8430
|
body: 'body',
|
|
8058
8431
|
};
|
|
8059
8432
|
}
|
|
8060
8433
|
static types() {
|
|
8061
8434
|
return {
|
|
8062
8435
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8436
|
+
statusCode: 'number',
|
|
8063
8437
|
body: ResetAppSecretResponseBody,
|
|
8064
8438
|
};
|
|
8065
8439
|
}
|
|
@@ -8110,12 +8484,14 @@ class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
8110
8484
|
static names() {
|
|
8111
8485
|
return {
|
|
8112
8486
|
headers: 'headers',
|
|
8487
|
+
statusCode: 'statusCode',
|
|
8113
8488
|
body: 'body',
|
|
8114
8489
|
};
|
|
8115
8490
|
}
|
|
8116
8491
|
static types() {
|
|
8117
8492
|
return {
|
|
8118
8493
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8494
|
+
statusCode: 'number',
|
|
8119
8495
|
body: SdkGenerateByAppResponseBody,
|
|
8120
8496
|
};
|
|
8121
8497
|
}
|
|
@@ -8166,12 +8542,14 @@ class SdkGenerateByGroupResponse extends $tea.Model {
|
|
|
8166
8542
|
static names() {
|
|
8167
8543
|
return {
|
|
8168
8544
|
headers: 'headers',
|
|
8545
|
+
statusCode: 'statusCode',
|
|
8169
8546
|
body: 'body',
|
|
8170
8547
|
};
|
|
8171
8548
|
}
|
|
8172
8549
|
static types() {
|
|
8173
8550
|
return {
|
|
8174
8551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8552
|
+
statusCode: 'number',
|
|
8175
8553
|
body: SdkGenerateByGroupResponseBody,
|
|
8176
8554
|
};
|
|
8177
8555
|
}
|
|
@@ -8228,12 +8606,14 @@ class SetApisAuthoritiesResponse extends $tea.Model {
|
|
|
8228
8606
|
static names() {
|
|
8229
8607
|
return {
|
|
8230
8608
|
headers: 'headers',
|
|
8609
|
+
statusCode: 'statusCode',
|
|
8231
8610
|
body: 'body',
|
|
8232
8611
|
};
|
|
8233
8612
|
}
|
|
8234
8613
|
static types() {
|
|
8235
8614
|
return {
|
|
8236
8615
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8616
|
+
statusCode: 'number',
|
|
8237
8617
|
body: SetApisAuthoritiesResponseBody,
|
|
8238
8618
|
};
|
|
8239
8619
|
}
|
|
@@ -8290,12 +8670,14 @@ class SetAppsAuthoritiesResponse extends $tea.Model {
|
|
|
8290
8670
|
static names() {
|
|
8291
8671
|
return {
|
|
8292
8672
|
headers: 'headers',
|
|
8673
|
+
statusCode: 'statusCode',
|
|
8293
8674
|
body: 'body',
|
|
8294
8675
|
};
|
|
8295
8676
|
}
|
|
8296
8677
|
static types() {
|
|
8297
8678
|
return {
|
|
8298
8679
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8680
|
+
statusCode: 'number',
|
|
8299
8681
|
body: SetAppsAuthoritiesResponseBody,
|
|
8300
8682
|
};
|
|
8301
8683
|
}
|
|
@@ -8362,12 +8744,14 @@ class SetDomainResponse extends $tea.Model {
|
|
|
8362
8744
|
static names() {
|
|
8363
8745
|
return {
|
|
8364
8746
|
headers: 'headers',
|
|
8747
|
+
statusCode: 'statusCode',
|
|
8365
8748
|
body: 'body',
|
|
8366
8749
|
};
|
|
8367
8750
|
}
|
|
8368
8751
|
static types() {
|
|
8369
8752
|
return {
|
|
8370
8753
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8754
|
+
statusCode: 'number',
|
|
8371
8755
|
body: SetDomainResponseBody,
|
|
8372
8756
|
};
|
|
8373
8757
|
}
|
|
@@ -8386,6 +8770,7 @@ class SetDomainCertificateRequest extends $tea.Model {
|
|
|
8386
8770
|
domainName: 'DomainName',
|
|
8387
8771
|
groupId: 'GroupId',
|
|
8388
8772
|
securityToken: 'SecurityToken',
|
|
8773
|
+
sslVerifyDepth: 'SslVerifyDepth',
|
|
8389
8774
|
};
|
|
8390
8775
|
}
|
|
8391
8776
|
static types() {
|
|
@@ -8397,6 +8782,7 @@ class SetDomainCertificateRequest extends $tea.Model {
|
|
|
8397
8782
|
domainName: 'string',
|
|
8398
8783
|
groupId: 'string',
|
|
8399
8784
|
securityToken: 'string',
|
|
8785
|
+
sslVerifyDepth: 'string',
|
|
8400
8786
|
};
|
|
8401
8787
|
}
|
|
8402
8788
|
}
|
|
@@ -8424,12 +8810,14 @@ class SetDomainCertificateResponse extends $tea.Model {
|
|
|
8424
8810
|
static names() {
|
|
8425
8811
|
return {
|
|
8426
8812
|
headers: 'headers',
|
|
8813
|
+
statusCode: 'statusCode',
|
|
8427
8814
|
body: 'body',
|
|
8428
8815
|
};
|
|
8429
8816
|
}
|
|
8430
8817
|
static types() {
|
|
8431
8818
|
return {
|
|
8432
8819
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8820
|
+
statusCode: 'number',
|
|
8433
8821
|
body: SetDomainCertificateResponseBody,
|
|
8434
8822
|
};
|
|
8435
8823
|
}
|
|
@@ -8480,12 +8868,14 @@ class SetDomainWebSocketStatusResponse extends $tea.Model {
|
|
|
8480
8868
|
static names() {
|
|
8481
8869
|
return {
|
|
8482
8870
|
headers: 'headers',
|
|
8871
|
+
statusCode: 'statusCode',
|
|
8483
8872
|
body: 'body',
|
|
8484
8873
|
};
|
|
8485
8874
|
}
|
|
8486
8875
|
static types() {
|
|
8487
8876
|
return {
|
|
8488
8877
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8878
|
+
statusCode: 'number',
|
|
8489
8879
|
body: SetDomainWebSocketStatusResponseBody,
|
|
8490
8880
|
};
|
|
8491
8881
|
}
|
|
@@ -8538,12 +8928,14 @@ class SetIpControlApisResponse extends $tea.Model {
|
|
|
8538
8928
|
static names() {
|
|
8539
8929
|
return {
|
|
8540
8930
|
headers: 'headers',
|
|
8931
|
+
statusCode: 'statusCode',
|
|
8541
8932
|
body: 'body',
|
|
8542
8933
|
};
|
|
8543
8934
|
}
|
|
8544
8935
|
static types() {
|
|
8545
8936
|
return {
|
|
8546
8937
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8938
|
+
statusCode: 'number',
|
|
8547
8939
|
body: SetIpControlApisResponseBody,
|
|
8548
8940
|
};
|
|
8549
8941
|
}
|
|
@@ -8596,12 +8988,14 @@ class SetSignatureApisResponse extends $tea.Model {
|
|
|
8596
8988
|
static names() {
|
|
8597
8989
|
return {
|
|
8598
8990
|
headers: 'headers',
|
|
8991
|
+
statusCode: 'statusCode',
|
|
8599
8992
|
body: 'body',
|
|
8600
8993
|
};
|
|
8601
8994
|
}
|
|
8602
8995
|
static types() {
|
|
8603
8996
|
return {
|
|
8604
8997
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8998
|
+
statusCode: 'number',
|
|
8605
8999
|
body: SetSignatureApisResponseBody,
|
|
8606
9000
|
};
|
|
8607
9001
|
}
|
|
@@ -8654,12 +9048,14 @@ class SetTrafficControlApisResponse extends $tea.Model {
|
|
|
8654
9048
|
static names() {
|
|
8655
9049
|
return {
|
|
8656
9050
|
headers: 'headers',
|
|
9051
|
+
statusCode: 'statusCode',
|
|
8657
9052
|
body: 'body',
|
|
8658
9053
|
};
|
|
8659
9054
|
}
|
|
8660
9055
|
static types() {
|
|
8661
9056
|
return {
|
|
8662
9057
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9058
|
+
statusCode: 'number',
|
|
8663
9059
|
body: SetTrafficControlApisResponseBody,
|
|
8664
9060
|
};
|
|
8665
9061
|
}
|
|
@@ -8677,6 +9073,7 @@ class SetVpcAccessRequest extends $tea.Model {
|
|
|
8677
9073
|
port: 'Port',
|
|
8678
9074
|
securityToken: 'SecurityToken',
|
|
8679
9075
|
vpcId: 'VpcId',
|
|
9076
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
8680
9077
|
};
|
|
8681
9078
|
}
|
|
8682
9079
|
static types() {
|
|
@@ -8687,6 +9084,7 @@ class SetVpcAccessRequest extends $tea.Model {
|
|
|
8687
9084
|
port: 'number',
|
|
8688
9085
|
securityToken: 'string',
|
|
8689
9086
|
vpcId: 'string',
|
|
9087
|
+
vpcTargetHostName: 'string',
|
|
8690
9088
|
};
|
|
8691
9089
|
}
|
|
8692
9090
|
}
|
|
@@ -8714,12 +9112,14 @@ class SetVpcAccessResponse extends $tea.Model {
|
|
|
8714
9112
|
static names() {
|
|
8715
9113
|
return {
|
|
8716
9114
|
headers: 'headers',
|
|
9115
|
+
statusCode: 'statusCode',
|
|
8717
9116
|
body: 'body',
|
|
8718
9117
|
};
|
|
8719
9118
|
}
|
|
8720
9119
|
static types() {
|
|
8721
9120
|
return {
|
|
8722
9121
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9122
|
+
statusCode: 'number',
|
|
8723
9123
|
body: SetVpcAccessResponseBody,
|
|
8724
9124
|
};
|
|
8725
9125
|
}
|
|
@@ -8770,12 +9170,14 @@ class SetWildcardDomainPatternsResponse extends $tea.Model {
|
|
|
8770
9170
|
static names() {
|
|
8771
9171
|
return {
|
|
8772
9172
|
headers: 'headers',
|
|
9173
|
+
statusCode: 'statusCode',
|
|
8773
9174
|
body: 'body',
|
|
8774
9175
|
};
|
|
8775
9176
|
}
|
|
8776
9177
|
static types() {
|
|
8777
9178
|
return {
|
|
8778
9179
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9180
|
+
statusCode: 'number',
|
|
8779
9181
|
body: SetWildcardDomainPatternsResponseBody,
|
|
8780
9182
|
};
|
|
8781
9183
|
}
|
|
@@ -8830,12 +9232,14 @@ class SwitchApiResponse extends $tea.Model {
|
|
|
8830
9232
|
static names() {
|
|
8831
9233
|
return {
|
|
8832
9234
|
headers: 'headers',
|
|
9235
|
+
statusCode: 'statusCode',
|
|
8833
9236
|
body: 'body',
|
|
8834
9237
|
};
|
|
8835
9238
|
}
|
|
8836
9239
|
static types() {
|
|
8837
9240
|
return {
|
|
8838
9241
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9242
|
+
statusCode: 'number',
|
|
8839
9243
|
body: SwitchApiResponseBody,
|
|
8840
9244
|
};
|
|
8841
9245
|
}
|
|
@@ -8886,12 +9290,14 @@ class TagResourcesResponse extends $tea.Model {
|
|
|
8886
9290
|
static names() {
|
|
8887
9291
|
return {
|
|
8888
9292
|
headers: 'headers',
|
|
9293
|
+
statusCode: 'statusCode',
|
|
8889
9294
|
body: 'body',
|
|
8890
9295
|
};
|
|
8891
9296
|
}
|
|
8892
9297
|
static types() {
|
|
8893
9298
|
return {
|
|
8894
9299
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9300
|
+
statusCode: 'number',
|
|
8895
9301
|
body: TagResourcesResponseBody,
|
|
8896
9302
|
};
|
|
8897
9303
|
}
|
|
@@ -8944,12 +9350,14 @@ class UntagResourcesResponse extends $tea.Model {
|
|
|
8944
9350
|
static names() {
|
|
8945
9351
|
return {
|
|
8946
9352
|
headers: 'headers',
|
|
9353
|
+
statusCode: 'statusCode',
|
|
8947
9354
|
body: 'body',
|
|
8948
9355
|
};
|
|
8949
9356
|
}
|
|
8950
9357
|
static types() {
|
|
8951
9358
|
return {
|
|
8952
9359
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9360
|
+
statusCode: 'number',
|
|
8953
9361
|
body: UntagResourcesResponseBody,
|
|
8954
9362
|
};
|
|
8955
9363
|
}
|
|
@@ -13513,6 +13921,7 @@ class DescribeVpcAccessesResponseBodyVpcAccessAttributesVpcAccessAttribute exten
|
|
|
13513
13921
|
regionId: 'RegionId',
|
|
13514
13922
|
vpcAccessId: 'VpcAccessId',
|
|
13515
13923
|
vpcId: 'VpcId',
|
|
13924
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
13516
13925
|
};
|
|
13517
13926
|
}
|
|
13518
13927
|
static types() {
|
|
@@ -13525,6 +13934,7 @@ class DescribeVpcAccessesResponseBodyVpcAccessAttributesVpcAccessAttribute exten
|
|
|
13525
13934
|
regionId: 'string',
|
|
13526
13935
|
vpcAccessId: 'string',
|
|
13527
13936
|
vpcId: 'string',
|
|
13937
|
+
vpcTargetHostName: 'string',
|
|
13528
13938
|
};
|
|
13529
13939
|
}
|
|
13530
13940
|
}
|
|
@@ -17896,6 +18306,137 @@ class Client extends openapi_client_1.default {
|
|
|
17896
18306
|
let runtime = new $Util.RuntimeOptions({});
|
|
17897
18307
|
return await this.modifyApiWithOptions(request, runtime);
|
|
17898
18308
|
}
|
|
18309
|
+
async modifyApiConfigurationWithOptions(request, runtime) {
|
|
18310
|
+
tea_util_1.default.validateModel(request);
|
|
18311
|
+
let query = {};
|
|
18312
|
+
if (!tea_util_1.default.isUnset(request.allowSignatureMethod)) {
|
|
18313
|
+
query["AllowSignatureMethod"] = request.allowSignatureMethod;
|
|
18314
|
+
}
|
|
18315
|
+
if (!tea_util_1.default.isUnset(request.apiId)) {
|
|
18316
|
+
query["ApiId"] = request.apiId;
|
|
18317
|
+
}
|
|
18318
|
+
if (!tea_util_1.default.isUnset(request.apiName)) {
|
|
18319
|
+
query["ApiName"] = request.apiName;
|
|
18320
|
+
}
|
|
18321
|
+
if (!tea_util_1.default.isUnset(request.appCodeAuthType)) {
|
|
18322
|
+
query["AppCodeAuthType"] = request.appCodeAuthType;
|
|
18323
|
+
}
|
|
18324
|
+
if (!tea_util_1.default.isUnset(request.authType)) {
|
|
18325
|
+
query["AuthType"] = request.authType;
|
|
18326
|
+
}
|
|
18327
|
+
if (!tea_util_1.default.isUnset(request.backendName)) {
|
|
18328
|
+
query["BackendName"] = request.backendName;
|
|
18329
|
+
}
|
|
18330
|
+
if (!tea_util_1.default.isUnset(request.bodyFormat)) {
|
|
18331
|
+
query["BodyFormat"] = request.bodyFormat;
|
|
18332
|
+
}
|
|
18333
|
+
if (!tea_util_1.default.isUnset(request.bodyModel)) {
|
|
18334
|
+
query["BodyModel"] = request.bodyModel;
|
|
18335
|
+
}
|
|
18336
|
+
if (!tea_util_1.default.isUnset(request.contentTypeCategory)) {
|
|
18337
|
+
query["ContentTypeCategory"] = request.contentTypeCategory;
|
|
18338
|
+
}
|
|
18339
|
+
if (!tea_util_1.default.isUnset(request.contentTypeValue)) {
|
|
18340
|
+
query["ContentTypeValue"] = request.contentTypeValue;
|
|
18341
|
+
}
|
|
18342
|
+
if (!tea_util_1.default.isUnset(request.description)) {
|
|
18343
|
+
query["Description"] = request.description;
|
|
18344
|
+
}
|
|
18345
|
+
if (!tea_util_1.default.isUnset(request.disableInternet)) {
|
|
18346
|
+
query["DisableInternet"] = request.disableInternet;
|
|
18347
|
+
}
|
|
18348
|
+
if (!tea_util_1.default.isUnset(request.errorCodeSamples)) {
|
|
18349
|
+
query["ErrorCodeSamples"] = request.errorCodeSamples;
|
|
18350
|
+
}
|
|
18351
|
+
if (!tea_util_1.default.isUnset(request.failResultSample)) {
|
|
18352
|
+
query["FailResultSample"] = request.failResultSample;
|
|
18353
|
+
}
|
|
18354
|
+
if (!tea_util_1.default.isUnset(request.forceNonceCheck)) {
|
|
18355
|
+
query["ForceNonceCheck"] = request.forceNonceCheck;
|
|
18356
|
+
}
|
|
18357
|
+
if (!tea_util_1.default.isUnset(request.functionComputeConfig)) {
|
|
18358
|
+
query["FunctionComputeConfig"] = request.functionComputeConfig;
|
|
18359
|
+
}
|
|
18360
|
+
if (!tea_util_1.default.isUnset(request.httpConfig)) {
|
|
18361
|
+
query["HttpConfig"] = request.httpConfig;
|
|
18362
|
+
}
|
|
18363
|
+
if (!tea_util_1.default.isUnset(request.mockConfig)) {
|
|
18364
|
+
query["MockConfig"] = request.mockConfig;
|
|
18365
|
+
}
|
|
18366
|
+
if (!tea_util_1.default.isUnset(request.modelName)) {
|
|
18367
|
+
query["ModelName"] = request.modelName;
|
|
18368
|
+
}
|
|
18369
|
+
if (!tea_util_1.default.isUnset(request.ossConfig)) {
|
|
18370
|
+
query["OssConfig"] = request.ossConfig;
|
|
18371
|
+
}
|
|
18372
|
+
if (!tea_util_1.default.isUnset(request.postBodyDescription)) {
|
|
18373
|
+
query["PostBodyDescription"] = request.postBodyDescription;
|
|
18374
|
+
}
|
|
18375
|
+
if (!tea_util_1.default.isUnset(request.requestHttpMethod)) {
|
|
18376
|
+
query["RequestHttpMethod"] = request.requestHttpMethod;
|
|
18377
|
+
}
|
|
18378
|
+
if (!tea_util_1.default.isUnset(request.requestMode)) {
|
|
18379
|
+
query["RequestMode"] = request.requestMode;
|
|
18380
|
+
}
|
|
18381
|
+
if (!tea_util_1.default.isUnset(request.requestParameters)) {
|
|
18382
|
+
query["RequestParameters"] = request.requestParameters;
|
|
18383
|
+
}
|
|
18384
|
+
if (!tea_util_1.default.isUnset(request.requestPath)) {
|
|
18385
|
+
query["RequestPath"] = request.requestPath;
|
|
18386
|
+
}
|
|
18387
|
+
if (!tea_util_1.default.isUnset(request.requestProtocol)) {
|
|
18388
|
+
query["RequestProtocol"] = request.requestProtocol;
|
|
18389
|
+
}
|
|
18390
|
+
if (!tea_util_1.default.isUnset(request.resultSample)) {
|
|
18391
|
+
query["ResultSample"] = request.resultSample;
|
|
18392
|
+
}
|
|
18393
|
+
if (!tea_util_1.default.isUnset(request.resultType)) {
|
|
18394
|
+
query["ResultType"] = request.resultType;
|
|
18395
|
+
}
|
|
18396
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
18397
|
+
query["SecurityToken"] = request.securityToken;
|
|
18398
|
+
}
|
|
18399
|
+
if (!tea_util_1.default.isUnset(request.serviceParameters)) {
|
|
18400
|
+
query["ServiceParameters"] = request.serviceParameters;
|
|
18401
|
+
}
|
|
18402
|
+
if (!tea_util_1.default.isUnset(request.serviceParametersMap)) {
|
|
18403
|
+
query["ServiceParametersMap"] = request.serviceParametersMap;
|
|
18404
|
+
}
|
|
18405
|
+
if (!tea_util_1.default.isUnset(request.serviceProtocol)) {
|
|
18406
|
+
query["ServiceProtocol"] = request.serviceProtocol;
|
|
18407
|
+
}
|
|
18408
|
+
if (!tea_util_1.default.isUnset(request.serviceTimeout)) {
|
|
18409
|
+
query["ServiceTimeout"] = request.serviceTimeout;
|
|
18410
|
+
}
|
|
18411
|
+
if (!tea_util_1.default.isUnset(request.useBackendService)) {
|
|
18412
|
+
query["UseBackendService"] = request.useBackendService;
|
|
18413
|
+
}
|
|
18414
|
+
if (!tea_util_1.default.isUnset(request.visibility)) {
|
|
18415
|
+
query["Visibility"] = request.visibility;
|
|
18416
|
+
}
|
|
18417
|
+
if (!tea_util_1.default.isUnset(request.vpcConfig)) {
|
|
18418
|
+
query["VpcConfig"] = request.vpcConfig;
|
|
18419
|
+
}
|
|
18420
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18421
|
+
query: openapi_util_1.default.query(query),
|
|
18422
|
+
});
|
|
18423
|
+
let params = new $OpenApi.Params({
|
|
18424
|
+
action: "ModifyApiConfiguration",
|
|
18425
|
+
version: "2016-07-14",
|
|
18426
|
+
protocol: "HTTPS",
|
|
18427
|
+
pathname: "/",
|
|
18428
|
+
method: "POST",
|
|
18429
|
+
authType: "AK",
|
|
18430
|
+
style: "RPC",
|
|
18431
|
+
reqBodyType: "formData",
|
|
18432
|
+
bodyType: "json",
|
|
18433
|
+
});
|
|
18434
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ModifyApiConfigurationResponse({}));
|
|
18435
|
+
}
|
|
18436
|
+
async modifyApiConfiguration(request) {
|
|
18437
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
18438
|
+
return await this.modifyApiConfigurationWithOptions(request, runtime);
|
|
18439
|
+
}
|
|
17899
18440
|
async modifyApiGroupWithOptions(request, runtime) {
|
|
17900
18441
|
tea_util_1.default.validateModel(request);
|
|
17901
18442
|
let query = {};
|
|
@@ -19041,6 +19582,9 @@ class Client extends openapi_client_1.default {
|
|
|
19041
19582
|
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
19042
19583
|
query["SecurityToken"] = request.securityToken;
|
|
19043
19584
|
}
|
|
19585
|
+
if (!tea_util_1.default.isUnset(request.sslVerifyDepth)) {
|
|
19586
|
+
query["SslVerifyDepth"] = request.sslVerifyDepth;
|
|
19587
|
+
}
|
|
19044
19588
|
let req = new $OpenApi.OpenApiRequest({
|
|
19045
19589
|
query: openapi_util_1.default.query(query),
|
|
19046
19590
|
});
|
|
@@ -19231,6 +19775,9 @@ class Client extends openapi_client_1.default {
|
|
|
19231
19775
|
if (!tea_util_1.default.isUnset(request.vpcId)) {
|
|
19232
19776
|
query["VpcId"] = request.vpcId;
|
|
19233
19777
|
}
|
|
19778
|
+
if (!tea_util_1.default.isUnset(request.vpcTargetHostName)) {
|
|
19779
|
+
query["VpcTargetHostName"] = request.vpcTargetHostName;
|
|
19780
|
+
}
|
|
19234
19781
|
let req = new $OpenApi.OpenApiRequest({
|
|
19235
19782
|
query: openapi_util_1.default.query(query),
|
|
19236
19783
|
});
|