unifly 0.6.0

CLI and TUI for managing UniFi network controllers
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
//! Clap derive structures for the `unifly` CLI.
//!
//! Defines the complete command tree, global flags, and shared types.

use std::path::PathBuf;

use clap::{Args, Parser, Subcommand, ValueEnum};

// ── Top-Level CLI ────────────────────────────────────────────────────

/// unifly -- kubectl-style CLI for UniFi network management
#[derive(Debug, Parser)]
#[command(
    name = "unifly",
    version,
    about = "Manage UniFi networks from the command line",
    long_about = "A powerful CLI for administering UniFi network controllers.\n\n\
        Uses the official Integration API (v10.1.84) as primary interface,\n\
        with legacy API fallback for features not yet in the official spec.",
    propagate_version = true,
    subcommand_required = true,
    arg_required_else_help = true
)]
pub struct Cli {
    #[command(flatten)]
    pub global: GlobalOpts,

    #[command(subcommand)]
    pub command: Command,
}

// ── Global Options ───────────────────────────────────────────────────

#[derive(Debug, Args)]
pub struct GlobalOpts {
    /// Controller profile to use
    #[arg(long, short = 'p', env = "UNIFI_PROFILE", global = true)]
    pub profile: Option<String>,

    /// Controller URL (overrides profile)
    #[arg(long, short = 'c', env = "UNIFI_URL", global = true)]
    pub controller: Option<String>,

    /// Site name or UUID
    #[arg(long, short = 's', env = "UNIFI_SITE", global = true)]
    pub site: Option<String>,

    /// Integration API key
    #[arg(long, env = "UNIFI_API_KEY", global = true, hide_env = true)]
    pub api_key: Option<String>,

    /// Output format
    #[arg(
        long,
        short = 'o',
        env = "UNIFI_OUTPUT",
        default_value = "table",
        global = true
    )]
    pub output: OutputFormat,

    /// When to use color output
    #[arg(long, default_value = "auto", global = true)]
    pub color: ColorMode,

    /// Increase verbosity (-v, -vv, -vvv)
    #[arg(long, short = 'v', action = clap::ArgAction::Count, global = true)]
    pub verbose: u8,

    /// Suppress non-error output
    #[arg(long, short = 'q', global = true)]
    pub quiet: bool,

    /// Skip confirmation prompts
    #[arg(long, short = 'y', global = true)]
    pub yes: bool,

    /// Accept self-signed TLS certificates
    #[arg(long, short = 'k', env = "UNIFI_INSECURE", global = true)]
    pub insecure: bool,

    /// Request timeout in seconds
    #[arg(long, env = "UNIFI_TIMEOUT", default_value = "30", global = true)]
    pub timeout: u64,
}

// ── Output & Color Enums ─────────────────────────────────────────────

#[derive(Debug, Clone, ValueEnum)]
pub enum OutputFormat {
    /// Pretty table (default, interactive)
    Table,
    /// Pretty-printed JSON
    Json,
    /// Compact single-line JSON
    JsonCompact,
    /// YAML
    Yaml,
    /// Plain text, one value per line (scripting)
    Plain,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum ColorMode {
    /// Auto-detect (color if terminal is interactive)
    Auto,
    /// Always emit color codes
    Always,
    /// Never emit color codes
    Never,
}

// ── Top-Level Command Enum ───────────────────────────────────────────

#[derive(Debug, Subcommand)]
pub enum Command {
    /// Manage ACL rules
    Acl(AclArgs),

    /// Administrator management
    Admin(AdminArgs),

    /// Manage alarms
    Alarms(AlarmsArgs),

    /// Manage connected clients
    #[command(alias = "cl")]
    Clients(ClientsArgs),

    /// Generate shell completions
    Completions(CompletionsArgs),

    /// Manage CLI configuration and profiles
    Config(ConfigArgs),

    /// List available country codes
    Countries,

    /// Manage adopted and pending devices
    #[command(alias = "dev", alias = "d")]
    Devices(DevicesArgs),

    /// Manage DNS policies (local DNS records)
    Dns(DnsArgs),

    /// DPI reference data
    Dpi(DpiArgs),

    /// View and stream events
    Events(EventsArgs),

    /// Manage firewall policies and zones
    #[command(alias = "fw")]
    Firewall(FirewallArgs),

    /// Manage hotspot vouchers
    Hotspot(HotspotArgs),

    /// Manage networks and VLANs
    #[command(alias = "net", alias = "n")]
    Networks(NetworksArgs),

    /// View RADIUS profiles
    Radius(RadiusArgs),

    /// Manage sites
    Sites(SitesArgs),

    /// Query statistics and reports
    Stats(StatsArgs),

