redisctl 0.10.1

Unified CLI for Redis Cloud and Enterprise
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
//! Cloud CLI command definitions

use clap::Subcommand;

#[derive(Subcommand, Debug)]
pub enum CloudConnectivityCommands {
    /// VPC Peering operations
    #[command(subcommand, name = "vpc-peering")]
    VpcPeering(VpcPeeringCommands),
    /// Private Service Connect operations
    #[command(subcommand, name = "psc")]
    Psc(PscCommands),
    /// Transit Gateway operations
    #[command(subcommand, name = "tgw")]
    Tgw(TgwCommands),
    /// AWS PrivateLink operations
    #[command(subcommand, name = "privatelink")]
    PrivateLink(PrivateLinkCommands),
}

/// VPC Peering Commands
#[derive(Subcommand, Debug)]
pub enum VpcPeeringCommands {
    /// Get VPC peering details
    Get {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
    },
    /// Create VPC peering
    #[command(after_help = "EXAMPLES:
    # AWS VPC peering
    redisctl cloud connectivity vpc-peering create --subscription 123 \\
      --region us-east-1 --aws-account-id 123456789012 --vpc-id vpc-abc123

    # AWS VPC peering with CIDR blocks
    redisctl cloud connectivity vpc-peering create --subscription 123 \\
      --region us-east-1 --aws-account-id 123456789012 --vpc-id vpc-abc123 \\
      --vpc-cidr 10.0.0.0/16 --vpc-cidr 10.1.0.0/16

    # GCP VPC peering
    redisctl cloud connectivity vpc-peering create --subscription 123 \\
      --gcp-project-id my-project --gcp-network-name my-network

