1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
|
<?php return [
'version' => '1.0',
'info' => ['style' => 'RPC', 'product' => 'Eipanycast', 'version' => '2020-03-09'],
'directories' => [
[
'children' => ['AllocateAnycastEipAddress', 'AssociateAnycastEipAddress', 'UnassociateAnycastEipAddress', 'ReleaseAnycastEipAddress', 'ModifyAnycastEipAddressSpec', 'ModifyAnycastEipAddressAttribute', 'UpdateAnycastEipAddressAssociations', 'DescribeAnycastEipAddress', 'DescribeAnycastPopLocations', 'ListAnycastEipAddresses', 'DescribeAnycastServerRegions'],
'type' => 'directory',
'title' => 'Anycast elastic IP address',
],
[
'children' => ['ChangeResourceGroup', 'ListTagResources', 'TagResources', 'UntagResources'],
'title' => 'Others',
'type' => 'directory',
],
],
'components' => [
'schemas' => [],
],
'apis' => [
'AllocateAnycastEipAddress' => [
'summary' => 'The AllocateAnycastEipAddress operation creates an Anycast EIP instance.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'Bandwidth',
'in' => 'query',
'schema' => [
'description' => 'The peak bandwidth of the Anycast EIP instance. Unit: Mbps.'."\n"
."\n"
.'Valid values: **200** to **1000**.'."\n"
."\n"
.'Default value: **1000**.'."\n"
."\n"
.'> The peak bandwidth is for reference only and is not a guaranteed value. It serves as the upper limit for bandwidth.',
'type' => 'string',
'required' => false,
'default' => '1000',
'title' => '',
'enumValueTitles' => [1000 => '1000'],
'example' => '200',
],
],
[
'name' => 'ServiceLocation',
'in' => 'query',
'schema' => [
'description' => 'The access area of the Anycast EIP instance.',
'type' => 'string',
'required' => true,
'title' => '',
'enumValueTitles' => ['international' => 'Specifies regions outside the Chinese mainland.'],
'example' => 'international',
],
],
[
'name' => 'InstanceChargeType',
'in' => 'query',
'schema' => ['description' => 'The billing method of the Anycast EIP instance.'."\n"
."\n"
.'Set the value to **PostPaid**. This value specifies the pay-as-you-go billing method.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'PostPaid'],
],
[
'name' => 'InternetChargeType',
'in' => 'query',
'schema' => ['description' => 'The metering method for Internet data transfer.'."\n"
."\n"
.'Set the value to **PayByTraffic**. This value specifies the pay-by-data-transfer metering method.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'PayByTraffic'],
],
[
'name' => 'ClientToken',
'in' => 'query',
'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request.'."\n"
."\n"
.'Make sure that the client token is unique for each request. The token can contain a maximum of 64 ASCII characters.'."\n"
."\n"
.'> If you do not specify this parameter, the system automatically uses the **RequestId** of the request as the **ClientToken**. The **RequestId** may be different for each request.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '02fb3da4-130e-11e9-8e44-001****'],
],
[
'name' => 'Name',
'in' => 'query',
'schema' => ['description' => 'The name of the Anycast EIP instance.'."\n"
."\n"
.'The name must be 0 to 128 characters in length. It must start with a letter or a Chinese character and can contain digits, underscores (\\_), and hyphens (-).', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'doctest'],
],
[
'name' => 'Description',
'in' => 'query',
'schema' => ['description' => 'The description of the Anycast EIP instance.'."\n"
."\n"
.'The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'docdesc'],
],
[
'name' => 'ResourceGroupId',
'in' => 'query',
'schema' => ['description' => 'The ID of the resource group to which the instance belongs.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'rg-acfm3obzjuk****'],
],
[
'name' => 'Tag',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Key' => ['type' => 'string', 'description' => 'The tag key. Specify up to 20 tag keys. A tag key cannot be an empty string.'."\n"
."\n"
.'A tag key contains up to 128 characters, cannot begin with `aliyun` or `acs:` or contain `http://` or `https://`.', 'required' => false, 'title' => '', 'example' => 'tag-key'],
'Value' => ['type' => 'string', 'description' => 'The tag value. Specify up to 20 tag values. A tag value can be an empty string.'."\n"
."\n"
.'A tag value contains up to 128 characters, cannot begin with `aliyun` or `acs:` or contain `http://` or `https://`.', 'required' => false, 'title' => '', 'example' => 'tag-value'],
],
'description' => 'The resource tag. Specify up to 20 tags at a time.',
'required' => false,
'title' => '',
'example' => '',
],
'maxItems' => 20,
'description' => 'The resource tags.',
'required' => false,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
'AnycastId' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
'OrderId' => ['description' => 'The order ID.', 'type' => 'string', 'title' => '', 'example' => '1422000****'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'OperationFailed.CdtNotOpened', 'errorMessage' => 'Operation failed because cdt not opened.', 'description' => 'Please activate CDT service before performing the current operation.'],
['errorCode' => 'QuotaExceeded.AnycastEIP', 'errorMessage' => 'Quota exceeded: The number of Anycast Elastic IP addresses has reached the limit. Please request a quota increase or release unused resources.', 'description' => 'Quota Excess: The Anycast Elastic IP address has reached the upper limit and cannot be created. Apply for a quota increase or release useless resources.'],
['errorCode' => 'IllegalParameter.Name', 'errorMessage' => 'The specified Name is invalid.', 'description' => ''],
['errorCode' => 'COMMODITY.INVALID_COMPONENT', 'errorMessage' => 'The order configuration parameters do not meet the validation criteria. Please reselect the products.', 'description' => 'Order configuration parameters do not meet the verification conditions, please re-match the goods!'],
],
],
'title' => 'AllocateAnycastEipAddress',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'AllocateAnycastEipAddress'],
],
],
'ramActions' => [
[
'operationType' => 'create',
'ramAction' => [
'action' => 'eipanycast:AllocateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/*'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\",\\n \\"AnycastId\\": \\"aeip-bp1ix34fralt4ykf3****\\",\\n \\"OrderId\\": \\"1422000****\\"\\n}","type":"json"}]',
'extraInfo' => ' ',
],
'AssociateAnycastEipAddress' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip2OM9BW'],
],
'parameters' => [
[
'name' => 'BindInstanceId',
'in' => 'query',
'schema' => ['description' => 'The ID of the cloud resource with which you want to associate the Anycast EIP.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'lb-d7oxbixhxv1uupnon****'],
],
[
'name' => 'BindInstanceRegionId',
'in' => 'query',
'schema' => ['description' => 'The ID of the region where the cloud resource is deployed.'."\n"
."\n"
.'You can associate Anycast EIPs with cloud resources in specific regions. You can call the [](t2322852.xdita#)operation to query the region IDs.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'us-west-1'],
],
[
'name' => 'BindInstanceType',
'in' => 'query',
'schema' => ['description' => 'The type of the cloud resource with which you want to associate the Anycast EIP. Valid values:'."\n"
."\n"
.'- **SlbInstance**: a Classic Load Balancer (CLB) instance in a virtual private cloud (VPC).'."\n"
."\n"
.'- **NetworkInterface**: an elastic network interface (ENI).', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'SlbInstance'],
],
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
[
'name' => 'ClientToken',
'in' => 'query',
'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request.'."\n"
."\n"
.'You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.'."\n"
."\n"
.'> If you do not specify this parameter, the system automatically uses the **RequestId** of the request as the **ClientToken**. The **RequestId** may be different for each request.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '123e4567-e89b-12d3-a456-426655440000'],
],
[
'name' => 'DryRun',
'in' => 'query',
'schema' => ['description' => 'Specifies whether to perform a dry run, without performing the actual request. Valid values:'."\n"
."\n"
.'- **true**: performs a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.'."\n"
."\n"
.'- **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.', 'type' => 'boolean', 'required' => false, 'title' => '', 'example' => 'false'],
],
[
'name' => 'PopLocations',
'in' => 'query',
'style' => 'flat',
'schema' => [
'title' => '',
'description' => 'The information about the access points in the access areas that are associated with the cloud resource.'."\n"
."\n"
.'If this is your first time to associate a cloud resource, you do not need to configure this parameter. The system automatically associates all access areas.'."\n"
."\n"
.'You can call the [](t2322850.xdita#)operation to query the information about the access points in the supported access areas.',
'type' => 'array',
'items' => [
'description' => 'The information about the access points in the access areas that are associated with the cloud resource.'."\n"
."\n"
.'If this is your first time to associate a cloud resource, you do not need to configure this parameter. The system automatically associates all access areas.'."\n"
."\n"
.'You can call the [](t2322850.xdita#)operation to query the information about the access points in the supported access areas.',
'type' => 'object',
'properties' => [
'PopLocation' => ['title' => '', 'description' => 'The information about the access points in the access areas that are associated with the cloud resource.'."\n"
."\n"
.'If this is your first time to associate a cloud resource, you do not need to configure this parameter. The system automatically associates all access areas.'."\n"
."\n"
.'You can call the [](t2322850.xdita#)operation to query the information about the access points in the supported access areas.', 'type' => 'string', 'required' => false, 'example' => 'us-west-1-pop'],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => false,
'example' => '',
],
],
[
'name' => 'AssociationMode',
'in' => 'query',
'schema' => ['title' => '', 'description' => 'The association mode. Valid values:'."\n"
."\n"
.'- **Default**: the default mode. In this mode, the associated cloud resource is the default origin server.'."\n"
."\n"
.'- **Normal**: the normal mode. In this mode, the associated cloud resource is a normal origin server.'."\n"
."\n"
.'> An Anycast EIP can be associated with cloud resources in multiple regions. However, you can specify only one default origin server and multiple normal origin servers. When you do not specify an access point or add a new access point, requests are forwarded to the default origin server by default.'."\n"
.'>'."\n"
.'> - If this is your first time to associate a cloud resource with the Anycast EIP, the association mode is **Default** by default.'."\n"
.'>'."\n"
.'> - If this is not your first time to associate a cloud resource with the Anycast EIP, you can set the association mode to **Default**. This makes the new cloud resource the default origin server, and the original default origin server becomes a normal origin server.', 'type' => 'string', 'required' => false, 'example' => 'Default'],
],
[
'name' => 'PrivateIpAddress',
'in' => 'query',
'schema' => ['title' => '', 'description' => 'The secondary private IP address of the ENI.'."\n"
."\n"
.'This parameter is required when **BindInstanceType** is set to **NetworkInterface**. If you do not specify this parameter, the primary private IP address of the ENI is used.', 'type' => 'string', 'required' => false, 'example' => '192.168.XX.XX'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'InstanceNotExist.ENI', 'errorMessage' => 'Instance does not exist: The specified Elastic Network Interface (ENI) was not found. Please verify the instance ID or check if the resource has been released.', 'description' => ''],
['errorCode' => 'InstanceNotExist.SLB', 'errorMessage' => 'Instance does not exist: The specified Server Load Balancer (SLB) was not found. Please verify the instance ID or check if the resource has been released.', 'description' => ''],
['errorCode' => 'IncorrectStatus.Anycast', 'errorMessage' => 'The status of the Anycast instance is invalid.', 'description' => ''],
['errorCode' => 'OperationFailed.BindOnFreeNetworkInterface', 'errorMessage' => 'Operation failed because the specified network interface is not bound on instance.', 'description' => 'The operation failed because the specified ENI is not bound to the instance.'],
['errorCode' => 'OperationFailed.Conflict', 'errorMessage' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'description' => ''],
['errorCode' => 'OperationUnsupported.BACKEND_REGION_NOT_OPEN', 'errorMessage' => 'The specified Region is not supported.', 'description' => 'The specified region is not supported.'],
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
['errorCode' => 'ResourceNotFound.BindInstanceId', 'errorMessage' => 'Resource not found: The specified BindInstanceId does not exist.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'asynchronous', 'callback' => 'Eipanycast::2020-03-09::ListAnycastEipAddresses', 'callbackInterval' => 3000, 'maxCallbackTimes' => 10],
'title' => 'AssociateAnycastEipAddress',
'summary' => 'Associates an Anycast EIP with a specified backend cloud resource.',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'AssociateAnycastEipAddress'],
],
],
'ramActions' => [
[
'operationType' => 'create',
'ramAction' => [
'action' => 'eipanycast:AssociateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'Instance', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:networkinterface/{#InstanceId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
],
'ChangeResourceGroup' => [
'summary' => 'Modifies the resource group to which an AnycastEipAddress instance belongs.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'ResourceId',
'in' => 'query',
'schema' => ['description' => 'The resource ID.', 'type' => 'string', 'required' => true, 'example' => 'aeip-2zeerraiwb7ujsxdc****', 'title' => ''],
],
[
'name' => 'NewResourceGroupId',
'in' => 'query',
'schema' => ['description' => 'The ID of the destination resource group. You can call the [ListResourceGroups](~~158855~~) operation to query resource groups.', 'type' => 'string', 'required' => true, 'example' => 'rg-aeky6b2jfeerxxx', 'title' => ''],
],
[
'name' => 'ResourceType',
'in' => 'query',
'schema' => ['description' => 'The resource type. Set the value to **ANYCASTEIPADDRESS**.', 'type' => 'string', 'required' => true, 'example' => 'ANYCASTEIPADDRESS', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Modify the resource group of an anycastEipAddress instance',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ChangeResourceGroup'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ChangeResourceGroup',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
],
'DescribeAnycastEipAddress' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeipNF1RIS'],
],
'parameters' => [
[
'name' => 'Ip',
'in' => 'query',
'schema' => ['description' => 'The IP address of the Anycast EIP instance.'."\n"
."\n"
.'> You must specify either **Ip** or **AnycastId**.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '139.95.XX.XX'],
],
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.'."\n"
."\n"
.'> You must specify either **Ip** or **AnycastId**.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
[
'name' => 'BindInstanceId',
'in' => 'query',
'schema' => ['description' => 'The ID of the cloud resource instance with which the Anycast EIP is associated.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'lb-2zebb08phyczzawe****'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The information that is returned.',
'type' => 'object',
'properties' => [
'Status' => ['description' => 'The status of the IP address.'."\n"
."\n"
.'- **Associating**: The instance is being associated.'."\n"
."\n"
.'- **Unassociating**: The instance is being disassociated.'."\n"
."\n"
.'- **Allocated**: The instance is allocated.'."\n"
."\n"
.'- **Associated**: The instance is associated.'."\n"
."\n"
.'- **Modifying**: The instance is being modified.'."\n"
."\n"
.'- **Releasing**: The instance is being released.'."\n"
."\n"
.'- **Released**: The instance is released.', 'type' => 'string', 'title' => '', 'example' => 'Associated'],
'Description' => ['description' => 'The description of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'doctest'],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '4EC47282-1B74-4534-BD0E-403F3EE64CAF'],
'InstanceChargeType' => ['description' => 'The billing method of the Anycast EIP instance.'."\n"
."\n"
.'The value is **PostPaid**, which indicates the pay-as-you-go billing method.', 'type' => 'string', 'title' => '', 'example' => 'PostPaid'],
'CreateTime' => ['description' => 'The time when the Anycast EIP instance was created.'."\n"
."\n"
.'The time follows the ISO 8601 standard in the `YYYY-MM-DDThh:mm:ssZ` format. The time is displayed in UTC.', 'type' => 'string', 'title' => '', 'example' => '2021-04-23T01:37:38Z'],
'AnycastEipBindInfoList' => [
'description' => 'The list of cloud resources that are associated with the Anycast EIP instance.',
'type' => 'array',
'items' => [
'description' => 'The list of cloud resources that are associated with the Anycast EIP instance.',
'type' => 'object',
'properties' => [
'BindInstanceType' => ['description' => 'The type of the associated cloud resource instance. Valid values:'."\n"
."\n"
.'- **SlbInstance**: a Classic Load Balancer (CLB) instance in a virtual private cloud (VPC).'."\n"
."\n"
.'- **NetworkInterface**: an elastic network interface (ENI).', 'type' => 'string', 'title' => '', 'example' => 'SlbInstance'],
'BindTime' => ['description' => 'The time when the cloud resource was associated.'."\n"
."\n"
.'The time follows the ISO 8601 standard in the `YYYY-MM-DDThh:mm:ssZ` format. The time is displayed in UTC.', 'type' => 'string', 'title' => '', 'example' => '2021-04-23T02:37:38Z'],
'Status' => ['description' => 'The status of the associated cloud resource instance. Valid values:'."\n"
."\n"
.'- **BINDING**: The cloud resource is being associated.'."\n"
."\n"
.'- **BINDED**: The cloud resource is associated.'."\n"
."\n"
.'- **UNBINDING**: The cloud resource is being disassociated.'."\n"
."\n"
.'- **DELETED**: The cloud resource is deleted.'."\n"
."\n"
.'- **MODIFYING**: The association is being modified.', 'type' => 'string', 'title' => '', 'example' => 'BINDING'],
'BindInstanceRegionId' => ['description' => 'The region ID of the associated cloud resource instance.', 'type' => 'string', 'title' => '', 'example' => 'us-west-1'],
'BindInstanceId' => ['description' => 'The ID of the associated cloud resource instance.', 'type' => 'string', 'title' => '', 'example' => 'lb-2zebb08phyczzawe****'],
'PopLocations' => [
'title' => '',
'description' => 'The information about the access points in the access areas that are connected to the associated cloud resource instance.'."\n"
."\n"
.'If you associate a cloud resource for the first time, the system returns the access points in all access areas.',
'type' => 'array',
'items' => [
'description' => 'The information about the access points in the access areas that are connected to the associated cloud resource instance.'."\n"
."\n"
.'If you associate a cloud resource for the first time, the system returns the access points in all access areas.',
'type' => 'object',
'properties' => [
'PopLocation' => ['title' => '', 'description' => 'The information about the access points in the access areas that are connected to the associated cloud resource instance.'."\n"
."\n"
.'If you associate a cloud resource for the first time, the system returns the access points in all access areas.', 'type' => 'string', 'example' => 'us-west-1-pop'],
],
'title' => '',
'example' => '',
],
'example' => '',
],
'AssociationMode' => ['title' => '', 'description' => 'The association mode. Valid values:'."\n"
."\n"
.'- **Default**: The associated cloud resource instance is the default origin server.'."\n"
."\n"
.'- **Normal**: The associated cloud resource instance is a normal origin server.', 'type' => 'string', 'example' => 'Default'],
'PrivateIpAddress' => ['title' => '', 'description' => 'The secondary private IP address of the associated ENI.'."\n"
."\n"
.'This parameter is returned only when **BindInstanceType** is set to **NetworkInterface**.', 'type' => 'string', 'example' => '192.168.XX.XX'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'BusinessStatus' => ['description' => 'The service status of the Anycast EIP instance. Valid values:'."\n"
."\n"
.'- **Normal**: The Anycast EIP is in a normal state.'."\n"
."\n"
.'- **FinancialLocked**: The Anycast EIP is locked due to an overdue payment.'."\n"
."\n"
.'- **RiskExpired**: The Anycast EIP is locked for security reasons.', 'type' => 'string', 'title' => '', 'example' => 'Normal'],
'InternetChargeType' => ['description' => 'The metering method of the Anycast EIP instance.'."\n"
."\n"
.'The value is **PayByTraffic**, which indicates the pay-by-data-transfer metering method.', 'type' => 'string', 'title' => '', 'example' => 'PayByTraffic'],
'Name' => ['description' => 'The name of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'docname'],
'AnycastId' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
'ServiceLocation' => ['description' => 'The access area of the Anycast EIP instance.'."\n"
."\n"
.'The value is **international**, which indicates regions outside the Chinese mainland.', 'type' => 'string', 'title' => '', 'example' => 'international'],
'Bandwidth' => ['description' => 'The peak bandwidth of the Anycast EIP instance. Unit: Mbit/s.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '200'],
'IpAddress' => ['description' => 'The IP address of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => '139.95.XX.XX'],
'Bid' => ['description' => 'The BID of the account that owns the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => '26842'],
'AliUid' => ['description' => 'The ID of the account that owns the Anycast EIP instance.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '25346073170691****'],
'ResourceGroupId' => ['description' => 'The ID of the resource group to which the instance belongs.', 'type' => 'string', 'title' => '', 'example' => 'rg-acfmzssisocarfy'],
'Tags' => [
'description' => 'The tag information.',
'type' => 'array',
'items' => [
'description' => 'The tag information.',
'type' => 'object',
'properties' => [
'Key' => ['description' => 'The tag key.', 'type' => 'string', 'title' => '', 'example' => 'FinanceDept'],
'Value' => ['description' => 'The tag value.', 'type' => 'string', 'title' => '', 'example' => 'FinanceJoshua'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'ServiceManaged' => ['description' => 'Indicates whether the resource is created by a service account. 0: The resource is not created by a service account. 1: The resource is created by a service account.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '1'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
200 => [
['errorCode' => 'MissingParam.ResourceIdentifier', 'errorMessage' => 'Missing required parameter: Please provide at least one of AnycastId, IP, or BindInstanceId.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'DescribeAnycastEipAddress',
'summary' => 'Queries the details of a specified Anycast EIP instance, including its status, peak bandwidth, and associated cloud resources.',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastEipAddress'],
],
],
'ramActions' => [
[
'operationType' => 'get',
'ramAction' => [
'action' => 'eipanycast:DescribeAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"Status\\": \\"Associated\\",\\n \\"Description\\": \\"doctest\\",\\n \\"RequestId\\": \\"4EC47282-1B74-4534-BD0E-403F3EE64CAF\\",\\n \\"InstanceChargeType\\": \\"PostPaid\\",\\n \\"CreateTime\\": \\"2021-04-23T01:37:38Z\\",\\n \\"AnycastEipBindInfoList\\": [\\n {\\n \\"BindInstanceType\\": \\"SlbInstance\\",\\n \\"BindTime\\": \\"2021-04-23T02:37:38Z\\",\\n \\"Status\\": \\"BINDING\\",\\n \\"BindInstanceRegionId\\": \\"us-west-1\\",\\n \\"BindInstanceId\\": \\"lb-2zebb08phyczzawe****\\",\\n \\"PopLocations\\": [\\n {\\n \\"PopLocation\\": \\"us-west-1-pop\\"\\n }\\n ],\\n \\"AssociationMode\\": \\"Default\\",\\n \\"PrivateIpAddress\\": \\"192.168.XX.XX\\"\\n }\\n ],\\n \\"BusinessStatus\\": \\"Normal\\",\\n \\"InternetChargeType\\": \\"PayByTraffic\\",\\n \\"Name\\": \\"docname\\",\\n \\"AnycastId\\": \\"aeip-bp1ix34fralt4ykf3****\\",\\n \\"ServiceLocation\\": \\"international\\",\\n \\"Bandwidth\\": 200,\\n \\"IpAddress\\": \\"139.95.XX.XX\\",\\n \\"Bid\\": \\"26842\\",\\n \\"AliUid\\": 0,\\n \\"ResourceGroupId\\": \\"rg-acfmzssisocarfy\\",\\n \\"Tags\\": [\\n {\\n \\"Key\\": \\"FinanceDept\\",\\n \\"Value\\": \\"FinanceJoshua\\"\\n }\\n ],\\n \\"ServiceManaged\\": 1\\n}","type":"json"}]',
],
'DescribeAnycastPopLocations' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip3Z2ARP'],
],
'parameters' => [
[
'name' => 'ServiceLocation',
'in' => 'query',
'schema' => ['description' => 'The access area of the Anycast EIP instance.'."\n"
."\n"
.'Set the value to **international**. This value specifies the regions outside the Chinese mainland.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'international'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The list of response parameters.',
'type' => 'object',
'properties' => [
'AnycastPopLocationList' => [
'description' => 'A list of access points in the access area.',
'type' => 'array',
'items' => [
'description' => 'The access points in the access area.',
'type' => 'object',
'properties' => [
'RegionName' => ['description' => 'The name of the region where the access point is located.', 'type' => 'string', 'title' => '', 'example' => 'us-west-1-pop'],
'RegionId' => ['description' => 'The ID of the region where the access point is located.', 'type' => 'string', 'title' => '', 'example' => 'us-west-1-pop'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '4EC47282-1B74-4534-BD0E-403F3EE64CAF'],
'Count' => ['description' => 'The number of access points returned.', 'type' => 'string', 'title' => '', 'example' => '1'],
],
'title' => '',
'example' => '',
],
],
],
'title' => 'DescribeAnycastPopLocations',
'summary' => 'Queries the access points in a specified access area.',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastPopLocations'],
],
],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"AnycastPopLocationList\\": [\\n {\\n \\"RegionName\\": \\"us-west-1-pop\\",\\n \\"RegionId\\": \\"us-west-1-pop\\"\\n }\\n ],\\n \\"RequestId\\": \\"4EC47282-1B74-4534-BD0E-403F3EE64CAF\\",\\n \\"Count\\": \\"1\\"\\n}","type":"json"}]',
],
'DescribeAnycastServerRegions' => [
'summary' => 'Queries the regions where backend services can be attached to an Anycast EIP.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeipIDYPAX'],
],
'parameters' => [
[
'name' => 'ServiceLocation',
'in' => 'query',
'schema' => ['description' => 'The access area of the Anycast EIP.'."\n"
."\n"
.'Set the value to **international**. This value indicates regions outside the Chinese mainland.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'international'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The list of returned information.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '4EC47282-1B74-4534-BD0E-403F3EE64CAF'],
'Count' => ['description' => 'The number of entries in the list.', 'type' => 'string', 'title' => '', 'example' => '1'],
'AnycastServerRegionList' => [
'description' => 'The list of backend server regions to which the Anycast EIP can be attached.',
'type' => 'array',
'items' => [
'description' => 'The list of backend server regions to which the Anycast EIP can be attached.',
'type' => 'object',
'properties' => [
'RegionName' => ['description' => 'The name of the backend server region.', 'type' => 'string', 'title' => '', 'example' => 'eu-west-1-gb33-a01'],
'RegionId' => ['description' => 'The ID of the backend server region.', 'type' => 'string', 'title' => '', 'example' => 'eu-west-1'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
],
'title' => '',
'example' => '',
],
],
],
'title' => 'DescribeAnycastServerRegions',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastServerRegions'],
],
],
'ramActions' => [],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"4EC47282-1B74-4534-BD0E-403F3EE64CAF\\",\\n \\"Count\\": \\"1\\",\\n \\"AnycastServerRegionList\\": [\\n {\\n \\"RegionName\\": \\"eu-west-1-gb33-a01\\",\\n \\"RegionId\\": \\"eu-west-1\\"\\n }\\n ]\\n}","type":"json"}]',
],
'ListAnycastEipAddresses' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'list',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.'."\n"
."\n"
.'> To ensure query accuracy, we recommend that you do not specify **AnycastIds** and **AnycastId** at the same time.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
],
[
'name' => 'AnycastIds',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The list of Anycast EIP instance IDs.'."\n"
."\n"
.'You can enter up to 50 Anycast EIP instance IDs.'."\n"
."\n"
.'> To ensure query accuracy, we recommend that you do not specify **AnycastIds** and **AnycastId** at the same time.',
'type' => 'array',
'items' => ['description' => 'The list of Anycast EIP instance IDs.'."\n"
."\n"
.'You can enter up to 50 Anycast EIP instance IDs.'."\n"
."\n"
.'> To ensure query accuracy, we recommend that you do not specify **AnycastIds** and **AnycastId** at the same time.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
'required' => false,
'maxItems' => 50,
'title' => '',
'example' => '',
],
],
[
'name' => 'AnycastEipAddress',
'in' => 'query',
'schema' => ['description' => 'The IP address of the Anycast EIP instance.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '139.95.XX.XX'],
],
[
'name' => 'ServiceLocation',
'in' => 'query',
'schema' => ['description' => 'The access area of the Anycast EIP instance.'."\n"
."\n"
.'Set the value to **international**, which specifies regions outside the Chinese mainland.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'international'],
],
[
'name' => 'InstanceChargeType',
'in' => 'query',
'schema' => ['description' => 'The billing method of the Anycast EIP.'."\n"
."\n"
.'Set the value to **PostPaid**, which specifies the pay-as-you-go billing method.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'PostPaid'],
],
[
'name' => 'InternetChargeType',
'in' => 'query',
'schema' => ['description' => 'The metering method for Internet data transfer of the Anycast EIP instance.'."\n"
."\n"
.'Set the value to **PayByTraffic**, which specifies the pay-by-data-transfer metering method.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'PayByTraffic'],
],
[
'name' => 'Name',
'in' => 'query',
'schema' => ['description' => 'The name of the Anycast EIP instance.'."\n"
."\n"
.'The name must be 0 to 128 characters in length, start with a letter or a Chinese character, and can contain digits, hyphens (-), and underscores (\\_).', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'doctest'],
],
[
'name' => 'ResourceGroupId',
'in' => 'query',
'schema' => ['description' => 'The ID of the resource group to which the instance belongs.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'rg-aekzthsmwsnfuni'],
],
[
'name' => 'Tags',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The tag information.',
'type' => 'array',
'items' => [
'description' => 'The tag information.',
'type' => 'object',
'properties' => [
'Key' => ['description' => 'The tag key of the resource. You can specify up to 20 tag keys. The tag key cannot be an empty string.'."\n"
."\n"
.'The tag key can be up to 128 characters in length and cannot start with `aliyun` or `acs:`. The tag key cannot contain `http://` or `https://`.'."\n"
."\n"
.'> You must specify at least one of **Tag.N** (**Tag.N.Key** and **Tag.N.Value**).', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'FinanceDept'],
'Value' => ['description' => 'The tag value of the resource. You can specify up to 20 tag values. The tag value can be an empty string.'."\n"
."\n"
.'The tag value can be up to 128 characters in length. It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.'."\n"
."\n"
.'> You must specify at least one of **Tag.N** (**Tag.N.Key** and **Tag.N.Value**).', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'FinanceJoshua'],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => false,
'maxItems' => 10,
'title' => '',
'example' => '',
],
],
[
'name' => 'MaxResults',
'in' => 'query',
'schema' => ['description' => 'The number of entries to return on each page when a list is displayed. Valid values: 20 to **100**. Default value: **50**.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'title' => '', 'example' => '50'],
],
[
'name' => 'NextToken',
'in' => 'query',
'schema' => ['description' => 'The token that is used for the next query. Valid values:'."\n"
."\n"
.'- You do not need to specify this parameter for the first query or if no next query is to be sent.'."\n"
."\n"
.'- If a next query is to be sent, set the value to the NextToken value returned from the previous API call.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'caeba0bbb2be03f84eb48b699f0a****'],
],
[
'name' => 'Status',
'in' => 'query',
'schema' => ['description' => 'The IP address status. Valid values:'."\n"
."\n"
.'- **Associating**: The Anycast EIP is being associated.'."\n"
."\n"
.'- **Unassociating**: The Anycast EIP is being disassociated.'."\n"
."\n"
.'- **Allocated**: The Anycast EIP is allocated.'."\n"
."\n"
.'- **Associated**: The Anycast EIP is associated.'."\n"
."\n"
.'- **Modifying**: The Anycast EIP is being modified.'."\n"
."\n"
.'- **Releasing**: The Anycast EIP is being released.'."\n"
."\n"
.'- **Released**: The Anycast EIP is released.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'Associated'],
],
[
'name' => 'BusinessStatus',
'in' => 'query',
'schema' => ['description' => 'The service status of the Anycast EIP instance. Valid values:'."\n"
."\n"
.'- **Normal**: The Anycast EIP is in a normal state.'."\n"
."\n"
.'- **FinancialLocked**: The Anycast EIP is locked due to an overdue payment.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'Normal'],
],
[
'name' => 'BindInstanceIds',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The list of IDs of cloud resources with which the Anycast EIP is associated.'."\n"
."\n"
.'You can enter up to 100 cloud resource IDs.',
'type' => 'array',
'items' => ['description' => 'The list of IDs of cloud resources with which the Anycast EIP is associated.'."\n"
."\n"
.'You can enter up to 100 cloud resource IDs.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'lb-2zebb08phyczzawe****'],
'required' => false,
'example' => 'lb-2zebb08phyczzawe****',
'maxItems' => 100,
'title' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The list of returned information.',
'type' => 'object',
'properties' => [
'TotalCount' => ['description' => 'The number of entries in the list.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '100'],
'NextToken' => ['description' => 'The token that is used for the next query. Valid values:'."\n"
."\n"
.'- If **NextToken** is empty, it indicates that no next query is to be sent.'."\n"
."\n"
.'- If a value is returned for **NextToken**, the value is the token that is used for the next query.', 'type' => 'string', 'title' => '', 'example' => 'FFmyTO70tTpLG6I3FmYAXGKPd****'],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '4EC47282-1B74-4534-BD0E-403F3EE64CAF'],
'AnycastList' => [
'description' => 'The list of Anycast EIP instances.',
'type' => 'array',
'items' => [
'description' => 'The list of Anycast EIP instances.',
'type' => 'object',
'properties' => [
'Status' => ['description' => 'The IP address status.'."\n"
."\n"
.'- **Associating**: The Anycast EIP is being associated.'."\n"
."\n"
.'- **Unassociating**: The Anycast EIP is being disassociated.'."\n"
."\n"
.'- **Allocated**: The Anycast EIP is allocated.'."\n"
."\n"
.'- **Associated**: The Anycast EIP is associated.'."\n"
."\n"
.'- **Modifying**: The Anycast EIP is being modified.'."\n"
."\n"
.'- **Releasing**: The Anycast EIP is being released.'."\n"
."\n"
.'- **Released**: The Anycast EIP is released.', 'type' => 'string', 'title' => '', 'example' => 'Associating'],
'CreateTime' => ['description' => 'The time when the Anycast EIP instance was created.', 'type' => 'string', 'title' => '', 'example' => '2022-04-22T01:37:38Z'],
'AnycastId' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
'AliUid' => ['description' => 'The ID of the Alibaba Cloud account to which the Anycast EIP instance belongs.', 'type' => 'integer', 'format' => 'int64', 'title' => '', 'example' => '123440159596****'],
'ServiceLocation' => ['description' => 'The access area of the Anycast EIP instance.'."\n"
."\n"
.'**international**: regions outside the Chinese mainland.', 'type' => 'string', 'title' => '', 'example' => 'international'],
'InstanceChargeType' => ['description' => 'The billing method of the Anycast EIP instance.'."\n"
."\n"
.'**PostPaid**: the pay-as-you-go billing method.', 'type' => 'string', 'title' => '', 'example' => 'PostPaid'],
'IpAddress' => ['description' => 'The IP address of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => '139.95.XX.XX'],
'Bandwidth' => ['description' => 'The peak bandwidth of the Anycast EIP instance. Unit: Mbps.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '200'],
'Description' => ['description' => 'The description of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'docdesc'],
'AnycastEipBindInfoList' => [
'description' => 'The list of binding information about the Anycast EIP instance.',
'type' => 'array',
'items' => [
'description' => 'The list of binding information about the Anycast EIP instance.',
'type' => 'object',
'properties' => [
'BindInstanceType' => ['description' => 'The type of the cloud resource with which the Anycast EIP instance is associated.'."\n"
."\n"
.'- **SlbInstance**: a private Classic Load Balancer (CLB) instance in a virtual private cloud (VPC).'."\n"
."\n"
.'- **NetworkInterface**: an elastic network interface (ENI).', 'type' => 'string', 'title' => '', 'example' => 'SlbInstance'],
'BindTime' => ['description' => 'The time when the Anycast EIP instance was bound to the cloud resource.', 'type' => 'string', 'title' => '', 'example' => '2022-04-23T01:37:38Z'],
'BindInstanceRegionId' => ['description' => 'The ID of the region where the associated cloud resource is deployed.', 'type' => 'string', 'title' => '', 'example' => 'us-west-1'],
'BindInstanceId' => ['description' => 'The ID of the cloud resource with which the Anycast EIP instance is associated.', 'type' => 'string', 'title' => '', 'example' => 'lb-2zebb08phyczzawe****'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
'InternetChargeType' => ['description' => 'The metering method of the Anycast EIP instance.'."\n"
."\n"
.'**PayByTraffic**: the pay-by-data-transfer metering method.', 'type' => 'string', 'title' => '', 'example' => 'PayByTraffic'],
'BusinessStatus' => ['description' => 'The service status of the Anycast EIP instance.'."\n"
."\n"
.'- **Normal**: The Anycast EIP is in a normal state.'."\n"
."\n"
.'- **FinancialLocked**: The Anycast EIP is locked due to an overdue payment.', 'type' => 'string', 'title' => '', 'example' => 'Normal'],
'Name' => ['description' => 'The name of the Anycast EIP instance.', 'type' => 'string', 'title' => '', 'example' => 'docname'],
'ServiceManaged' => ['description' => 'Indicates whether the resource is created by a service account.'."\n"
."\n"
.'- **0**: The resource is not created by a service account.'."\n"
."\n"
.'- **1**: The resource is created by a service account.', 'type' => 'integer', 'format' => 'int32', 'title' => '', 'example' => '0'],
'ResourceGroupId' => ['description' => 'The ID of the resource group to which the instance belongs.', 'type' => 'string', 'title' => '', 'example' => 'rg-aekzthsmwsnfuni'."\n"],
'Tags' => [
'description' => 'The tag information.',
'type' => 'array',
'items' => [
'description' => 'The tag information.',
'type' => 'object',
'properties' => [
'Key' => ['description' => 'The tag key.', 'type' => 'string', 'title' => '', 'example' => 'FinanceDept'],
'Value' => ['description' => 'The tag value.', 'type' => 'string', 'title' => '', 'example' => 'FinanceJoshua'],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
],
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
],
'title' => '',
'example' => '',
],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'ListAnycastEipAddresses',
'summary' => 'Queries the details of Anycast EIPs in a specified access area, including their status, peak bandwidth, and information about bound cloud resources.',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '600', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ListAnycastEipAddresses'],
],
],
'ramActions' => [
[
'operationType' => 'list',
'ramAction' => [
'action' => 'eipanycast:ListAnycastEipAddresses',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/*'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"TotalCount\\": 100,\\n \\"NextToken\\": \\"FFmyTO70tTpLG6I3FmYAXGKPd****\\",\\n \\"RequestId\\": \\"4EC47282-1B74-4534-BD0E-403F3EE64CAF\\",\\n \\"AnycastList\\": [\\n {\\n \\"Status\\": \\"Associating\\",\\n \\"CreateTime\\": \\"2022-04-22T01:37:38Z\\",\\n \\"AnycastId\\": \\"aeip-2zeerraiwb7ujsxdc****\\",\\n \\"AliUid\\": 0,\\n \\"ServiceLocation\\": \\"international\\",\\n \\"InstanceChargeType\\": \\"PostPaid\\",\\n \\"IpAddress\\": \\"139.95.XX.XX\\",\\n \\"Bandwidth\\": 200,\\n \\"Description\\": \\"docdesc\\",\\n \\"AnycastEipBindInfoList\\": [\\n {\\n \\"BindInstanceType\\": \\"SlbInstance\\",\\n \\"BindTime\\": \\"2022-04-23T01:37:38Z\\",\\n \\"BindInstanceRegionId\\": \\"us-west-1\\",\\n \\"BindInstanceId\\": \\"lb-2zebb08phyczzawe****\\"\\n }\\n ],\\n \\"InternetChargeType\\": \\"PayByTraffic\\",\\n \\"BusinessStatus\\": \\"Normal\\",\\n \\"Name\\": \\"docname\\",\\n \\"ServiceManaged\\": 0,\\n \\"ResourceGroupId\\": \\"rg-aekzthsmwsnfuni\\\\n\\",\\n \\"Tags\\": [\\n {\\n \\"Key\\": \\"FinanceDept\\",\\n \\"Value\\": \\"FinanceJoshua\\"\\n }\\n ]\\n }\\n ]\\n}","type":"json"}]',
],
'ListTagResources' => [
'summary' => 'Queries the tags that are bound to Anycast elastic IP addresses (Anycast EIPs) by calling the ListTagResources operation.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'list',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'ResourceId',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The list of resource IDs.',
'type' => 'array',
'items' => ['description' => 'The resource ID. You can specify up to 20 resource IDs.'."\n"
."\n"
.'> You must specify at least one of **ResourceId.N** and **Tag.N** (**Tag.N.Key** and **Tag.N.Value**).', 'type' => 'string', 'required' => false, 'example' => 'aeip-2zeerraiwb7ujsxdc****', 'title' => ''],
'required' => false,
'maxItems' => 50,
'minItems' => 1,
'title' => '',
'example' => '',
],
],
[
'name' => 'ResourceType',
'in' => 'query',
'schema' => ['description' => 'The resource type. Valid values: **ANYCASTEIPADDRESS**.', 'type' => 'string', 'required' => true, 'example' => 'ANYCASTEIPADDRESS', 'title' => ''],
],
[
'name' => 'Tag',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The tag information.',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Key' => ['description' => 'The tag key of the resource. You can specify up to 20 tag keys. If you specify this parameter, the value cannot be an empty string.'."\n"
."\n"
.'The tag key can be up to 128 characters in length and cannot start with `aliyun` or `acs:`. It cannot contain `http://` or `https://`.'."\n"
."\n"
.'> You must specify at least one of **ResourceId.N** and **Tag.N** (**Tag.N.Key** and **Tag.N.Value**).', 'type' => 'string', 'required' => false, 'example' => 'FinanceDept', 'title' => ''],
'Value' => ['description' => 'The tag value of the resource. You can specify up to 20 tag values. If you specify this parameter, the value can be an empty string.'."\n"
."\n"
.'The tag value can be up to 128 characters in length and cannot start with `aliyun` or `acs:`. It cannot contain `http://` or `https://`.'."\n"
."\n"
.'> You must specify at least one of **ResourceId.N** and **Tag.N** (**Tag.N.Key** and **Tag.N.Value**).', 'type' => 'string', 'required' => false, 'example' => 'FinanceJoshua', 'title' => ''],
],
'required' => false,
'description' => '',
'title' => '',
'example' => '',
],
'required' => false,
'maxItems' => 21,
'minItems' => 1,
'title' => '',
'example' => '',
],
],
[
'name' => 'NextToken',
'in' => 'query',
'schema' => ['description' => 'The pagination token. Valid values:'."\n"
."\n"
.'- If this is the first query or no subsequent query is required, leave this parameter empty.'."\n"
."\n"
.'- If a subsequent query is required, set the value to the **NextToken** value returned by the previous API call.', 'type' => 'string', 'required' => false, 'example' => 'FFmyTO70tTpLG6I3FmYAXGKPd****', 'title' => ''],
],
[
'name' => 'MaxResults',
'in' => 'query',
'schema' => ['description' => 'The maximum number of entries per page for a paged query. Valid values: **1** to **50**. Default value: **50**.', 'type' => 'string', 'required' => false, 'example' => '50', 'title' => ''],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'NextToken' => ['description' => 'The pagination token. Valid values:'."\n"
.'- If **NextToken** is empty, no subsequent query exists.'."\n"
.'- If **NextToken** is returned, the value indicates the token for the next query.', 'type' => 'string', 'example' => 'FFmyTO70tTpLG6I3FmYAXGKPd****', 'title' => ''],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'DE65F6B7-7566-4802-9007-96F2494AC512', 'title' => ''],
'TagResources' => [
'description' => 'The information about the resources to which tags are bound.',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'ResourceId' => ['description' => 'The resource ID.', 'type' => 'string', 'example' => 'aeip-2zeerraiwb7ujsxdc****', 'title' => ''],
'ResourceType' => ['description' => 'The resource type. Valid values: **ANYCASTEIPADDRESS**.', 'type' => 'string', 'example' => 'ANYCASTEIPADDRESS', 'title' => ''],
'TagValue' => ['description' => 'The tag value.', 'type' => 'string', 'example' => 'FinanceJoshua', 'title' => ''],
'TagKey' => ['description' => 'The tag key.', 'type' => 'string', 'example' => 'FinanceDept', 'title' => ''],
],
'description' => '',
'title' => '',
'example' => '',
],
'title' => '',
'example' => '',
],
],
'description' => '',
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'InvalidTagKey', 'errorMessage' => 'The tag keys are not valid.', 'description' => ''],
['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The maximum number of tags is exceeded.', 'description' => ''],
['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The maximum number of resource IDs is exceeded.', 'description' => ''],
['errorCode' => 'Forbidden.TagKeys', 'errorMessage' => 'The tag key cannot be operated by the request.', 'description' => ''],
['errorCode' => 'Forbidden.TagKey.Duplicated', 'errorMessage' => 'The specified tag key already exists.', 'description' => ''],
['errorCode' => 'InvalidInstanceIds.NotFound', 'errorMessage' => 'The instance IDs are not found.', 'description' => ''],
['errorCode' => 'InvalidInstanceType.NotFound', 'errorMessage' => 'The instance type is not found.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'Query tags bound to instances',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ListTagResources'],
],
],
'ramActions' => [
[
'operationType' => 'list',
'ramAction' => [
'action' => 'eipanycast:ListTagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"NextToken\\": \\"FFmyTO70tTpLG6I3FmYAXGKPd****\\",\\n \\"RequestId\\": \\"DE65F6B7-7566-4802-9007-96F2494AC512\\",\\n \\"TagResources\\": [\\n {\\n \\"ResourceId\\": \\"aeip-2zeerraiwb7ujsxdc****\\",\\n \\"ResourceType\\": \\"ANYCASTEIPADDRESS\\",\\n \\"TagValue\\": \\"FinanceJoshua\\",\\n \\"TagKey\\": \\"FinanceDept\\"\\n }\\n ]\\n}","type":"json"}]',
],
'ModifyAnycastEipAddressAttribute' => [
'summary' => 'Changes the name and description of an Anycast EIP instance.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
'autoTest' => true,
'tenantRelevance' => 'tenant',
],
'parameters' => [
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
[
'name' => 'Name',
'in' => 'query',
'schema' => ['description' => 'The name of the Anycast EIP instance.'."\n"
."\n"
.'The name must be 0 to 128 characters in length. It must start with a letter or a Chinese character. It can contain digits, underscores (\\_), and hyphens (-).', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'docname'],
],
[
'name' => 'Description',
'in' => 'query',
'schema' => ['description' => 'The description of the Anycast EIP instance.'."\n"
."\n"
.'The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'docdesc'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
['errorCode' => 'IllegalParameter.Name', 'errorMessage' => 'The specified Name is invalid.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'ModifyAnycastEipAddressAttribute',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyAnycastEipAddressAttribute'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ModifyAnycastEipAddressAttribute',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
],
'ModifyAnycastEipAddressSpec' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'Bandwidth',
'in' => 'query',
'schema' => ['description' => 'The peak bandwidth of the Anycast EIP instance. Unit: Mbps.'."\n"
."\n"
.'Valid values: **200** to **1000**.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => '200'],
],
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'OperationFailed.Conflict', 'errorMessage' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'description' => ''],
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
],
],
'staticInfo' => ['returnType' => 'asynchronous', 'callback' => 'Eipanycast::2020-03-09::ListAnycastEipAddresses', 'callbackInterval' => 3000, 'maxCallbackTimes' => 10],
'title' => 'ModifyAnycastEipAddressSpec',
'summary' => 'Modifies the bandwidth of an Anycast EIP instance.',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyAnycastEipAddressSpec'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ModifyAnycastEipAddressSpec',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
],
'ReleaseAnycastEipAddress' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'delete',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
'tenantRelevance' => 'publicInformation',
],
'parameters' => [
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance that you want to release.', 'type' => 'string', 'required' => true, 'docRequired' => true, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
[
'name' => 'ClientToken',
'in' => 'query',
'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.'."\n"
."\n"
.'> If you do not specify this parameter, the system automatically uses the RequestId of the request as the ClientToken. The RequestId of each API request may be different.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '02fb3da4-130e-11e9-8e44-001****'],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
],
'description' => '',
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'OperationFailed.Conflict', 'errorMessage' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'description' => ''],
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
['errorCode' => 'IncorrectStatus.Anycast', 'errorMessage' => 'The status of the Anycast instance is invalid.', 'description' => ''],
],
503 => [
['errorCode' => 'SystemBusy', 'errorMessage' => 'The system is busy. Please try again later.', 'description' => 'The system is currently busy, please try again later.'],
],
],
'staticInfo' => ['returnType' => 'asynchronous', 'callback' => 'Eipanycast::2020-03-09::ListAnycastEipAddresses', 'callbackInterval' => 3000, 'maxCallbackTimes' => 10],
'title' => 'ReleaseAnycastEipAddress',
'summary' => 'Releases an Anycast EIP instance.',
'description' => 'Before you release an Anycast EIP instance, make sure that the instance is not associated with a cloud resource. For more information, see [](t2322843.xdita#).',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ReleaseAnycastEipAddress'],
],
],
'ramActions' => [
[
'operationType' => 'delete',
'ramAction' => [
'action' => 'eipanycast:ReleaseAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
'extraInfo' => ' ',
],
'TagResources' => [
'summary' => 'Creates and attaches tags to specified resources.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'ResourceId',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The resource ID. You can specify up to 20 resource IDs.',
'type' => 'array',
'items' => ['description' => 'The resource ID. You can specify up to 20 resource IDs.'."\n"
."\n"
.'> When you call this operation, you must specify the **ResourceId.N** parameter.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
'required' => true,
'maxItems' => 50,
'minItems' => 1,
'title' => '',
'example' => '',
],
],
[
'name' => 'ResourceType',
'in' => 'query',
'schema' => ['description' => 'The resource type. Set the value to **ANYCASTEIPADDRESS**.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'ANYCASTEIPADDRESS'],
],
[
'name' => 'Tag',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The tag information.',
'type' => 'array',
'items' => [
'description' => 'The tag information.',
'type' => 'object',
'properties' => [
'Key' => ['description' => 'The tag key of the resource. You must specify at least one tag key and at most 20 tag keys. The tag key cannot be an empty string.'."\n"
."\n"
.'The tag key can be up to 128 characters in length. It cannot start with aliyun or acs: and cannot contain `http://` or `https://`.'."\n"
."\n"
.'> When you call this operation, you must specify the **Tag.N.Key** parameter.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'FinanceDept'],
'Value' => ['description' => 'The tag value of the resource. You must specify at least one tag value and at most 20 tag values. The tag value can be an empty string.'."\n"
."\n"
.'The tag value can be up to 128 characters in length. It cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.'."\n"
."\n"
.'> When you call this operation, you must specify the **Tag.N.Value** parameter.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'FinanceJoshua'],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => true,
'maxItems' => 21,
'minItems' => 1,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'BaseResult',
'type' => 'object',
'properties' => [
'Success' => ['description' => 'Indicates whether the call is successful. Valid values:'."\n"
."\n"
.'**true**: The call is successful.'."\n"
."\n"
.'**false**: The call failed.', 'type' => 'boolean', 'title' => '', 'example' => 'true'],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'C46FF5A8-C5F0-4024-8262-B16B639225A0'],
],
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The maximum number of tags is exceeded.', 'description' => ''],
['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The maximum number of resource IDs is exceeded.', 'description' => ''],
['errorCode' => 'Forbidden.TagKeys', 'errorMessage' => 'The tag key cannot be operated by the request.', 'description' => ''],
['errorCode' => 'Forbidden.TagKey.Duplicated', 'errorMessage' => 'The specified tag key already exists.', 'description' => ''],
['errorCode' => 'InvalidInstanceIds.NotFound', 'errorMessage' => 'The instance IDs are not found.', 'description' => ''],
['errorCode' => 'InvalidInstanceType.NotFound', 'errorMessage' => 'The instance type is not found.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'TagResources',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'TagResources'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:TagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"Success\\": true,\\n \\"RequestId\\": \\"C46FF5A8-C5F0-4024-8262-B16B639225A0\\"\\n}","type":"json"}]',
],
'UnassociateAnycastEipAddress' => [
'summary' => 'Disassociates an Anycast EIP from an endpoint.',
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'delete',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'BindInstanceId',
'in' => 'query',
'schema' => ['description' => 'The ID of the endpoint from which you want to disassociate the Anycast EIP.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'lb-2zebb08phyczzawe****'],
],
[
'name' => 'BindInstanceRegionId',
'in' => 'query',
'schema' => ['description' => 'The region where the endpoint is deployed.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'us-west-1'],
],
[
'name' => 'BindInstanceType',
'in' => 'query',
'schema' => ['description' => 'The type of endpoint from which you want to disassociate the Anycast EIP. Valid values:'."\n"
."\n"
.'- **SlbInstance**: an internal-facing Server Load Balancer (SLB) instance that is deployed in a virtual private cloud (VPC)'."\n"
."\n"
.'- **NetworkInterface**: elastic network interface (ENI)', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'SlbInstance'],
],
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
],
[
'name' => 'ClientToken',
'in' => 'query',
'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request.'."\n"
."\n"
.'You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.'."\n"
."\n"
.'> If you do not specify this parameter, the system automatically uses the **request ID** as the **client token**. The **request ID** may be different for each request.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '02fb3da4-130e-11e9-8e44-001****'],
],
[
'name' => 'DryRun',
'in' => 'query',
'schema' => ['description' => 'Specifies whether to perform a dry run, without performing the actual request. Valid values:'."\n"
."\n"
.'- **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.'."\n"
."\n"
.'- **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'false'],
],
[
'name' => 'PrivateIpAddress',
'in' => 'query',
'schema' => ['description' => 'The secondary private IP address of the ENI from which you want to disassociate the Anycast EIP.'."\n"
."\n"
.'This parameter is valid only when you set **BindInstanceType** to **NetworkInterface**. If you do not specify this parameter, the primary private IP address of the ENI is used.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '192.168.XX.XX'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['title' => '', 'description' => 'The request ID.', 'type' => 'string', 'example' => 'FBDB18D8-E91E-4978-8D6C-6E2E3EE10133'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'IncorrectStatus.Anycast', 'errorMessage' => 'The status of the Anycast instance is invalid.', 'description' => ''],
['errorCode' => 'InstanceNotExist.ENI', 'errorMessage' => 'Instance does not exist: The specified Elastic Network Interface (ENI) was not found. Please verify the instance ID or check if the resource has been released.', 'description' => ''],
['errorCode' => 'InstanceNotExist.SLB', 'errorMessage' => 'Instance does not exist: The specified Server Load Balancer (SLB) was not found. Please verify the instance ID or check if the resource has been released.', 'description' => ''],
['errorCode' => 'OperationFailed.Conflict', 'errorMessage' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'description' => ''],
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
['errorCode' => 'ResourceNotFound.BindInstanceId', 'errorMessage' => 'Resource not found: The specified BindInstanceId does not exist.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'asynchronous', 'callback' => 'Eipanycast::2020-03-09::ListAnycastEipAddresses', 'callbackInterval' => 3000, 'maxCallbackTimes' => 10],
'title' => 'UnassociateAnycastEipAddress',
'requestParamsDescription' => ' ',
'responseParamsDescription' => ' ',
'extraInfo' => ' ',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UnassociateAnycastEipAddress'],
],
],
'ramActions' => [
[
'operationType' => 'delete',
'ramAction' => [
'action' => 'eipanycast:UnassociateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'Instance', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:networkinterface/{#InstanceId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"FBDB18D8-E91E-4978-8D6C-6E2E3EE10133\\"\\n}","type":"json"}]',
],
'UntagResources' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip70HI1T'],
],
'parameters' => [
[
'name' => 'ResourceId',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The resource IDs. You can detach tags from a maximum of 20 resource IDs.',
'type' => 'array',
'items' => ['description' => 'The resource ID. You can detach tags from a maximum of 20 resource IDs.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'aeip-2zeerraiwb7ujsxdc****'],
'required' => true,
'maxItems' => 50,
'minItems' => 1,
'title' => '',
'example' => '',
],
],
[
'name' => 'ResourceType',
'in' => 'query',
'schema' => ['description' => 'The resource type. Set the value to **ANYCASTEIPADDRESS**.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'ANYCASTEIPADDRESS'],
],
[
'name' => 'TagKey',
'in' => 'query',
'style' => 'repeatList',
'schema' => [
'description' => 'The tag keys that you want to detach. You can enter a maximum of 20 tag keys. If you specify this parameter, the value cannot be an empty string.'."\n"
."\n"
.'A tag key can be up to 128 characters in length. It cannot start with aliyun or acs:. It also cannot contain `http://` or `https://`.',
'type' => 'array',
'items' => ['description' => 'The tag key that you want to detach. You can enter a maximum of 20 tag keys. If you specify this parameter, the value can be an empty string.'."\n"
."\n"
.'A tag key can be up to 128 characters in length. It cannot start with aliyun or acs:. It also cannot contain http\\:// or https\\://.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => 'FinanceDept'],
'required' => false,
'maxItems' => 21,
'title' => '',
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => '',
'description' => 'BaseResult',
'type' => 'object',
'properties' => [
'Success' => ['description' => 'Indicates whether the call was successful. Valid values:'."\n"
."\n"
.'**true**: The call was successful.'."\n"
."\n"
.'**false**: The call failed.', 'type' => 'boolean', 'title' => '', 'example' => 'true'],
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => 'C46FF5A8-C5F0-4024-8262-B16B639225A0'],
],
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'NumberExceed.Tags', 'errorMessage' => 'The maximum number of tags is exceeded.', 'description' => ''],
['errorCode' => 'NumberExceed.ResourceIds', 'errorMessage' => 'The maximum number of resource IDs is exceeded.', 'description' => ''],
['errorCode' => 'Forbidden.TagKeys', 'errorMessage' => 'The tag key cannot be operated by the request.', 'description' => ''],
['errorCode' => 'Forbidden.TagKey.Duplicated', 'errorMessage' => 'The specified tag key already exists.', 'description' => ''],
['errorCode' => 'InvalidInstanceIds.NotFound', 'errorMessage' => 'The instance IDs are not found.', 'description' => ''],
['errorCode' => 'InvalidInstanceType.NotFound', 'errorMessage' => 'The instance type is not found.', 'description' => ''],
],
],
'staticInfo' => ['returnType' => 'synchronous'],
'title' => 'UntagResources',
'summary' => 'Detaches tags from Anycast EIPs in a batch.',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UntagResources'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:UntagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"Success\\": true,\\n \\"RequestId\\": \\"C46FF5A8-C5F0-4024-8262-B16B639225A0\\"\\n}","type":"json"}]',
],
'UpdateAnycastEipAddressAssociations' => [
'methods' => ['post', 'get'],
'schemes' => ['http', 'https'],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'readAndWrite',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
'riskType' => 'none',
'chargeType' => 'free',
'abilityTreeNodes' => ['FEATUREeip2OM9BW'],
],
'parameters' => [
[
'name' => 'BindInstanceId',
'in' => 'query',
'schema' => ['description' => 'The ID of the cloud resource instance to be associated.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'lb-d7oxbixhxv1uupnon****'],
],
[
'name' => 'AnycastId',
'in' => 'query',
'schema' => ['description' => 'The ID of the Anycast EIP instance.', 'type' => 'string', 'required' => true, 'title' => '', 'example' => 'aeip-bp1ix34fralt4ykf3****'],
],
[
'name' => 'ClientToken',
'in' => 'query',
'schema' => ['description' => 'The client token that is used to ensure the idempotence of the request.'."\n"
."\n"
.'The client generates the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.'."\n"
."\n"
.'> If you do not specify this parameter, the system automatically uses the **RequestId** of the request as the **ClientToken**. The **RequestId** may be different for each request.', 'type' => 'string', 'required' => false, 'title' => '', 'example' => '02fb3da4-130e-11e9-8e44-001****'],
],
[
'name' => 'DryRun',
'in' => 'query',
'schema' => ['description' => 'Specifies whether to perform a dry run. Valid values:'."\n"
."\n"
.'- **true**: sends a check request and does not update the association. The system checks whether the required parameters are specified, the request format, and the service limits. If the check fails, the corresponding error is returned. If the check succeeds, the `DryRunOperation` error code is returned.'."\n"
."\n"
.'- **false** (default): sends a normal request. After the request passes the check, an HTTP 2xx status code is returned and the operation is performed.', 'type' => 'boolean', 'required' => false, 'title' => '', 'example' => 'false'],
],
[
'name' => 'PopLocationAddList',
'in' => 'query',
'style' => 'flat',
'schema' => [
'title' => '',
'description' => 'The list of access areas and access points to be added.',
'type' => 'array',
'items' => [
'description' => 'The list of access areas and access points to be added.',
'type' => 'object',
'properties' => [
'PopLocation' => ['title' => '', 'description' => 'The access point of the access area to be added.'."\n"
."\n"
.'You can call the [](t2322850.xdita#)operation to query information about the access points in supported access areas.', 'type' => 'string', 'required' => false, 'example' => 'us-west-1-pop'],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => false,
'example' => '',
],
],
[
'name' => 'PopLocationDeleteList',
'in' => 'query',
'style' => 'flat',
'schema' => [
'title' => '',
'description' => 'The list of access areas and access points to be deleted.',
'type' => 'array',
'items' => [
'description' => 'The list of access points in the access areas to be deleted.'."\n"
."\n"
.'> You cannot delete the access point of an access area if the cloud resource instance associated with the access point is the default origin server.',
'type' => 'object',
'properties' => [
'PopLocation' => ['title' => '', 'description' => 'The list of access points in the access areas to be deleted.'."\n"
."\n"
.'> You cannot delete the access point of an access area if the cloud resource instance associated with the access point is the default origin server.', 'type' => 'string', 'required' => false, 'example' => 'eu-west-1-pop'],
],
'required' => false,
'title' => '',
'example' => '',
],
'required' => false,
'example' => '',
],
],
[
'name' => 'AssociationMode',
'in' => 'query',
'schema' => ['title' => '', 'description' => 'The association mode. Valid values:'."\n"
."\n"
.'- **Default**: In this mode, the cloud resource instance to be associated is set as the default origin server.'."\n"
."\n"
.'- **Normal**: In this mode, the cloud resource instance to be associated is set as a normal origin server.', 'type' => 'string', 'required' => false, 'example' => 'Default'],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'The response parameters.',
'type' => 'object',
'properties' => [
'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'title' => '', 'example' => '4EC47282-1B74-4534-BD0E-403F3EE64CAF'],
],
'title' => '',
'example' => '',
],
],
],
'errorCodes' => [
400 => [
['errorCode' => 'OperationFailed.SetNormalAssociationMode', 'errorMessage' => 'The only associated instance must be default mode. ', 'description' => ''],
['errorCode' => 'OperationFailed.DeletedPopLocation', 'errorMessage' => 'The operation is failed because of added Pop Location is invalid.', 'description' => ''],
['errorCode' => 'OperationFailed.AddPopLocation', 'errorMessage' => 'The operation is failed because of added Pop Location is invalid.', 'description' => ''],
['errorCode' => 'ResourceNotFound.BindInstanceId', 'errorMessage' => 'The specified resource BindInstanceId is not found.', 'description' => ''],
['errorCode' => 'ResourceNotFound.AnycastId', 'errorMessage' => 'The specified resource AnycastId is not found.', 'description' => ''],
['errorCode' => 'IncorrectStatus.Anycast', 'errorMessage' => 'The status of the Anycast instance is invalid.', 'description' => ''],
['errorCode' => 'OperationFailed.Conflict', 'errorMessage' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'description' => ''],
['errorCode' => 'OperationUnsupported.ServiceManaged', 'errorMessage' => 'Operation is forbidden because this instance belongs to Service manager.', 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
],
],
'staticInfo' => ['returnType' => 'asynchronous', 'callback' => 'Eipanycast::2020-03-09::ListAnycastEipAddresses', 'callbackInterval' => 3000, 'maxCallbackTimes' => 10],
'title' => 'UpdateAnycastEipAddressAssociations',
'summary' => 'If an Anycast EIP instance is associated with backend resources in multiple regions, you can modify the mappings between access points and origin servers. You can call the UpdateAnycastEipAddressAssociations operation to add or remove access points for a specified origin server, which is an associated cloud resource instance.',
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UpdateAnycastEipAddressAssociations'],
],
],
'ramActions' => [
[
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:UpdateAnycastEipAddressAssociations',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddressAttachment', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"4EC47282-1B74-4534-BD0E-403F3EE64CAF\\"\\n}","type":"json"}]',
],
],
'endpoints' => [
['regionId' => 'cn-hangzhou', 'regionName' => 'China (Hangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'eipanycast.cn-hangzhou.aliyuncs.com', 'endpoint' => 'eipanycast.cn-hangzhou.aliyuncs.com', 'vpc' => ''],
],
'errorCodes' => [
['code' => 'Forbidden.RAM', 'message' => 'The user is not authorized to operate on the specified resource, or the API operation does not support RAM.', 'http_code' => 400, 'description' => 'RAM check fails'],
['code' => 'IllegalParam.MaxResult', 'message' => 'The specified MaxResult is invalid', 'http_code' => 400, 'description' => ''],
['code' => 'IllegalParam.ServiceLocation', 'message' => 'The specified ServiceLocation is invalid.', 'http_code' => 400, 'description' => ''],
['code' => 'IllegalParameter.Bandwidth', 'message' => 'The specified Bandwidth is invalid.', 'http_code' => 400, 'description' => ''],
['code' => 'IllegalParameter.Description', 'message' => 'The specified Description is invalid.', 'http_code' => 400, 'description' => ''],
['code' => 'IllegalParameter.Name', 'message' => 'The specified Name is invalid.', 'http_code' => 400, 'description' => ''],
['code' => 'IncorrectStatus.Anycast', 'message' => 'The status of the Anycast instance is invalid.', 'http_code' => 400, 'description' => ''],
['code' => 'InstanceExist.Anycast', 'message' => 'The specified Anycast instance already exists.', 'http_code' => 400, 'description' => ''],
['code' => 'InstanceNotExist.Anycast', 'message' => 'The specified instance does not exist.', 'http_code' => 400, 'description' => ''],
['code' => 'InstanceNotExist.SLB', 'message' => 'The instance %s is not exist.', 'http_code' => 404, 'description' => 'The specified SLB instance does not exist.'],
['code' => 'InvalidInstanceParams.NotFound', 'message' => 'The specified instance parameter is not found.', 'http_code' => 400, 'description' => ''],
['code' => 'MissingParam.AnycastIdOrIp', 'message' => 'The parameter AnycastId Or Ip is mandatory.', 'http_code' => 400, 'description' => 'The parameters AnycastId and Ip must be specified one.'],
['code' => 'MissingParameter.AnycastId', 'message' => 'You must specify AnycastId.', 'http_code' => 400, 'description' => ''],
['code' => 'MissingParameter.ChargeType', 'message' => 'You must specify ChargeType.', 'http_code' => 400, 'description' => ''],
['code' => 'MissingParameter.InternetChargeType', 'message' => 'You must specify InternetChargeType.', 'http_code' => 400, 'description' => ''],
['code' => 'MissingParameter.ServiceLocation', 'message' => 'You must specify ServiceLocation.', 'http_code' => 400, 'description' => ''],
['code' => 'NoPermission', 'message' => 'You are not authorized to perform the operation.', 'http_code' => 400, 'description' => ''],
['code' => 'OperationFailed.AlreadyBoundedEip', 'message' => 'Operation failed because the instance already bounded eip.', 'http_code' => 400, 'description' => 'The operation failed because the specified instance is already bound to an EIP.'],
['code' => 'OperationFailed.BindOnFreeNetworkInterface', 'message' => 'Operation failed because the specified network interface is not bound on instance.', 'http_code' => 400, 'description' => 'The operation failed because the specified ENI is not bound to the instance.'],
['code' => 'OperationFailed.CdtNotOpened', 'message' => 'Operation failed because cdt not opened.', 'http_code' => 400, 'description' => 'Please activate CDT service before performing the current operation.'],
['code' => 'OperationFailed.DeletedPopLocation', 'message' => 'The operation is failed because of added Pop Location is invalid.', 'http_code' => 400, 'description' => 'Since the specified POP region does not exist or has been offline, the operation shi'],
['code' => 'OperationFailed.InvalidAvsVersion', 'message' => 'Operation failed because InvalidAvsVersion.', 'http_code' => 400, 'description' => 'The specified ECS instance does not support binding Anycast.'],
['code' => 'OperationFailed.SetNormalAssociationMode', 'message' => 'The only associated instance must be default mode.', 'http_code' => 400, 'description' => 'Default mode must be used AnycastEIP there is only one binding instance.'],
['code' => 'OperationUnsupported.BACKEND_REGION_NOT_OPEN', 'message' => 'The specified Region is not supported.', 'http_code' => 400, 'description' => 'The specified region is not supported.'],
['code' => 'OperationUnsupported.ServiceManaged', 'message' => 'Operation is forbidden because this instance belongs to Service manager.', 'http_code' => 400, 'description' => 'The operation is prohibited and the instance belongs to a managed resource.'."\n"],
['code' => 'ResourceNotFound.AnycastId', 'message' => 'The specified resource AnycastId is not found.', 'http_code' => 400, 'description' => ''],
['code' => 'ResourceNotFound.AnycastInstance', 'message' => 'The specified resource of %s is not found.', 'http_code' => 404, 'description' => 'The specified instance does not exist'],
['code' => 'ResourceNotFound.BindInstanceId', 'message' => 'The specified resource BindInstanceId is not found.', 'http_code' => 400, 'description' => ''],
['code' => 'SystemBusy', 'message' => 'The system is busy. Please try again later.', 'http_code' => 503, 'description' => 'The system is currently busy, please try again later.'],
['code' => 'MissingParam.BindInstanceRegionId', 'message' => 'The parameter BindInstanceRegionId is mandatory.', 'http_code' => 400, 'description' => 'Parameter BindInstanceRegionId is required'],
['code' => 'MissingParam.ResourceIdentifier', 'message' => 'Missing required parameter: Please provide at least one of AnycastId, IP, or BindInstanceId.', 'http_code' => 200, 'description' => ''],
['code' => 'OperationFailed.Conflict', 'message' => 'Operation failed: The request was too frequent or there was a concurrency conflict. Please try again later.', 'http_code' => 400, 'description' => ''],
['code' => 'IllegalParam.TagKey', 'message' => 'Invalid parameter: TagKey is illegal. Please check the format.', 'http_code' => 400, 'description' => ''],
['code' => 'InstanceNotExist.SLB', 'message' => 'Instance does not exist: The specified Server Load Balancer (SLB) was not found. Please verify the instance ID or check if the resource has been released.', 'http_code' => 400, 'description' => ''],
['code' => 'AccessDenied.RAM', 'message' => 'Access denied: The current account or role lacks RAM permissions to perform this operation. Please contact your administrator for authorization.', 'http_code' => 400, 'description' => ''],
['code' => 'InstanceNotExist.ENI', 'message' => 'Instance does not exist: The specified Elastic Network Interface (ENI) was not found. Please verify the instance ID or check if the resource has been released.', 'http_code' => 400, 'description' => ''],
['code' => 'ResourceNotFound.BindInstanceId', 'message' => 'Resource not found: The specified BindInstanceId does not exist.', 'http_code' => 400, 'description' => ''],
['code' => 'QuotaExceeded.AnycastEIP', 'message' => 'Quota exceeded: The number of Anycast Elastic IP addresses has reached the limit. Please request a quota increase or release unused resources.', 'http_code' => 400, 'description' => 'Quota Excess: The Anycast Elastic IP address has reached the upper limit and cannot be created. Apply for a quota increase or release useless resources.'],
['code' => 'MissingParam.TagsAndResourceIds', 'message' => 'Missing required parameters: Tag and ResourceIds must both be provided in the request.', 'http_code' => 400, 'description' => 'Request is missing required parameter: Both Tag and ResourceIds parameters must be provided'],
['code' => 'COMMODITY.INVALID_COMPONENT', 'message' => 'The order configuration parameters do not meet the validation criteria. Please reselect the products.', 'http_code' => 400, 'description' => 'Order configuration parameters do not meet the verification conditions, please re-match the goods!'],
],
'changeSet' => [],
'flowControl' => [
'flowControlList' => [
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ReleaseAnycastEipAddress'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ListTagResources'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UntagResources'],
['threshold' => '600', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ListAnycastEipAddresses'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'AllocateAnycastEipAddress'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastEipAddress'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyAnycastEipAddressAttribute'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastServerRegions'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'DescribeAnycastPopLocations'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'TagResources'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UpdateAnycastEipAddressAssociations'],
['threshold' => '120', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ChangeResourceGroup'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'UnassociateAnycastEipAddress'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'ModifyAnycastEipAddressSpec'],
['threshold' => '60', 'countWindow' => 60, 'regionId' => '*', 'api' => 'AssociateAnycastEipAddress'],
],
],
'ram' => [
'productCode' => 'Eipanycast',
'productName' => 'Elastic IP Address',
'ramCodes' => ['eipanycast'],
'ramLevel' => 'RESOURCE',
'ramConditions' => [],
'ramActions' => [
[
'apiName' => 'UpdateAnycastEipAddressAssociations',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:UpdateAnycastEipAddressAssociations',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddressAttachment', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
[
'apiName' => 'ListTagResources',
'description' => '',
'operationType' => 'list',
'ramAction' => [
'action' => 'eipanycast:ListTagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
[
'apiName' => 'AssociateAnycastEipAddressPreCheck',
'description' => '',
'operationType' => 'none',
'ramAction' => [
'action' => 'eipanycast:AssociateAnycastEipAddressPreCheck',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'All Resource', 'arn' => '*'],
],
],
],
[
'apiName' => 'ModifyAnycastEipAddressSpec',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ModifyAnycastEipAddressSpec',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
[
'apiName' => 'AssociateAnycastEipAddress',
'description' => '',
'operationType' => 'create',
'ramAction' => [
'action' => 'eipanycast:AssociateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'Instance', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:networkinterface/{#InstanceId}'],
],
],
],
[
'apiName' => 'UnassociateAnycastEipAddress',
'description' => '',
'operationType' => 'delete',
'ramAction' => [
'action' => 'eipanycast:UnassociateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'product' => 'Eipanycast', 'resourceType' => 'Instance', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:networkinterface/{#InstanceId}'],
],
],
],
[
'apiName' => 'ListAnycastEipAddresses',
'description' => '',
'operationType' => 'list',
'ramAction' => [
'action' => 'eipanycast:ListAnycastEipAddresses',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/*'],
],
],
],
[
'apiName' => 'ReleaseAnycastEipAddress',
'description' => '',
'operationType' => 'delete',
'ramAction' => [
'action' => 'eipanycast:ReleaseAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
[
'apiName' => 'AllocateAnycastEipAddress',
'description' => '',
'operationType' => 'create',
'ramAction' => [
'action' => 'eipanycast:AllocateAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/*'],
],
],
],
[
'apiName' => 'DescribeAnycastEipAddress',
'description' => '',
'operationType' => 'get',
'ramAction' => [
'action' => 'eipanycast:DescribeAnycastEipAddress',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
[
'apiName' => 'ChangeResourceGroup',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ChangeResourceGroup',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
[
'apiName' => 'UntagResources',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:UntagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
],
],
],
[
'apiName' => 'ModifyAnycastEipAddressAttribute',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:ModifyAnycastEipAddressAttribute',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
[
'apiName' => 'TagResources',
'description' => '',
'operationType' => 'update',
'ramAction' => [
'action' => 'eipanycast:TagResources',
'authLevel' => 'resource',
'actionConditions' => [],
'resources' => [
['validationType' => 'always', 'product' => 'Eipanycast', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#anycastId}'],
],
],
],
],
'resourceTypes' => [
['validationType' => 'always', 'resourceType' => 'AnycastEipAddressAttachment', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
['validationType' => 'always', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/{#AnycastId}'],
['validationType' => 'conditional', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:slb:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'resourceType' => 'Instance', 'arn' => 'acs:ecs:{#regionId}:{#accountId}:instance/{#InstanceId}'],
['validationType' => 'conditional', 'resourceType' => 'LoadBalancer', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:loadbalancer/{#LoadBalancerId}'],
['validationType' => 'conditional', 'resourceType' => 'Instance', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:networkinterface/{#InstanceId}'],
['validationType' => 'always', 'resourceType' => 'AnycastEipAddress', 'arn' => 'acs:eipanycast:{#regionId}:{#accountId}:anycast/*'],
],
],
];
|