    /// System operations and info
    #[command(alias = "sys")]
    System(SystemArgs),

    /// Show network topology (devices, clients, connections)
    #[command(alias = "topo")]
    Topology,

    /// Manage traffic matching lists
    TrafficLists(TrafficListsArgs),

    /// View VPN servers and tunnels
    Vpn(VpnArgs),

    /// View WAN interfaces
    Wans(WansArgs),

    /// Manage WiFi broadcasts (SSIDs)
    #[command(alias = "w")]
    Wifi(WifiArgs),

    /// Launch the real-time terminal dashboard
    #[cfg(feature = "tui")]
    Tui(TuiArgs),
}

// ── TUI Arguments ───────────────────────────────────────────────────

/// Arguments for the `tui` subcommand (real-time terminal dashboard).
#[cfg(feature = "tui")]
#[derive(Debug, Args)]
pub struct TuiArgs {
    /// Theme name (e.g., nord, dracula, silkcircuit-neon)
    #[arg(long, env = "UNIFLY_THEME")]
    pub theme: Option<String>,

    /// Log file path
    #[arg(long, default_value = "/tmp/unifly-tui.log")]
    pub log_file: std::path::PathBuf,
}

// ── Shared List Arguments ────────────────────────────────────────────

/// Shared pagination and filtering arguments for all list commands.
#[derive(Debug, Args)]
pub struct ListArgs {
    /// Max results per page (1-200)
    #[arg(long, short = 'l', default_value = "25")]
    pub limit: u32,

    /// Pagination offset
    #[arg(long, default_value = "0")]
    pub offset: u32,

    /// Fetch all pages automatically
    #[arg(long, short = 'a')]
    pub all: bool,

    /// Filter expression (Integration API syntax)
    /// Examples: "name.eq('MyNetwork')", "state.in('ONLINE','OFFLINE')"
    #[arg(long, short = 'f')]
    pub filter: Option<String>,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  DEVICES
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct DevicesArgs {
    #[command(subcommand)]
    pub command: DevicesCommand,
}

#[derive(Debug, Subcommand)]
pub enum DevicesCommand {
    /// List adopted devices
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get adopted device details
    Get {
        /// Device ID (UUID) or MAC address
        device: String,
    },

    /// Adopt a pending device
    Adopt {
        /// MAC address of the device to adopt
        #[arg(value_name = "MAC")]
        mac: String,

        /// Ignore device limit on the site
        #[arg(long)]
        ignore_limit: bool,
    },

    /// Remove (unadopt) a device
    Remove {
        /// Device ID (UUID) or MAC address
        device: String,
    },

    /// Restart a device
    Restart {
        /// Device ID (UUID) or MAC address
        device: String,
    },

    /// Toggle locate LED (blink to identify device)
    Locate {
        /// Device MAC address
        device: String,

        /// Turn locate on (default) or off
        #[arg(long, default_value = "true", action = clap::ArgAction::Set)]
        on: bool,
    },

    /// Power-cycle a PoE port
    PortCycle {
        /// Device ID (UUID) or MAC address
        device: String,

        /// Port index to power-cycle
        #[arg(value_name = "PORT_IDX")]
        port: u32,
    },

    /// Get real-time device statistics
    Stats {
        /// Device ID (UUID) or MAC address
        device: String,
    },

    /// List devices pending adoption
    Pending(ListArgs),

    /// Upgrade device firmware (legacy API)
    Upgrade {
        /// Device MAC address
        device: String,

        /// External firmware URL (optional)
        #[arg(long)]
        url: Option<String>,
    },

    /// Force re-provision device configuration (legacy API)
    Provision {
        /// Device MAC address
        device: String,
    },

    /// Run WAN speed test (legacy API, gateway only)
    Speedtest,

    /// List device tags
    Tags(ListArgs),
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  CLIENTS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct ClientsArgs {
    #[command(subcommand)]
    pub command: ClientsCommand,
}

#[derive(Debug, Subcommand)]
pub enum ClientsCommand {
    /// List connected clients
    #[command(alias = "ls")]
    List(ListArgs),

    /// Find clients by IP, name, hostname, or MAC (case-insensitive substring match)
    #[command(alias = "search")]
    Find {
        /// Search query (matches against IP, name, hostname, MAC)
        query: String,
    },

    /// Get connected client details
    Get {
        /// Client ID (UUID) or MAC address
        client: String,
    },

    /// Authorize guest access
    Authorize {
        /// Client ID (UUID)
        client: String,

        /// Authorization duration in minutes
        #[arg(long, required = true)]
        minutes: u32,

        /// Data usage limit in MB
        #[arg(long)]
        data_limit_mb: Option<u64>,

        /// Download rate limit in Kbps
        #[arg(long)]
        rx_limit_kbps: Option<u64>,

        /// Upload rate limit in Kbps
        #[arg(long)]
        tx_limit_kbps: Option<u64>,
    },