    # Using JSON data (escape hatch for advanced options)
    redisctl cloud connectivity vpc-peering create --subscription 123 \\
      --data '{\"region\": \"us-east-1\", \"awsAccountId\": \"123456789012\", \"vpcId\": \"vpc-abc123\"}'
")]
    Create {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,

        // AWS-specific parameters
        /// AWS region (e.g., us-east-1)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        region: Option<String>,

        /// AWS account ID (12-digit number)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        aws_account_id: Option<String>,

        /// AWS VPC ID (e.g., vpc-abc123)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        vpc_id: Option<String>,

        // GCP-specific parameters
        /// GCP project ID (for GCP VPC peering)
        #[arg(long, required_unless_present_any = ["region", "data"])]
        gcp_project_id: Option<String>,

        /// GCP network name (for GCP VPC peering)
        #[arg(long, required_unless_present_any = ["region", "data"])]
        gcp_network_name: Option<String>,

        // Common optional parameters
        /// VPC CIDR block (can be specified multiple times)
        #[arg(long = "vpc-cidr", value_name = "CIDR")]
        vpc_cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json (overrides other params)
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update VPC peering
    #[command(after_help = "EXAMPLES:
    # Update VPC CIDR blocks
    redisctl cloud connectivity vpc-peering update --subscription 123 --peering-id 456 \\
      --vpc-cidr 10.0.0.0/16 --vpc-cidr 10.1.0.0/16

    # Using JSON data
    redisctl cloud connectivity vpc-peering update --subscription 123 --peering-id 456 \\
      --data '{\"vpcCidrs\": [\"10.0.0.0/16\", \"10.1.0.0/16\"]}'
")]
    Update {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Peering ID
        #[arg(long)]
        peering_id: i32,

        /// VPC CIDR block (can be specified multiple times)
        #[arg(long = "vpc-cidr", value_name = "CIDR")]
        vpc_cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json (overrides other params)
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete VPC peering
    Delete {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Peering ID
        #[arg(long)]
        peering_id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// List Active-Active VPC peerings
    #[command(name = "list-aa")]
    ListActiveActive {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
    },
    /// Create Active-Active VPC peering
    #[command(
        name = "create-aa",
        after_help = "EXAMPLES:
    # AWS Active-Active VPC peering
    redisctl cloud connectivity vpc-peering create-aa --subscription 123 \\
      --source-region us-east-1 --destination-region us-west-2 \\
      --aws-account-id 123456789012 --vpc-id vpc-abc123

    # AWS Active-Active with CIDR blocks
    redisctl cloud connectivity vpc-peering create-aa --subscription 123 \\
      --source-region us-east-1 --destination-region us-west-2 \\
      --aws-account-id 123456789012 --vpc-id vpc-abc123 \\
      --vpc-cidr 10.0.0.0/16

    # GCP Active-Active VPC peering
    redisctl cloud connectivity vpc-peering create-aa --subscription 123 \\
      --source-region us-central1 --gcp-project-id my-project --gcp-network-name my-network

    # Using JSON data
    redisctl cloud connectivity vpc-peering create-aa --subscription 123 \\
      --data @peering-config.json
"
    )]
    CreateActiveActive {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,

        /// Source region (Redis Cloud region)
        #[arg(long, required_unless_present = "data")]
        source_region: Option<String>,

        // AWS-specific parameters
        /// Destination region for AWS (customer VPC region)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        destination_region: Option<String>,

        /// AWS account ID (12-digit number)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        aws_account_id: Option<String>,

        /// AWS VPC ID (e.g., vpc-abc123)
        #[arg(long, required_unless_present_any = ["gcp_project_id", "data"])]
        vpc_id: Option<String>,

        // GCP-specific parameters
        /// GCP project ID (for GCP VPC peering)
        #[arg(long, required_unless_present_any = ["destination_region", "data"])]
        gcp_project_id: Option<String>,

        /// GCP network name (for GCP VPC peering)
        #[arg(long, required_unless_present_any = ["destination_region", "data"])]
        gcp_network_name: Option<String>,

        // Common optional parameters
        /// VPC CIDR block (can be specified multiple times)
        #[arg(long = "vpc-cidr", value_name = "CIDR")]
        vpc_cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json (overrides other params)
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update Active-Active VPC peering
    #[command(
        name = "update-aa",
        after_help = "EXAMPLES:
    # Update VPC CIDR blocks
    redisctl cloud connectivity vpc-peering update-aa --subscription 123 --peering-id 456 \\
      --vpc-cidr 10.0.0.0/16 --vpc-cidr 10.1.0.0/16

    # Using JSON data
    redisctl cloud connectivity vpc-peering update-aa --subscription 123 --peering-id 456 \\
      --data '{\"vpcCidrs\": [\"10.0.0.0/16\"]}'
"
    )]
    UpdateActiveActive {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Peering ID
        #[arg(long)]
        peering_id: i32,

        /// VPC CIDR block (can be specified multiple times)
        #[arg(long = "vpc-cidr", value_name = "CIDR")]
        vpc_cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json (overrides other params)
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete Active-Active VPC peering
    #[command(name = "delete-aa")]
    DeleteActiveActive {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Peering ID
        #[arg(long)]
        peering_id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

/// Private Service Connect (PSC) Commands
#[derive(Subcommand, Debug)]
pub enum PscCommands {
    // Standard PSC Service operations
    /// Get PSC service details
    #[command(name = "service-get")]
    ServiceGet {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create PSC service
    #[command(name = "service-create")]
    ServiceCreate {
        /// Subscription ID
        subscription_id: i32,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete PSC service
    #[command(name = "service-delete")]
    ServiceDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // Standard PSC Endpoint operations
    /// List PSC endpoints
    #[command(name = "endpoints-list")]
    EndpointsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create PSC endpoint
    #[command(
        name = "endpoint-create",
        after_help = "EXAMPLES:
    # Create PSC endpoint with all parameters
    redisctl cloud connectivity psc endpoint-create 123 \\
      --gcp-project-id my-project \\
      --gcp-vpc-name my-vpc \\
      --gcp-vpc-subnet-name my-subnet \\
      --endpoint-connection-name redis-psc

    # Using JSON file
    redisctl cloud connectivity psc endpoint-create 123 --data @endpoint.json
"
    )]
    EndpointCreate {
        /// Subscription ID
        subscription_id: i32,

        /// GCP project ID
        #[arg(long, required_unless_present = "data")]
        gcp_project_id: Option<String>,

        /// GCP VPC name
        #[arg(long, required_unless_present = "data")]
        gcp_vpc_name: Option<String>,

        /// GCP VPC subnet name
        #[arg(long, required_unless_present = "data")]
        gcp_vpc_subnet_name: Option<String>,

        /// Endpoint connection name prefix
        #[arg(long)]
        endpoint_connection_name: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update PSC endpoint
    #[command(
        name = "endpoint-update",
        after_help = "EXAMPLES:
    # Update PSC endpoint connection name
    redisctl cloud connectivity psc endpoint-update 123 --endpoint-id 456 \\
      --endpoint-connection-name new-redis-psc

    # Update with JSON
    redisctl cloud connectivity psc endpoint-update 123 --endpoint-id 456 \\
      --data '{\"endpointConnectionName\": \"new-name\"}'
"
    )]
    EndpointUpdate {
        /// Subscription ID
        subscription_id: i32,
        /// Endpoint ID
        #[arg(long)]
        endpoint_id: i32,
        /// PSC Service ID
        #[arg(long)]
        psc_service_id: Option<i32>,

        /// GCP project ID
        #[arg(long)]
        gcp_project_id: Option<String>,

        /// GCP VPC name
        #[arg(long)]
        gcp_vpc_name: Option<String>,

        /// GCP VPC subnet name
        #[arg(long)]
        gcp_vpc_subnet_name: Option<String>,

        /// Endpoint connection name prefix
        #[arg(long)]
        endpoint_connection_name: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete PSC endpoint
    #[command(name = "endpoint-delete")]
    EndpointDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Endpoint ID
        endpoint_id: i32,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Get PSC endpoint creation script
    #[command(name = "endpoint-creation-script")]
    EndpointCreationScript {
        /// Subscription ID
        subscription_id: i32,
        /// Endpoint ID
        endpoint_id: i32,
    },
    /// Get PSC endpoint deletion script
    #[command(name = "endpoint-deletion-script")]
    EndpointDeletionScript {
        /// Subscription ID
        subscription_id: i32,
        /// Endpoint ID
        endpoint_id: i32,
    },

    // Active-Active PSC Service operations
    /// Get Active-Active PSC service details
    #[command(name = "aa-service-get")]
    AaServiceGet {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create Active-Active PSC service
    #[command(name = "aa-service-create")]
    AaServiceCreate {
        /// Subscription ID
        subscription_id: i32,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete Active-Active PSC service
    #[command(name = "aa-service-delete")]
    AaServiceDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // Active-Active PSC Endpoint operations
    /// List Active-Active PSC endpoints
    #[command(name = "aa-endpoints-list")]
    AaEndpointsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create Active-Active PSC endpoint
    #[command(
        name = "aa-endpoint-create",
        after_help = "EXAMPLES:
    # Create Active-Active PSC endpoint
    redisctl cloud connectivity psc aa-endpoint-create 123 \\
      --gcp-project-id my-project \\
      --gcp-vpc-name my-vpc \\
      --gcp-vpc-subnet-name my-subnet \\
      --endpoint-connection-name redis-psc

    # Using JSON file
    redisctl cloud connectivity psc aa-endpoint-create 123 --data @endpoint.json
"
    )]
    AaEndpointCreate {
        /// Subscription ID
        subscription_id: i32,

        /// GCP project ID
        #[arg(long, required_unless_present = "data")]
        gcp_project_id: Option<String>,

        /// GCP VPC name
        #[arg(long, required_unless_present = "data")]
        gcp_vpc_name: Option<String>,

        /// GCP VPC subnet name
        #[arg(long, required_unless_present = "data")]
        gcp_vpc_subnet_name: Option<String>,

        /// Endpoint connection name prefix
        #[arg(long)]
        endpoint_connection_name: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete Active-Active PSC endpoint
    #[command(name = "aa-endpoint-delete")]
    AaEndpointDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        region_id: i32,
        /// Endpoint ID
        endpoint_id: i32,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

/// Transit Gateway (TGW) Commands
#[derive(Subcommand, Debug)]
pub enum TgwCommands {
    // Standard TGW Attachment operations
    /// List TGW attachments
    #[command(name = "attachments-list")]
    AttachmentsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create TGW attachment
    #[command(
        name = "attachment-create",
        after_help = "EXAMPLES:
    # Create TGW attachment with AWS account and TGW ID
    redisctl cloud connectivity tgw attachment-create 123 \\
      --aws-account-id 123456789012 --tgw-id tgw-abc123

    # Create with CIDR blocks
    redisctl cloud connectivity tgw attachment-create 123 \\
      --aws-account-id 123456789012 --tgw-id tgw-abc123 \\
      --cidr 10.0.0.0/16 --cidr 10.1.0.0/16

    # Using JSON file
    redisctl cloud connectivity tgw attachment-create 123 --data @attachment.json
"
    )]
    AttachmentCreate {
        /// Subscription ID
        subscription_id: i32,

        /// AWS account ID
        #[arg(long, required_unless_present = "data")]
        aws_account_id: Option<String>,

        /// Transit Gateway ID
        #[arg(long, required_unless_present = "data")]
        tgw_id: Option<String>,

        /// CIDR blocks to route through TGW (can be specified multiple times)
        #[arg(long = "cidr", value_name = "CIDR")]
        cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Create TGW attachment with ID in path
    #[command(name = "attachment-create-with-id")]
    AttachmentCreateWithId {
        /// Subscription ID
        subscription_id: i32,
        /// Transit Gateway ID
        tgw_id: String,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update TGW attachment CIDRs
    #[command(
        name = "attachment-update",
        after_help = "EXAMPLES:
    # Update TGW attachment CIDR blocks
    redisctl cloud connectivity tgw attachment-update 123 --attachment-id att-abc123 \\
      --cidr 10.0.0.0/16 --cidr 10.1.0.0/16

    # Using JSON
    redisctl cloud connectivity tgw attachment-update 123 --attachment-id att-abc123 \\
      --data '{\"cidrs\": [\"10.0.0.0/16\"]}'
"
    )]
    AttachmentUpdate {
        /// Subscription ID
        subscription_id: i32,
        /// Attachment ID
        #[arg(long)]
        attachment_id: String,

        /// CIDR blocks to route through TGW (can be specified multiple times)
        #[arg(long = "cidr", value_name = "CIDR")]
        cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete TGW attachment
    #[command(name = "attachment-delete")]
    AttachmentDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Attachment ID
        attachment_id: String,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // Standard TGW Invitation operations
    /// List TGW resource share invitations
    #[command(name = "invitations-list")]
    InvitationsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Accept TGW resource share invitation
    #[command(name = "invitation-accept")]
    InvitationAccept {
        /// Subscription ID
        subscription_id: i32,
        /// Invitation ID
        invitation_id: String,
    },
    /// Reject TGW resource share invitation
    #[command(name = "invitation-reject")]
    InvitationReject {
        /// Subscription ID
        subscription_id: i32,
        /// Invitation ID
        invitation_id: String,
    },

    // Active-Active TGW Attachment operations
    /// List Active-Active TGW attachments
    #[command(name = "aa-attachments-list")]
    AaAttachmentsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Create Active-Active TGW attachment
    #[command(
        name = "aa-attachment-create",
        after_help = "EXAMPLES:
    # Create Active-Active TGW attachment
    redisctl cloud connectivity tgw aa-attachment-create 123 --region-id 1 \\
      --aws-account-id 123456789012 --tgw-id tgw-abc123

    # With CIDR blocks
    redisctl cloud connectivity tgw aa-attachment-create 123 --region-id 1 \\
      --aws-account-id 123456789012 --tgw-id tgw-abc123 \\
      --cidr 10.0.0.0/16

    # Using JSON file
    redisctl cloud connectivity tgw aa-attachment-create 123 --region-id 1 --data @attachment.json
"
    )]
    AaAttachmentCreate {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        #[arg(long)]
        region_id: i32,

        /// AWS account ID
        #[arg(long, required_unless_present = "data")]
        aws_account_id: Option<String>,

        /// Transit Gateway ID
        #[arg(long, required_unless_present = "data")]
        tgw_id: Option<String>,

        /// CIDR blocks to route through TGW (can be specified multiple times)
        #[arg(long = "cidr", value_name = "CIDR")]
        cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update Active-Active TGW attachment CIDRs
    #[command(
        name = "aa-attachment-update",
        after_help = "EXAMPLES:
    # Update Active-Active TGW attachment CIDR blocks
    redisctl cloud connectivity tgw aa-attachment-update 123 --region-id 1 --attachment-id att-abc123 \\
      --cidr 10.0.0.0/16 --cidr 10.1.0.0/16

    # Using JSON
    redisctl cloud connectivity tgw aa-attachment-update 123 --region-id 1 --attachment-id att-abc123 \\
      --data '{\"cidrs\": [\"10.0.0.0/16\"]}'
"
    )]
    AaAttachmentUpdate {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        #[arg(long)]
        region_id: i32,
        /// Attachment ID
        #[arg(long)]
        attachment_id: String,

        /// CIDR blocks to route through TGW (can be specified multiple times)
        #[arg(long = "cidr", value_name = "CIDR")]
        cidrs: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete Active-Active TGW attachment
    #[command(name = "aa-attachment-delete")]
    AaAttachmentDelete {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        region_id: i32,
        /// Attachment ID
        attachment_id: String,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // Active-Active TGW Invitation operations
    /// List Active-Active TGW resource share invitations
    #[command(name = "aa-invitations-list")]
    AaInvitationsList {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Accept Active-Active TGW resource share invitation
    #[command(name = "aa-invitation-accept")]
    AaInvitationAccept {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        region_id: i32,
        /// Invitation ID
        invitation_id: String,
    },
    /// Reject Active-Active TGW resource share invitation
    #[command(name = "aa-invitation-reject")]
    AaInvitationReject {
        /// Subscription ID
        subscription_id: i32,
        /// Region ID
        region_id: i32,
        /// Invitation ID
        invitation_id: String,
    },
}

/// AWS PrivateLink Commands
#[derive(Subcommand, Debug)]
pub enum PrivateLinkCommands {
    /// Get PrivateLink configuration
    Get {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Region ID (for Active-Active databases)
        #[arg(long)]
        region: Option<i32>,
    },
    /// Create PrivateLink
    #[command(after_help = "EXAMPLES:
    # Create PrivateLink with AWS account principal
    redisctl cloud connectivity privatelink create --subscription 123 \\
      --share-name my-redis-share --principal 123456789012 --type aws-account

    # Create PrivateLink with alias
    redisctl cloud connectivity privatelink create --subscription 123 \\
      --share-name my-redis-share --principal 123456789012 \\
      --type aws-account --alias 'Production Account'

    # Create for Active-Active subscription
    redisctl cloud connectivity privatelink create --subscription 123 --region 1 \\
      --share-name my-redis-share --principal 123456789012 --type aws-account

    # Using JSON data (escape hatch)
    redisctl cloud connectivity privatelink create --subscription 123 \\
      --data '{\"shareName\": \"my-share\", \"principal\": \"123456789012\", \"type\": \"aws_account\"}'
")]
    Create {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Region ID (for Active-Active databases)
        #[arg(long)]
        region: Option<i32>,

        /// Share name for the PrivateLink service
        #[arg(long, required_unless_present = "data")]
        share_name: Option<String>,

        /// AWS principal (account ID or ARN)
        #[arg(long, required_unless_present = "data")]
        principal: Option<String>,

        /// Principal type (aws-account, iam-role, etc.)
        #[arg(long = "type", value_name = "TYPE", required_unless_present = "data")]
        principal_type: Option<String>,

        /// Alias for the principal (optional)
        #[arg(long)]
        alias: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Add principals to PrivateLink
    #[command(
        name = "add-principal",
        after_help = "EXAMPLES:
    # Add an AWS account as principal
    redisctl cloud connectivity privatelink add-principal --subscription 123 \\
      --principal 123456789012 --type aws-account

    # Add with alias
    redisctl cloud connectivity privatelink add-principal --subscription 123 \\
      --principal 123456789012 --type aws-account --alias 'Dev Account'

    # Add to Active-Active subscription
    redisctl cloud connectivity privatelink add-principal --subscription 123 --region 1 \\
      --principal 123456789012 --type aws-account
"
    )]
    AddPrincipal {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Region ID (for Active-Active databases)
        #[arg(long)]
        region: Option<i32>,

        /// AWS principal (account ID or ARN)
        #[arg(long, required_unless_present = "data")]
        principal: Option<String>,

        /// Principal type (aws-account, iam-role, etc.)
        #[arg(long = "type", value_name = "TYPE")]
        principal_type: Option<String>,

        /// Alias for the principal (optional)
        #[arg(long)]
        alias: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },
    /// Remove principals from PrivateLink
    #[command(
        name = "remove-principal",
        after_help = "EXAMPLES:
    # Remove an AWS account principal
    redisctl cloud connectivity privatelink remove-principal --subscription 123 \\
      --principal 123456789012 --type aws-account

    # Remove from Active-Active subscription
    redisctl cloud connectivity privatelink remove-principal --subscription 123 --region 1 \\
      --principal 123456789012 --type aws-account
"
    )]
    RemovePrincipal {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Region ID (for Active-Active databases)
        #[arg(long)]
        region: Option<i32>,

        /// AWS principal (account ID or ARN)
        #[arg(long, required_unless_present = "data")]
        principal: Option<String>,

        /// Principal type (aws-account, iam-role, etc.)
        #[arg(long = "type", value_name = "TYPE")]
        principal_type: Option<String>,

        /// Alias for the principal (optional)
        #[arg(long)]
        alias: Option<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },
    /// Get VPC endpoint creation script
    #[command(name = "get-script")]
    GetScript {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Region ID (for Active-Active databases)
        #[arg(long)]
        region: Option<i32>,
    },
    /// Delete PrivateLink configuration
    Delete {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

/// Cloud Task Commands
#[derive(Subcommand, Debug)]
pub enum CloudTaskCommands {
    /// List all tasks for this account
    #[command(alias = "ls")]
    List,
    /// Get task status and details
    Get {
        /// Task ID (UUID format)
        id: String,
    },
    /// Wait for task to complete
    Wait {
        /// Task ID (UUID format)
        id: String,
        /// Maximum time to wait in seconds
        #[arg(long, default_value = "300")]
        timeout: u64,
        /// Polling interval in seconds
        #[arg(long, default_value = "2")]
        interval: u64,
    },
    /// Poll task status with live updates
    Poll {
        /// Task ID (UUID format)
        id: String,
        /// Polling interval in seconds
        #[arg(long, default_value = "2")]
        interval: u64,
        /// Maximum number of polls (0 = unlimited)
        #[arg(long, default_value = "0")]
        max_polls: u64,
    },
}

/// Cloud Fixed Database Commands
#[derive(Subcommand, Debug)]
pub enum CloudFixedDatabaseCommands {
    /// List all databases in a fixed subscription
    List {
        /// Subscription ID
        subscription_id: i32,
    },
    /// Get details of a specific fixed database
    Get {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Create a new database in a fixed subscription
    #[command(after_help = "EXAMPLES:
    # Simple database with name
    redisctl cloud fixed-database create 123456 --name mydb --wait

    # Database with password
    redisctl cloud fixed-database create 123456 \\
      --name mydb \\
      --password mysecret \\
      --wait

    # Advanced: Use JSON for full configuration
    redisctl cloud fixed-database create 123456 \\
      --data @database.json
")]
    Create {
        /// Subscription ID
        subscription_id: i32,

        /// Database name
        #[arg(long)]
        name: Option<String>,

        /// Database password
        #[arg(long)]
        password: Option<String>,

        /// Enable TLS/SSL
        #[arg(long)]
        enable_tls: Option<bool>,

        /// Data eviction policy
        #[arg(long)]
        eviction_policy: Option<String>,

        /// Enable replication
        #[arg(long)]
        replication: Option<bool>,

        /// Data persistence setting
        #[arg(long)]
        data_persistence: Option<String>,

        /// Advanced: Full database configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update fixed database configuration
    #[command(after_help = "EXAMPLES:
    # Update database name
    redisctl cloud fixed-database update 123:456 --name new-name

    # Change password
    redisctl cloud fixed-database update 123:456 --password newpassword

    # Enable TLS
    redisctl cloud fixed-database update 123:456 --enable-tls true

    # Multiple changes
    redisctl cloud fixed-database update 123:456 \\
      --eviction-policy allkeys-lru \\
      --data-persistence aof-every-1-second \\
      --wait
")]
    Update {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// New database name
        #[arg(long)]
        name: Option<String>,

        /// New password
        #[arg(long)]
        password: Option<String>,

        /// Enable TLS/SSL
        #[arg(long)]
        enable_tls: Option<bool>,

        /// Data eviction policy
        #[arg(long)]
        eviction_policy: Option<String>,

        /// Enable replication
        #[arg(long)]
        replication: Option<bool>,

        /// Data persistence setting
        #[arg(long)]
        data_persistence: Option<String>,

        /// Advanced: Full update configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete a fixed database
    Delete {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Get backup status for fixed database
    #[command(name = "backup-status")]
    BackupStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Trigger manual backup
    Backup {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Get import status
    #[command(name = "import-status")]
    ImportStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Import data into fixed database
    #[command(after_help = "EXAMPLES:
    # Import from S3
    redisctl cloud fixed-database import 123:456 \\
      --source-type s3 \\
      --import-from-uri s3://bucket/backup.rdb \\
      --wait

    # Import from HTTP
    redisctl cloud fixed-database import 123:456 \\
      --source-type http \\
      --import-from-uri https://example.com/backup.rdb

    # Import with AWS credentials
    redisctl cloud fixed-database import 123:456 \\
      --source-type aws-s3 \\
      --import-from-uri s3://bucket/backup.rdb \\
      --aws-access-key AKIA... \\
      --aws-secret-key secret
")]
    Import {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// Source type: http, redis, ftp, aws-s3, gcs, azure-blob-storage
        #[arg(long)]
        source_type: Option<String>,

        /// URI to import from
        #[arg(long)]
        import_from_uri: Option<String>,

        /// AWS access key ID (for aws-s3)
        #[arg(long)]
        aws_access_key: Option<String>,

        /// AWS secret access key (for aws-s3)
        #[arg(long)]
        aws_secret_key: Option<String>,

        /// GCS client email (for gcs)
        #[arg(long)]
        gcs_client_email: Option<String>,

        /// GCS private key (for gcs)
        #[arg(long)]
        gcs_private_key: Option<String>,

        /// Azure storage account name
        #[arg(long)]
        azure_account_name: Option<String>,

        /// Azure storage account key
        #[arg(long)]
        azure_account_key: Option<String>,

        /// Advanced: Full import configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Get slow query log
    #[command(name = "slow-log")]
    SlowLog {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Maximum number of entries to return
        #[arg(long, default_value = "100")]
        limit: i32,
        /// Offset for pagination
        #[arg(long, default_value = "0")]
        offset: i32,
    },
    /// List tags for fixed database
    #[command(name = "list-tags")]
    ListTags {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Add a tag
    #[command(name = "add-tag")]
    AddTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key
        #[arg(long)]
        key: String,
        /// Tag value
        #[arg(long)]
        value: String,
    },
    /// Update all tags
    #[command(
        name = "update-tags",
        after_help = "EXAMPLES:
    # Set multiple tags
    redisctl cloud fixed-database update-tags 123:456 \\
      --tag env=production \\
      --tag team=backend

    # Replace all tags using JSON
    redisctl cloud fixed-database update-tags 123:456 \\
      --data '{\"tags\": [{\"key\": \"env\", \"value\": \"prod\"}]}'
"
    )]
    UpdateTags {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// Tag in key=value format (repeatable)
        #[arg(long = "tag", value_name = "KEY=VALUE")]
        tags: Vec<String>,

        /// Tags as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },
    /// Update specific tag
    #[command(name = "update-tag")]
    UpdateTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key
        #[arg(long)]
        key: String,
        /// Tag value
        #[arg(long)]
        value: String,
    },
    /// Delete a tag
    #[command(name = "delete-tag")]
    DeleteTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key
        #[arg(long)]
        key: String,
    },
    /// Get available Redis versions for upgrade
    #[command(name = "available-versions")]
    AvailableVersions {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Get Redis version upgrade status
    #[command(name = "upgrade-status")]
    UpgradeStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },
    /// Upgrade Redis version
    #[command(name = "upgrade-redis")]
    UpgradeRedis {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Target Redis version
        #[arg(long)]
        version: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

/// Cloud Fixed Subscription Commands
#[derive(Subcommand, Debug)]
pub enum CloudFixedSubscriptionCommands {
    /// List all available fixed subscription plans
    #[command(name = "list-plans")]
    ListPlans {
        /// Filter by cloud provider (AWS, GCP, Azure)
        #[arg(long)]
        provider: Option<String>,
    },
    /// Get plans for a specific subscription
    #[command(name = "get-plans")]
    GetPlans {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
    },
    /// Get details of a specific plan
    #[command(name = "get-plan")]
    GetPlan {
        /// Plan ID
        id: i32,
    },
    /// List all fixed subscriptions
    List,
    /// Get details of a fixed subscription
    Get {
        /// Subscription ID
        id: i32,
    },
    /// Create a new fixed subscription
    #[command(after_help = "EXAMPLES:
    # Create subscription with name and plan ID
    redisctl cloud fixed-subscription create --name my-cache --plan-id 12345 --wait

    # Create with specific payment method
    redisctl cloud fixed-subscription create \\
      --name prod-cache \\
      --plan-id 12345 \\
      --payment-method credit-card \\
      --payment-method-id 67890

    # Create using JSON for full control
    redisctl cloud fixed-subscription create \\
      --data '{\"name\": \"my-cache\", \"planId\": 12345}'
")]
    Create {
        /// Subscription name
        #[arg(long)]
        name: Option<String>,

        /// Plan ID from list-plans
        #[arg(long)]
        plan_id: Option<i32>,

        /// Payment method (credit-card or marketplace)
        #[arg(long)]
        payment_method: Option<String>,

        /// Payment method ID (required for credit-card)
        #[arg(long)]
        payment_method_id: Option<i32>,

        /// JSON data (string or @filename)
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update fixed subscription
    #[command(after_help = "EXAMPLES:
    # Rename subscription
    redisctl cloud fixed-subscription update 123456 --name new-name

    # Change plan
    redisctl cloud fixed-subscription update 123456 --plan-id 67890 --wait

    # Change payment method
    redisctl cloud fixed-subscription update 123456 \\
      --payment-method credit-card \\
      --payment-method-id 11111

    # Update using JSON
    redisctl cloud fixed-subscription update 123456 \\
      --data '{\"name\": \"new-name\"}'
")]
    Update {
        /// Subscription ID
        id: i32,

        /// New subscription name
        #[arg(long)]
        name: Option<String>,

        /// New plan ID
        #[arg(long)]
        plan_id: Option<i32>,

        /// Payment method (credit-card or marketplace)
        #[arg(long)]
        payment_method: Option<String>,

        /// Payment method ID (required for credit-card)
        #[arg(long)]
        payment_method_id: Option<i32>,

        /// JSON data (string or @filename)
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete a fixed subscription
    Delete {
        /// Subscription ID
        id: i32,
        /// Skip confirmation prompt
        #[arg(short, long)]
        yes: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Get available Redis versions for fixed subscription
    #[command(name = "redis-versions")]
    RedisVersions {
        /// Subscription ID
        #[arg(long)]
        subscription: i32,
    },
}

/// Cloud Provider Account Commands
#[derive(Subcommand, Debug)]
pub enum CloudProviderAccountCommands {
    /// List all cloud provider accounts
    List,
    /// Get cloud provider account details
    Get {
        /// Cloud account ID
        account_id: i32,
    },
    /// Create a new cloud provider account
    #[command(after_help = "EXAMPLES:
    # Create AWS cloud account with credentials
    redisctl cloud provider-account create \\
      --name 'Production AWS' \\
      --provider AWS \\
      --access-key-id AKIA... \\
      --access-secret-key secret \\
      --console-username admin@example.com \\
      --console-password mypassword \\
      --sign-in-login-url https://console.aws.amazon.com

    # Create using JSON file (for GCP service account)
    redisctl cloud provider-account create --data @gcp-service-account.json

    # Create with JSON string
    redisctl cloud provider-account create \\
      --data '{\"name\": \"My Account\", \"provider\": \"AWS\", ...}'
")]
    Create {
        /// Account display name
        #[arg(long)]
        name: Option<String>,

        /// Cloud provider (AWS, GCP, Azure)
        #[arg(long)]
        provider: Option<String>,

        /// Cloud provider access key ID
        #[arg(long)]
        access_key_id: Option<String>,

        /// Cloud provider secret access key
        #[arg(long)]
        access_secret_key: Option<String>,

        /// Cloud provider console username
        #[arg(long)]
        console_username: Option<String>,

        /// Cloud provider console password
        #[arg(long)]
        console_password: Option<String>,

        /// Cloud provider console login URL
        #[arg(long)]
        sign_in_login_url: Option<String>,

        /// JSON data (string or @filename) - use for GCP service account JSON
        #[arg(long)]
        data: Option<String>,

        /// Async operation arguments
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Update a cloud provider account
    #[command(after_help = "EXAMPLES:
    # Update account name
    redisctl cloud provider-account update 123 --name 'New Name'

    # Update credentials
    redisctl cloud provider-account update 123 \\
      --access-key-id AKIA... \\
      --access-secret-key newsecret

    # Update using JSON
    redisctl cloud provider-account update 123 --data @updated-config.json
")]
    Update {
        /// Cloud account ID
        account_id: i32,

        /// New account display name
        #[arg(long)]
        name: Option<String>,

        /// New access key ID
        #[arg(long)]
        access_key_id: Option<String>,

        /// New secret access key
        #[arg(long)]
        access_secret_key: Option<String>,

        /// New console username
        #[arg(long)]
        console_username: Option<String>,

        /// New console password
        #[arg(long)]
        console_password: Option<String>,

        /// New console login URL
        #[arg(long)]
        sign_in_login_url: Option<String>,

        /// JSON data (string or @filename)
        #[arg(long)]
        data: Option<String>,

        /// Async operation arguments
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
    /// Delete a cloud provider account
    Delete {
        /// Cloud account ID
        account_id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation arguments
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

/// Cloud-specific commands
#[derive(Subcommand, Debug)]
#[command(after_long_help = "\
COMMAND GROUPS:
  Core:       database (db), subscription (sub), fixed-database (fixed-db),
              fixed-subscription (fixed-sub)
  Access:     user, acl
  Billing:    account (acct), payment-method, cost-report
  Networking: connectivity (conn), provider-account
  Operations: task, workflow

Aliases shown in parentheses (e.g. 'cloud db list' instead of 'cloud database list').")]
pub enum CloudCommands {
    // -- Core --
    /// Database operations
    #[command(subcommand, display_order = 1, visible_alias = "db")]
    Database(CloudDatabaseCommands),

    /// Subscription operations
    #[command(subcommand, display_order = 2, visible_alias = "sub")]
    Subscription(CloudSubscriptionCommands),

    /// Fixed database operations (Essentials)
    #[command(
        subcommand,
        name = "fixed-database",
        display_order = 3,
        visible_alias = "fixed-db"
    )]
    FixedDatabase(CloudFixedDatabaseCommands),

    /// Fixed subscription operations (Essentials)
    #[command(
        subcommand,
        name = "fixed-subscription",
        display_order = 4,
        visible_alias = "fixed-sub"
    )]
    FixedSubscription(CloudFixedSubscriptionCommands),

    // -- Access Control --
    /// User operations
    #[command(subcommand, display_order = 10)]
    User(CloudUserCommands),

    /// ACL (Access Control List) operations
    #[command(subcommand, display_order = 11)]
    Acl(CloudAclCommands),

    // -- Billing --
    /// Account operations
    #[command(subcommand, display_order = 20, visible_alias = "acct")]
    Account(CloudAccountCommands),

    /// Payment method operations
    #[command(subcommand, name = "payment-method", display_order = 21)]
    PaymentMethod(CloudPaymentMethodCommands),

    /// Cost report operations (Beta)
    #[command(subcommand, name = "cost-report", display_order = 22)]
    CostReport(CloudCostReportCommands),

    // -- Networking --
    /// Network connectivity operations (VPC, PSC, TGW)
    #[command(subcommand, display_order = 30, visible_alias = "conn")]
    Connectivity(CloudConnectivityCommands),

    /// Cloud provider account operations
    #[command(subcommand, name = "provider-account", display_order = 31)]
    ProviderAccount(CloudProviderAccountCommands),

    // -- Operations --
    /// Task operations
    #[command(subcommand, display_order = 40)]
    Task(CloudTaskCommands),

    /// Workflow operations for multi-step tasks
    #[command(subcommand, display_order = 41)]
    Workflow(CloudWorkflowCommands),
}
#[derive(Debug, Subcommand)]
pub enum CloudWorkflowCommands {
    /// List available workflows
    List,
    /// Complete subscription setup with optional database
    #[command(name = "subscription-setup")]
    SubscriptionSetup(crate::workflows::cloud::subscription_setup::SubscriptionSetupArgs),
}

/// Cloud Cost Report Commands (Beta)
#[derive(Debug, Clone, Subcommand)]
pub enum CloudCostReportCommands {
    /// Generate a cost report in FOCUS format
    #[command(after_help = "EXAMPLES:
    # Generate a cost report for January 2025
    redisctl cloud cost-report generate --start-date 2025-01-01 --end-date 2025-01-31

    # Generate CSV report filtered by subscription
    redisctl cloud cost-report generate --start-date 2025-01-01 --end-date 2025-01-31 \\
      --subscription 123 --format csv

    # Generate JSON report filtered by region and tags
    redisctl cloud cost-report generate --start-date 2025-01-01 --end-date 2025-01-31 \\
      --format json --region us-east-1 --tag team:marketing

    # Generate report for Pro subscriptions only
    redisctl cloud cost-report generate --start-date 2025-01-01 --end-date 2025-01-31 \\
      --subscription-type pro

NOTE: The maximum date range is 40 days. Cost reports are generated asynchronously.
      Use --wait to wait for completion, or use 'cloud task get' to check status.
      Once complete, use 'cloud cost-report download' with the costReportId from the task.
")]
    Generate {
        /// Start date (YYYY-MM-DD format)
        #[arg(long)]
        start_date: String,

        /// End date (YYYY-MM-DD format, max 40 days from start)
        #[arg(long)]
        end_date: String,

        /// Output format (csv or json)
        #[arg(long, value_parser = ["csv", "json"], default_value = "csv")]
        format: String,

        /// Filter by subscription IDs (can be specified multiple times)
        #[arg(long = "subscription", value_name = "ID")]
        subscription_ids: Vec<i32>,

        /// Filter by database IDs (can be specified multiple times)
        #[arg(long = "database", value_name = "ID")]
        database_ids: Vec<i32>,

        /// Filter by subscription type (pro or essentials)
        #[arg(long, value_parser = ["pro", "essentials"])]
        subscription_type: Option<String>,

        /// Filter by regions (can be specified multiple times)
        #[arg(long = "region", value_name = "REGION")]
        regions: Vec<String>,

        /// Filter by tags (format: key:value, can be specified multiple times)
        #[arg(long = "tag", value_name = "KEY:VALUE")]
        tags: Vec<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Download a generated cost report
    #[command(after_help = "EXAMPLES:
    # Download cost report to stdout
    redisctl cloud cost-report download cost-report-12345-abcdef

    # Download cost report to a file
    redisctl cloud cost-report download cost-report-12345-abcdef --file report.csv

NOTE: The costReportId is returned in the task response after the generation completes.
      Check task status with 'redisctl cloud task get <task-id>' to get the costReportId.
")]
    Download {
        /// Cost report ID (from the completed generation task)
        cost_report_id: String,

        /// Output file path (defaults to stdout if not specified)
        #[arg(long = "file", short = 'f')]
        file: Option<String>,
    },

    /// Generate and download a cost report in one step
    #[command(after_help = "EXAMPLES:
    # Export January 2025 costs to CSV file
    redisctl cloud cost-report export --start-date 2025-01-01 --end-date 2025-01-31 \\
      --file january-costs.csv

    # Export as JSON to stdout
    redisctl cloud cost-report export --start-date 2025-01-01 --end-date 2025-01-31 \\
      --format json

    # Export filtered by subscription and tags
    redisctl cloud cost-report export --start-date 2025-01-01 --end-date 2025-01-31 \\
      --subscription 12345 --tag team:platform --file team-costs.csv

NOTE: This command combines 'generate --wait' and 'download' into a single operation.
      The maximum date range is 40 days.
")]
    Export {
        /// Start date (YYYY-MM-DD format)
        #[arg(long)]
        start_date: String,

        /// End date (YYYY-MM-DD format, max 40 days from start)
        #[arg(long)]
        end_date: String,

        /// Output format (csv or json)
        #[arg(long, value_parser = ["csv", "json"], default_value = "csv")]
        format: String,

        /// Output file path (defaults to stdout if not specified)
        #[arg(long = "file", short = 'f')]
        file: Option<String>,

        /// Filter by subscription IDs (can be specified multiple times)
        #[arg(long = "subscription", value_name = "ID")]
        subscription_ids: Vec<i32>,

        /// Filter by database IDs (can be specified multiple times)
        #[arg(long = "database", value_name = "ID")]
        database_ids: Vec<i32>,

        /// Filter by subscription type (pro or essentials)
        #[arg(long, value_parser = ["pro", "essentials"])]
        subscription_type: Option<String>,

        /// Filter by regions (can be specified multiple times)
        #[arg(long = "region", value_name = "REGION")]
        regions: Vec<String>,

        /// Filter by tags (format: key:value, can be specified multiple times)
        #[arg(long = "tag", value_name = "KEY:VALUE")]
        tags: Vec<String>,

        /// Maximum time to wait for report generation in seconds
        #[arg(long, default_value = "300")]
        timeout: u64,
    },
}

/// Enterprise workflow commands
#[derive(Subcommand, Debug)]
pub enum CloudAccountCommands {
    /// Get account information
    Get,

    /// Get payment methods configured for the account
    GetPaymentMethods,

    /// List supported regions
    ListRegions {
        /// Filter by cloud provider (aws, gcp, azure)
        #[arg(long)]
        provider: Option<String>,
    },

    /// List supported Redis modules
    ListModules,

    /// Get data persistence options
    GetPersistenceOptions,

    /// Get system logs
    GetSystemLogs {
        /// Maximum number of logs to return
        #[arg(long, default_value = "100")]
        limit: Option<u32>,

        /// Offset for pagination
        #[arg(long, default_value = "0")]
        offset: Option<u32>,
    },

    /// Get session/audit logs
    GetSessionLogs {
        /// Maximum number of logs to return
        #[arg(long, default_value = "100")]
        limit: Option<u32>,

        /// Offset for pagination
        #[arg(long, default_value = "0")]
        offset: Option<u32>,
    },

    /// Get search module scaling factors
    GetSearchScaling,
}

#[derive(Subcommand, Debug)]
pub enum CloudPaymentMethodCommands {
    /// List payment methods configured for the account
    List,
}

#[derive(Subcommand, Debug)]
pub enum CloudSubscriptionCommands {
    /// List all subscriptions
    List,

    /// Get detailed subscription information
    Get {
        /// Subscription ID
        id: u32,
    },

    /// Create a new subscription
    #[command(after_help = "EXAMPLES:
    # Simple subscription - just name, provider, and region via --data
    redisctl cloud subscription create --name prod-subscription \\
      --data '{\"cloudProviders\":[{\"regions\":[{\"region\":\"us-east-1\"}]}],\"databases\":[{\"name\":\"db1\",\"memoryLimitInGb\":1}]}'

    # With payment method
    redisctl cloud subscription create --name dev-subscription \\
      --payment-method marketplace \\
      --data '{\"cloudProviders\":[{\"regions\":[{\"region\":\"us-west-2\"}]}],\"databases\":[{\"name\":\"db1\",\"memoryLimitInGb\":1}]}'

    # With auto-tiering (RAM+Flash)
    redisctl cloud subscription create --name large-subscription \\
      --memory-storage ram-and-flash \\
      --data '{\"cloudProviders\":[{\"provider\":\"AWS\",\"regions\":[{\"region\":\"eu-west-1\"}]}],\"databases\":[{\"name\":\"db1\",\"memoryLimitInGb\":10}]}'

    # Complete configuration from file
    redisctl cloud subscription create --data @subscription.json

    # Dry run to preview deployment
    redisctl cloud subscription create --dry-run --data @subscription.json

NOTE: Subscription creation requires complex nested structures for cloud providers,
      regions, and databases. Use --data for the required cloudProviders and databases
      arrays. First-class parameters (--name, --payment-method, etc.) override values
      in --data when both are provided.")]
    Create {
        /// Subscription name
        #[arg(long)]
        name: Option<String>,

        /// Dry run - create deployment plan without provisioning resources
        #[arg(long)]
        dry_run: bool,

        /// Deployment type: single-region or active-active
        #[arg(long, value_parser = ["single-region", "active-active"])]
        deployment_type: Option<String>,

        /// Payment method: credit-card or marketplace
        #[arg(long, value_parser = ["credit-card", "marketplace"], default_value = "credit-card")]
        payment_method: String,

        /// Payment method ID (required if payment-method is credit-card)
        #[arg(long)]
        payment_method_id: Option<i32>,

        /// Memory storage: ram or ram-and-flash (Auto Tiering)
        #[arg(long, value_parser = ["ram", "ram-and-flash"], default_value = "ram")]
        memory_storage: String,

        /// Persistent storage encryption: cloud-provider-managed-key or customer-managed-key
        #[arg(long, value_parser = ["cloud-provider-managed-key", "customer-managed-key"], default_value = "cloud-provider-managed-key")]
        persistent_storage_encryption: String,

        /// Advanced: Full subscription configuration as JSON string or @file.json
        /// REQUIRED: Must include cloudProviders array with regions and databases array
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Update subscription configuration
    #[command(after_help = "EXAMPLES:
    # Update subscription name
    redisctl cloud subscription update 123 --name new-name

    # Update payment method
    redisctl cloud subscription update 123 --payment-method marketplace

    # Using JSON for advanced options
    redisctl cloud subscription update 123 --data '{\"name\": \"new-name\"}'
")]
    Update {
        /// Subscription ID
        id: u32,

        /// Updated subscription name
        #[arg(long)]
        name: Option<String>,

        /// Payment method: credit-card or marketplace
        #[arg(long, value_parser = ["credit-card", "marketplace"])]
        payment_method: Option<String>,

        /// Payment method ID (required if payment-method is credit-card)
        #[arg(long)]
        payment_method_id: Option<i32>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Dry run - validate without applying changes
        #[arg(long)]
        dry_run: bool,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete a subscription
    Delete {
        /// Subscription ID
        id: u32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Dry run - show what would be deleted without deleting
        #[arg(long)]
        dry_run: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Get available Redis versions
    RedisVersions {
        /// Filter by subscription ID (optional)
        #[arg(long)]
        subscription: Option<u32>,
    },

    /// Get subscription pricing information
    GetPricing {
        /// Subscription ID
        id: u32,
    },

    /// Get CIDR allowlist
    GetCidrAllowlist {
        /// Subscription ID
        id: u32,
    },

    /// Update CIDR allowlist
    #[command(after_help = "EXAMPLES:
    # Set CIDR blocks
    redisctl cloud subscription update-cidr-allowlist 123 \\
      --cidr 10.0.0.0/24 --cidr 192.168.1.0/24

    # Set AWS security groups
    redisctl cloud subscription update-cidr-allowlist 123 \\
      --security-group sg-12345678

    # Mix both
    redisctl cloud subscription update-cidr-allowlist 123 \\
      --cidr 10.0.0.0/24 --security-group sg-12345678

    # Using JSON
    redisctl cloud subscription update-cidr-allowlist 123 \\
      --data '{\"cidrIps\": [\"10.0.0.0/24\"], \"securityGroupIds\": [\"sg-12345678\"]}'
")]
    UpdateCidrAllowlist {
        /// Subscription ID
        id: u32,

        /// CIDR block to allow (can be specified multiple times)
        #[arg(long = "cidr", value_name = "CIDR")]
        cidrs: Vec<String>,

        /// AWS Security Group ID to allow (can be specified multiple times)
        #[arg(long = "security-group", value_name = "SG_ID")]
        security_groups: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },

    /// Get maintenance windows
    GetMaintenanceWindows {
        /// Subscription ID
        id: u32,
    },

    /// Update maintenance windows
    #[command(after_help = "EXAMPLES:
    # Set automatic maintenance
    redisctl cloud subscription update-maintenance-windows 123 --mode automatic

    # Set manual maintenance windows (up to 7 windows)
    redisctl cloud subscription update-maintenance-windows 123 \\
      --mode manual \\
      --window 'monday:03:00-monday:07:00' \\
      --window 'thursday:03:00-thursday:07:00'

    # Using JSON for complex configurations
    redisctl cloud subscription update-maintenance-windows 123 \\
      --data '{\"mode\": \"manual\", \"windows\": [{\"startHour\": 3, \"durationInHours\": 4, \"days\": [\"Monday\"]}]}'
")]
    UpdateMaintenanceWindows {
        /// Subscription ID
        id: u32,

        /// Maintenance mode: automatic or manual
        #[arg(long, value_parser = ["automatic", "manual"])]
        mode: Option<String>,

        /// Maintenance window in format 'day:HH:MM-day:HH:MM' (can be specified multiple times, up to 7)
        /// Example: 'monday:03:00-monday:07:00'
        #[arg(long = "window", value_name = "WINDOW")]
        windows: Vec<String>,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },

    /// List Active-Active regions
    ListAaRegions {
        /// Subscription ID
        id: u32,
    },

    /// Add region to Active-Active subscription
    #[command(after_help = "EXAMPLES:
    # Add a new region with required parameters
    redisctl cloud subscription add-aa-region 123 \\
      --region us-west-2 \\
      --deployment-cidr 10.1.0.0/24

    # Add region with existing VPC
    redisctl cloud subscription add-aa-region 123 \\
      --region eu-west-1 \\
      --deployment-cidr 10.2.0.0/24 \\
      --vpc-id vpc-abc123

    # Using JSON for advanced options
    redisctl cloud subscription add-aa-region 123 \\
      --data @region-config.json
")]
    AddAaRegion {
        /// Subscription ID
        id: u32,

        /// Cloud provider region name (e.g., us-west-2, eu-west-1)
        #[arg(long, required_unless_present = "data")]
        region: Option<String>,

        /// Deployment CIDR block (must be /24, e.g., 10.1.0.0/24)
        #[arg(long, required_unless_present = "data")]
        deployment_cidr: Option<String>,

        /// Existing VPC ID to use (optional, creates new VPC if not specified)
        #[arg(long)]
        vpc_id: Option<String>,

        /// RESP version (must be compatible with Redis version)
        #[arg(long)]
        resp_version: Option<String>,

        /// Dry run - create deployment plan without provisioning
        #[arg(long)]
        dry_run: bool,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete regions from Active-Active subscription
    #[command(after_help = "EXAMPLES:
    # Delete a single region
    redisctl cloud subscription delete-aa-regions 123 --region us-west-2

    # Delete multiple regions
    redisctl cloud subscription delete-aa-regions 123 \\
      --region us-west-2 --region eu-west-1

    # Dry run to preview deletion
    redisctl cloud subscription delete-aa-regions 123 \\
      --region us-west-2 --dry-run

    # Using JSON
    redisctl cloud subscription delete-aa-regions 123 \\
      --data '{\"regions\": [{\"region\": \"us-west-2\"}]}'
")]
    DeleteAaRegions {
        /// Subscription ID
        id: u32,

        /// Region to delete (can be specified multiple times)
        #[arg(long = "region", value_name = "REGION")]
        regions: Vec<String>,

        /// Dry run - create deletion plan without deleting
        #[arg(long)]
        dry_run: bool,

        /// Advanced: Full configuration as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,

        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

#[derive(Subcommand, Debug)]
pub enum CloudDatabaseCommands {
    /// List all databases across subscriptions
    List {
        /// Filter by subscription ID
        #[arg(long)]
        subscription: Option<u32>,
    },

    /// Get detailed database information
    Get {
        /// Database ID (format: subscription_id:database_id for fixed, or just database_id for flexible)
        id: String,
    },

    /// Create a new database
    #[command(after_help = "EXAMPLES:
    # Simple database - just name and size
    redisctl cloud database create --subscription 123 --name mydb --memory 1

    # Production database with high availability
    redisctl cloud database create \\
      --subscription 123 \\
      --name prod-cache \\
      --memory 10 \\
      --replication \\
      --data-persistence aof-every-1-second

    # Advanced: Mix flags with JSON for rare options
    redisctl cloud database create \\
      --subscription 123 \\
      --name mydb \\
      --memory 5 \\
      --data '{\"modules\": [{\"name\": \"RedisJSON\"}]}'
")]
    Create {
        /// Subscription ID
        #[arg(long)]
        subscription: u32,

        /// Database name (required unless using --data)
        /// Limited to 40 characters: letters, digits, hyphens
        /// Must start with letter, end with letter or digit
        #[arg(long)]
        name: Option<String>,

        /// Memory limit in GB (e.g., 1, 5, 10, 50)
        /// Alternative to --dataset-size
        #[arg(long, conflicts_with = "dataset_size")]
        memory: Option<f64>,

        /// Dataset size in GB (alternative to --memory)
        /// If replication enabled, total memory will be 2x this value
        #[arg(long, conflicts_with = "memory")]
        dataset_size: Option<f64>,

        /// Database protocol
        #[arg(long, value_parser = ["redis", "memcached"], default_value = "redis")]
        protocol: String,

        /// Enable replication for high availability
        #[arg(long)]
        replication: bool,

        /// Data persistence policy
        /// Options: none, aof-every-1-second, aof-every-write, snapshot-every-1-hour,
        ///          snapshot-every-6-hours, snapshot-every-12-hours
        #[arg(long)]
        data_persistence: Option<String>,

        /// Data eviction policy when memory limit reached
        /// Options: volatile-lru, volatile-ttl, volatile-random, allkeys-lru,
        ///          allkeys-lfu, allkeys-random, noeviction, volatile-lfu
        #[arg(long, default_value = "volatile-lru")]
        eviction_policy: String,

        /// Redis version (e.g., "7.2", "7.0", "6.2")
        #[arg(long)]
        redis_version: Option<String>,

        /// Enable OSS Cluster API support
        #[arg(long)]
        oss_cluster: bool,

        /// TCP port (10000-19999, auto-assigned if not specified)
        #[arg(long)]
        port: Option<i32>,

        /// Advanced: Full database configuration as JSON string or @file.json
        /// CLI flags take precedence over values in JSON
        #[arg(long)]
        data: Option<String>,

        /// Dry run - validate without creating the database
        #[arg(long)]
        dry_run: bool,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Update database configuration
    #[command(after_help = "EXAMPLES:
    # Update database name
    redisctl cloud database update 123:456 --name new-db-name

    # Increase memory
    redisctl cloud database update 123:456 --memory 10

    # Change eviction policy
    redisctl cloud database update 123:456 --eviction-policy allkeys-lru

    # Enable replication
    redisctl cloud database update 123:456 --replication

    # Multiple changes at once
    redisctl cloud database update 123:456 \\
      --memory 20 \\
      --data-persistence aof-every-1-second \\
      --wait

    # Advanced: Use JSON for complex updates
    redisctl cloud database update 123:456 \\
      --data '{\"alerts\": [{\"name\": \"dataset-size\", \"value\": 80}]}'
")]
    Update {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// New database name
        #[arg(long)]
        name: Option<String>,

        /// Memory limit in GB
        #[arg(long)]
        memory: Option<f64>,

        /// Enable replication for high availability
        #[arg(long)]
        replication: Option<bool>,

        /// Data persistence policy
        /// Options: none, aof-every-1-second, aof-every-write, snapshot-every-1-hour,
        ///          snapshot-every-6-hours, snapshot-every-12-hours
        #[arg(long)]
        data_persistence: Option<String>,

        /// Data eviction policy when memory limit reached
        /// Options: volatile-lru, volatile-ttl, volatile-random, allkeys-lru,
        ///          allkeys-lfu, allkeys-random, noeviction, volatile-lfu
        #[arg(long)]
        eviction_policy: Option<String>,

        /// Enable OSS Cluster API support
        #[arg(long)]
        oss_cluster: Option<bool>,

        /// Regular expression for allowed keys
        #[arg(long)]
        regex_rules: Option<String>,

        /// Advanced: Full update configuration as JSON string or @file.json
        /// CLI flags take precedence over values in JSON
        #[arg(long)]
        data: Option<String>,

        /// Dry run - validate without applying changes
        #[arg(long)]
        dry_run: bool,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete a database
    Delete {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Dry run - show what would be deleted without deleting
        #[arg(long)]
        dry_run: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Get database backup status
    BackupStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Trigger manual database backup
    Backup {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Get database import status
    ImportStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Import data into database
    #[command(after_help = "EXAMPLES:
    # Import from S3
    redisctl cloud database import 123:456 \\
      --source-type s3 \\
      --import-from-uri s3://bucket/backup.rdb \\
      --wait

    # Import from FTP
    redisctl cloud database import 123:456 \\
      --source-type ftp \\
      --import-from-uri ftp://user:pass@server/backup.rdb

    # Import from HTTP
    redisctl cloud database import 123:456 \\
      --source-type http \\
      --import-from-uri https://example.com/backup.rdb

    # Import from AWS S3 with credentials
    redisctl cloud database import 123:456 \\
      --source-type aws-s3 \\
      --import-from-uri s3://bucket/backup.rdb \\
      --aws-access-key AKIA... \\
      --aws-secret-key secret

    # Import from Google Cloud Storage
    redisctl cloud database import 123:456 \\
      --source-type gcs \\
      --import-from-uri gs://bucket/backup.rdb

    # Advanced: Use JSON for complex configurations
    redisctl cloud database import 123:456 \\
      --data @import-config.json
")]
    Import {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// Source type: http, redis, ftp, aws-s3, gcs, azure-blob-storage
        #[arg(long)]
        source_type: Option<String>,

        /// URI to import from (S3 URL, HTTP URL, FTP URL, etc.)
        #[arg(long)]
        import_from_uri: Option<String>,

        /// AWS access key ID (for aws-s3 source type)
        #[arg(long)]
        aws_access_key: Option<String>,

        /// AWS secret access key (for aws-s3 source type)
        #[arg(long)]
        aws_secret_key: Option<String>,

        /// GCS client email (for gcs source type)
        #[arg(long)]
        gcs_client_email: Option<String>,

        /// GCS private key (for gcs source type)
        #[arg(long)]
        gcs_private_key: Option<String>,

        /// Azure storage account name (for azure-blob-storage source type)
        #[arg(long)]
        azure_account_name: Option<String>,

        /// Azure storage account key (for azure-blob-storage source type)
        #[arg(long)]
        azure_account_key: Option<String>,

        /// Advanced: Full import configuration as JSON string or @file.json
        /// CLI flags take precedence over values in JSON
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Get database certificate
    GetCertificate {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Get slow query log
    SlowLog {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Maximum number of entries to return
        #[arg(long, default_value = "100")]
        limit: u32,
        /// Offset for pagination
        #[arg(long, default_value = "0")]
        offset: u32,
    },

    /// List database tags
    ListTags {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Add a tag to database
    AddTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key
        #[arg(long)]
        key: String,
        /// Tag value
        #[arg(long)]
        value: String,
    },

    /// Update database tags
    #[command(after_help = "EXAMPLES:
    # Set multiple tags at once
    redisctl cloud database update-tags 123:456 \\
      --tag env=production \\
      --tag team=backend \\
      --tag cost-center=12345

    # Replace all tags using JSON
    redisctl cloud database update-tags 123:456 \\
      --data '{\"tags\": [{\"key\": \"env\", \"value\": \"prod\"}]}'
")]
    UpdateTags {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// Tag in key=value format (repeatable)
        #[arg(long = "tag", value_name = "KEY=VALUE")]
        tags: Vec<String>,

        /// Tags as JSON string or @file.json
        #[arg(long)]
        data: Option<String>,
    },

    /// Update a single tag value
    UpdateTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key
        #[arg(long)]
        key: String,
        /// Tag value
        #[arg(long)]
        value: String,
    },

    /// Delete a tag from database
    DeleteTag {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Tag key to delete
        #[arg(long)]
        key: String,
    },

    /// Flush database (deletes all data)
    Flush {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
    },

    /// Flush Active-Active database
    FlushCrdb {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
    },

    /// Update Active-Active database regions
    #[command(
        name = "update-aa-regions",
        after_help = "EXAMPLES:
    # Update database name
    redisctl cloud database update-aa-regions 123:456 --name new-db-name --wait

    # Update memory limit
    redisctl cloud database update-aa-regions 123:456 --memory 10 --wait

    # Update global password for all regions
    redisctl cloud database update-aa-regions 123:456 --global-password newsecret

    # Update data persistence
    redisctl cloud database update-aa-regions 123:456 \\
      --global-data-persistence aof-every-1-second

    # Update eviction policy
    redisctl cloud database update-aa-regions 123:456 \\
      --eviction-policy volatile-lru

    # Enable TLS
    redisctl cloud database update-aa-regions 123:456 --enable-tls true

    # Dry run to validate changes
    redisctl cloud database update-aa-regions 123:456 --name test --dry-run

    # Use JSON for complex per-region settings
    redisctl cloud database update-aa-regions 123:456 \\
      --data @regions.json
"
    )]
    UpdateAaRegions {
        /// Database ID (format: subscription_id:database_id)
        id: String,

        /// New database name
        #[arg(long)]
        name: Option<String>,

        /// Memory limit in GB (total including replication)
        #[arg(long)]
        memory: Option<f64>,

        /// Dataset size in GB (alternative to --memory)
        #[arg(long)]
        dataset_size: Option<f64>,

        /// Data persistence for all regions (disabled, aof-every-1-second, aof-every-write, snapshot-every-1-hour, snapshot-every-6-hours, snapshot-every-12-hours)
        #[arg(long)]
        global_data_persistence: Option<String>,

        /// Password for all regions
        #[arg(long)]
        global_password: Option<String>,

        /// Data eviction policy
        #[arg(long)]
        eviction_policy: Option<String>,

        /// Enable/disable TLS
        #[arg(long)]
        enable_tls: Option<bool>,

        /// Enable OSS Cluster API
        #[arg(long)]
        oss_cluster: Option<bool>,

        /// Dry run - validate without applying changes
        #[arg(long)]
        dry_run: bool,

        /// JSON data for complex per-region settings (string or @filename)
        #[arg(long)]
        data: Option<String>,

        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Get available Redis versions for upgrade
    AvailableVersions {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Get Redis version upgrade status
    UpgradeStatus {
        /// Database ID (format: subscription_id:database_id)
        id: String,
    },

    /// Upgrade Redis version
    UpgradeRedis {
        /// Database ID (format: subscription_id:database_id)
        id: String,
        /// Target Redis version
        #[arg(long)]
        version: String,
    },
}

#[derive(Subcommand, Debug)]
pub enum CloudUserCommands {
    /// List all users
    List,

    /// Get detailed user information
    Get {
        /// User ID
        id: u32,
    },

    /// Update user information
    Update {
        /// User ID
        id: u32,
        /// New name for the user
        #[arg(long)]
        name: Option<String>,
        /// New role for the user (owner, manager, viewer, billing_admin)
        #[arg(long)]
        role: Option<String>,
        /// Enable/disable email alerts
        #[arg(long)]
        alerts_email: Option<bool>,
        /// Enable/disable SMS alerts
        #[arg(long)]
        alerts_sms: Option<bool>,
    },

    /// Delete a user
    Delete {
        /// User ID
        id: u32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation arguments
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}

#[derive(Subcommand, Debug)]
pub enum CloudAclCommands {
    // Redis ACL Rules
    /// List all Redis ACL rules
    #[command(name = "list-redis-rules")]
    ListRedisRules,

    /// Create a new Redis ACL rule
    #[command(name = "create-redis-rule")]
    CreateRedisRule {
        /// Rule name
        #[arg(long)]
        name: String,
        /// Redis ACL rule (e.g., "+@read")
        #[arg(long)]
        rule: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Update an existing Redis ACL rule
    #[command(name = "update-redis-rule")]
    UpdateRedisRule {
        /// Rule ID
        id: i32,
        /// New rule name
        #[arg(long)]
        name: Option<String>,
        /// New Redis ACL rule
        #[arg(long)]
        rule: Option<String>,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete a Redis ACL rule
    #[command(name = "delete-redis-rule")]
    DeleteRedisRule {
        /// Rule ID
        id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // ACL Roles
    /// List all ACL roles
    #[command(name = "list-roles")]
    ListRoles,

    /// Create a new ACL role
    #[command(name = "create-role")]
    CreateRole {
        /// Role name
        #[arg(long)]
        name: String,
        /// Redis rules (JSON array or single rule ID)
        #[arg(long, value_name = "JSON|ID")]
        redis_rules: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Update an existing ACL role
    #[command(name = "update-role")]
    UpdateRole {
        /// Role ID
        id: i32,
        /// New role name
        #[arg(long)]
        name: Option<String>,
        /// New Redis rules (JSON array or single rule ID)
        #[arg(long, value_name = "JSON|ID")]
        redis_rules: Option<String>,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete an ACL role
    #[command(name = "delete-role")]
    DeleteRole {
        /// Role ID
        id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    // ACL Users
    /// List all ACL users
    #[command(name = "list-acl-users")]
    ListAclUsers,

    /// Get ACL user details
    #[command(name = "get-acl-user")]
    GetAclUser {
        /// ACL user ID
        id: i32,
    },

    /// Create a new ACL user
    #[command(name = "create-acl-user")]
    CreateAclUser {
        /// Username
        #[arg(long)]
        name: String,
        /// Role name
        #[arg(long)]
        role: String,
        /// Password
        #[arg(long)]
        password: String,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Update an ACL user
    #[command(name = "update-acl-user")]
    UpdateAclUser {
        /// ACL user ID
        id: i32,
        /// New username
        #[arg(long)]
        name: Option<String>,
        /// New role name
        #[arg(long)]
        role: Option<String>,
        /// New password
        #[arg(long)]
        password: Option<String>,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },

    /// Delete an ACL user
    #[command(name = "delete-acl-user")]
    DeleteAclUser {
        /// ACL user ID
        id: i32,
        /// Skip confirmation prompt
        #[arg(long)]
        force: bool,
        /// Async operation options
        #[command(flatten)]
        async_ops: crate::commands::cloud::async_utils::AsyncOperationArgs,
    },
}