summaryrefslogtreecommitdiff
path: root/data/en_us/gws/2019-06-18/api-docs.php
blob: 7a601daef77635f34689c2a1c0deb500071bc15e (plain)
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
<?php return [
    'version' => '1.0',
    'info' => ['style' => 'RPC', 'product' => 'gws', 'version' => '2019-06-18'],
    'directories' => [
        [
            'children' => ['SetInstanceName', 'SetInstancePolicy', 'SetInstanceUser', 'DescribeInstancePolicy', 'GetConnectTicket'],
            'type' => 'directory',
            'title' => 'Instances',
        ],
        [
            'children' => ['SetImageName'],
            'type' => 'directory',
            'title' => 'Images',
        ],
        [
            'children' => ['SetClusterDnat', 'SetClusterName', 'SetClusterADDomain', 'SetClusterPolicy', 'DescribeClusterConnections', 'DescribeClusterPolicy'],
            'type' => 'directory',
            'title' => 'Clusters',
        ],
        [
            'children' => ['CreateCluster', 'CreateImage', 'CreateInstance', 'CreateServiceLinkedRole', 'DeleteCluster', 'DeleteImage', 'DeleteInstance', 'DescribeAvailableResource', 'DescribeClusterADDomain', 'DescribeClusters', 'DescribeImages', 'DescribeInstances', 'IsUserAdmin', 'RestartInstance', 'StartInstance', 'StopInstance'],
            'title' => 'Others',
            'type' => 'directory',
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'CreateCluster' => [
            'summary' => 'Creates a cluster.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create', 'riskType' => 'none', 'chargeType' => 'paid'],
            'parameters' => [
                [
                    'name' => 'VpcId',
                    'in' => 'query',
                    'schema' => ['description' => 'The VPC ID.', 'type' => 'string', 'required' => true, 'example' => 'vpc-xxx', 'title' => ''],
                ],
                [
                    'name' => 'ClusterType',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster type. Valid values:'."\n"
                        .'* gws.s1.standard.', 'type' => 'string', 'required' => true, 'example' => 'gws.s1.standard', 'title' => ''],
                ],
                [
                    'name' => 'VSwitchId',
                    'in' => 'query',
                    'schema' => ['description' => 'The vSwitch ID used to create cluster servers. If this parameter is not specified, the system automatically finds the latest active zone with inventory based on the current cluster specifications (for example, China North 2 Zone H). If the zone:'."\n"
                        .'* already has a vSwitch, the existing vSwitch is used.'."\n"
                        .'* does not have a vSwitch, the system attempts automatic creation.', 'type' => 'string', 'required' => false, 'example' => 'vsw-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'ClusterId' => ['description' => 'The cluster ID.', 'type' => 'string', 'example' => 'gws-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"ClusterId\\": \\"gws-xxx\\",\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Create a cluster',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'CreateImage' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'Name',
                    'in' => 'query',
                    'schema' => ['description' => 'The image name.', 'type' => 'string', 'required' => false, 'example' => 'image-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'ImageId' => ['description' => 'The image ID.', 'type' => 'string', 'example' => 'm-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"ImageId\\": \\"m-xxx\\",\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Create an image',
            'summary' => 'Creates an image.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'CreateInstance' => [
            'summary' => 'Creates an instance.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => ['operationType' => 'create', 'riskType' => 'none', 'chargeType' => 'paid'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'VSwitchId',
                    'in' => 'query',
                    'schema' => ['description' => 'The vSwitch ID.'."\n"
                        .'* If specified, the instance is created in this vSwitch. Specify this parameter when you create an instance to define the CIDR block and zone of the instance.'."\n"
                        .'* If not specified, the system automatically selects the latest active zone with available inventory based on the current instance type (for example, China (Beijing) Zone G).'."\n"
                        .'    * If a vSwitch already exists in the zone, the system uses the existing vSwitch.'."\n"
                        .'    * If no vSwitch exists in the zone, the system attempts automatic creation.', 'type' => 'string', 'required' => false, 'example' => 'vsw-xxx', 'title' => ''],
                ],
                [
                    'name' => 'Name',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance name.', 'type' => 'string', 'required' => false, 'example' => 'desktop-xxx', 'title' => ''],
                ],
                [
                    'name' => 'ImageId',
                    'in' => 'query',
                    'schema' => ['description' => 'The image ID.', 'type' => 'string', 'required' => true, 'example' => 'm-xxx', 'title' => ''],
                ],
                [
                    'name' => 'SystemDiskSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The system cloud disk size. Unit: GB.'."\n"
                        .'* Valid values: 20 to 500.'."\n"
                        .'* When you select an image, the system cloud disk size must be greater than or equal to the image size.', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'maximum' => '500', 'minimum' => '20', 'example' => '100', 'title' => ''],
                ],
                [
                    'name' => 'SystemDiskCategory',
                    'in' => 'query',
                    'schema' => ['description' => 'The category of the system cloud disk. Valid values:'."\n"
                        .'* cloud_efficiency: ultra cloud disk.'."\n"
                        .'* cloud_ssd: standard SSD.'."\n"
                        .'* cloud_essd: Enterprise SSD (ESSD). Only instances of newer instance families, such as ecs.g6, support ESSDs.', 'type' => 'string', 'required' => true, 'example' => 'cloud_ssd', 'title' => ''],
                ],
                [
                    'name' => 'AllocatePublicAddress',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to assign a public IP address. Valid values:'."\n"
                        .'* True'."\n"
                        .'* False.', 'type' => 'string', 'required' => false, 'default' => 'true', 'example' => 'true', 'title' => ''],
                ],
                [
                    'name' => 'InternetChargeType',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when AllocatePublicAddress is set to true.'."\n"
                        ."\n"
                        .'The billing method for network usage. Valid values:'."\n"
                        ."\n"
                        .'- PayByTraffic (default): pay-by-traffic.'."\n"
                        .'- PayByBandwidth: pay-by-bandwidth.', 'type' => 'string', 'required' => false, 'default' => 'PayByTraffic', 'example' => 'PayByBandwidth', 'title' => ''],
                ],
                [
                    'name' => 'InternetMaxBandwidthIn',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when AllocatePublicAddress is set to true.'."\n"
                        ."\n"
                        .'The maximum inbound public bandwidth. Unit: Mbit/s.'."\n"
                        .'* Valid values: 1 to 100.'."\n"
                        .'* Default value: 4.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'maximum' => '100', 'minimum' => '1', 'example' => '4', 'title' => ''],
                ],
                [
                    'name' => 'InternetMaxBandwidthOut',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when AllocatePublicAddress is set to true.'."\n"
                        ."\n"
                        .'The maximum outbound public bandwidth. Unit: Mbit/s.'."\n"
                        .'* Valid values: 1 to 100.'."\n"
                        .'* Default value: 4.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'maximum' => '100', 'minimum' => '0', 'default' => '4', 'example' => '4', 'title' => ''],
                ],
                [
                    'name' => 'InstanceType',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance type. For more information, see [Instance families](https://help.aliyun.com/document_detail/25378.html) or call [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) to query available instance types.', 'type' => 'string', 'required' => true, 'example' => 'ecs.g6.large', 'title' => ''],
                ],
                [
                    'name' => 'InstanceChargeType',
                    'in' => 'query',
                    'schema' => ['description' => 'The billing method of the instance. Valid values:'."\n"
                        .'* PostPaid (default): pay-as-you-go.'."\n"
                        .'* PrePaid: subscription.', 'type' => 'string', 'required' => false, 'default' => 'PostPaid', 'example' => 'PostPaid', 'title' => ''],
                ],
                [
                    'name' => 'AutoRenew',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to enable auto-renewal. Valid values:'."\n"
                        .'* False (default)'."\n"
                        .'* True.', 'type' => 'string', 'required' => false, 'default' => 'false', 'example' => 'True', 'title' => ''],
                ],
                [
                    'name' => 'Period',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when InstanceChargeType is set to PrePaid (subscription).'."\n"
                        ."\n"
                        .'The subscription duration.'."\n"
                        .'* If PeriodUnit is set to Week, valid values are 1 to 4.'."\n"
                        .'* If PeriodUnit is set to Month, valid values are 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, and 60.', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'PeriodUnit',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when InstanceChargeType is set to PrePaid (subscription).'."\n"
                        ."\n"
                        .'The unit of the subscription duration. Valid values:'."\n"
                        .'* Week'."\n"
                        .'* Month.', 'type' => 'string', 'required' => false, 'example' => 'Week', 'title' => ''],
                ],
                [
                    'name' => 'WorkMode',
                    'in' => 'query',
                    'schema' => ['description' => 'The work mode. Valid values:'."\n"
                        .'* Desktop: desktop mode.'."\n"
                        .'* Application: application mode.', 'type' => 'string', 'required' => true, 'example' => 'Desktop', 'title' => ''],
                ],
                [
                    'name' => 'AppList',
                    'in' => 'query',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => 'The application list.',
                        'type' => 'array',
                        'items' => [
                            'type' => 'object',
                            'properties' => [
                                'AppName' => ['description' => '> This parameter takes effect only when WorkMode is set to Application.'."\n"
                                    ."\n"
                                    .'The application name. Valid values of N in AppList.N: 1 to 10.', 'type' => 'string', 'required' => false, 'example' => 'notepad', 'title' => ''],
                                'AppPath' => ['description' => '> This parameter takes effect only when WorkMode is set to Application.'."\n"
                                    ."\n"
                                    .'The execution path of the application. Valid values of N in AppList.N: 1 to 10.', 'type' => 'string', 'required' => false, 'example' => 'C:\\Windows\\System32\\notepad.exe', 'title' => ''],
                                'AppArgs' => ['description' => '> This parameter takes effect only when WorkMode is set to Application.'."\n"
                                    ."\n"
                                    .'The runtime parameters of the application. Valid values of N in AppList.N: 1 to 10.', 'type' => 'string', 'required' => false, 'example' => 'c:/temp.txt', 'title' => ''],
                            ],
                            'required' => false,
                            'description' => '',
                            'title' => '',
                            'example' => '',
                        ],
                        'required' => false,
                        'maxItems' => 10,
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'InstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'i-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"InstanceId\\": \\"i-xxx\\",\\n  \\"RequestId\\": \\"XXX-XXX\\"\\n}","type":"json"}]',
            'title' => 'CreateInstance',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'CreateServiceLinkedRole' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'create'],
            'parameters' => [],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'AlreadyExists' => ['description' => '* true: The service-linked role **has already been** created for the current account.'."\n"
                                .'* false: The service-linked role **has not been** created for the current account.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"AlreadyExists\\": true,\\n  \\"RequestId\\": \\"XXX-XXX\\"\\n}","type":"json"}]',
            'title' => 'Create a service-linked role for WUYING workspace',
            'summary' => 'Creates a service-linked role for WUYING Workspace.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DeleteCluster' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'delete'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Delete a cluster',
            'summary' => 'Deletes a cluster.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DeleteImage' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'delete'],
            'parameters' => [
                [
                    'name' => 'ImageId',
                    'in' => 'query',
                    'schema' => ['description' => 'The ID of the image.', 'type' => 'string', 'required' => true, 'example' => 'm-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Delete an image',
            'summary' => 'Deletes an image.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DeleteInstance' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'delete'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXX-XXX\\"\\n}","type":"json"}]',
            'title' => 'Delete an instance',
            'summary' => 'Deletes an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeAvailableResource' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'Request id。', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'AvailableResources' => [
                                'description' => 'AvailableResources',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'ClusterType' => ['description' => 'The cluster type.', 'type' => 'string', 'example' => 'gws.s1.stardard', 'title' => ''],
                                        'Zone' => ['description' => 'The zone.', 'type' => 'string', 'example' => 'cn-hangzhou-i', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"AvailableResources\\": [\\n    {\\n      \\"ClusterType\\": \\"gws.s1.stardard\\",\\n      \\"Zone\\": \\"cn-hangzhou-i\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Query specifications and zones of Cloud desktop clusters',
            'summary' => 'Queries the specifications and zone list of Cloud Desktop clusters.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeClusterADDomain' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-rhzlyl5zx3ua****	', 'title' => ''],
                ],
                [
                    'name' => 'TaskId',
                    'in' => 'query',
                    'schema' => ['description' => 'The task ID obtained by calling SetClusterADDomain.', 'type' => 'string', 'required' => false, 'example' => 't-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A', 'title' => ''],
                            'IsSupported' => ['description' => 'Indicates whether the cluster supports AD domain association. Valid values:'."\n"
                                .'* true: Supported.'."\n"
                                .'* false: Not supported.'."\n"
                                ."\n"
                                .'> Only gws.s1.advanced clusters support AD domain association.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'TaskFinished' => ['description' => 'The running status of the current query command. Valid values:'."\n"
                                .'* false: Not completed.'."\n"
                                .'* true: Completed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'DomainDnsIp' => ['description' => 'The DNS IP address of the AD domain.', 'type' => 'string', 'example' => '192.168.XX.XX', 'title' => ''],
                            'TaskId' => ['description' => 'The task ID.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'DomainName' => ['description' => 'The domain name of the AD domain.', 'type' => 'string', 'example' => 'example.com', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A\\",\\n  \\"IsSupported\\": true,\\n  \\"TaskFinished\\": true,\\n  \\"DomainDnsIp\\": \\"192.168.XX.XX\\",\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"DomainName\\": \\"example.com\\"\\n}","type":"json"}]',
            'title' => 'Query user-associated AD information',
            'summary' => 'Queries the information about the Active Directory (AD) associated with a Cloud Desktop cluster.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeClusterConnections' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cloud desktop cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'StartTime',
                    'in' => 'query',
                    'schema' => ['description' => 'The start date of the query interval.', 'type' => 'string', 'required' => true, 'example' => '2020-09-07', 'title' => ''],
                ],
                [
                    'name' => 'EndTime',
                    'in' => 'query',
                    'schema' => ['description' => 'The end date of the query interval.', 'type' => 'string', 'required' => true, 'example' => '2020-09-01', 'title' => ''],
                ],
                [
                    'name' => 'TaskId',
                    'in' => 'query',
                    'schema' => ['description' => 'The task ID for asynchronous queries.', 'type' => 'string', 'required' => false, 'example' => 't-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'TaskFinished' => ['description' => '* true: The current task has been completed.'."\n"
                                .'* false: The current task is still running.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'TotalCount' => ['description' => 'The length of the Connections array.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'TaskId' => ['description' => '* If the TaskId input parameter is empty when calling, the caller needs to use the TaskId in the return value to continue calling this API to obtain the query result.'."\n"
                                .'* If the TaskId input parameter is not empty when calling, the return value will query the running status of this TaskId.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'Connections' => [
                                'description' => 'An array describing connection session information.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'LogoffStatus' => ['description' => '* 0: The session has exited normally.'."\n"
                                            .'* Empty value: The session has not exited yet.', 'type' => 'string', 'example' => '0', 'title' => ''],
                                        'InstanceName' => ['description' => 'The instance name.', 'type' => 'string', 'example' => 'test', 'title' => ''],
                                        'LogonTime' => ['description' => 'The logon time of this session.', 'type' => 'string', 'example' => '2020-09-01T01:02:03.456Z', 'title' => ''],
                                        'HostName' => ['description' => 'The host name.', 'type' => 'string', 'example' => 'hostname', 'title' => ''],
                                        'LogoffTime' => ['description' => 'The logoff time of this session.'."\n"
                                            .'When this value is empty, it indicates that the session has not exited yet.', 'type' => 'string', 'example' => '2020-09-03T01:02:03.456Z', 'title' => ''],
                                        'InstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'i-xxx', 'title' => ''],
                                        'ClientName' => ['description' => 'The host name of the client.', 'type' => 'string', 'example' => 'client-xxx', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"TaskFinished\\": true,\\n  \\"TotalCount\\": 1,\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"Connections\\": [\\n    {\\n      \\"LogoffStatus\\": \\"0\\",\\n      \\"InstanceName\\": \\"test\\",\\n      \\"LogonTime\\": \\"2020-09-01T01:02:03.456Z\\",\\n      \\"HostName\\": \\"hostname\\",\\n      \\"LogoffTime\\": \\"2020-09-03T01:02:03.456Z\\",\\n      \\"InstanceId\\": \\"i-xxx\\",\\n      \\"ClientName\\": \\"client-xxx\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Query session connection information for a cluster',
            'summary' => 'Query session connection information for a cluster.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeClusterPolicy' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'TaskId',
                    'in' => 'query',
                    'schema' => ['description' => '> This value is only valid when `AsyncMode` is `true`'."\n"
                        ."\n"
                        .'When not empty, used to obtain the execution status of a previously submitted query command.'."\n", 'type' => 'string', 'required' => false, 'example' => 't-xxx', 'title' => ''],
                ],
                [
                    'name' => 'AsyncMode',
                    'in' => 'query',
                    'schema' => ['description' => 'Asynchronous mode invocation:'."\n"
                        .'* false (default): The API returns only after the command execution is complete.'."\n"
                        .'* true: The API returns **immediately**.'."\n"
                        .'    * When `TaskId` is empty: The query command is executed asynchronously in the background. The caller needs to use the TaskId from the **return value** to continue calling this API to obtain the query command result.'."\n"
                        .'    * When `TaskId` is not empty: Obtain the result of the query command.'."\n", 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'true', 'title' => ''],
                ],
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'Cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'UdpPort' => ['description' => 'UDP port:'."\n"
                                .'* on: Enabled'."\n"
                                .'* off: Disabled', 'type' => 'string', 'example' => 'on', 'title' => ''],
                            'TaskFinished' => ['description' => '> This value is only valid when `AsyncMode` is `true`'."\n"
                                ."\n"
                                .'The execution status of the current query command:'."\n"
                                .'* false: Not yet completed.'."\n"
                                .'* true: Completed.'."\n", 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'Request Id', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'UsbRedirect' => ['description' => 'USB redirection:'."\n"
                                .'* off'."\n"
                                .'* on'."\n", 'type' => 'string', 'example' => 'off', 'title' => ''],
                            'Clipboard' => ['description' => 'Local clipboard access in the cloud desktop:'."\n"
                                .'* off: Disabled'."\n"
                                .'* read: Read-only'."\n"
                                .'* write: Write-only'."\n"
                                .'* readwrite: Read & Write'."\n"
                                ."\n", 'type' => 'string', 'example' => 'readwrite', 'title' => ''],
                            'Watermark' => ['description' => 'Watermark:'."\n"
                                .'* off'."\n"
                                .'* on', 'type' => 'string', 'example' => 'off', 'title' => ''],
                            'TaskId' => ['description' => '> This value is only valid when `AsyncMode` is `true`'."\n"
                                ."\n"
                                .'The task ID of the current query command.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'DomainList' => ['description' => 'Domain name whitelist:'."\n"
                                .'* When the whitelist is empty, access to all domain names is allowed.'."\n"
                                .'* When the whitelist is not empty, only the domain names in the list are allowed.'."\n"
                                .'* Wildcard `*` is supported.'."\n"
                                .'* Multiple domain name rules are separated by commas.'."\n", 'type' => 'string', 'example' => '*.abc.com,*.xyz.com', 'title' => ''],
                            'Audio' => ['description' => 'Audio:'."\n"
                                .'* on: Enabled'."\n"
                                .'* off: Disabled', 'type' => 'string', 'example' => 'on', 'title' => ''],
                            'LocalDrive' => ['description' => 'Mapped drive for local disk in the cloud desktop:'."\n"
                                .'* off: Disabled'."\n"
                                .'* read: Read-only'."\n"
                                .'* readwrite: Read & Write'."\n", 'type' => 'string', 'example' => 'readwrite', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"UdpPort\\": \\"on\\",\\n  \\"TaskFinished\\": true,\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"UsbRedirect\\": \\"off\\",\\n  \\"Clipboard\\": \\"readwrite\\",\\n  \\"Watermark\\": \\"off\\",\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"DomainList\\": \\"*.abc.com,*.xyz.com\\",\\n  \\"Audio\\": \\"on\\",\\n  \\"LocalDrive\\": \\"readwrite\\"\\n}","type":"json"}]',
            'title' => 'Get Cluster Policy',
            'summary' => 'Get cluster policy.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeClusters' => [
            'summary' => 'Calls DescribeClusters to query cluster information.',
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'systemTags' => ['operationType' => 'get', 'riskType' => 'none', 'chargeType' => 'free'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => false, 'example' => 'gws-rhzlyl5zx3ua****', 'title' => ''],
                ],
                [
                    'name' => 'PageNumber',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of rows per page.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '10', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'PageSize' => ['description' => 'The number of rows per page.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A', 'title' => ''],
                            'PageNumber' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'TotalCount' => ['description' => 'The total number of clusters.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'Clusters' => [
                                'description' => 'The list of cluster information.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'VpcId' => ['description' => 'VPC ID。', 'type' => 'string', 'example' => 'vpc-bp1vi54o1on2sijpm****', 'title' => ''],
                                        'Status' => ['description' => 'The cluster status. Valid values:'."\n"
                                            .'* creating'."\n"
                                            .'* starting'."\n"
                                            .'* running'."\n"
                                            .'* deleted'."\n"
                                            .'* indebt.', 'type' => 'string', 'example' => 'running', 'title' => ''],
                                        'NatId' => ['description' => 'The ID of the NAT gateway associated with the cluster.'."\n"
                                            .'> This value is empty if the cluster is not associated with a NAT gateway.', 'type' => 'string', 'example' => 'ngw-uf63l0kkf73ieyf9k****', 'title' => ''],
                                        'InstanceCount' => ['description' => 'The number of instances in the cluster.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                                        'CreateTime' => ['description' => 'The creation time.', 'type' => 'string', 'example' => '2020-09-17T02:02:25Z', 'title' => ''],
                                        'NatEip' => ['description' => 'The elastic IP address used by the NAT gateway associated with the cluster.'."\n"
                                            .'> This value is empty if the cluster is not associated with a NAT gateway.', 'type' => 'string', 'example' => '192.168.XX.XX', 'title' => ''],
                                        'SecurityGroup' => ['description' => 'The security group ID.', 'type' => 'string', 'example' => 'sg-bp18ny7dvho4g0s7****', 'title' => ''],
                                        'Name' => ['description' => 'The cluster name.', 'type' => 'string', 'example' => 'cluster-xxx', 'title' => ''],
                                        'DomainName' => ['description' => '* gws.s1.standard cluster: An empty value is returned.'."\n"
                                            .'* gws.s1.advanced cluster: After the user AD domain is associated, this value corresponds to the associated user AD domain, such as example.com. This value is empty after the association is removed.', 'type' => 'string', 'example' => 'example.com', 'title' => ''],
                                        'ClusterId' => ['description' => 'The cluster ID.', 'type' => 'string', 'example' => 'gws-rhzlyl5zx3ua****', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"PageSize\\": 10,\\n  \\"RequestId\\": \\"7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A\\",\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 1,\\n  \\"Clusters\\": [\\n    {\\n      \\"VpcId\\": \\"vpc-bp1vi54o1on2sijpm****\\",\\n      \\"Status\\": \\"running\\",\\n      \\"NatId\\": \\"ngw-uf63l0kkf73ieyf9k****\\",\\n      \\"InstanceCount\\": 1,\\n      \\"CreateTime\\": \\"2020-09-17T02:02:25Z\\",\\n      \\"NatEip\\": \\"192.168.XX.XX\\",\\n      \\"SecurityGroup\\": \\"sg-bp18ny7dvho4g0s7****\\",\\n      \\"Name\\": \\"cluster-xxx\\",\\n      \\"DomainName\\": \\"example.com\\",\\n      \\"ClusterId\\": \\"gws-rhzlyl5zx3ua****\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Query cluster information',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeImages' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'InstanceType',
                    'in' => 'query',
                    'schema' => ['description' => 'Instance type.', 'type' => 'string', 'required' => false, 'example' => 'ecs.g6.large', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'PageSize' => ['description' => 'The number of entries on the current page.', 'type' => 'integer', 'format' => 'int64', 'example' => '20', 'title' => ''],
                            'RequestId' => ['description' => 'Request ID.', 'type' => 'string', 'example' => 'XXXX-XXXX', 'title' => ''],
                            'PageNumber' => ['description' => 'Current page number.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'TotalCount' => ['description' => 'Total number of image resources.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'Images' => [
                                'description' => 'A collection of image information.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'Status' => ['description' => 'Image status:'."\n"
                                            .'* Missing'."\n"
                                            .'* Available'."\n"
                                            .'* Creating'."\n"
                                            .'* UnAvailable'."\n"
                                            .'* CreateFailed'."\n", 'type' => 'string', 'example' => 'Available', 'title' => ''],
                                        'ImageType' => ['description' => 'Image type:'."\n"
                                            .'* system'."\n"
                                            .'* custom', 'type' => 'string', 'example' => 'system', 'title' => ''],
                                        'Progress' => ['description' => 'The progress of the image creation, in percentage.', 'type' => 'string', 'example' => '100%', 'title' => ''],
                                        'Size' => ['description' => 'Image size, in GB.', 'type' => 'integer', 'format' => 'int64', 'example' => '40', 'title' => ''],
                                        'CreateTime' => ['description' => 'The creation time of the image.', 'type' => 'string', 'example' => 'Mon May 27 13:33:42 CST 2019', 'title' => ''],
                                        'Name' => ['description' => 'Image name.', 'type' => 'string', 'example' => 'windows 2016 标准版 citrix 1903', 'title' => ''],
                                        'ImageId' => ['description' => 'Image ID.', 'type' => 'string', 'example' => 'm-bp125mb261tmk6tqvoni', 'title' => ''],
                                        'ProductCode' => ['description' => 'Product code.'."\n"
                                            .'If this parameter is returned, it indicates that the image was created based on an image from the image marketplace.', 'type' => 'string', 'example' => 'cmjj00042097', 'title' => ''],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"PageSize\\": 20,\\n  \\"RequestId\\": \\"XXXX-XXXX\\",\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 1,\\n  \\"Images\\": [\\n    {\\n      \\"Status\\": \\"Available\\",\\n      \\"ImageType\\": \\"system\\",\\n      \\"Progress\\": \\"100%\\",\\n      \\"Size\\": 40,\\n      \\"CreateTime\\": \\"Mon May 27 13:33:42 CST 2019\\",\\n      \\"Name\\": \\"windows 2016 标准版 citrix 1903\\",\\n      \\"ImageId\\": \\"m-bp125mb261tmk6tqvoni\\",\\n      \\"ProductCode\\": \\"cmjj00042097\\"\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Get image information list',
            'summary' => 'Describes images.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeInstancePolicy' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'TaskId',
                    'in' => 'query',
                    'schema' => ['description' => '> This value is valid only when `AsyncMode` is set to `true`.'."\n"
                        ."\n"
                        .'If this parameter is not empty, it is used to retrieve the execution status of a previous query command.', 'type' => 'string', 'required' => false, 'example' => 't-xxx', 'title' => ''],
                ],
                [
                    'name' => 'AsyncMode',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to use asynchronous mode:'."\n"
                        .'* false (default): The API returns only after the command execution is complete.'."\n"
                        .'* true: The API returns **immediately**.'."\n"
                        .'    * If `TaskId` is empty: The query command is executed asynchronously in the background. Use the TaskId in the **response** to call this API again to retrieve the result of the query command.'."\n"
                        .'    * If `TaskId` is not empty: Retrieves the result of the query command.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'OptimizeFor3d' => ['description' => 'The GPU 3D acceleration status. Valid values:'."\n"
                                .'* off: Disabled.'."\n"
                                .'* on: Enabled.'."\n"
                                .'* N/A: Not applicable, for example, for non-GPU instances.', 'type' => 'string', 'example' => 'on', 'title' => ''],
                            'TaskFinished' => ['description' => 'The execution status of the current query command. Valid values:'."\n"
                                .'* false: Not completed.'."\n"
                                .'* true: Completed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'VisualLossless' => ['description' => 'The visual lossless mode status. Valid values:'."\n"
                                .'* off: Disabled.'."\n"
                                .'* on: Enabled.'."\n"
                                .'* N/A: Not applicable, for example, for non-GPU instances.', 'type' => 'string', 'example' => 'off', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'TaskId' => ['description' => 'The task ID of the current query command.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"OptimizeFor3d\\": \\"on\\",\\n  \\"TaskFinished\\": true,\\n  \\"VisualLossless\\": \\"off\\",\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"TaskId\\": \\"t-xxx\\"\\n}","type":"json"}]',
            'title' => 'Retrieve instance policy configuration status',
            'summary' => 'Retrieves the policy configuration status of an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'DescribeInstances' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'PageNumber',
                    'in' => 'query',
                    'schema' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'default' => '1', 'example' => '1', 'title' => ''],
                ],
                [
                    'name' => 'PageSize',
                    'in' => 'query',
                    'schema' => ['description' => 'The number of instances per page.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'default' => '20', 'example' => '10', 'title' => ''],
                ],
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'Lists all instances in the specified cluster ID.'."\n"
                        .'> If this parameter is not specified, instances in all clusters are listed.', 'type' => 'string', 'required' => false, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'Lists the information of the specified instance ID.'."\n"
                        .'> If this parameter is not specified, all instances are listed.', 'type' => 'string', 'required' => false, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'UserUid',
                    'in' => 'query',
                    'schema' => ['description' => 'Lists all instances assigned to the specified user ID.'."\n"
                        .'> If this parameter is not specified, instances of all users are listed.', 'type' => 'integer', 'format' => 'int64', 'required' => false, 'example' => '12345', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'Lists all instances assigned to the specified user.'."\n"
                        .'> If this parameter is not specified, instances of all users are listed.', 'type' => 'string', 'required' => false, 'example' => 'user01', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'PageSize' => ['description' => 'The number of rows per page.', 'type' => 'integer', 'format' => 'int64', 'example' => '10', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'PageNumber' => ['description' => 'The page number.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'TotalCount' => ['description' => 'The total number of instances.', 'type' => 'integer', 'format' => 'int64', 'example' => '1', 'title' => ''],
                            'Instances' => [
                                'description' => 'The list of instance information.',
                                'type' => 'array',
                                'items' => [
                                    'type' => 'object',
                                    'properties' => [
                                        'Status' => ['description' => 'The instance status. Valid values:'."\n"
                                            .'* Creating: being created'."\n"
                                            .'* Starting: being started'."\n"
                                            .'* Stopping: being stopped'."\n"
                                            .'* Stopped: stopped'."\n"
                                            .'* Initializing: being initialized'."\n"
                                            .'* Unregistered: unregistered'."\n"
                                            .'* Registered: registered'."\n"
                                            .'* InUse: in use'."\n"
                                            .'* Missing: missing'."\n"
                                            .'* Cloning: image being created.', 'type' => 'string', 'example' => 'Stopped', 'title' => ''],
                                        'ExpireTime' => ['description' => 'The expiration time.', 'type' => 'string', 'example' => '2099-12-31T15:59Z', 'title' => ''],
                                        'WorkMode' => ['description' => 'The work mode. Valid values:'."\n"
                                            .'* Desktop: desktop mode'."\n"
                                            .'* Application: application mode.', 'type' => 'string', 'example' => 'Application', 'title' => ''],
                                        'CreateTime' => ['description' => 'The creation time.', 'type' => 'string', 'example' => '2019-10-12T07:35Z', 'title' => ''],
                                        'StoppedMode' => ['description' => 'The billing status when the instance is stopped. Valid values:'."\n"
                                            .'* KeepCharging: Billing continues. For example, the user shuts down the instance from within Windows.'."\n"
                                            .'* StopCharging: Billing stops.'."\n"
                                            .'* Not-applicable: Not applicable. For example, subscription instances.', 'type' => 'string', 'example' => '停止', 'title' => ''],
                                        'UserUid' => ['description' => 'The assigned user ID.'."\n"
                                            ."\n"
                                            .'> This value is empty when the instance is not assigned to a specified user.', 'type' => 'integer', 'format' => 'int64', 'example' => '1234', 'title' => ''],
                                        'HostName' => ['description' => 'The hostname, which is automatically generated when the instance is created. Do not change it. Otherwise, the instance status becomes "Unregistered".', 'type' => 'string', 'example' => 'c0-i01-xx-t6', 'title' => ''],
                                        'InstanceId' => ['description' => 'The instance ID.', 'type' => 'string', 'example' => 'i-xxx', 'title' => ''],
                                        'InstanceType' => ['description' => 'The instance type.', 'type' => 'string', 'example' => 'ecs.g6.large', 'title' => ''],
                                        'DomainName' => ['description' => 'The user Active Directory (AD) associated with the cluster to which the instance belongs. This value is empty when the cluster is not associated with an AD or the cluster does not support AD association.', 'type' => 'string', 'example' => 'abc.com', 'title' => ''],
                                        'InstanceChargeType' => ['description' => 'The billing method. Valid values:'."\n"
                                            .'* PrePaid: subscription'."\n"
                                            .'* PostPaid: pay-as-you-go.', 'type' => 'string', 'example' => 'PostPaid', 'title' => ''],
                                        'MaxBandwidthIn' => ['description' => 'The maximum inbound Internet bandwidth, in Mbit/s.', 'type' => 'integer', 'format' => 'int64', 'example' => '100', 'title' => ''],
                                        'IsBoundUser' => ['description' => 'Indicates whether the current caller is assigned to the current instance. Valid values:'."\n"
                                            .'* true: Yes.'."\n"
                                            .'* false: No.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                                        'MaxBandwidthOut' => ['description' => 'The maximum outbound Internet bandwidth, in Mbit/s.', 'type' => 'integer', 'format' => 'int64', 'example' => '100', 'title' => ''],
                                        'Name' => ['description' => 'The instance name, which can be set by the user.', 'type' => 'string', 'example' => 'c0-i01-xx-t6-2c8g', 'title' => ''],
                                        'UserName' => ['description' => 'The assigned username.'."\n"
                                            ."\n"
                                            .'> This value is empty when the instance is not assigned to a specified user.', 'type' => 'string', 'example' => 'user-xxx', 'title' => ''],
                                        'ImageId' => ['description' => 'The image ID used when the instance was created.', 'type' => 'string', 'example' => 'm-xxx', 'title' => ''],
                                        'ClusterId' => ['description' => 'The cluster ID.', 'type' => 'string', 'example' => 'gws-xxx', 'title' => ''],
                                        'AppList' => [
                                            'description' => 'The application list.'."\n"
                                                ."\n"
                                                .'> This list is empty when the work mode is `Desktop`.',
                                            'type' => 'array',
                                            'items' => [
                                                'type' => 'object',
                                                'properties' => [
                                                    'AppName' => ['description' => 'The application name.', 'type' => 'string', 'example' => 'notepad', 'title' => ''],
                                                    'AppArgs' => ['description' => 'The runtime parameters of the application.', 'type' => 'string', 'example' => 'c:\\temp.txt', 'title' => ''],
                                                    'AppPath' => ['description' => 'The runtime path of the application.', 'type' => 'string', 'example' => 'c:\\windows\\system32\\nodepad.exe', 'title' => ''],
                                                ],
                                                'description' => '',
                                                'title' => '',
                                                'example' => '',
                                            ],
                                            'title' => '',
                                            'example' => '',
                                        ],
                                    ],
                                    'description' => '',
                                    'title' => '',
                                    'example' => '',
                                ],
                                'title' => '',
                                'example' => '',
                            ],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"PageSize\\": 10,\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"PageNumber\\": 1,\\n  \\"TotalCount\\": 1,\\n  \\"Instances\\": [\\n    {\\n      \\"Status\\": \\"Stopped\\",\\n      \\"ExpireTime\\": \\"2099-12-31T15:59Z\\",\\n      \\"WorkMode\\": \\"Application\\",\\n      \\"CreateTime\\": \\"2019-10-12T07:35Z\\",\\n      \\"StoppedMode\\": \\"停止\\",\\n      \\"UserUid\\": 1234,\\n      \\"HostName\\": \\"c0-i01-xx-t6\\",\\n      \\"InstanceId\\": \\"i-xxx\\",\\n      \\"InstanceType\\": \\"ecs.g6.large\\",\\n      \\"DomainName\\": \\"abc.com\\",\\n      \\"InstanceChargeType\\": \\"PostPaid\\",\\n      \\"MaxBandwidthIn\\": 100,\\n      \\"IsBoundUser\\": true,\\n      \\"MaxBandwidthOut\\": 100,\\n      \\"Name\\": \\"c0-i01-xx-t6-2c8g\\",\\n      \\"UserName\\": \\"user-xxx\\",\\n      \\"ImageId\\": \\"m-xxx\\",\\n      \\"ClusterId\\": \\"gws-xxx\\",\\n      \\"AppList\\": [\\n        {\\n          \\"AppName\\": \\"notepad\\",\\n          \\"AppArgs\\": \\"c:\\\\\\\\temp.txt\\",\\n          \\"AppPath\\": \\"c:\\\\\\\\windows\\\\\\\\system32\\\\\\\\nodepad.exe\\"\\n        }\\n      ]\\n    }\\n  ]\\n}","type":"json"}]',
            'title' => 'Retrieve instance information',
            'summary' => 'Describes instance information.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'GetConnectTicket' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'AppName',
                    'in' => 'query',
                    'schema' => ['description' => '> Do not specify this parameter when `WorkMode` is set to `Desktop` (desktop mode).'."\n"
                        .'> This parameter is required when `WorkMode` is set to `Application` (application mode).'."\n"
                        ."\n"
                        .'The application name.', 'type' => 'string', 'required' => false, 'example' => 'app-xxx', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter is required when the DomainName field returned by DescribeInstances is not empty and the caller is an assigned user of the instance.'."\n"
                        ."\n"
                        .'The domain username.', 'type' => 'string', 'required' => false, 'example' => 'user01', 'title' => ''],
                ],
                [
                    'name' => 'Password',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter is required when the DomainName field returned by DescribeInstances is not empty and the caller is an assigned user of the instance.'."\n"
                        ."\n"
                        .'The password of the domain username.', 'type' => 'string', 'required' => false, 'example' => '***', 'title' => ''],
                ],
                [
                    'name' => 'TaskId',
                    'in' => 'query',
                    'schema' => ['description' => '> This parameter takes effect only when `AsyncMode` is set to `true`.'."\n"
                        ."\n"
                        .'If this parameter is not empty, it is used to retrieve the execution status of a previous call.', 'type' => 'string', 'required' => false, 'example' => 't-xxx', 'title' => ''],
                ],
                [
                    'name' => 'AsyncMode',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to use asynchronous mode.'."\n"
                        .'* false (default): The API returns a response only after the command is executed.'."\n"
                        .'* true: The API returns a response **immediately**.'."\n"
                        .'    * If `TaskId` is empty: The query command is executed asynchronously in the background. Use the TaskId in the **response** to call this API again to retrieve the result of the query command.'."\n"
                        .'    * If `TaskId` is not empty: Retrieves the result of the query command.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'true', 'title' => ''],
                ],
                [
                    'name' => 'UsePrivateIp',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to use an internal IP address to connect to the Cloud Desktop:'."\n"
                        .'* false (default): When retrieving the connection token, the system selects the connection method in the following order from highest to lowest priority:'."\n"
                        .'    * The elastic IP address (EIP) of the instance'."\n"
                        .'    * The public IP address of the instance'."\n"
                        .'    * The EIP used when the cluster is associated with a NAT gateway'."\n"
                        .'    * The internal IP address of the instance'."\n"
                        .'* true: When retrieving the connection token, the system uses the internal IP address of the instance to connect to the Cloud Desktop.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'true', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'TaskFinished' => ['description' => 'The execution status of the current call.'."\n"
                                .'* false: Not completed.'."\n"
                                .'* true: Completed.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                            'Ticket' => ['description' => 'The ticket used to connect to the user instance. Before using the ticket, Base64-decode its content, save it as an xxx.ica file, and then open the file. The following Python code provides an example:'."\n"
                                ."\n"
                                .'```'."\n"
                                .'import base64'."\n"
                                .'response = {'."\n"
                                .'    "Ticket": "XXXX",'."\n"
                                .'    "RequestId": "XXX-XXX",'."\n"
                                .'}'."\n"
                                .'f = open (\'xxx.ica\', \'w\')'."\n"
                                .'out = base64.b64decode(response[\'Ticket\'])'."\n"
                                .'f.write(out)'."\n"
                                .'f.close()'."\n"
                                .'```.', 'type' => 'string', 'example' => 'XXXXXXXXX', 'title' => ''],
                            'TaskId' => ['description' => 'The task ID of the current call. You can use this value to call this API again to retrieve the execution result.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"TaskFinished\\": true,\\n  \\"RequestId\\": \\"XXX-XXX\\",\\n  \\"Ticket\\": \\"XXXXXXXXX\\",\\n  \\"TaskId\\": \\"t-xxx\\"\\n}","type":"json"}]',
            'title' => 'Retrieve the token required to connect to an instance',
            'summary' => 'Retrieves the token required to connect to an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'IsUserAdmin' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'systemTags' => ['operationType' => 'get'],
            'parameters' => [],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'IsAllow' => ['description' => 'Indicates whether the user can use the cloud graphics workstation service. Valid values:'."\n"
                                .'* true'."\n"
                                .'* false.', 'type' => 'boolean', 'example' => 'false', 'title' => ''],
                            'IsAdmin' => ['description' => 'Indicates whether the user is an admin user. Valid values:'."\n"
                                .'* true'."\n"
                                .'* false.', 'type' => 'boolean', 'example' => 'true', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"IsAllow\\": false,\\n  \\"IsAdmin\\": true,\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Query permissions of the current user',
            'summary' => 'Queries the permissions of the current user.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'RestartInstance' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'none'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Restart an instance',
            'summary' => 'Restarts an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetClusterADDomain' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-rhzlyl5zx3ua****', 'title' => ''],
                ],
                [
                    'name' => 'DomainDnsIp',
                    'in' => 'query',
                    'schema' => ['description' => 'The DNS IP address of the AD domain.', 'type' => 'string', 'required' => true, 'example' => '192.168.XX.XX', 'title' => ''],
                ],
                [
                    'name' => 'DomainName',
                    'in' => 'query',
                    'schema' => ['description' => 'The domain name of the AD domain.', 'type' => 'string', 'required' => true, 'example' => 'example.com', 'title' => ''],
                ],
                [
                    'name' => 'DomainPassword',
                    'in' => 'query',
                    'schema' => ['description' => 'The administrator password of the AD domain.', 'type' => 'string', 'required' => true, 'example' => 'password***', 'title' => ''],
                ],
                [
                    'name' => 'DomainAdmin',
                    'in' => 'query',
                    'schema' => ['description' => 'The administrator password of the AD domain.', 'type' => 'string', 'required' => false, 'default' => 'administrator', 'example' => 'administrator', 'title' => ''],
                ],
                [
                    'name' => 'DomainDelete',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to associate the cluster with the AD domain. Valid values:'."\n"
                        ."\n"
                        .'* false: Associates the cluster with the AD domain.'."\n"
                        .'* true: Dissociates the cluster from the AD domain.'."\n"
                        ."\n"
                        .'Default value: false.'."\n"
                        ."\n"
                        .'> Before you associate the cluster with the AD domain, make sure that the network between the AD domain and the Cloud Desktop VPC is connected by using Smart Access Gateway, Express Connect, or other methods.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'TaskId' => ['description' => 'The task ID. You can use this ID to query the execution status of the SetClusterADDomain operation.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => '7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"RequestId\\": \\"7FCC0CD3-53C2-508E-9E1C-39BF14F0E75A\\"\\n}","type":"json"}]',
            'title' => 'Associate a Cloud desktop cluster with an AD domain',
            'summary' => 'Associates or dissociates a Cloud Desktop cluster with an Active Directory (AD) domain by calling SetClusterADDomain.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetClusterDnat' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'NatId',
                    'in' => 'query',
                    'schema' => ['description' => 'The NAT gateway ID.'."\n"
                        .'* If this parameter is set to a non-empty value, the specified NAT gateway is associated with the cluster. The NAT gateway and the Cloud Desktop cluster must be in the same VPC.'."\n"
                        .'* If this parameter is left empty and the cluster is already associated with a NAT gateway, the cluster is dissociated from the NAT gateway.', 'type' => 'string', 'required' => true, 'example' => 'ngw-xxx', 'title' => ''],
                ],
                [
                    'name' => 'NatEip',
                    'in' => 'query',
                    'schema' => ['description' => '* If NatId is set to a non-empty value:'."\n"
                        .'    * If this parameter is set to a non-empty value, the specified EIP is used for the association with the cluster.'."\n"
                        .'    * If this parameter is left empty, an EIP whose status is Idle or UsedByForwardTable is automatically selected from the NAT gateway.'."\n"
                        .'* If NatId is left empty, this parameter does not take effect.', 'type' => 'string', 'required' => false, 'example' => '1.2.3.4', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXX-XXX\\"\\n}","type":"json"}]',
            'title' => 'Associate a cluster with a NAT gateway',
            'summary' => 'Associates a cluster with a NAT gateway. After the association, desktops are connected through DNAT and EIP.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetClusterName' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'Name',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster name to set.', 'type' => 'string', 'required' => true, 'example' => 'cluster-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Set cluster name',
            'summary' => 'Sets the name of a cluster.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetClusterPolicy' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'ClusterId',
                    'in' => 'query',
                    'schema' => ['description' => 'The cluster ID.', 'type' => 'string', 'required' => true, 'example' => 'gws-xxx', 'title' => ''],
                ],
                [
                    'name' => 'UsbRedirect',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The USB redirection policy. Valid values:'."\n"
                            .'* off: disabled.'."\n"
                            .'* on: enabled.',
                        'type' => 'string',
                        'required' => true,
                        'enum' => ['off', 'on'],
                        'example' => 'on',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'Watermark',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The watermark policy. Valid values:'."\n"
                            .'* off: disabled.'."\n"
                            .'* on: enabled. The watermark consists of two lines of semi-transparent text in a star pattern that covers the screen. The text displays cluster information and host information in the following format:'."\n"
                            .'    * gws-xxx@gws'."\n"
                            .'    * c0-i00-xx-t6.',
                        'type' => 'string',
                        'required' => true,
                        'enum' => ['off', 'on'],
                        'example' => 'off',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'LocalDrive',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The local drive mapping policy. Valid values:'."\n"
                            .'* off: disabled.'."\n"
                            .'* read: read-only.'."\n"
                            .'* readwrite: read and write.',
                        'type' => 'string',
                        'required' => true,
                        'enum' => ['off', 'read', 'readwrite'],
                        'example' => 'readwrite',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'Clipboard',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The clipboard policy. Valid values:'."\n"
                            .'* off: disabled.'."\n"
                            .'* read: read-only.'."\n"
                            .'* write: write-only.'."\n"
                            .'* readwrite: read and write.',
                        'type' => 'string',
                        'required' => true,
                        'enum' => ['off', 'read', 'readwrite', 'write'],
                        'example' => 'read',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'UdpPort',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The UDP port policy. Valid values:'."\n"
                            .'* on (default): enabled. We recommend that you set this parameter to on for better bandwidth usage and network stability.'."\n"
                            .'* off: disabled. To troubleshoot UDP-related network issues, set this parameter to off. After this parameter is set to off, the inbound security group rules for ports 1494 and 2598 are removed.',
                        'type' => 'string',
                        'required' => false,
                        'default' => 'on',
                        'enum' => ['off', 'on'],
                        'example' => 'off',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'Audio',
                    'in' => 'query',
                    'schema' => [
                        'description' => 'The audio policy. Valid values:'."\n"
                            .'* on (default): enabled. The client can hear audio from the Cloud Desktop.'."\n"
                            .'* off: disabled. The client cannot hear audio from the Cloud Desktop.',
                        'type' => 'string',
                        'required' => false,
                        'default' => 'on',
                        'enum' => ['off', 'on'],
                        'example' => 'on',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'DomainList',
                    'in' => 'query',
                    'schema' => ['description' => 'The domain name whitelist.'."\n"
                        .'* If the whitelist is empty, access to all domain names is allowed.'."\n"
                        .'* If the whitelist is not empty, only domain names in the list are accessible.'."\n"
                        .'* The `*` wildcard is supported.'."\n"
                        .'* Separate multiple domain name rules with commas (,).'."\n"
                        .'* The settings take effect immediately on all instances in the current cluster.', 'type' => 'string', 'required' => false, 'example' => '*.abc.com,*.xyz.com', 'title' => ''],
                ],
                [
                    'name' => 'AsyncMode',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to use asynchronous mode. Valid values:'."\n"
                        .'* false (default): The API returns a response only after the command is executed.'."\n"
                        .'* true: The command is executed in the background, and the API returns a response immediately. Record the TaskId from the response, and then call DescribeClusterPolicy to query the execution status of the command.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'false', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'TaskId' => ['description' => '> This value is valid only when `AsyncMode` is set to `true`.'."\n"
                                ."\n"
                                .'You can use this value to call DescribeClusterPolicy to query the execution status of the command.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Set cluster policy',
            'summary' => 'Sets the policy for a cluster.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetImageName' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'ImageId',
                    'in' => 'query',
                    'schema' => ['description' => 'The image ID.', 'type' => 'string', 'required' => true, 'example' => 'm-xxx', 'title' => ''],
                ],
                [
                    'name' => 'Name',
                    'in' => 'query',
                    'schema' => ['description' => 'The image name.', 'type' => 'string', 'required' => true, 'example' => 'image-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Set image name',
            'summary' => 'Sets the name of an image.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetInstanceName' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'Name',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance name.', 'type' => 'string', 'required' => true, 'example' => 'desktop-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Set instance name',
            'summary' => 'Sets the name of an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetInstancePolicy' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'VisualLossless',
                    'in' => 'query',
                    'schema' => [
                        'description' => '> Valid only for GPU instances. Enable this option to obtain better image quality.'."\n"
                            ."\n"
                            .'The visual lossless mode. Valid values:'."\n"
                            .'* off (default): Disabled.'."\n"
                            .'* on: Enabled.',
                        'type' => 'string',
                        'required' => false,
                        'default' => 'off',
                        'enum' => ['on', 'off'],
                        'example' => 'on',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'OptimizeFor3d',
                    'in' => 'query',
                    'schema' => [
                        'description' => '> Valid only for GPU instances. Enable this option to obtain lower desktop latency.'."\n"
                            ."\n"
                            .'GPU acceleration. Valid values:'."\n"
                            .'* off (default): Disabled.'."\n"
                            .'* on: Enabled.',
                        'type' => 'string',
                        'required' => false,
                        'default' => 'off',
                        'enum' => ['on', 'off'],
                        'example' => 'on',
                        'title' => '',
                    ],
                ],
                [
                    'name' => 'AsyncMode',
                    'in' => 'query',
                    'schema' => ['description' => 'Specifies whether to use asynchronous mode. Valid values:'."\n"
                        .'* false (default): The API returns only after the setting is complete.'."\n"
                        .'* true: The API returns **immediately**.'."\n"
                        .'    * If `TaskId` is empty, the setting action is executed asynchronously in the background. Use the TaskId in the **response** to call DescribeInstancePolicy to obtain the result of the setting action.'."\n"
                        .'    * If `TaskId` is not empty, the result of the setting action is returned.', 'type' => 'boolean', 'required' => false, 'default' => 'false', 'example' => 'true', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'TaskId' => ['description' => '> This value is valid only when `AsyncMode` is set to `true`.'."\n"
                                ."\n"
                                .'Use this value to call DescribeInstancePolicy to query the execution status of the setting action.', 'type' => 'string', 'example' => 't-xxx', 'title' => ''],
                            'RequestId' => ['description' => 'Request id。', 'type' => 'string', 'example' => 'XXX-XXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"TaskId\\": \\"t-xxx\\",\\n  \\"RequestId\\": \\"XXX-XXX\\"\\n}","type":"json"}]',
            'title' => 'Set instance policy status',
            'summary' => 'Sets the policy status of an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'SetInstanceUser' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
                [
                    'name' => 'UserUid',
                    'in' => 'query',
                    'schema' => ['description' => 'The user ID.', 'type' => 'integer', 'format' => 'int64', 'required' => true, 'example' => '1234', 'title' => ''],
                ],
                [
                    'name' => 'UserName',
                    'in' => 'query',
                    'schema' => ['description' => 'The username.', 'type' => 'string', 'required' => true, 'example' => 'user_xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Assign a user to an instance',
            'summary' => 'Assigns a user to an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'StartInstance' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Start an instance',
            'summary' => 'Starts an instance.',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
        'StopInstance' => [
            'methods' => ['post', 'get'],
            'schemes' => ['http', 'https'],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => ['operationType' => 'update'],
            'parameters' => [
                [
                    'name' => 'InstanceId',
                    'in' => 'query',
                    'schema' => ['description' => 'The instance ID.', 'type' => 'string', 'required' => true, 'example' => 'i-xxx', 'title' => ''],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => ['description' => 'The request ID.', 'type' => 'string', 'example' => 'XXXX', 'title' => ''],
                        ],
                        'description' => '',
                        'title' => '',
                        'example' => '',
                    ],
                ],
            ],
            'responseDemo' => '[{"errorExample":"","example":"{\\n  \\"RequestId\\": \\"XXXX\\"\\n}","type":"json"}]',
            'title' => 'Stop an instance',
            'summary' => 'Stops an instance.',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
            'extraInfo' => ' ',
            'changeSet' => [],
            'flowControl' => [
                'flowControlList' => [],
            ],
        ],
    ],
    'endpoints' => [
        ['regionId' => 'ap-northeast-1', 'regionName' => 'Japan (Tokyo)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.ap-northeast-1.aliyuncs.com', 'endpoint' => 'gws.ap-northeast-1.aliyuncs.com', 'vpc' => 'gws-vpc.ap-northeast-1.aliyuncs.com'],
        ['regionId' => 'ap-southeast-1', 'regionName' => 'Singapore', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.ap-southeast-1.aliyuncs.com', 'endpoint' => 'gws.ap-southeast-1.aliyuncs.com', 'vpc' => 'gws-vpc.ap-southeast-1.aliyuncs.com'],
        ['regionId' => 'ap-southeast-2', 'regionName' => 'Australia (Sydney) Closed', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.ap-southeast-2.aliyuncs.com', 'endpoint' => 'gws.ap-southeast-2.aliyuncs.com', 'vpc' => 'gws-vpc.ap-southeast-2.aliyuncs.com'],
        ['regionId' => 'ap-southeast-3', 'regionName' => 'Malaysia (Kuala Lumpur)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.ap-northeast-3.aliyuncs.com', 'endpoint' => 'gws.ap-northeast-3.aliyuncs.com', 'vpc' => 'gws-vpc.ap-southeast-3.aliyuncs.com'],
        ['regionId' => 'ap-southeast-5', 'regionName' => 'Indonesia (Jakarta)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.ap-southeast-5.aliyuncs.com', 'endpoint' => 'gws.ap-southeast-5.aliyuncs.com', 'vpc' => 'gws-vpc.ap-southeast-5.aliyuncs.com'],
        ['regionId' => 'cn-beijing', 'regionName' => 'China (Beijing)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-beijing.aliyuncs.com', 'endpoint' => 'gws.cn-beijing.aliyuncs.com', 'vpc' => 'gws-vpc.cn-beijing.aliyuncs.com'],
        ['regionId' => 'cn-chengdu', 'regionName' => 'China (Chengdu)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-chengdu.aliyuncs.com', 'endpoint' => 'gws.cn-chengdu.aliyuncs.com', 'vpc' => 'gws-vpc.cn-chengdu.aliyuncs.com'],
        ['regionId' => 'cn-hangzhou', 'regionName' => 'China (Hangzhou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-hangzhou.aliyuncs.com', 'endpoint' => 'gws.cn-hangzhou.aliyuncs.com', 'vpc' => 'gws-vpc.cn-hangzhou.aliyuncs.com'],
        ['regionId' => 'cn-hongkong', 'regionName' => 'China (Hong Kong)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-hongkong.aliyuncs.com', 'endpoint' => 'gws.cn-hongkong.aliyuncs.com', 'vpc' => 'gws-vpc.cn-hongkong.aliyuncs.com'],
        ['regionId' => 'cn-huhehaote', 'regionName' => 'China (Hohhot)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-huhehaote.aliyuncs.com', 'endpoint' => 'gws.cn-huhehaote.aliyuncs.com', 'vpc' => 'gws-vpc.cn-huhehaote.aliyuncs.com'],
        ['regionId' => 'cn-qingdao', 'regionName' => 'China (Qingdao)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-qingdao.aliyuncs.com', 'endpoint' => 'gws.cn-qingdao.aliyuncs.com', 'vpc' => 'gws-vpc.cn-qingdao.aliyuncs.com'],
        ['regionId' => 'cn-shanghai', 'regionName' => 'China (Shanghai)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-shanghai.aliyuncs.com', 'endpoint' => 'gws.cn-shanghai.aliyuncs.com', 'vpc' => 'gws-vpc.cn-shanghai.aliyuncs.com'],
        ['regionId' => 'cn-shenzhen', 'regionName' => 'China (Shenzhen)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-shenzhen.aliyuncs.com', 'endpoint' => 'gws.cn-shenzhen.aliyuncs.com', 'vpc' => 'gws-vpc.cn-shenzhen.aliyuncs.com'],
        ['regionId' => 'cn-zhangjiakou', 'regionName' => 'China (Zhangjiakou)', 'areaId' => 'asiaPacific', 'areaName' => 'Asia Pacific', 'public' => 'gws.cn-zhangjiakou.aliyuncs.com', 'endpoint' => 'gws.cn-zhangjiakou.aliyuncs.com', 'vpc' => 'gws-vpc.cn-zhangjiakou.aliyuncs.com'],
        ['regionId' => 'us-west-1', 'regionName' => 'US (Silicon Valley)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'gws.us-west-1.aliyuncs.com', 'endpoint' => 'gws.us-west-1.aliyuncs.com', 'vpc' => 'gws-vpc.us-west-1.aliyuncs.com'],
        ['regionId' => 'us-east-1', 'regionName' => 'US (Virginia)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'gws.us-east-1.aliyuncs.com', 'endpoint' => 'gws.us-east-1.aliyuncs.com', 'vpc' => 'gws-vpc.us-east-1.aliyuncs.com'],
        ['regionId' => 'eu-west-1', 'regionName' => 'UK (London)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'gws.eu-west-1.aliyuncs.com', 'endpoint' => 'gws.eu-west-1.aliyuncs.com', 'vpc' => 'gws-vpc.eu-west-1.aliyuncs.com'],
        ['regionId' => 'eu-central-1', 'regionName' => 'Germany (Frankfurt)', 'areaId' => 'europeAmerica', 'areaName' => 'Europe & Americas', 'public' => 'gws.eu-central-1.aliyuncs.com', 'endpoint' => 'gws.eu-central-1.aliyuncs.com', 'vpc' => 'gws-vpc.eu-central-1.aliyuncs.com'],
        ['regionId' => 'ap-south-1', 'regionName' => 'India (Mumbai) Closed', 'areaId' => 'middleEast', 'areaName' => 'Middle East', 'public' => 'gws.ap-south-1.aliyuncs.com', 'endpoint' => 'gws.ap-south-1.aliyuncs.com', 'vpc' => 'gws-vpc.ap-south-1.aliyuncs.com'],
        ['regionId' => 'cn-hangzhou-finance', 'regionName' => 'China East 1 Finance', 'areaId' => 'industryCloud', 'areaName' => 'Industry Cloud', 'public' => 'ecd.cn-hangzhou-finance.aliyuncs.com', 'endpoint' => 'ecd.cn-hangzhou-finance.aliyuncs.com', 'vpc' => ''],
    ],
    'errorCodes' => [
        ['code' => 'EntityNotExist.Role', 'message' => 'The service linked role AliyunServiceRoleForGws is missing. Please contact the primary account owner or RAM user that has been authorized AliyunGwsFullAccess. They can automatically create the role in the console.', 'http_code' => 400, 'description' => ''],
    ],
    'changeSet' => [],
    'flowControl' => [
        'flowControlList' => [],
    ],
];