    /// Revoke guest access
    Unauthorize {
        /// Client ID (UUID)
        client: String,
    },

    /// Block a client from connecting (legacy API)
    Block {
        /// Client MAC address
        mac: String,
    },

    /// Unblock a previously blocked client (legacy API)
    Unblock {
        /// Client MAC address
        mac: String,
    },

    /// Disconnect/reconnect a wireless client (legacy API)
    Kick {
        /// Client MAC address
        mac: String,
    },

    /// Forget a client from controller history (legacy API)
    Forget {
        /// Client MAC address
        mac: String,
    },

    /// Set a fixed IP (DHCP reservation) for a client (legacy API)
    #[command(alias = "reserve")]
    SetIp {
        /// Client MAC address
        mac: String,

        /// IPv4 address to reserve
        #[arg(long)]
        ip: String,

        /// Network name or ID (auto-detected from IP if omitted)
        #[arg(long)]
        network: Option<String>,
    },

    /// Remove a fixed IP (DHCP reservation) from a client (legacy API)
    #[command(alias = "unreserve")]
    RemoveIp {
        /// Client MAC address
        mac: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  NETWORKS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct NetworksArgs {
    #[command(subcommand)]
    pub command: NetworksCommand,
}

#[derive(Debug, Subcommand)]
pub enum NetworksCommand {
    /// List all networks
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get network details
    Get {
        /// Network ID (UUID)
        id: String,
    },

    /// Create a new network
    Create {
        /// Network name
        #[arg(long, required_unless_present = "from_file")]
        name: Option<String>,

        /// Management type: gateway, switch, or unmanaged
        #[arg(long, required_unless_present = "from_file", value_enum)]
        management: Option<NetworkManagement>,

        /// VLAN ID (1-4009)
        #[arg(long, value_parser = clap::value_parser!(u16).range(1..=4009))]
        vlan: Option<u16>,

        /// Enable the network (default: true)
        #[arg(long, default_value = "true", action = clap::ArgAction::Set)]
        enabled: bool,

        /// IPv4 host address with prefix (e.g., 192.168.1.1/24)
        #[arg(long)]
        ipv4_host: Option<String>,

        /// Enable DHCP server
        #[arg(long)]
        dhcp: bool,

        /// DHCP range start
        #[arg(long)]
        dhcp_start: Option<String>,

        /// DHCP range end
        #[arg(long)]
        dhcp_stop: Option<String>,

        /// DHCP lease time in seconds
        #[arg(long)]
        dhcp_lease: Option<u32>,

        /// Firewall zone ID to assign
        #[arg(long)]
        zone: Option<String>,

        /// Enable network isolation
        #[arg(long)]
        isolated: bool,

        /// Enable internet access (gateway managed only)
        #[arg(long, default_value = "true", action = clap::ArgAction::Set)]
        internet: bool,

        /// Create from JSON file (overrides individual flags)
        #[arg(long, short = 'F', conflicts_with_all = &["name", "management"])]
        from_file: Option<PathBuf>,
    },

    /// Update an existing network
    Update {
        /// Network ID (UUID)
        id: String,

        /// Load full update payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,

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

        /// Enable/disable the network
        #[arg(long, action = clap::ArgAction::Set)]
        enabled: Option<bool>,

        /// VLAN ID (1-4009)
        #[arg(long, value_parser = clap::value_parser!(u16).range(1..=4009))]
        vlan: Option<u16>,
    },

    /// Delete a network
    Delete {
        /// Network ID (UUID)
        id: String,

        /// Force delete even if referenced
        #[arg(long)]
        force: bool,
    },

    /// Show network cross-references (what uses this network)
    Refs {
        /// Network ID (UUID)
        id: String,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum NetworkManagement {
    /// Gateway-managed network (full IP/DHCP/NAT)
    Gateway,
    /// Switch-managed (L3 switch) network
    Switch,
    /// Unmanaged (VLAN only, no IP management)
    Unmanaged,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  WIFI
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct WifiArgs {
    #[command(subcommand)]
    pub command: WifiCommand,
}

#[derive(Debug, Subcommand)]
pub enum WifiCommand {
    /// List WiFi broadcasts
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get WiFi broadcast details
    Get {
        /// WiFi broadcast ID (UUID)
        id: String,
    },

    /// Create a WiFi broadcast
    Create {
        /// SSID name
        #[arg(long, required_unless_present = "from_file")]
        name: Option<String>,

        /// Broadcast type
        #[arg(long, default_value = "standard", value_enum)]
        broadcast_type: WifiBroadcastType,

        /// Network to associate (UUID or 'native')
        #[arg(long, required_unless_present = "from_file")]
        network: Option<String>,

        /// Security mode
        #[arg(long, default_value = "wpa2-personal", value_enum)]
        security: WifiSecurity,

        /// WPA passphrase (8-63 characters)
        #[arg(long)]
        passphrase: Option<String>,

        /// Broadcasting frequencies (2.4, 5, 6 GHz)
        #[arg(long, value_delimiter = ',')]
        frequencies: Option<Vec<f32>>,

        /// Hide SSID name
        #[arg(long)]
        hidden: bool,

        /// Enable band steering (standard type only)
        #[arg(long)]
        band_steering: bool,

        /// Enable fast roaming
        #[arg(long)]
        fast_roaming: bool,

        /// Create from JSON file
        #[arg(long, short = 'F', conflicts_with_all = &["name", "network"])]
        from_file: Option<PathBuf>,
    },

    /// Update a WiFi broadcast
    Update {
        /// WiFi broadcast ID (UUID)
        id: String,

        /// Load full payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,

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

        /// Update passphrase
        #[arg(long)]
        passphrase: Option<String>,

        /// Enable/disable
        #[arg(long, action = clap::ArgAction::Set)]
        enabled: Option<bool>,
    },

    /// Delete a WiFi broadcast
    Delete {
        /// WiFi broadcast ID (UUID)
        id: String,

        /// Force delete even if referenced
        #[arg(long)]
        force: bool,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum WifiBroadcastType {
    /// Full-featured WiFi with band steering, MLO, hotspot
    Standard,
    /// Simplified IoT-focused WiFi
    IotOptimized,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum WifiSecurity {
    Open,
    Wpa2Personal,
    Wpa3Personal,
    Wpa2Wpa3Personal,
    Wpa2Enterprise,
    Wpa3Enterprise,
    Wpa2Wpa3Enterprise,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  FIREWALL
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct FirewallArgs {
    #[command(subcommand)]
    pub command: FirewallCommand,
}

#[derive(Debug, Subcommand)]
#[allow(clippy::large_enum_variant)]
pub enum FirewallCommand {
    /// Manage firewall policies
    Policies(FirewallPoliciesArgs),

    /// Manage firewall zones
    Zones(FirewallZonesArgs),
}

// --- Firewall Policies ---

#[derive(Debug, Args)]
pub struct FirewallPoliciesArgs {
    #[command(subcommand)]
    pub command: FirewallPoliciesCommand,
}

#[derive(Debug, Subcommand)]
pub enum FirewallPoliciesCommand {
    /// List all firewall policies
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get a specific firewall policy
    Get {
        /// Firewall policy ID (UUID)
        id: String,
    },

    /// Create a firewall policy
    Create {
        /// Policy name
        #[arg(long, required_unless_present = "from_file")]
        name: Option<String>,

        /// Action: allow, block, or reject
        #[arg(long, required_unless_present = "from_file", value_enum)]
        action: Option<FirewallAction>,

        /// Source zone ID (UUID)
        #[arg(long, required_unless_present = "from_file")]
        source_zone: Option<String>,

        /// Destination zone ID (UUID)
        #[arg(long, required_unless_present = "from_file")]
        dest_zone: Option<String>,

        /// Enable the policy (default: true)
        #[arg(long, default_value = "true", action = clap::ArgAction::Set)]
        enabled: bool,

        /// Policy description
        #[arg(long)]
        description: Option<String>,

        /// Enable logging for matched traffic
        #[arg(long)]
        logging: bool,

        /// Source network IDs or names (comma-separated)
        #[arg(long, value_delimiter = ',')]
        src_network: Option<Vec<String>>,

        /// Source IP addresses (IPs, CIDRs, or ranges like "10.0.0.1-10.0.0.100")
        #[arg(long, value_delimiter = ',')]
        src_ip: Option<Vec<String>>,

        /// Source ports (single ports or ranges like "8000-9000")
        #[arg(long, value_delimiter = ',')]
        src_port: Option<Vec<String>>,

        /// Destination network IDs or names (comma-separated)
        #[arg(long, value_delimiter = ',')]
        dst_network: Option<Vec<String>>,

        /// Destination IP addresses (IPs, CIDRs, or ranges)
        #[arg(long, value_delimiter = ',')]
        dst_ip: Option<Vec<String>>,

        /// Destination ports (single ports or ranges)
        #[arg(long, value_delimiter = ',')]
        dst_port: Option<Vec<String>>,

        /// Connection states to match (comma-separated: NEW, ESTABLISHED, RELATED, INVALID)
        #[arg(long, value_delimiter = ',')]
        states: Option<Vec<String>>,

        /// IP version: IPV4_ONLY, IPV6_ONLY, IPV4_AND_IPV6
        #[arg(long)]
        ip_version: Option<String>,

        /// Create from JSON file (complex policies)
        #[arg(long, short = 'F', conflicts_with_all = &["name", "action", "source_zone", "dest_zone"])]
        from_file: Option<PathBuf>,
    },

    /// Update a firewall policy
    Update {
        /// Firewall policy ID (UUID)
        id: String,

        /// Source network IDs or names (comma-separated)
        #[arg(long, value_delimiter = ',')]
        src_network: Option<Vec<String>>,

        /// Source IP addresses (IPs, CIDRs, or ranges)
        #[arg(long, value_delimiter = ',')]
        src_ip: Option<Vec<String>>,

        /// Source ports
        #[arg(long, value_delimiter = ',')]
        src_port: Option<Vec<String>>,

        /// Destination network IDs or names (comma-separated)
        #[arg(long, value_delimiter = ',')]
        dst_network: Option<Vec<String>>,

        /// Destination IP addresses (IPs, CIDRs, or ranges)
        #[arg(long, value_delimiter = ',')]
        dst_ip: Option<Vec<String>>,

        /// Destination ports
        #[arg(long, value_delimiter = ',')]
        dst_port: Option<Vec<String>>,

        /// Connection states to match
        #[arg(long, value_delimiter = ',')]
        states: Option<Vec<String>>,

        /// IP version: IPV4_ONLY, IPV6_ONLY, IPV4_AND_IPV6
        #[arg(long)]
        ip_version: Option<String>,

        /// Load full payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,
    },

    /// Patch a firewall policy (quick toggle enabled/logging)
    Patch {
        /// Firewall policy ID (UUID)
        id: String,

        /// Enable or disable the policy
        #[arg(long, action = clap::ArgAction::Set)]
        enabled: Option<bool>,

        /// Enable or disable logging for matched traffic
        #[arg(long, action = clap::ArgAction::Set)]
        logging: Option<bool>,
    },

    /// Delete a firewall policy
    Delete {
        /// Firewall policy ID (UUID)
        id: String,
    },

    /// Get or set policy ordering between zones
    Reorder {
        /// Source zone ID (UUID)
        #[arg(long, required = true)]
        source_zone: String,

        /// Destination zone ID (UUID)
        #[arg(long, required = true)]
        dest_zone: String,

        /// Get current ordering (default if --set not provided)
        #[arg(long, conflicts_with = "set")]
        get: bool,

        /// Set ordering from comma-separated policy IDs
        #[arg(long, value_delimiter = ',')]
        set: Option<Vec<String>>,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum FirewallAction {
    Allow,
    Block,
    Reject,
}

// --- Firewall Zones ---

#[derive(Debug, Args)]
pub struct FirewallZonesArgs {
    #[command(subcommand)]
    pub command: FirewallZonesCommand,
}

#[derive(Debug, Subcommand)]
pub enum FirewallZonesCommand {
    /// List all firewall zones
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get a specific firewall zone
    Get {
        /// Zone ID (UUID)
        id: String,
    },

    /// Create a custom firewall zone
    Create {
        /// Zone name
        #[arg(long, required = true)]
        name: String,

        /// Network IDs to attach (comma-separated UUIDs)
        #[arg(long, value_delimiter = ',')]
        networks: Option<Vec<String>>,
    },

    /// Update a firewall zone
    Update {
        /// Zone ID (UUID)
        id: String,

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

        /// Network IDs to attach (replaces existing)
        #[arg(long, value_delimiter = ',')]
        networks: Option<Vec<String>>,
    },

    /// Delete a custom firewall zone
    Delete {
        /// Zone ID (UUID)
        id: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  ACL
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct AclArgs {
    #[command(subcommand)]
    pub command: AclCommand,
}

#[derive(Debug, Subcommand)]
pub enum AclCommand {
    /// List ACL rules
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get an ACL rule
    Get {
        /// ACL rule ID (UUID)
        id: String,
    },

    /// Create an ACL rule
    Create {
        /// Rule name
        #[arg(long, required_unless_present = "from_file")]
        name: Option<String>,

        /// Rule type: ipv4 or mac
        #[arg(long, required_unless_present = "from_file", value_enum)]
        rule_type: Option<AclRuleType>,

        /// Action: allow or block
        #[arg(long, required_unless_present = "from_file", value_enum)]
        action: Option<AclAction>,

        /// Source zone ID (UUID)
        #[arg(long, required_unless_present = "from_file")]
        source_zone: Option<String>,

        /// Destination zone ID (UUID)
        #[arg(long, required_unless_present = "from_file")]
        dest_zone: Option<String>,

        /// Optional IP protocol filter (e.g. TCP, UDP, ICMP)
        #[arg(long)]
        protocol: Option<String>,

        /// Optional source port/range (e.g. 80 or 1000-2000)
        #[arg(long)]
        source_port: Option<String>,

        /// Optional destination port/range (e.g. 443 or 3000-4000)
        #[arg(long)]
        destination_port: Option<String>,

        /// Create from JSON file
        #[arg(long, short = 'F', conflicts_with_all = &["name", "rule_type", "source_zone", "dest_zone", "protocol", "source_port", "destination_port"])]
        from_file: Option<PathBuf>,
    },

    /// Update an ACL rule
    Update {
        /// ACL rule ID (UUID)
        id: String,

        /// Load full payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,
    },

    /// Delete an ACL rule
    Delete {
        /// ACL rule ID (UUID)
        id: String,
    },

    /// Get or set ACL rule ordering
    Reorder {
        /// Get current ordering
        #[arg(long, conflicts_with = "set")]
        get: bool,

        /// Set ordering from comma-separated rule IDs
        #[arg(long, value_delimiter = ',')]
        set: Option<Vec<String>>,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum AclRuleType {
    /// IP-based ACL rule (IPv4 with protocol filters)
    Ipv4,
    /// MAC address-based ACL rule
    Mac,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum AclAction {
    Allow,
    Block,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  DNS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct DnsArgs {
    #[command(subcommand)]
    pub command: DnsCommand,
}

#[derive(Debug, Subcommand)]
pub enum DnsCommand {
    /// List DNS policies
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get a DNS policy
    Get {
        /// DNS policy ID (UUID)
        id: String,
    },

    /// Create a DNS policy
    Create {
        /// Record type
        #[arg(long, required_unless_present = "from_file", value_enum)]
        record_type: Option<DnsRecordType>,

        /// Domain name
        #[arg(long, required_unless_present = "from_file")]
        domain: Option<String>,

        /// Target value (IP address, target domain, mail server, etc.)
        #[arg(long, required_unless_present = "from_file")]
        value: Option<String>,

        /// TTL in seconds (0-86400)
        #[arg(long, default_value = "3600", value_parser = clap::value_parser!(u32).range(0..=86400))]
        ttl: u32,

        /// MX priority (MX records only)
        #[arg(long)]
        priority: Option<u16>,

        /// Create from JSON file
        #[arg(long, short = 'F', conflicts_with_all = &["record_type", "domain"])]
        from_file: Option<PathBuf>,
    },

    /// Update a DNS policy
    Update {
        /// DNS policy ID (UUID)
        id: String,

        /// Load full payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,
    },

    /// Delete a DNS policy
    Delete {
        /// DNS policy ID (UUID)
        id: String,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum DnsRecordType {
    A,
    Aaaa,
    Cname,
    Mx,
    Txt,
    Srv,
    Forward,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  TRAFFIC MATCHING LISTS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct TrafficListsArgs {
    #[command(subcommand)]
    pub command: TrafficListsCommand,
}

#[derive(Debug, Subcommand)]
pub enum TrafficListsCommand {
    /// List traffic matching lists
    #[command(alias = "ls")]
    List(ListArgs),

    /// Get a traffic matching list
    Get {
        /// Traffic list ID (UUID)
        id: String,
    },

    /// Create a traffic matching list
    Create {
        /// List name
        #[arg(long, required_unless_present = "from_file")]
        name: Option<String>,

        /// List type
        #[arg(long, required_unless_present = "from_file", value_enum)]
        list_type: Option<TrafficListType>,

        /// Items (comma-separated ports, IPs, or subnets)
        #[arg(long, value_delimiter = ',', required_unless_present = "from_file")]
        items: Option<Vec<String>>,

        /// Create from JSON file
        #[arg(long, short = 'F', conflicts_with_all = &["name", "list_type"])]
        from_file: Option<PathBuf>,
    },

    /// Update a traffic matching list
    Update {
        /// Traffic list ID (UUID)
        id: String,

        /// Load full payload from JSON file
        #[arg(long, short = 'F')]
        from_file: Option<PathBuf>,
    },

    /// Delete a traffic matching list
    Delete {
        /// Traffic list ID (UUID)
        id: String,
    },
}

#[derive(Debug, Clone, ValueEnum)]
pub enum TrafficListType {
    /// Port list
    Ports,
    /// IPv4 address/subnet list
    Ipv4,
    /// IPv6 address/subnet list
    Ipv6,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  HOTSPOT
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct HotspotArgs {
    #[command(subcommand)]
    pub command: HotspotCommand,
}

#[derive(Debug, Subcommand)]
pub enum HotspotCommand {
    /// List vouchers
    #[command(alias = "ls")]
    List {
        /// Max results (1-1000)
        #[arg(long, short = 'l', default_value = "100")]
        limit: u32,

        /// Pagination offset
        #[arg(long, default_value = "0")]
        offset: u32,
    },

    /// Get voucher details
    Get {
        /// Voucher ID (UUID)
        id: String,
    },

    /// Generate new vouchers
    Create {
        /// Voucher name/label
        #[arg(long, required = true)]
        name: String,

        /// Number of vouchers to generate
        #[arg(long, default_value = "1")]
        count: u32,

        /// Time limit in minutes
        #[arg(long, required = true)]
        minutes: u32,

        /// Max guests per voucher
        #[arg(long)]
        guest_limit: Option<u32>,

        /// Data usage limit in MB
        #[arg(long)]
        data_limit_mb: Option<u64>,

        /// Download rate limit in Kbps
        #[arg(long)]
        rx_limit_kbps: Option<u64>,

        /// Upload rate limit in Kbps
        #[arg(long)]
        tx_limit_kbps: Option<u64>,
    },

    /// Delete a single voucher
    Delete {
        /// Voucher ID (UUID)
        id: String,
    },

    /// Bulk delete vouchers by filter
    Purge {
        /// Filter expression (required)
        #[arg(long, required = true)]
        filter: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  VPN
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct VpnArgs {
    #[command(subcommand)]
    pub command: VpnCommand,
}

#[derive(Debug, Subcommand)]
pub enum VpnCommand {
    /// List VPN servers
    Servers(ListArgs),

    /// List site-to-site VPN tunnels
    Tunnels(ListArgs),
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  SITES
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct SitesArgs {
    #[command(subcommand)]
    pub command: SitesCommand,
}

#[derive(Debug, Subcommand)]
pub enum SitesCommand {
    /// List local sites
    #[command(alias = "ls")]
    List(ListArgs),

    /// Create a new site (legacy API)
    Create {
        /// Site name (internal reference)
        #[arg(long, required = true)]
        name: String,

        /// Site description (display name)
        #[arg(long, required = true)]
        description: String,
    },

    /// Delete a site (legacy API)
    Delete {
        /// Site name
        name: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  EVENTS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct EventsArgs {
    #[command(subcommand)]
    pub command: EventsCommand,
}

#[derive(Debug, Subcommand)]
pub enum EventsCommand {
    /// List recent events (legacy API)
    #[command(alias = "ls")]
    List {
        /// Max results
        #[arg(long, short = 'l', default_value = "100")]
        limit: u32,

        /// Hours of history to include
        #[arg(long, default_value = "24")]
        within: u32,
    },

    /// Stream real-time events via WebSocket (legacy API)
    Watch {
        /// Event types to filter (comma-separated)
        #[arg(long, value_delimiter = ',')]
        types: Option<Vec<String>>,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  ALARMS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct AlarmsArgs {
    #[command(subcommand)]
    pub command: AlarmsCommand,
}

#[derive(Debug, Subcommand)]
pub enum AlarmsCommand {
    /// List alarms (legacy API)
    #[command(alias = "ls")]
    List {
        /// Only show unarchived alarms
        #[arg(long)]
        unarchived: bool,

        /// Max results
        #[arg(long, short = 'l', default_value = "100")]
        limit: u32,
    },

    /// Archive a single alarm (legacy API)
    Archive {
        /// Alarm ID
        id: String,
    },

    /// Archive all alarms (legacy API)
    ArchiveAll,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  STATS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct StatsArgs {
    #[command(subcommand)]
    pub command: StatsCommand,
}

#[derive(Debug, Subcommand)]
pub enum StatsCommand {
    /// Site-level statistics (legacy API)
    Site(StatsQuery),

    /// Per-device statistics (legacy API)
    Device(StatsQuery),

    /// Per-client statistics (legacy API)
    Client(StatsQuery),

    /// Gateway statistics (legacy API)
    Gateway(StatsQuery),

    /// DPI traffic analysis (legacy API)
    Dpi {
        /// Analysis type: by-app or by-cat
        #[arg(long, default_value = "by-app", value_enum)]
        group_by: DpiGroupBy,

        /// Filter by MAC addresses (comma-separated)
        #[arg(long, value_delimiter = ',')]
        macs: Option<Vec<String>>,
    },
}

#[derive(Debug, Args)]
pub struct StatsQuery {
    /// Reporting interval
    #[arg(long, default_value = "hourly", value_enum)]
    pub interval: StatsInterval,

    /// Start time (ISO 8601 or Unix timestamp)
    #[arg(long)]
    pub start: Option<String>,

    /// End time (ISO 8601 or Unix timestamp)
    #[arg(long)]
    pub end: Option<String>,

    /// Attributes to include (comma-separated)
    #[arg(long, value_delimiter = ',')]
    pub attrs: Option<Vec<String>>,

    /// Filter by MAC addresses (comma-separated)
    #[arg(long, value_delimiter = ',')]
    pub macs: Option<Vec<String>>,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum StatsInterval {
    #[value(name = "5m")]
    FiveMinutes,
    Hourly,
    Daily,
    Monthly,
}

#[derive(Debug, Clone, ValueEnum)]
pub enum DpiGroupBy {
    ByApp,
    ByCat,
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  SYSTEM
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct SystemArgs {
    #[command(subcommand)]
    pub command: SystemCommand,
}

#[derive(Debug, Subcommand)]
pub enum SystemCommand {
    /// Application version info (Integration API)
    Info,

    /// Site health summary (legacy API)
    Health,

    /// Controller system info (legacy API)
    Sysinfo,

    /// Backup management (legacy API)
    Backup(BackupArgs),

    /// Reboot controller hardware (legacy API, UDM only)
    Reboot,

    /// Power off controller hardware (legacy API, UDM only)
    Poweroff,
}

#[derive(Debug, Args)]
pub struct BackupArgs {
    #[command(subcommand)]
    pub command: BackupCommand,
}

#[derive(Debug, Subcommand)]
pub enum BackupCommand {
    /// Create a new backup
    Create,

    /// List existing backups
    #[command(alias = "ls")]
    List,

    /// Download a backup file
    Download {
        /// Backup filename
        filename: String,

        /// Destination path (default: current directory)
        #[arg(long = "path")]
        path: Option<PathBuf>,
    },

    /// Delete a backup
    Delete {
        /// Backup filename
        filename: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  ADMIN
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct AdminArgs {
    #[command(subcommand)]
    pub command: AdminCommand,
}

#[derive(Debug, Subcommand)]
pub enum AdminCommand {
    /// List site administrators (legacy API)
    #[command(alias = "ls")]
    List,

    /// Invite a new administrator (legacy API)
    Invite {
        /// Admin name
        #[arg(long, required = true)]
        name: String,

        /// Admin email
        #[arg(long, required = true)]
        email: String,

        /// Role: admin or readonly
        #[arg(long, default_value = "admin")]
        role: String,
    },

    /// Remove administrator access (legacy API)
    Revoke {
        /// Admin ID
        admin: String,
    },

    /// Update administrator role (legacy API)
    Update {
        /// Admin ID
        admin: String,

        /// New role
        #[arg(long, required = true)]
        role: String,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  DPI
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct DpiArgs {
    #[command(subcommand)]
    pub command: DpiCommand,
}

#[derive(Debug, Subcommand)]
pub enum DpiCommand {
    /// List DPI applications
    Apps(ListArgs),

    /// List DPI categories
    Categories(ListArgs),
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  RADIUS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct RadiusArgs {
    #[command(subcommand)]
    pub command: RadiusCommand,
}

#[derive(Debug, Subcommand)]
pub enum RadiusCommand {
    /// List RADIUS profiles
    Profiles(ListArgs),
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  WANS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct WansArgs {
    #[command(subcommand)]
    pub command: WansCommand,
}

#[derive(Debug, Subcommand)]
pub enum WansCommand {
    /// List WAN interfaces
    #[command(alias = "ls")]
    List(ListArgs),
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  CONFIG
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct ConfigArgs {
    #[command(subcommand)]
    pub command: ConfigCommand,
}

#[derive(Debug, Subcommand)]
pub enum ConfigCommand {
    /// Create initial config file with guided setup
    Init,

    /// Display current resolved configuration
    Show,

    /// Set a configuration value
    Set {
        /// Config key (dot-separated path, e.g., "profiles.home.controller")
        key: String,

        /// Value to set
        value: String,
    },

    /// List configured profiles
    Profiles,

    /// Set the default profile
    Use {
        /// Profile name to set as default
        name: String,
    },

    /// Store a password in the system keyring
    SetPassword {
        /// Profile name
        #[arg(long)]
        profile: Option<String>,
    },
}

// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//  COMPLETIONS
// ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

#[derive(Debug, Args)]
pub struct CompletionsArgs {
    /// Shell to generate completions for
    pub shell: clap_complete::Shell,
}