@alicloud/ga20191120 1.0.8 → 1.0.11
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +253 -1
- package/dist/client.js +517 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +703 -2
package/dist/client.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class AddEntriesToAclResponse extends $tea.Model {
|
|
|
37
37
|
headers: {
|
|
38
38
|
[key: string]: string;
|
|
39
39
|
};
|
|
40
|
+
statusCode: number;
|
|
40
41
|
body: AddEntriesToAclResponseBody;
|
|
41
42
|
static names(): {
|
|
42
43
|
[key: string]: string;
|
|
@@ -83,6 +84,7 @@ export declare class AssociateAclsWithListenerResponse extends $tea.Model {
|
|
|
83
84
|
headers: {
|
|
84
85
|
[key: string]: string;
|
|
85
86
|
};
|
|
87
|
+
statusCode: number;
|
|
86
88
|
body: AssociateAclsWithListenerResponseBody;
|
|
87
89
|
static names(): {
|
|
88
90
|
[key: string]: string;
|
|
@@ -127,6 +129,7 @@ export declare class AssociateAdditionalCertificatesWithListenerResponse extends
|
|
|
127
129
|
headers: {
|
|
128
130
|
[key: string]: string;
|
|
129
131
|
};
|
|
132
|
+
statusCode: number;
|
|
130
133
|
body: AssociateAdditionalCertificatesWithListenerResponseBody;
|
|
131
134
|
static names(): {
|
|
132
135
|
[key: string]: string;
|
|
@@ -171,6 +174,7 @@ export declare class AttachDdosToAcceleratorResponse extends $tea.Model {
|
|
|
171
174
|
headers: {
|
|
172
175
|
[key: string]: string;
|
|
173
176
|
};
|
|
177
|
+
statusCode: number;
|
|
174
178
|
body: AttachDdosToAcceleratorResponseBody;
|
|
175
179
|
static names(): {
|
|
176
180
|
[key: string]: string;
|
|
@@ -217,6 +221,7 @@ export declare class AttachLogStoreToEndpointGroupResponse extends $tea.Model {
|
|
|
217
221
|
headers: {
|
|
218
222
|
[key: string]: string;
|
|
219
223
|
};
|
|
224
|
+
statusCode: number;
|
|
220
225
|
body: AttachLogStoreToEndpointGroupResponseBody;
|
|
221
226
|
static names(): {
|
|
222
227
|
[key: string]: string;
|
|
@@ -260,6 +265,7 @@ export declare class BandwidthPackageAddAcceleratorResponse extends $tea.Model {
|
|
|
260
265
|
headers: {
|
|
261
266
|
[key: string]: string;
|
|
262
267
|
};
|
|
268
|
+
statusCode: number;
|
|
263
269
|
body: BandwidthPackageAddAcceleratorResponseBody;
|
|
264
270
|
static names(): {
|
|
265
271
|
[key: string]: string;
|
|
@@ -303,6 +309,7 @@ export declare class BandwidthPackageRemoveAcceleratorResponse extends $tea.Mode
|
|
|
303
309
|
headers: {
|
|
304
310
|
[key: string]: string;
|
|
305
311
|
};
|
|
312
|
+
statusCode: number;
|
|
306
313
|
body: BandwidthPackageRemoveAcceleratorResponseBody;
|
|
307
314
|
static names(): {
|
|
308
315
|
[key: string]: string;
|
|
@@ -349,6 +356,7 @@ export declare class ConfigEndpointProbeResponse extends $tea.Model {
|
|
|
349
356
|
headers: {
|
|
350
357
|
[key: string]: string;
|
|
351
358
|
};
|
|
359
|
+
statusCode: number;
|
|
352
360
|
body: ConfigEndpointProbeResponseBody;
|
|
353
361
|
static names(): {
|
|
354
362
|
[key: string]: string;
|
|
@@ -367,6 +375,7 @@ export declare class CreateAcceleratorRequest extends $tea.Model {
|
|
|
367
375
|
autoUseCoupon?: string;
|
|
368
376
|
clientToken?: string;
|
|
369
377
|
duration?: number;
|
|
378
|
+
ipSetConfig?: CreateAcceleratorRequestIpSetConfig;
|
|
370
379
|
name?: string;
|
|
371
380
|
pricingCycle?: string;
|
|
372
381
|
regionId?: string;
|
|
@@ -399,6 +408,7 @@ export declare class CreateAcceleratorResponse extends $tea.Model {
|
|
|
399
408
|
headers: {
|
|
400
409
|
[key: string]: string;
|
|
401
410
|
};
|
|
411
|
+
statusCode: number;
|
|
402
412
|
body: CreateAcceleratorResponseBody;
|
|
403
413
|
static names(): {
|
|
404
414
|
[key: string]: string;
|
|
@@ -444,6 +454,7 @@ export declare class CreateAclResponse extends $tea.Model {
|
|
|
444
454
|
headers: {
|
|
445
455
|
[key: string]: string;
|
|
446
456
|
};
|
|
457
|
+
statusCode: number;
|
|
447
458
|
body: CreateAclResponseBody;
|
|
448
459
|
static names(): {
|
|
449
460
|
[key: string]: string;
|
|
@@ -459,10 +470,13 @@ export declare class CreateApplicationMonitorRequest extends $tea.Model {
|
|
|
459
470
|
acceleratorId?: string;
|
|
460
471
|
address?: string;
|
|
461
472
|
clientToken?: string;
|
|
473
|
+
detectEnable?: boolean;
|
|
462
474
|
detectThreshold?: number;
|
|
475
|
+
detectTimes?: number;
|
|
463
476
|
listenerId?: string;
|
|
464
477
|
optionsJson?: string;
|
|
465
478
|
regionId?: string;
|
|
479
|
+
silenceTime?: number;
|
|
466
480
|
taskName?: string;
|
|
467
481
|
static names(): {
|
|
468
482
|
[key: string]: string;
|
|
@@ -491,6 +505,7 @@ export declare class CreateApplicationMonitorResponse extends $tea.Model {
|
|
|
491
505
|
headers: {
|
|
492
506
|
[key: string]: string;
|
|
493
507
|
};
|
|
508
|
+
statusCode: number;
|
|
494
509
|
body: CreateApplicationMonitorResponseBody;
|
|
495
510
|
static names(): {
|
|
496
511
|
[key: string]: string;
|
|
@@ -504,6 +519,8 @@ export declare class CreateApplicationMonitorResponse extends $tea.Model {
|
|
|
504
519
|
}
|
|
505
520
|
export declare class CreateBandwidthPackageRequest extends $tea.Model {
|
|
506
521
|
autoPay?: boolean;
|
|
522
|
+
autoRenew?: boolean;
|
|
523
|
+
autoRenewDuration?: number;
|
|
507
524
|
autoUseCoupon?: string;
|
|
508
525
|
bandwidth?: number;
|
|
509
526
|
bandwidthType?: string;
|
|
@@ -545,6 +562,7 @@ export declare class CreateBandwidthPackageResponse extends $tea.Model {
|
|
|
545
562
|
headers: {
|
|
546
563
|
[key: string]: string;
|
|
547
564
|
};
|
|
565
|
+
statusCode: number;
|
|
548
566
|
body: CreateBandwidthPackageResponseBody;
|
|
549
567
|
static names(): {
|
|
550
568
|
[key: string]: string;
|
|
@@ -593,6 +611,7 @@ export declare class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
|
593
611
|
headers: {
|
|
594
612
|
[key: string]: string;
|
|
595
613
|
};
|
|
614
|
+
statusCode: number;
|
|
596
615
|
body: CreateBasicAcceleratorResponseBody;
|
|
597
616
|
static names(): {
|
|
598
617
|
[key: string]: string;
|
|
@@ -640,6 +659,7 @@ export declare class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
640
659
|
headers: {
|
|
641
660
|
[key: string]: string;
|
|
642
661
|
};
|
|
662
|
+
statusCode: number;
|
|
643
663
|
body: CreateBasicEndpointGroupResponseBody;
|
|
644
664
|
static names(): {
|
|
645
665
|
[key: string]: string;
|
|
@@ -683,6 +703,7 @@ export declare class CreateBasicIpSetResponse extends $tea.Model {
|
|
|
683
703
|
headers: {
|
|
684
704
|
[key: string]: string;
|
|
685
705
|
};
|
|
706
|
+
statusCode: number;
|
|
686
707
|
body: CreateBasicIpSetResponseBody;
|
|
687
708
|
static names(): {
|
|
688
709
|
[key: string]: string;
|
|
@@ -740,6 +761,7 @@ export declare class CreateEndpointGroupResponse extends $tea.Model {
|
|
|
740
761
|
headers: {
|
|
741
762
|
[key: string]: string;
|
|
742
763
|
};
|
|
764
|
+
statusCode: number;
|
|
743
765
|
body: CreateEndpointGroupResponseBody;
|
|
744
766
|
static names(): {
|
|
745
767
|
[key: string]: string;
|
|
@@ -785,6 +807,7 @@ export declare class CreateEndpointGroupsResponse extends $tea.Model {
|
|
|
785
807
|
headers: {
|
|
786
808
|
[key: string]: string;
|
|
787
809
|
};
|
|
810
|
+
statusCode: number;
|
|
788
811
|
body: CreateEndpointGroupsResponseBody;
|
|
789
812
|
static names(): {
|
|
790
813
|
[key: string]: string;
|
|
@@ -829,6 +852,7 @@ export declare class CreateForwardingRulesResponse extends $tea.Model {
|
|
|
829
852
|
headers: {
|
|
830
853
|
[key: string]: string;
|
|
831
854
|
};
|
|
855
|
+
statusCode: number;
|
|
832
856
|
body: CreateForwardingRulesResponseBody;
|
|
833
857
|
static names(): {
|
|
834
858
|
[key: string]: string;
|
|
@@ -873,6 +897,7 @@ export declare class CreateIpSetsResponse extends $tea.Model {
|
|
|
873
897
|
headers: {
|
|
874
898
|
[key: string]: string;
|
|
875
899
|
};
|
|
900
|
+
statusCode: number;
|
|
876
901
|
body: CreateIpSetsResponseBody;
|
|
877
902
|
static names(): {
|
|
878
903
|
[key: string]: string;
|
|
@@ -924,6 +949,7 @@ export declare class CreateListenerResponse extends $tea.Model {
|
|
|
924
949
|
headers: {
|
|
925
950
|
[key: string]: string;
|
|
926
951
|
};
|
|
952
|
+
statusCode: number;
|
|
927
953
|
body: CreateListenerResponseBody;
|
|
928
954
|
static names(): {
|
|
929
955
|
[key: string]: string;
|
|
@@ -967,6 +993,7 @@ export declare class CreateSpareIpsResponse extends $tea.Model {
|
|
|
967
993
|
headers: {
|
|
968
994
|
[key: string]: string;
|
|
969
995
|
};
|
|
996
|
+
statusCode: number;
|
|
970
997
|
body: CreateSpareIpsResponseBody;
|
|
971
998
|
static names(): {
|
|
972
999
|
[key: string]: string;
|
|
@@ -1008,6 +1035,7 @@ export declare class DeleteAcceleratorResponse extends $tea.Model {
|
|
|
1008
1035
|
headers: {
|
|
1009
1036
|
[key: string]: string;
|
|
1010
1037
|
};
|
|
1038
|
+
statusCode: number;
|
|
1011
1039
|
body: DeleteAcceleratorResponseBody;
|
|
1012
1040
|
static names(): {
|
|
1013
1041
|
[key: string]: string;
|
|
@@ -1051,6 +1079,7 @@ export declare class DeleteAclResponse extends $tea.Model {
|
|
|
1051
1079
|
headers: {
|
|
1052
1080
|
[key: string]: string;
|
|
1053
1081
|
};
|
|
1082
|
+
statusCode: number;
|
|
1054
1083
|
body: DeleteAclResponseBody;
|
|
1055
1084
|
static names(): {
|
|
1056
1085
|
[key: string]: string;
|
|
@@ -1092,6 +1121,7 @@ export declare class DeleteApplicationMonitorResponse extends $tea.Model {
|
|
|
1092
1121
|
headers: {
|
|
1093
1122
|
[key: string]: string;
|
|
1094
1123
|
};
|
|
1124
|
+
statusCode: number;
|
|
1095
1125
|
body: DeleteApplicationMonitorResponseBody;
|
|
1096
1126
|
static names(): {
|
|
1097
1127
|
[key: string]: string;
|
|
@@ -1134,6 +1164,7 @@ export declare class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
|
1134
1164
|
headers: {
|
|
1135
1165
|
[key: string]: string;
|
|
1136
1166
|
};
|
|
1167
|
+
statusCode: number;
|
|
1137
1168
|
body: DeleteBandwidthPackageResponseBody;
|
|
1138
1169
|
static names(): {
|
|
1139
1170
|
[key: string]: string;
|
|
@@ -1175,6 +1206,7 @@ export declare class DeleteBasicAcceleratorResponse extends $tea.Model {
|
|
|
1175
1206
|
headers: {
|
|
1176
1207
|
[key: string]: string;
|
|
1177
1208
|
};
|
|
1209
|
+
statusCode: number;
|
|
1178
1210
|
body: DeleteBasicAcceleratorResponseBody;
|
|
1179
1211
|
static names(): {
|
|
1180
1212
|
[key: string]: string;
|
|
@@ -1215,6 +1247,7 @@ export declare class DeleteBasicEndpointGroupResponse extends $tea.Model {
|
|
|
1215
1247
|
headers: {
|
|
1216
1248
|
[key: string]: string;
|
|
1217
1249
|
};
|
|
1250
|
+
statusCode: number;
|
|
1218
1251
|
body: DeleteBasicEndpointGroupResponseBody;
|
|
1219
1252
|
static names(): {
|
|
1220
1253
|
[key: string]: string;
|
|
@@ -1256,6 +1289,7 @@ export declare class DeleteBasicIpSetResponse extends $tea.Model {
|
|
|
1256
1289
|
headers: {
|
|
1257
1290
|
[key: string]: string;
|
|
1258
1291
|
};
|
|
1292
|
+
statusCode: number;
|
|
1259
1293
|
body: DeleteBasicIpSetResponseBody;
|
|
1260
1294
|
static names(): {
|
|
1261
1295
|
[key: string]: string;
|
|
@@ -1297,6 +1331,7 @@ export declare class DeleteEndpointGroupResponse extends $tea.Model {
|
|
|
1297
1331
|
headers: {
|
|
1298
1332
|
[key: string]: string;
|
|
1299
1333
|
};
|
|
1334
|
+
statusCode: number;
|
|
1300
1335
|
body: DeleteEndpointGroupResponseBody;
|
|
1301
1336
|
static names(): {
|
|
1302
1337
|
[key: string]: string;
|
|
@@ -1339,6 +1374,7 @@ export declare class DeleteEndpointGroupsResponse extends $tea.Model {
|
|
|
1339
1374
|
headers: {
|
|
1340
1375
|
[key: string]: string;
|
|
1341
1376
|
};
|
|
1377
|
+
statusCode: number;
|
|
1342
1378
|
body: DeleteEndpointGroupsResponseBody;
|
|
1343
1379
|
static names(): {
|
|
1344
1380
|
[key: string]: string;
|
|
@@ -1383,6 +1419,7 @@ export declare class DeleteForwardingRulesResponse extends $tea.Model {
|
|
|
1383
1419
|
headers: {
|
|
1384
1420
|
[key: string]: string;
|
|
1385
1421
|
};
|
|
1422
|
+
statusCode: number;
|
|
1386
1423
|
body: DeleteForwardingRulesResponseBody;
|
|
1387
1424
|
static names(): {
|
|
1388
1425
|
[key: string]: string;
|
|
@@ -1425,6 +1462,7 @@ export declare class DeleteIpSetResponse extends $tea.Model {
|
|
|
1425
1462
|
headers: {
|
|
1426
1463
|
[key: string]: string;
|
|
1427
1464
|
};
|
|
1465
|
+
statusCode: number;
|
|
1428
1466
|
body: DeleteIpSetResponseBody;
|
|
1429
1467
|
static names(): {
|
|
1430
1468
|
[key: string]: string;
|
|
@@ -1465,6 +1503,7 @@ export declare class DeleteIpSetsResponse extends $tea.Model {
|
|
|
1465
1503
|
headers: {
|
|
1466
1504
|
[key: string]: string;
|
|
1467
1505
|
};
|
|
1506
|
+
statusCode: number;
|
|
1468
1507
|
body: DeleteIpSetsResponseBody;
|
|
1469
1508
|
static names(): {
|
|
1470
1509
|
[key: string]: string;
|
|
@@ -1506,6 +1545,7 @@ export declare class DeleteListenerResponse extends $tea.Model {
|
|
|
1506
1545
|
headers: {
|
|
1507
1546
|
[key: string]: string;
|
|
1508
1547
|
};
|
|
1548
|
+
statusCode: number;
|
|
1509
1549
|
body: DeleteListenerResponseBody;
|
|
1510
1550
|
static names(): {
|
|
1511
1551
|
[key: string]: string;
|
|
@@ -1549,6 +1589,7 @@ export declare class DeleteSpareIpsResponse extends $tea.Model {
|
|
|
1549
1589
|
headers: {
|
|
1550
1590
|
[key: string]: string;
|
|
1551
1591
|
};
|
|
1592
|
+
statusCode: number;
|
|
1552
1593
|
body: DeleteSpareIpsResponseBody;
|
|
1553
1594
|
static names(): {
|
|
1554
1595
|
[key: string]: string;
|
|
@@ -1584,6 +1625,7 @@ export declare class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
1584
1625
|
dnsName?: string;
|
|
1585
1626
|
expiredTime?: number;
|
|
1586
1627
|
instanceChargeType?: string;
|
|
1628
|
+
ipSetConfig?: DescribeAcceleratorResponseBodyIpSetConfig;
|
|
1587
1629
|
name?: string;
|
|
1588
1630
|
regionId?: string;
|
|
1589
1631
|
requestId?: string;
|
|
@@ -1604,6 +1646,7 @@ export declare class DescribeAcceleratorResponse extends $tea.Model {
|
|
|
1604
1646
|
headers: {
|
|
1605
1647
|
[key: string]: string;
|
|
1606
1648
|
};
|
|
1649
|
+
statusCode: number;
|
|
1607
1650
|
body: DescribeAcceleratorResponseBody;
|
|
1608
1651
|
static names(): {
|
|
1609
1652
|
[key: string]: string;
|
|
@@ -1648,6 +1691,7 @@ export declare class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.
|
|
|
1648
1691
|
headers: {
|
|
1649
1692
|
[key: string]: string;
|
|
1650
1693
|
};
|
|
1694
|
+
statusCode: number;
|
|
1651
1695
|
body: DescribeAcceleratorAutoRenewAttributeResponseBody;
|
|
1652
1696
|
static names(): {
|
|
1653
1697
|
[key: string]: string;
|
|
@@ -1676,12 +1720,15 @@ export declare class DescribeApplicationMonitorRequest extends $tea.Model {
|
|
|
1676
1720
|
export declare class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
1677
1721
|
acceleratorId?: string;
|
|
1678
1722
|
address?: string;
|
|
1679
|
-
|
|
1723
|
+
detectEnable?: boolean;
|
|
1724
|
+
detectThreshold?: number;
|
|
1725
|
+
detectTimes?: number;
|
|
1680
1726
|
ispCityList?: DescribeApplicationMonitorResponseBodyIspCityList[];
|
|
1681
1727
|
listenerId?: string;
|
|
1682
1728
|
optionsJson?: string;
|
|
1683
1729
|
regionId?: string;
|
|
1684
1730
|
requestId?: string;
|
|
1731
|
+
silenceTime?: number;
|
|
1685
1732
|
taskId?: string;
|
|
1686
1733
|
taskName?: string;
|
|
1687
1734
|
static names(): {
|
|
@@ -1698,6 +1745,7 @@ export declare class DescribeApplicationMonitorResponse extends $tea.Model {
|
|
|
1698
1745
|
headers: {
|
|
1699
1746
|
[key: string]: string;
|
|
1700
1747
|
};
|
|
1748
|
+
statusCode: number;
|
|
1701
1749
|
body: DescribeApplicationMonitorResponseBody;
|
|
1702
1750
|
static names(): {
|
|
1703
1751
|
[key: string]: string;
|
|
@@ -1754,6 +1802,7 @@ export declare class DescribeBandwidthPackageResponse extends $tea.Model {
|
|
|
1754
1802
|
headers: {
|
|
1755
1803
|
[key: string]: string;
|
|
1756
1804
|
};
|
|
1805
|
+
statusCode: number;
|
|
1757
1806
|
body: DescribeBandwidthPackageResponseBody;
|
|
1758
1807
|
static names(): {
|
|
1759
1808
|
[key: string]: string;
|
|
@@ -1765,6 +1814,51 @@ export declare class DescribeBandwidthPackageResponse extends $tea.Model {
|
|
|
1765
1814
|
[key: string]: any;
|
|
1766
1815
|
});
|
|
1767
1816
|
}
|
|
1817
|
+
export declare class DescribeBandwidthPackageAutoRenewAttributeRequest extends $tea.Model {
|
|
1818
|
+
instanceId?: string;
|
|
1819
|
+
regionId?: string;
|
|
1820
|
+
static names(): {
|
|
1821
|
+
[key: string]: string;
|
|
1822
|
+
};
|
|
1823
|
+
static types(): {
|
|
1824
|
+
[key: string]: any;
|
|
1825
|
+
};
|
|
1826
|
+
constructor(map?: {
|
|
1827
|
+
[key: string]: any;
|
|
1828
|
+
});
|
|
1829
|
+
}
|
|
1830
|
+
export declare class DescribeBandwidthPackageAutoRenewAttributeResponseBody extends $tea.Model {
|
|
1831
|
+
autoRenew?: boolean;
|
|
1832
|
+
autoRenewDuration?: number;
|
|
1833
|
+
instanceId?: string;
|
|
1834
|
+
renewalStatus?: string;
|
|
1835
|
+
requestId?: string;
|
|
1836
|
+
static names(): {
|
|
1837
|
+
[key: string]: string;
|
|
1838
|
+
};
|
|
1839
|
+
static types(): {
|
|
1840
|
+
[key: string]: any;
|
|
1841
|
+
};
|
|
1842
|
+
constructor(map?: {
|
|
1843
|
+
[key: string]: any;
|
|
1844
|
+
});
|
|
1845
|
+
}
|
|
1846
|
+
export declare class DescribeBandwidthPackageAutoRenewAttributeResponse extends $tea.Model {
|
|
1847
|
+
headers: {
|
|
1848
|
+
[key: string]: string;
|
|
1849
|
+
};
|
|
1850
|
+
statusCode: number;
|
|
1851
|
+
body: DescribeBandwidthPackageAutoRenewAttributeResponseBody;
|
|
1852
|
+
static names(): {
|
|
1853
|
+
[key: string]: string;
|
|
1854
|
+
};
|
|
1855
|
+
static types(): {
|
|
1856
|
+
[key: string]: any;
|
|
1857
|
+
};
|
|
1858
|
+
constructor(map?: {
|
|
1859
|
+
[key: string]: any;
|
|
1860
|
+
});
|
|
1861
|
+
}
|
|
1768
1862
|
export declare class DescribeEndpointGroupRequest extends $tea.Model {
|
|
1769
1863
|
endpointGroupId?: string;
|
|
1770
1864
|
regionId?: string;
|
|
@@ -1821,6 +1915,7 @@ export declare class DescribeEndpointGroupResponse extends $tea.Model {
|
|
|
1821
1915
|
headers: {
|
|
1822
1916
|
[key: string]: string;
|
|
1823
1917
|
};
|
|
1918
|
+
statusCode: number;
|
|
1824
1919
|
body: DescribeEndpointGroupResponseBody;
|
|
1825
1920
|
static names(): {
|
|
1826
1921
|
[key: string]: string;
|
|
@@ -1868,6 +1963,7 @@ export declare class DescribeIpSetResponse extends $tea.Model {
|
|
|
1868
1963
|
headers: {
|
|
1869
1964
|
[key: string]: string;
|
|
1870
1965
|
};
|
|
1966
|
+
statusCode: number;
|
|
1871
1967
|
body: DescribeIpSetResponseBody;
|
|
1872
1968
|
static names(): {
|
|
1873
1969
|
[key: string]: string;
|
|
@@ -1924,6 +2020,7 @@ export declare class DescribeListenerResponse extends $tea.Model {
|
|
|
1924
2020
|
headers: {
|
|
1925
2021
|
[key: string]: string;
|
|
1926
2022
|
};
|
|
2023
|
+
statusCode: number;
|
|
1927
2024
|
body: DescribeListenerResponseBody;
|
|
1928
2025
|
static names(): {
|
|
1929
2026
|
[key: string]: string;
|
|
@@ -1964,6 +2061,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
1964
2061
|
headers: {
|
|
1965
2062
|
[key: string]: string;
|
|
1966
2063
|
};
|
|
2064
|
+
statusCode: number;
|
|
1967
2065
|
body: DescribeRegionsResponseBody;
|
|
1968
2066
|
static names(): {
|
|
1969
2067
|
[key: string]: string;
|
|
@@ -2005,6 +2103,7 @@ export declare class DetachDdosFromAcceleratorResponse extends $tea.Model {
|
|
|
2005
2103
|
headers: {
|
|
2006
2104
|
[key: string]: string;
|
|
2007
2105
|
};
|
|
2106
|
+
statusCode: number;
|
|
2008
2107
|
body: DetachDdosFromAcceleratorResponseBody;
|
|
2009
2108
|
static names(): {
|
|
2010
2109
|
[key: string]: string;
|
|
@@ -2048,6 +2147,7 @@ export declare class DetachLogStoreFromEndpointGroupResponse extends $tea.Model
|
|
|
2048
2147
|
headers: {
|
|
2049
2148
|
[key: string]: string;
|
|
2050
2149
|
};
|
|
2150
|
+
statusCode: number;
|
|
2051
2151
|
body: DetachLogStoreFromEndpointGroupResponseBody;
|
|
2052
2152
|
static names(): {
|
|
2053
2153
|
[key: string]: string;
|
|
@@ -2089,6 +2189,7 @@ export declare class DetectApplicationMonitorResponse extends $tea.Model {
|
|
|
2089
2189
|
headers: {
|
|
2090
2190
|
[key: string]: string;
|
|
2091
2191
|
};
|
|
2192
|
+
statusCode: number;
|
|
2092
2193
|
body: DetectApplicationMonitorResponseBody;
|
|
2093
2194
|
static names(): {
|
|
2094
2195
|
[key: string]: string;
|
|
@@ -2130,6 +2231,7 @@ export declare class DisableApplicationMonitorResponse extends $tea.Model {
|
|
|
2130
2231
|
headers: {
|
|
2131
2232
|
[key: string]: string;
|
|
2132
2233
|
};
|
|
2234
|
+
statusCode: number;
|
|
2133
2235
|
body: DisableApplicationMonitorResponseBody;
|
|
2134
2236
|
static names(): {
|
|
2135
2237
|
[key: string]: string;
|
|
@@ -2175,6 +2277,7 @@ export declare class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
2175
2277
|
headers: {
|
|
2176
2278
|
[key: string]: string;
|
|
2177
2279
|
};
|
|
2280
|
+
statusCode: number;
|
|
2178
2281
|
body: DissociateAclsFromListenerResponseBody;
|
|
2179
2282
|
static names(): {
|
|
2180
2283
|
[key: string]: string;
|
|
@@ -2218,6 +2321,7 @@ export declare class DissociateAdditionalCertificatesFromListenerResponse extend
|
|
|
2218
2321
|
headers: {
|
|
2219
2322
|
[key: string]: string;
|
|
2220
2323
|
};
|
|
2324
|
+
statusCode: number;
|
|
2221
2325
|
body: DissociateAdditionalCertificatesFromListenerResponseBody;
|
|
2222
2326
|
static names(): {
|
|
2223
2327
|
[key: string]: string;
|
|
@@ -2259,6 +2363,7 @@ export declare class EnableApplicationMonitorResponse extends $tea.Model {
|
|
|
2259
2363
|
headers: {
|
|
2260
2364
|
[key: string]: string;
|
|
2261
2365
|
};
|
|
2366
|
+
statusCode: number;
|
|
2262
2367
|
body: EnableApplicationMonitorResponseBody;
|
|
2263
2368
|
static names(): {
|
|
2264
2369
|
[key: string]: string;
|
|
@@ -2305,6 +2410,7 @@ export declare class GetAclResponse extends $tea.Model {
|
|
|
2305
2410
|
headers: {
|
|
2306
2411
|
[key: string]: string;
|
|
2307
2412
|
};
|
|
2413
|
+
statusCode: number;
|
|
2308
2414
|
body: GetAclResponseBody;
|
|
2309
2415
|
static names(): {
|
|
2310
2416
|
[key: string]: string;
|
|
@@ -2358,6 +2464,7 @@ export declare class GetBasicAcceleratorResponse extends $tea.Model {
|
|
|
2358
2464
|
headers: {
|
|
2359
2465
|
[key: string]: string;
|
|
2360
2466
|
};
|
|
2467
|
+
statusCode: number;
|
|
2361
2468
|
body: GetBasicAcceleratorResponseBody;
|
|
2362
2469
|
static names(): {
|
|
2363
2470
|
[key: string]: string;
|
|
@@ -2407,6 +2514,7 @@ export declare class GetBasicEndpointGroupResponse extends $tea.Model {
|
|
|
2407
2514
|
headers: {
|
|
2408
2515
|
[key: string]: string;
|
|
2409
2516
|
};
|
|
2517
|
+
statusCode: number;
|
|
2410
2518
|
body: GetBasicEndpointGroupResponseBody;
|
|
2411
2519
|
static names(): {
|
|
2412
2520
|
[key: string]: string;
|
|
@@ -2455,6 +2563,7 @@ export declare class GetBasicIpSetResponse extends $tea.Model {
|
|
|
2455
2563
|
headers: {
|
|
2456
2564
|
[key: string]: string;
|
|
2457
2565
|
};
|
|
2566
|
+
statusCode: number;
|
|
2458
2567
|
body: GetBasicIpSetResponseBody;
|
|
2459
2568
|
static names(): {
|
|
2460
2569
|
[key: string]: string;
|
|
@@ -2501,6 +2610,7 @@ export declare class GetHealthStatusResponse extends $tea.Model {
|
|
|
2501
2610
|
headers: {
|
|
2502
2611
|
[key: string]: string;
|
|
2503
2612
|
};
|
|
2613
|
+
statusCode: number;
|
|
2504
2614
|
body: GetHealthStatusResponseBody;
|
|
2505
2615
|
static names(): {
|
|
2506
2616
|
[key: string]: string;
|
|
@@ -2545,6 +2655,7 @@ export declare class GetSpareIpResponse extends $tea.Model {
|
|
|
2545
2655
|
headers: {
|
|
2546
2656
|
[key: string]: string;
|
|
2547
2657
|
};
|
|
2658
|
+
statusCode: number;
|
|
2548
2659
|
body: GetSpareIpResponseBody;
|
|
2549
2660
|
static names(): {
|
|
2550
2661
|
[key: string]: string;
|
|
@@ -2585,6 +2696,7 @@ export declare class ListAccelerateAreasResponse extends $tea.Model {
|
|
|
2585
2696
|
headers: {
|
|
2586
2697
|
[key: string]: string;
|
|
2587
2698
|
};
|
|
2699
|
+
statusCode: number;
|
|
2588
2700
|
body: ListAccelerateAreasResponseBody;
|
|
2589
2701
|
static names(): {
|
|
2590
2702
|
[key: string]: string;
|
|
@@ -2632,6 +2744,7 @@ export declare class ListAcceleratorsResponse extends $tea.Model {
|
|
|
2632
2744
|
headers: {
|
|
2633
2745
|
[key: string]: string;
|
|
2634
2746
|
};
|
|
2747
|
+
statusCode: number;
|
|
2635
2748
|
body: ListAcceleratorsResponseBody;
|
|
2636
2749
|
static names(): {
|
|
2637
2750
|
[key: string]: string;
|
|
@@ -2680,6 +2793,7 @@ export declare class ListAclsResponse extends $tea.Model {
|
|
|
2680
2793
|
headers: {
|
|
2681
2794
|
[key: string]: string;
|
|
2682
2795
|
};
|
|
2796
|
+
statusCode: number;
|
|
2683
2797
|
body: ListAclsResponseBody;
|
|
2684
2798
|
static names(): {
|
|
2685
2799
|
[key: string]: string;
|
|
@@ -2726,6 +2840,7 @@ export declare class ListApplicationMonitorResponse extends $tea.Model {
|
|
|
2726
2840
|
headers: {
|
|
2727
2841
|
[key: string]: string;
|
|
2728
2842
|
};
|
|
2843
|
+
statusCode: number;
|
|
2729
2844
|
body: ListApplicationMonitorResponseBody;
|
|
2730
2845
|
static names(): {
|
|
2731
2846
|
[key: string]: string;
|
|
@@ -2774,6 +2889,7 @@ export declare class ListApplicationMonitorDetectResultResponse extends $tea.Mod
|
|
|
2774
2889
|
headers: {
|
|
2775
2890
|
[key: string]: string;
|
|
2776
2891
|
};
|
|
2892
|
+
statusCode: number;
|
|
2777
2893
|
body: ListApplicationMonitorDetectResultResponseBody;
|
|
2778
2894
|
static names(): {
|
|
2779
2895
|
[key: string]: string;
|
|
@@ -2815,6 +2931,7 @@ export declare class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
2815
2931
|
headers: {
|
|
2816
2932
|
[key: string]: string;
|
|
2817
2933
|
};
|
|
2934
|
+
statusCode: number;
|
|
2818
2935
|
body: ListAvailableAccelerateAreasResponseBody;
|
|
2819
2936
|
static names(): {
|
|
2820
2937
|
[key: string]: string;
|
|
@@ -2856,6 +2973,7 @@ export declare class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
2856
2973
|
headers: {
|
|
2857
2974
|
[key: string]: string;
|
|
2858
2975
|
};
|
|
2976
|
+
statusCode: number;
|
|
2859
2977
|
body: ListAvailableBusiRegionsResponseBody;
|
|
2860
2978
|
static names(): {
|
|
2861
2979
|
[key: string]: string;
|
|
@@ -2904,6 +3022,7 @@ export declare class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
2904
3022
|
headers: {
|
|
2905
3023
|
[key: string]: string;
|
|
2906
3024
|
};
|
|
3025
|
+
statusCode: number;
|
|
2907
3026
|
body: ListBandwidthPackagesResponseBody;
|
|
2908
3027
|
static names(): {
|
|
2909
3028
|
[key: string]: string;
|
|
@@ -2949,6 +3068,7 @@ export declare class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
2949
3068
|
headers: {
|
|
2950
3069
|
[key: string]: string;
|
|
2951
3070
|
};
|
|
3071
|
+
statusCode: number;
|
|
2952
3072
|
body: ListBandwidthackagesResponseBody;
|
|
2953
3073
|
static names(): {
|
|
2954
3074
|
[key: string]: string;
|
|
@@ -2996,6 +3116,7 @@ export declare class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
|
2996
3116
|
headers: {
|
|
2997
3117
|
[key: string]: string;
|
|
2998
3118
|
};
|
|
3119
|
+
statusCode: number;
|
|
2999
3120
|
body: ListBasicAcceleratorsResponseBody;
|
|
3000
3121
|
static names(): {
|
|
3001
3122
|
[key: string]: string;
|
|
@@ -3036,6 +3157,7 @@ export declare class ListBusiRegionsResponse extends $tea.Model {
|
|
|
3036
3157
|
headers: {
|
|
3037
3158
|
[key: string]: string;
|
|
3038
3159
|
};
|
|
3160
|
+
statusCode: number;
|
|
3039
3161
|
body: ListBusiRegionsResponseBody;
|
|
3040
3162
|
static names(): {
|
|
3041
3163
|
[key: string]: string;
|
|
@@ -3086,6 +3208,7 @@ export declare class ListEndpointGroupsResponse extends $tea.Model {
|
|
|
3086
3208
|
headers: {
|
|
3087
3209
|
[key: string]: string;
|
|
3088
3210
|
};
|
|
3211
|
+
statusCode: number;
|
|
3089
3212
|
body: ListEndpointGroupsResponseBody;
|
|
3090
3213
|
static names(): {
|
|
3091
3214
|
[key: string]: string;
|
|
@@ -3135,6 +3258,7 @@ export declare class ListForwardingRulesResponse extends $tea.Model {
|
|
|
3135
3258
|
headers: {
|
|
3136
3259
|
[key: string]: string;
|
|
3137
3260
|
};
|
|
3261
|
+
statusCode: number;
|
|
3138
3262
|
body: ListForwardingRulesResponseBody;
|
|
3139
3263
|
static names(): {
|
|
3140
3264
|
[key: string]: string;
|
|
@@ -3181,6 +3305,7 @@ export declare class ListIpSetsResponse extends $tea.Model {
|
|
|
3181
3305
|
headers: {
|
|
3182
3306
|
[key: string]: string;
|
|
3183
3307
|
};
|
|
3308
|
+
statusCode: number;
|
|
3184
3309
|
body: ListIpSetsResponseBody;
|
|
3185
3310
|
static names(): {
|
|
3186
3311
|
[key: string]: string;
|
|
@@ -3229,6 +3354,7 @@ export declare class ListListenerCertificatesResponse extends $tea.Model {
|
|
|
3229
3354
|
headers: {
|
|
3230
3355
|
[key: string]: string;
|
|
3231
3356
|
};
|
|
3357
|
+
statusCode: number;
|
|
3232
3358
|
body: ListListenerCertificatesResponseBody;
|
|
3233
3359
|
static names(): {
|
|
3234
3360
|
[key: string]: string;
|
|
@@ -3275,6 +3401,7 @@ export declare class ListListenersResponse extends $tea.Model {
|
|
|
3275
3401
|
headers: {
|
|
3276
3402
|
[key: string]: string;
|
|
3277
3403
|
};
|
|
3404
|
+
statusCode: number;
|
|
3278
3405
|
body: ListListenersResponseBody;
|
|
3279
3406
|
static names(): {
|
|
3280
3407
|
[key: string]: string;
|
|
@@ -3318,6 +3445,7 @@ export declare class ListSpareIpsResponse extends $tea.Model {
|
|
|
3318
3445
|
headers: {
|
|
3319
3446
|
[key: string]: string;
|
|
3320
3447
|
};
|
|
3448
|
+
statusCode: number;
|
|
3321
3449
|
body: ListSpareIpsResponseBody;
|
|
3322
3450
|
static names(): {
|
|
3323
3451
|
[key: string]: string;
|
|
@@ -3363,6 +3491,7 @@ export declare class ListSystemSecurityPoliciesResponse extends $tea.Model {
|
|
|
3363
3491
|
headers: {
|
|
3364
3492
|
[key: string]: string;
|
|
3365
3493
|
};
|
|
3494
|
+
statusCode: number;
|
|
3366
3495
|
body: ListSystemSecurityPoliciesResponseBody;
|
|
3367
3496
|
static names(): {
|
|
3368
3497
|
[key: string]: string;
|
|
@@ -3407,6 +3536,7 @@ export declare class RemoveEntriesFromAclResponse extends $tea.Model {
|
|
|
3407
3536
|
headers: {
|
|
3408
3537
|
[key: string]: string;
|
|
3409
3538
|
};
|
|
3539
|
+
statusCode: number;
|
|
3410
3540
|
body: RemoveEntriesFromAclResponseBody;
|
|
3411
3541
|
static names(): {
|
|
3412
3542
|
[key: string]: string;
|
|
@@ -3448,6 +3578,7 @@ export declare class ReplaceBandwidthPackageResponse extends $tea.Model {
|
|
|
3448
3578
|
headers: {
|
|
3449
3579
|
[key: string]: string;
|
|
3450
3580
|
};
|
|
3581
|
+
statusCode: number;
|
|
3451
3582
|
body: ReplaceBandwidthPackageResponseBody;
|
|
3452
3583
|
static names(): {
|
|
3453
3584
|
[key: string]: string;
|
|
@@ -3494,6 +3625,7 @@ export declare class UpdateAcceleratorResponse extends $tea.Model {
|
|
|
3494
3625
|
headers: {
|
|
3495
3626
|
[key: string]: string;
|
|
3496
3627
|
};
|
|
3628
|
+
statusCode: number;
|
|
3497
3629
|
body: UpdateAcceleratorResponseBody;
|
|
3498
3630
|
static names(): {
|
|
3499
3631
|
[key: string]: string;
|
|
@@ -3540,6 +3672,7 @@ export declare class UpdateAcceleratorAutoRenewAttributeResponse extends $tea.Mo
|
|
|
3540
3672
|
headers: {
|
|
3541
3673
|
[key: string]: string;
|
|
3542
3674
|
};
|
|
3675
|
+
statusCode: number;
|
|
3543
3676
|
body: UpdateAcceleratorAutoRenewAttributeResponseBody;
|
|
3544
3677
|
static names(): {
|
|
3545
3678
|
[key: string]: string;
|
|
@@ -3580,6 +3713,7 @@ export declare class UpdateAcceleratorConfirmResponse extends $tea.Model {
|
|
|
3580
3713
|
headers: {
|
|
3581
3714
|
[key: string]: string;
|
|
3582
3715
|
};
|
|
3716
|
+
statusCode: number;
|
|
3583
3717
|
body: UpdateAcceleratorConfirmResponseBody;
|
|
3584
3718
|
static names(): {
|
|
3585
3719
|
[key: string]: string;
|
|
@@ -3624,6 +3758,7 @@ export declare class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
3624
3758
|
headers: {
|
|
3625
3759
|
[key: string]: string;
|
|
3626
3760
|
};
|
|
3761
|
+
statusCode: number;
|
|
3627
3762
|
body: UpdateAclAttributeResponseBody;
|
|
3628
3763
|
static names(): {
|
|
3629
3764
|
[key: string]: string;
|
|
@@ -3638,10 +3773,13 @@ export declare class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
3638
3773
|
export declare class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
3639
3774
|
address?: string;
|
|
3640
3775
|
clientToken?: string;
|
|
3776
|
+
detectEnable?: boolean;
|
|
3641
3777
|
detectThreshold?: number;
|
|
3778
|
+
detectTimes?: number;
|
|
3642
3779
|
listenerId?: string;
|
|
3643
3780
|
optionsJson?: string;
|
|
3644
3781
|
regionId?: string;
|
|
3782
|
+
silenceTime?: number;
|
|
3645
3783
|
taskId?: string;
|
|
3646
3784
|
taskName?: string;
|
|
3647
3785
|
static names(): {
|
|
@@ -3670,6 +3808,7 @@ export declare class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
|
3670
3808
|
headers: {
|
|
3671
3809
|
[key: string]: string;
|
|
3672
3810
|
};
|
|
3811
|
+
statusCode: number;
|
|
3673
3812
|
body: UpdateApplicationMonitorResponseBody;
|
|
3674
3813
|
static names(): {
|
|
3675
3814
|
[key: string]: string;
|
|
@@ -3681,6 +3820,53 @@ export declare class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
|
3681
3820
|
[key: string]: any;
|
|
3682
3821
|
});
|
|
3683
3822
|
}
|
|
3823
|
+
export declare class UpdateBandwidthPackagaAutoRenewAttributeRequest extends $tea.Model {
|
|
3824
|
+
autoRenew?: boolean;
|
|
3825
|
+
autoRenewDuration?: number;
|
|
3826
|
+
clientToken?: string;
|
|
3827
|
+
instanceId?: string;
|
|
3828
|
+
name?: string;
|
|
3829
|
+
regionId?: string;
|
|
3830
|
+
renewalStatus?: string;
|
|
3831
|
+
static names(): {
|
|
3832
|
+
[key: string]: string;
|
|
3833
|
+
};
|
|
3834
|
+
static types(): {
|
|
3835
|
+
[key: string]: any;
|
|
3836
|
+
};
|
|
3837
|
+
constructor(map?: {
|
|
3838
|
+
[key: string]: any;
|
|
3839
|
+
});
|
|
3840
|
+
}
|
|
3841
|
+
export declare class UpdateBandwidthPackagaAutoRenewAttributeResponseBody extends $tea.Model {
|
|
3842
|
+
instanceId?: string;
|
|
3843
|
+
requestId?: string;
|
|
3844
|
+
static names(): {
|
|
3845
|
+
[key: string]: string;
|
|
3846
|
+
};
|
|
3847
|
+
static types(): {
|
|
3848
|
+
[key: string]: any;
|
|
3849
|
+
};
|
|
3850
|
+
constructor(map?: {
|
|
3851
|
+
[key: string]: any;
|
|
3852
|
+
});
|
|
3853
|
+
}
|
|
3854
|
+
export declare class UpdateBandwidthPackagaAutoRenewAttributeResponse extends $tea.Model {
|
|
3855
|
+
headers: {
|
|
3856
|
+
[key: string]: string;
|
|
3857
|
+
};
|
|
3858
|
+
statusCode: number;
|
|
3859
|
+
body: UpdateBandwidthPackagaAutoRenewAttributeResponseBody;
|
|
3860
|
+
static names(): {
|
|
3861
|
+
[key: string]: string;
|
|
3862
|
+
};
|
|
3863
|
+
static types(): {
|
|
3864
|
+
[key: string]: any;
|
|
3865
|
+
};
|
|
3866
|
+
constructor(map?: {
|
|
3867
|
+
[key: string]: any;
|
|
3868
|
+
});
|
|
3869
|
+
}
|
|
3684
3870
|
export declare class UpdateBandwidthPackageRequest extends $tea.Model {
|
|
3685
3871
|
autoPay?: boolean;
|
|
3686
3872
|
autoUseCoupon?: boolean;
|
|
@@ -3719,6 +3905,7 @@ export declare class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
|
3719
3905
|
headers: {
|
|
3720
3906
|
[key: string]: string;
|
|
3721
3907
|
};
|
|
3908
|
+
statusCode: number;
|
|
3722
3909
|
body: UpdateBandwidthPackageResponseBody;
|
|
3723
3910
|
static names(): {
|
|
3724
3911
|
[key: string]: string;
|
|
@@ -3762,6 +3949,7 @@ export declare class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
|
3762
3949
|
headers: {
|
|
3763
3950
|
[key: string]: string;
|
|
3764
3951
|
};
|
|
3952
|
+
statusCode: number;
|
|
3765
3953
|
body: UpdateBasicAcceleratorResponseBody;
|
|
3766
3954
|
static names(): {
|
|
3767
3955
|
[key: string]: string;
|
|
@@ -3807,6 +3995,7 @@ export declare class UpdateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
3807
3995
|
headers: {
|
|
3808
3996
|
[key: string]: string;
|
|
3809
3997
|
};
|
|
3998
|
+
statusCode: number;
|
|
3810
3999
|
body: UpdateBasicEndpointGroupResponseBody;
|
|
3811
4000
|
static names(): {
|
|
3812
4001
|
[key: string]: string;
|
|
@@ -3861,6 +4050,7 @@ export declare class UpdateEndpointGroupResponse extends $tea.Model {
|
|
|
3861
4050
|
headers: {
|
|
3862
4051
|
[key: string]: string;
|
|
3863
4052
|
};
|
|
4053
|
+
statusCode: number;
|
|
3864
4054
|
body: UpdateEndpointGroupResponseBody;
|
|
3865
4055
|
static names(): {
|
|
3866
4056
|
[key: string]: string;
|
|
@@ -3904,6 +4094,7 @@ export declare class UpdateEndpointGroupAttributeResponse extends $tea.Model {
|
|
|
3904
4094
|
headers: {
|
|
3905
4095
|
[key: string]: string;
|
|
3906
4096
|
};
|
|
4097
|
+
statusCode: number;
|
|
3907
4098
|
body: UpdateEndpointGroupAttributeResponseBody;
|
|
3908
4099
|
static names(): {
|
|
3909
4100
|
[key: string]: string;
|
|
@@ -3948,6 +4139,7 @@ export declare class UpdateEndpointGroupsResponse extends $tea.Model {
|
|
|
3948
4139
|
headers: {
|
|
3949
4140
|
[key: string]: string;
|
|
3950
4141
|
};
|
|
4142
|
+
statusCode: number;
|
|
3951
4143
|
body: UpdateEndpointGroupsResponseBody;
|
|
3952
4144
|
static names(): {
|
|
3953
4145
|
[key: string]: string;
|
|
@@ -3992,6 +4184,7 @@ export declare class UpdateForwardingRulesResponse extends $tea.Model {
|
|
|
3992
4184
|
headers: {
|
|
3993
4185
|
[key: string]: string;
|
|
3994
4186
|
};
|
|
4187
|
+
statusCode: number;
|
|
3995
4188
|
body: UpdateForwardingRulesResponseBody;
|
|
3996
4189
|
static names(): {
|
|
3997
4190
|
[key: string]: string;
|
|
@@ -4034,6 +4227,7 @@ export declare class UpdateIpSetResponse extends $tea.Model {
|
|
|
4034
4227
|
headers: {
|
|
4035
4228
|
[key: string]: string;
|
|
4036
4229
|
};
|
|
4230
|
+
statusCode: number;
|
|
4037
4231
|
body: UpdateIpSetResponseBody;
|
|
4038
4232
|
static names(): {
|
|
4039
4233
|
[key: string]: string;
|
|
@@ -4074,6 +4268,7 @@ export declare class UpdateIpSetsResponse extends $tea.Model {
|
|
|
4074
4268
|
headers: {
|
|
4075
4269
|
[key: string]: string;
|
|
4076
4270
|
};
|
|
4271
|
+
statusCode: number;
|
|
4077
4272
|
body: UpdateIpSetsResponseBody;
|
|
4078
4273
|
static names(): {
|
|
4079
4274
|
[key: string]: string;
|
|
@@ -4125,6 +4320,7 @@ export declare class UpdateListenerResponse extends $tea.Model {
|
|
|
4125
4320
|
headers: {
|
|
4126
4321
|
[key: string]: string;
|
|
4127
4322
|
};
|
|
4323
|
+
statusCode: number;
|
|
4128
4324
|
body: UpdateListenerResponseBody;
|
|
4129
4325
|
static names(): {
|
|
4130
4326
|
[key: string]: string;
|
|
@@ -4162,6 +4358,18 @@ export declare class AssociateAdditionalCertificatesWithListenerRequestCertifica
|
|
|
4162
4358
|
[key: string]: any;
|
|
4163
4359
|
});
|
|
4164
4360
|
}
|
|
4361
|
+
export declare class CreateAcceleratorRequestIpSetConfig extends $tea.Model {
|
|
4362
|
+
accessMode?: string;
|
|
4363
|
+
static names(): {
|
|
4364
|
+
[key: string]: string;
|
|
4365
|
+
};
|
|
4366
|
+
static types(): {
|
|
4367
|
+
[key: string]: any;
|
|
4368
|
+
};
|
|
4369
|
+
constructor(map?: {
|
|
4370
|
+
[key: string]: any;
|
|
4371
|
+
});
|
|
4372
|
+
}
|
|
4165
4373
|
export declare class CreateAclRequestAclEntries extends $tea.Model {
|
|
4166
4374
|
entry?: string;
|
|
4167
4375
|
entryDescription?: string;
|
|
@@ -4285,6 +4493,7 @@ export declare class CreateForwardingRulesRequestForwardingRulesRuleActions exte
|
|
|
4285
4493
|
forwardGroupConfig?: CreateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
4286
4494
|
order?: number;
|
|
4287
4495
|
ruleActionType?: string;
|
|
4496
|
+
ruleActionValue?: string;
|
|
4288
4497
|
static names(): {
|
|
4289
4498
|
[key: string]: string;
|
|
4290
4499
|
};
|
|
@@ -4323,6 +4532,7 @@ export declare class CreateForwardingRulesRequestForwardingRulesRuleConditions e
|
|
|
4323
4532
|
hostConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
4324
4533
|
pathConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
4325
4534
|
ruleConditionType?: string;
|
|
4535
|
+
ruleConditionValue?: string;
|
|
4326
4536
|
static names(): {
|
|
4327
4537
|
[key: string]: string;
|
|
4328
4538
|
};
|
|
@@ -4338,6 +4548,7 @@ export declare class CreateForwardingRulesRequestForwardingRules extends $tea.Mo
|
|
|
4338
4548
|
priority?: number;
|
|
4339
4549
|
ruleActions?: CreateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
4340
4550
|
ruleConditions?: CreateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
4551
|
+
ruleDirection?: string;
|
|
4341
4552
|
static names(): {
|
|
4342
4553
|
[key: string]: string;
|
|
4343
4554
|
};
|
|
@@ -4468,6 +4679,18 @@ export declare class DescribeAcceleratorResponseBodyCrossDomainBandwidthPackage
|
|
|
4468
4679
|
[key: string]: any;
|
|
4469
4680
|
});
|
|
4470
4681
|
}
|
|
4682
|
+
export declare class DescribeAcceleratorResponseBodyIpSetConfig extends $tea.Model {
|
|
4683
|
+
accessMode?: string;
|
|
4684
|
+
static names(): {
|
|
4685
|
+
[key: string]: string;
|
|
4686
|
+
};
|
|
4687
|
+
static types(): {
|
|
4688
|
+
[key: string]: any;
|
|
4689
|
+
};
|
|
4690
|
+
constructor(map?: {
|
|
4691
|
+
[key: string]: any;
|
|
4692
|
+
});
|
|
4693
|
+
}
|
|
4471
4694
|
export declare class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Model {
|
|
4472
4695
|
city?: string;
|
|
4473
4696
|
cityName?: string;
|
|
@@ -4735,6 +4958,18 @@ export declare class ListAcceleratorsResponseBodyAcceleratorsCrossDomainBandwidt
|
|
|
4735
4958
|
[key: string]: any;
|
|
4736
4959
|
});
|
|
4737
4960
|
}
|
|
4961
|
+
export declare class ListAcceleratorsResponseBodyAcceleratorsIpSetConfig extends $tea.Model {
|
|
4962
|
+
accessMode?: string;
|
|
4963
|
+
static names(): {
|
|
4964
|
+
[key: string]: string;
|
|
4965
|
+
};
|
|
4966
|
+
static types(): {
|
|
4967
|
+
[key: string]: any;
|
|
4968
|
+
};
|
|
4969
|
+
constructor(map?: {
|
|
4970
|
+
[key: string]: any;
|
|
4971
|
+
});
|
|
4972
|
+
}
|
|
4738
4973
|
export declare class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
4739
4974
|
acceleratorId?: string;
|
|
4740
4975
|
bandwidth?: number;
|
|
@@ -4747,6 +4982,7 @@ export declare class ListAcceleratorsResponseBodyAccelerators extends $tea.Model
|
|
|
4747
4982
|
dnsName?: string;
|
|
4748
4983
|
expiredTime?: number;
|
|
4749
4984
|
instanceChargeType?: string;
|
|
4985
|
+
ipSetConfig?: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig;
|
|
4750
4986
|
name?: string;
|
|
4751
4987
|
regionId?: string;
|
|
4752
4988
|
secondDnsName?: string;
|
|
@@ -4781,9 +5017,12 @@ export declare class ListAclsResponseBodyAcls extends $tea.Model {
|
|
|
4781
5017
|
export declare class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.Model {
|
|
4782
5018
|
acceleratorId?: string;
|
|
4783
5019
|
address?: string;
|
|
5020
|
+
detectEnable?: boolean;
|
|
4784
5021
|
detectThreshold?: number;
|
|
5022
|
+
detectTimes?: number;
|
|
4785
5023
|
listenerId?: string;
|
|
4786
5024
|
optionsJson?: string;
|
|
5025
|
+
silenceTime?: number;
|
|
4787
5026
|
state?: string;
|
|
4788
5027
|
taskId?: string;
|
|
4789
5028
|
taskName?: string;
|
|
@@ -4799,11 +5038,14 @@ export declare class ListApplicationMonitorResponseBodyApplicationMonitors exten
|
|
|
4799
5038
|
}
|
|
4800
5039
|
export declare class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList extends $tea.Model {
|
|
4801
5040
|
acceleratorId?: string;
|
|
5041
|
+
content?: string;
|
|
4802
5042
|
detail?: string;
|
|
5043
|
+
detectTime?: string;
|
|
4803
5044
|
diagStatus?: string;
|
|
4804
5045
|
listenerId?: string;
|
|
4805
5046
|
port?: string;
|
|
4806
5047
|
protocol?: string;
|
|
5048
|
+
statusCode?: string;
|
|
4807
5049
|
taskId?: string;
|
|
4808
5050
|
static names(): {
|
|
4809
5051
|
[key: string]: string;
|
|
@@ -5059,6 +5301,7 @@ export declare class ListForwardingRulesResponseBodyForwardingRulesRuleActions e
|
|
|
5059
5301
|
forwardGroupConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleActionsForwardGroupConfig;
|
|
5060
5302
|
order?: number;
|
|
5061
5303
|
ruleActionType?: string;
|
|
5304
|
+
ruleActionValue?: string;
|
|
5062
5305
|
static names(): {
|
|
5063
5306
|
[key: string]: string;
|
|
5064
5307
|
};
|
|
@@ -5097,6 +5340,7 @@ export declare class ListForwardingRulesResponseBodyForwardingRulesRuleCondition
|
|
|
5097
5340
|
hostConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsHostConfig;
|
|
5098
5341
|
pathConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsPathConfig;
|
|
5099
5342
|
ruleConditionType?: string;
|
|
5343
|
+
ruleConditionValue?: string;
|
|
5100
5344
|
static names(): {
|
|
5101
5345
|
[key: string]: string;
|
|
5102
5346
|
};
|
|
@@ -5108,6 +5352,7 @@ export declare class ListForwardingRulesResponseBodyForwardingRulesRuleCondition
|
|
|
5108
5352
|
});
|
|
5109
5353
|
}
|
|
5110
5354
|
export declare class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
5355
|
+
forwardingRuleDirection?: string;
|
|
5111
5356
|
forwardingRuleId?: string;
|
|
5112
5357
|
forwardingRuleName?: string;
|
|
5113
5358
|
forwardingRuleStatus?: string;
|
|
@@ -5384,6 +5629,7 @@ export declare class UpdateForwardingRulesRequestForwardingRulesRuleActions exte
|
|
|
5384
5629
|
forwardGroupConfig?: UpdateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
5385
5630
|
order?: number;
|
|
5386
5631
|
ruleActionType?: string;
|
|
5632
|
+
ruleActionValue?: string;
|
|
5387
5633
|
static names(): {
|
|
5388
5634
|
[key: string]: string;
|
|
5389
5635
|
};
|
|
@@ -5422,6 +5668,7 @@ export declare class UpdateForwardingRulesRequestForwardingRulesRuleConditions e
|
|
|
5422
5668
|
hostConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
5423
5669
|
pathConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
5424
5670
|
ruleConditionType?: string;
|
|
5671
|
+
ruleConditionValue?: string;
|
|
5425
5672
|
static names(): {
|
|
5426
5673
|
[key: string]: string;
|
|
5427
5674
|
};
|
|
@@ -5438,6 +5685,7 @@ export declare class UpdateForwardingRulesRequestForwardingRules extends $tea.Mo
|
|
|
5438
5685
|
priority?: number;
|
|
5439
5686
|
ruleActions?: UpdateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
5440
5687
|
ruleConditions?: UpdateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
5688
|
+
ruleDirection?: string;
|
|
5441
5689
|
static names(): {
|
|
5442
5690
|
[key: string]: string;
|
|
5443
5691
|
};
|
|
@@ -5610,6 +5858,8 @@ export default class Client extends OpenApi {
|
|
|
5610
5858
|
describeApplicationMonitor(request: DescribeApplicationMonitorRequest): Promise<DescribeApplicationMonitorResponse>;
|
|
5611
5859
|
describeBandwidthPackageWithOptions(request: DescribeBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBandwidthPackageResponse>;
|
|
5612
5860
|
describeBandwidthPackage(request: DescribeBandwidthPackageRequest): Promise<DescribeBandwidthPackageResponse>;
|
|
5861
|
+
describeBandwidthPackageAutoRenewAttributeWithOptions(request: DescribeBandwidthPackageAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBandwidthPackageAutoRenewAttributeResponse>;
|
|
5862
|
+
describeBandwidthPackageAutoRenewAttribute(request: DescribeBandwidthPackageAutoRenewAttributeRequest): Promise<DescribeBandwidthPackageAutoRenewAttributeResponse>;
|
|
5613
5863
|
describeEndpointGroupWithOptions(request: DescribeEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEndpointGroupResponse>;
|
|
5614
5864
|
describeEndpointGroup(request: DescribeEndpointGroupRequest): Promise<DescribeEndpointGroupResponse>;
|
|
5615
5865
|
describeIpSetWithOptions(request: DescribeIpSetRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpSetResponse>;
|
|
@@ -5694,6 +5944,8 @@ export default class Client extends OpenApi {
|
|
|
5694
5944
|
updateAclAttribute(request: UpdateAclAttributeRequest): Promise<UpdateAclAttributeResponse>;
|
|
5695
5945
|
updateApplicationMonitorWithOptions(request: UpdateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationMonitorResponse>;
|
|
5696
5946
|
updateApplicationMonitor(request: UpdateApplicationMonitorRequest): Promise<UpdateApplicationMonitorResponse>;
|
|
5947
|
+
updateBandwidthPackagaAutoRenewAttributeWithOptions(request: UpdateBandwidthPackagaAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackagaAutoRenewAttributeResponse>;
|
|
5948
|
+
updateBandwidthPackagaAutoRenewAttribute(request: UpdateBandwidthPackagaAutoRenewAttributeRequest): Promise<UpdateBandwidthPackagaAutoRenewAttributeResponse>;
|
|
5697
5949
|
updateBandwidthPackageWithOptions(request: UpdateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackageResponse>;
|
|
5698
5950
|
updateBandwidthPackage(request: UpdateBandwidthPackageRequest): Promise<UpdateBandwidthPackageResponse>;
|
|
5699
5951
|
updateBasicAcceleratorWithOptions(request: UpdateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicAcceleratorResponse>;
|