safe-chains 0.211.0

Auto-allow safe bash commands in agentic coding tools
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
# Cloud Providers

### `aws`
<p class="cmd-url"><a href="https://docs.aws.amazon.com/cli/latest/">https://docs.aws.amazon.com/cli/latest/</a></p>

- **accessanalyzer**: Allowed arguments: describe-*, get-*, list-*
- **account**: Allowed arguments: describe-*, get-*, list-*
- **acm**: Allowed arguments: describe-*, get-*, list-*
- **acm-pca**: Allowed arguments: describe-*, get-*, list-*
- **amp**: Allowed arguments: describe-*, get-*, list-*
- **amplify get-app**
- **amplify get-branch**
- **amplify get-webhook**
- **amplify list-apps**
- **amplify list-branches**
- **amplify list-webhooks**
- **amplifybackend get-backend-auth**
- **amplifyuibuilder**: Allowed arguments: describe-*, get-*, list-*
- **apigateway get-api-key**
- **apigateway get-api-keys**
- **apigatewayv2**: Allowed arguments: get-*
- **appconfig**: Allowed arguments: describe-*, get-*, list-*
- **appflow**: Allowed arguments: describe-*, get-*, list-*
- **application-autoscaling**: Allowed arguments: describe-*, get-*, list-*
- **application-insights**: Allowed arguments: describe-*, get-*, list-*
- **appmesh**: Allowed arguments: describe-*, get-*, list-*
- **apprunner**: Allowed arguments: describe-*, get-*, list-*
- **appstream**: Allowed arguments: describe-*, get-*, list-*
- **appsync get-graphql-api-environment-variables**
- **appsync list-api-keys**
- **artifact**: Allowed arguments: describe-*, get-*, list-*
- **athena**: Allowed arguments: get-*, list-*
- **auditmanager**: Allowed arguments: describe-*, get-*, list-*
- **autoscaling describe-launch-configurations**
- **autoscaling-plans**: Allowed arguments: describe-*, get-*, list-*
- **b2bi**: Allowed arguments: describe-*, get-*, list-*
- **backup**: Allowed arguments: describe-*, get-*, list-*
- **batch**: Allowed arguments: describe-*, get-*, list-*
- **bedrock**: Allowed arguments: describe-*, get-*, list-*
- **bedrock-agent**: Allowed arguments: describe-*, get-*, list-*
- **billingconductor**: Allowed arguments: describe-*, get-*, list-*
- **braket**: Allowed arguments: describe-*, get-*, list-*
- **budgets**: Allowed arguments: describe-*, get-*, list-*
- **ce**: Allowed arguments: describe-*, get-*, list-*
- **chatbot**: Allowed arguments: describe-*, get-*, list-*
- **chime**: Allowed arguments: describe-*, get-*, list-*
- **chime-sdk-identity**: Allowed arguments: describe-*, get-*, list-*
- **chime-sdk-meetings get-attendee**
- **chime-sdk-meetings list-attendees**
- **chime-sdk-messaging**: Allowed arguments: describe-*, get-*, list-*
- **chime-sdk-voice**: Allowed arguments: describe-*, get-*, list-*
- **cleanrooms**: Allowed arguments: describe-*, get-*, list-*
- **cloud9**: Allowed arguments: describe-*, get-*, list-*
- **cloudcontrol**: Allowed arguments: describe-*, get-*, list-*
- **cloudformation**: Allowed arguments: describe-*, get-*, list-*
- **cloudfront**: Allowed arguments: describe-*, get-*, list-*
- **cloudhsmv2**: Allowed arguments: describe-*, get-*, list-*
- **cloudsearch**: Allowed arguments: describe-*, get-*, list-*
- **cloudtrail**: Allowed arguments: describe-*, get-*, list-*
- **cloudwatch**: Allowed arguments: describe-*, get-*, list-*
- **codeartifact get-authorization-token**
- **codebuild batch-get-build-batches**
- **codebuild batch-get-builds**
- **codebuild batch-get-projects**
- **codecatalyst**: Allowed arguments: describe-*, get-*, list-*
- **codecommit**: Allowed arguments: describe-*, get-*, list-*
- **codeguru-reviewer**: Allowed arguments: describe-*, get-*, list-*
- **codeguruprofiler**: Allowed arguments: describe-*, get-*, list-*
- **codepipeline get-job-details**
- **codepipeline get-third-party-job-details**
- **codestar-connections**: Allowed arguments: describe-*, get-*, list-*
- **codestar-notifications**: Allowed arguments: describe-*, get-*, list-*
- **cognito-identity get-credentials-for-identity**
- **cognito-identity get-open-id-token**
- **cognito-identity get-open-id-token-for-developer-identity**
- **cognito-idp describe-identity-provider**
- **cognito-idp describe-user-pool-client**
- **comprehend**: Allowed arguments: describe-*, get-*, list-*
- **compute-optimizer**: Allowed arguments: describe-*, get-*, list-*
- **configservice**: Allowed arguments: describe-*, get-*, list-*
- **configure export-credentials**
- **configure get**: Flags: --help
- **configure list**: Flags: --help
- **connect get-federation-token**
- **controltower**: Allowed arguments: describe-*, get-*, list-*
- **cur**: Allowed arguments: describe-*, get-*, list-*
- **databrew**: Allowed arguments: describe-*, get-*, list-*
- **dataexchange**: Allowed arguments: describe-*, get-*, list-*
- **datasync**: Allowed arguments: describe-*, get-*, list-*
- **datazone get-connection**
- **datazone get-environment-credentials**
- **dax**: Allowed arguments: describe-*, get-*, list-*
- **deadline**: Allowed arguments: describe-*, get-*, list-*
- **detective**: Allowed arguments: describe-*, get-*, list-*
- **devicefarm**: Allowed arguments: describe-*, get-*, list-*
- **devops-guru**: Allowed arguments: describe-*, get-*, list-*
- **directconnect describe-router-configuration**
- **directconnect describe-virtual-interfaces**
- **discovery describe-export-tasks**
- **dlm**: Allowed arguments: describe-*, get-*, list-*
- **dms**: Allowed arguments: describe-*, get-*, list-*
- **docdb**: Allowed arguments: describe-*, get-*, list-*
- **docdb-elastic**: Allowed arguments: describe-*, get-*, list-*
- **ds**: Allowed arguments: describe-*, get-*, list-*
- **dynamodb**: Allowed arguments: describe-*, list-*
- **dynamodbstreams**: Allowed arguments: describe-*, get-*, list-*
- **ebs get-snapshot-block**
- **ec2 describe-instance-attribute**
- **ec2 describe-launch-template-versions**
- **ecr get-authorization-token**
- **ecr get-login-password**
- **ecr-public get-authorization-token**
- **ecr-public get-login-password**
- **ecs**: Allowed arguments: describe-*, list-*
- **efs**: Allowed arguments: describe-*, get-*, list-*
- **eks**: Allowed arguments: describe-*, list-*
- **elasticache**: Allowed arguments: describe-*, list-*
- **elasticbeanstalk**: Allowed arguments: describe-*, list-*
- **elastictranscoder**: Allowed arguments: describe-*, get-*, list-*
- **elb**: Allowed arguments: describe-*
- **elbv2**: Allowed arguments: describe-*
- **emr get-cluster-session-credentials**
- **emr get-on-cluster-app-ui-presigned-url**
- **emr get-persistent-app-ui-presigned-url**
- **emr-containers get-managed-endpoint-session-credentials**
- **emr-serverless**: Allowed arguments: describe-*, get-*, list-*
- **entityresolution**: Allowed arguments: describe-*, get-*, list-*
- **es**: Allowed arguments: describe-*, get-*, list-*
- **events**: Allowed arguments: describe-*, list-*
- **finspace get-kx-connection-string**
- **firehose**: Allowed arguments: describe-*, get-*, list-*
- **fis**: Allowed arguments: describe-*, get-*, list-*
- **fms**: Allowed arguments: describe-*, get-*, list-*
- **forecast**: Allowed arguments: describe-*, get-*, list-*
- **frauddetector**: Allowed arguments: describe-*, get-*, list-*
- **fsx**: Allowed arguments: describe-*, get-*, list-*
- **gamelift get-compute-access**
- **gamelift get-compute-auth-token**
- **gamelift get-instance-access**
- **glacier get-job-output**
- **globalaccelerator**: Allowed arguments: describe-*, get-*, list-*
- **glue get-connection**
- **glue get-connections**
- **grafana**: Allowed arguments: describe-*, get-*, list-*
- **greengrass**: Allowed arguments: describe-*, get-*, list-*
- **greengrassv2**: Allowed arguments: describe-*, get-*, list-*
- **groundstation**: Allowed arguments: describe-*, get-*, list-*
- **guardduty**: Allowed arguments: describe-*, get-*, list-*
- **health**: Allowed arguments: describe-*, get-*, list-*
- **healthlake**: Allowed arguments: describe-*, get-*, list-*
- **iam get-credential-report**
- **identitystore**: Allowed arguments: describe-*, get-*, list-*
- **imagebuilder**: Allowed arguments: describe-*, get-*, list-*
- **inspector2**: Allowed arguments: describe-*, get-*, list-*
- **internetmonitor**: Allowed arguments: describe-*, get-*, list-*
- **iot**: Allowed arguments: describe-*, get-*, list-*
- **iotevents**: Allowed arguments: describe-*, get-*, list-*
- **iotsitewise**: Allowed arguments: describe-*, get-*, list-*
- **iottwinmaker**: Allowed arguments: describe-*, get-*, list-*
- **ivs get-stream-key**
- **kafka**: Allowed arguments: describe-*, get-*, list-*
- **kafkaconnect**: Allowed arguments: describe-*, get-*, list-*
- **kendra**: Allowed arguments: describe-*, get-*, list-*
- **keyspaces**: Allowed arguments: describe-*, get-*, list-*
- **kinesis**: Allowed arguments: describe-*, get-*, list-*
- **kinesisanalytics**: Allowed arguments: describe-*, get-*, list-*
- **kinesisanalyticsv2**: Allowed arguments: describe-*, get-*, list-*
- **kinesisvideo**: Allowed arguments: describe-*, get-*, list-*
- **kms**: Allowed arguments: describe-*, get-*, list-*
- **lakeformation get-temporary-data-location-credentials**
- **lakeformation get-temporary-glue-partition-credentials**
- **lakeformation get-temporary-glue-table-credentials**
- **lambda get-function**
- **lambda get-function-configuration**
- **lambda list-functions**
- **lex-models get-bot-channel-association**
- **lex-models get-bot-channel-associations**
- **lexv2-models**: Allowed arguments: describe-*, get-*, list-*
- **license-manager get-access-token**
- **lightsail get-instance-access-details**
- **lightsail get-relational-database-master-user-password**
- **location describe-key**
- **logs**: Allowed arguments: describe-*, filter-*, get-*, list-*
- **m2 get-signed-bluinsights-url**
- **macie2 get-sensitive-data-occurrences**
- **managedblockchain get-accessor**
- **mediaconnect**: Allowed arguments: describe-*, get-*, list-*
- **mediaconvert**: Allowed arguments: describe-*, get-*, list-*
- **medialive**: Allowed arguments: describe-*, get-*, list-*
- **mediapackage describe-channel**
- **mediapackage list-channels**
- **mediastore**: Allowed arguments: describe-*, get-*, list-*
- **mediatailor**: Allowed arguments: describe-*, get-*, list-*
- **medical-imaging**: Allowed arguments: describe-*, get-*, list-*
- **memorydb**: Allowed arguments: describe-*, get-*, list-*
- **mgn**: Allowed arguments: describe-*, get-*, list-*
- **mq**: Allowed arguments: describe-*, get-*, list-*
- **mturk**: Allowed arguments: describe-*, get-*, list-*
- **mwaa**: Allowed arguments: describe-*, get-*, list-*
- **neptune**: Allowed arguments: describe-*, get-*, list-*
- **neptune-graph**: Allowed arguments: describe-*, get-*, list-*
- **network-firewall**: Allowed arguments: describe-*, get-*, list-*
- **networkmanager**: Allowed arguments: describe-*, get-*, list-*
- **notifications**: Allowed arguments: describe-*, get-*, list-*
- **oam**: Allowed arguments: describe-*, get-*, list-*
- **omics get-read-set**
- **opensearch**: Allowed arguments: describe-*, get-*, list-*
- **opensearchserverless**: Allowed arguments: describe-*, get-*, list-*
- **organizations**: Allowed arguments: describe-*, get-*, list-*
- **outposts**: Allowed arguments: describe-*, get-*, list-*
- **personalize**: Allowed arguments: describe-*, get-*, list-*
- **pi**: Allowed arguments: describe-*, get-*, list-*
- **pinpoint get-baidu-channel**
- **pinpoint get-gcm-channel**
- **pipes**: Allowed arguments: describe-*, get-*, list-*
- **polly**: Allowed arguments: describe-*, get-*, list-*
- **pricing**: Allowed arguments: describe-*, get-*, list-*
- **proton**: Allowed arguments: describe-*, get-*, list-*
- **quicksight get-dashboard-embed-url**
- **quicksight get-session-embed-url**
- **ram**: Allowed arguments: describe-*, get-*, list-*
- **rbin**: Allowed arguments: describe-*, get-*, list-*
- **rds**: Allowed arguments: describe-*, list-*
- **rds-data**: Allowed arguments: describe-*, get-*, list-*
- **redshift get-cluster-credentials**
- **redshift get-cluster-credentials-with-iam**
- **redshift-data**: Allowed arguments: describe-*, get-*, list-*
- **redshift-serverless get-credentials**
- **rekognition**: Allowed arguments: describe-*, get-*, list-*
- **resiliencehub**: Allowed arguments: describe-*, get-*, list-*
- **resource-explorer-2**: Allowed arguments: describe-*, get-*, list-*
- **resource-groups**: Allowed arguments: describe-*, get-*, list-*
- **resourcegroupstaggingapi**: Allowed arguments: describe-*, get-*, list-*
- **rolesanywhere**: Allowed arguments: describe-*, get-*, list-*
- **route53**: Allowed arguments: get-*, list-*
- **route53-recovery-control-config**: Allowed arguments: describe-*, get-*, list-*
- **route53-recovery-readiness**: Allowed arguments: describe-*, get-*, list-*
- **route53domains**: Allowed arguments: describe-*, get-*, list-*
- **route53profiles**: Allowed arguments: describe-*, get-*, list-*
- **route53resolver**: Allowed arguments: describe-*, get-*, list-*
- **rum**: Allowed arguments: describe-*, get-*, list-*
- **s3**: Allowed arguments: ls
- **s3api get-object**
- **s3control get-data-access**
- **sagemaker**: Allowed arguments: describe-*, list-*
- **savingsplans**: Allowed arguments: describe-*, get-*, list-*
- **scheduler**: Allowed arguments: describe-*, get-*, list-*
- **schemas**: Allowed arguments: describe-*, get-*, list-*
- **secretsmanager**: Allowed arguments: describe-*, list-*
- **securityhub**: Allowed arguments: describe-*, get-*, list-*
- **securitylake**: Allowed arguments: describe-*, get-*, list-*
- **serverlessrepo**: Allowed arguments: describe-*, get-*, list-*
- **service-quotas**: Allowed arguments: describe-*, get-*, list-*
- **servicecatalog**: Allowed arguments: describe-*, get-*, list-*
- **servicediscovery**: Allowed arguments: describe-*, get-*, list-*
- **ses**: Allowed arguments: get-*, list-*
- **sesv2**: Allowed arguments: get-*, list-*
- **shield**: Allowed arguments: describe-*, get-*, list-*
- **signer**: Allowed arguments: describe-*, get-*, list-*
- **sns**: Allowed arguments: get-*, list-*
- **sqs**: Allowed arguments: get-*, list-*
- **ssm get-access-token**
- **ssm get-parameter**
- **ssm get-parameter-history**
- **ssm get-parameters**
- **ssm get-parameters-by-path**
- **ssm-contacts**: Allowed arguments: describe-*, get-*, list-*
- **ssm-incidents**: Allowed arguments: describe-*, get-*, list-*
- **sso get-role-credentials**
- **sso-admin**: Allowed arguments: describe-*, get-*, list-*
- **stepfunctions get-activity-task**
- **storagegateway describe-chap-credentials**
- **sts get-caller-identity**: Flags: --help
- **sts**: Allowed arguments: describe-*, get-*, list-*
- **support**: Allowed arguments: describe-*, get-*, list-*
- **swf**: Allowed arguments: describe-*, get-*, list-*
- **synthetics**: Allowed arguments: describe-*, get-*, list-*
- **textract**: Allowed arguments: describe-*, get-*, list-*
- **timestream-query**: Allowed arguments: describe-*, get-*, list-*
- **transcribe**: Allowed arguments: describe-*, get-*, list-*
- **transfer**: Allowed arguments: describe-*, get-*, list-*
- **translate**: Allowed arguments: describe-*, get-*, list-*
- **trustedadvisor**: Allowed arguments: describe-*, get-*, list-*
- **verifiedpermissions**: Allowed arguments: describe-*, get-*, list-*
- **vpc-lattice**: Allowed arguments: describe-*, get-*, list-*
- **waf**: Allowed arguments: describe-*, get-*, list-*
- **waf-regional**: Allowed arguments: describe-*, get-*, list-*
- **wafv2 get-sampled-requests**
- **wellarchitected**: Allowed arguments: describe-*, get-*, list-*
- **workdocs**: Allowed arguments: describe-*, get-*, list-*
- **workmail**: Allowed arguments: describe-*, get-*, list-*
- **workspaces**: Allowed arguments: describe-*, get-*, list-*
- **workspaces-web get-identity-provider**
- **xray**: Allowed arguments: describe-*, get-*, list-*
- Allowed standalone flags: --help, --version

**Examples:**

- `aws sts get-caller-identity`
- `aws s3 ls`
- `aws secretsmanager describe-secret --secret-id x`
- `aws secretsmanager list-secrets`
- `aws ecr describe-repositories`
- `aws ecr list-images --repository-name r`
- `aws ssm get-parameter --name x`
- `aws ssm describe-parameters`
- `aws ssm get-parameter-history --name x`
- `aws lambda list-layers`
- `aws apigateway get-api-key --api-key x`
- `aws ec2 describe-instance-attribute --instance-id i --attribute instanceType`
- `aws datazone get-connection --identifier x`

### `az`
<p class="cmd-url"><a href="https://learn.microsoft.com/en-us/cli/azure/">https://learn.microsoft.com/en-us/cli/azure/</a></p>

- **account alias**: Allowed arguments: show, list
- **account lock**: Allowed arguments: show, list
- **account management-group entities**: Allowed arguments: show, list
- **account management-group hierarchy-settings**: Allowed arguments: show, list
- **account management-group subscription**: Allowed arguments: show, list
- **account management-group tenant-backfill**: Allowed arguments: show, list
- **account subscription**: Allowed arguments: show, list
- **account tenant**: Allowed arguments: show, list
- **acr list**: Positional args accepted
- **acr repository**: Allowed arguments: list, show
- **acr show**: Positional args accepted
- **ad app**: Allowed arguments: list, show
- **ad group**: Allowed arguments: list, show
- **ad sp**: Allowed arguments: list, show
- **ad user**: Allowed arguments: list, show
- **advisor configuration**: Allowed arguments: show, list
- **advisor recommendation**: Allowed arguments: show, list
- **aks addon**: Allowed arguments: show, list
- **aks app**: Allowed arguments: show, list
- **aks applicationloadbalancer**: Allowed arguments: show, list
- **aks approuting defaultdomain**: Allowed arguments: show, list
- **aks approuting gateway istio**: Allowed arguments: show, list
- **aks approuting zone**: Allowed arguments: show, list
- **aks check-network**: Allowed arguments: show, list
- **aks command**: Allowed arguments: show, list
- **aks connection**: Allowed arguments: show, list
- **aks draft**: Allowed arguments: show, list
- **aks egress-endpoints**: Allowed arguments: show, list
- **aks extension type version**: Allowed arguments: show, list
- **aks identity-binding**: Allowed arguments: show, list
- **aks jwtauthenticator**: Allowed arguments: show, list
- **aks loadbalancer**: Allowed arguments: show, list
- **aks machine**: Allowed arguments: show, list
- **aks maintenanceconfiguration**: Allowed arguments: show, list
- **aks maintenancewindow**: Allowed arguments: show, list
- **aks mesh upgrade**: Allowed arguments: show, list
- **aks namespace**: Allowed arguments: show, list
- **aks nodepool auto-scale**: Allowed arguments: show, list
- **aks nodepool manual-scale**: Allowed arguments: show, list
- **aks nodepool snapshot**: Allowed arguments: show, list
- **aks oidc-issuer**: Allowed arguments: show, list
- **aks operation**: Allowed arguments: show, list
- **aks pod-identity exception**: Allowed arguments: show, list
- **aks prepared-image-specification version**: Allowed arguments: show, list
- **aks safeguards**: Allowed arguments: show, list
- **aks snapshot**: Allowed arguments: show, list
- **aks trustedaccess role**: Allowed arguments: show, list
- **aks trustedaccess rolebinding**: Allowed arguments: show, list
- **appservice ase**: Allowed arguments: show, list
- **appservice domain**: Allowed arguments: show, list
- **appservice hybrid-connection**: Allowed arguments: show, list
- **appservice plan identity**: Allowed arguments: show, list
- **appservice plan managed-instance install-script**: Allowed arguments: show, list
- **appservice plan managed-instance instance**: Allowed arguments: show, list
- **appservice plan managed-instance network**: Allowed arguments: show, list
- **appservice plan managed-instance registry-adapter**: Allowed arguments: show, list
- **appservice plan managed-instance storage-mount**: Allowed arguments: show, list
- **appservice vnet-integration**: Allowed arguments: show, list
- **batch account identity**: Allowed arguments: show, list
- **batch account network-profile network-rule**: Allowed arguments: show, list
- **batch application package**: Allowed arguments: show, list
- **batch application summary**: Allowed arguments: show, list
- **batch job prep-release-status**: Allowed arguments: show, list
- **batch job task-counts**: Allowed arguments: show, list
- **batch job-schedule**: Allowed arguments: show, list
- **batch location quotas**: Allowed arguments: show, list
- **batch node file**: Allowed arguments: show, list
- **batch node remote-login-settings**: Allowed arguments: show, list
- **batch node scheduling**: Allowed arguments: show, list
- **batch node service-logs**: Allowed arguments: show, list
- **batch node user**: Allowed arguments: show, list
- **batch pool autoscale**: Allowed arguments: show, list
- **batch pool node-counts**: Allowed arguments: show, list
- **batch pool supported-images**: Allowed arguments: show, list
- **batch pool usage-metrics**: Allowed arguments: show, list
- **batch private-endpoint-connection**: Allowed arguments: show, list
- **batch private-link-resource**: Allowed arguments: show, list
- **batch task file**: Allowed arguments: show, list
- **batch task subtask**: Allowed arguments: show, list
- **cdn custom-domain**: Allowed arguments: show, list
- **cdn edge-node**: Allowed arguments: show, list
- **cdn endpoint rule action**: Allowed arguments: show, list
- **cdn endpoint rule condition**: Allowed arguments: show, list
- **cdn origin**: Allowed arguments: show, list
- **cdn origin-group**: Allowed arguments: show, list
- **cdn profile deployment-version**: Allowed arguments: show, list
- **cdn profile-migration**: Allowed arguments: show, list
- **cognitiveservices account commitment-plan**: Allowed arguments: show, list
- **cognitiveservices account connection**: Allowed arguments: show, list
- **cognitiveservices account deployment**: Allowed arguments: show, list
- **cognitiveservices account identity**: Allowed arguments: show, list
- **cognitiveservices account managed-compute-deployment**: Allowed arguments: show, list
- **cognitiveservices account managed-network outbound-rule**: Allowed arguments: show, list
- **cognitiveservices account network-rule**: Allowed arguments: show, list
- **cognitiveservices account project connection**: Allowed arguments: show, list
- **cognitiveservices agent logs**: Allowed arguments: show, list
- **cognitiveservices commitment-tier**: Allowed arguments: show, list
- **cognitiveservices model**: Allowed arguments: show, list
- **cognitiveservices usage**: Allowed arguments: show, list
- **consumption budget**: Allowed arguments: show, list
- **consumption marketplace**: Allowed arguments: show, list
- **consumption pricesheet**: Allowed arguments: show, list
- **consumption reservation detail**: Allowed arguments: show, list
- **consumption reservation summary**: Allowed arguments: show, list
- **consumption usage**: Allowed arguments: show, list
- **container app**: Allowed arguments: show, list
- **container container-group-profile**: Allowed arguments: show, list
- **containerapp**: Allowed arguments: list, show
- **cosmosdb**: Allowed arguments: list, show
- **deployment group**: Allowed arguments: show, list
- **deployment mg**: Allowed arguments: show, list
- **deployment operation group**: Allowed arguments: show, list
- **deployment operation mg**: Allowed arguments: show, list
- **deployment operation sub**: Allowed arguments: show, list
- **deployment operation tenant**: Allowed arguments: show, list
- **deployment sub**: Allowed arguments: show, list
- **deployment tenant**: Allowed arguments: show, list
- **disk**: Allowed arguments: list, show
- **dns dnssec-config**: Allowed arguments: show, list
- **dns record-set a**: Allowed arguments: show, list
- **dns record-set aaaa**: Allowed arguments: show, list
- **dns record-set caa**: Allowed arguments: show, list
- **dns record-set cname**: Allowed arguments: show, list
- **dns record-set ds**: Allowed arguments: show, list
- **dns record-set mx**: Allowed arguments: show, list
- **dns record-set naptr**: Allowed arguments: show, list
- **dns record-set ns**: Allowed arguments: show, list
- **dns record-set ptr**: Allowed arguments: show, list
- **dns record-set soa**: Allowed arguments: show, list
- **dns record-set srv**: Allowed arguments: show, list
- **dns record-set tlsa**: Allowed arguments: show, list
- **dns record-set txt**: Allowed arguments: show, list
- **dns zone**: Allowed arguments: show, list
- **eventhubs cluster namespace**: Allowed arguments: show, list
- **eventhubs eventhub authorization-rule**: Allowed arguments: show, list
- **eventhubs eventhub consumer-group**: Allowed arguments: show, list
- **eventhubs georecovery-alias authorization-rule**: Allowed arguments: show, list
- **eventhubs namespace application-group policy**: Allowed arguments: show, list
- **eventhubs namespace authorization-rule**: Allowed arguments: show, list
- **eventhubs namespace encryption**: Allowed arguments: show, list
- **eventhubs namespace identity**: Allowed arguments: show, list
- **eventhubs namespace network-rule-set ip-rule**: Allowed arguments: show, list
- **eventhubs namespace network-rule-set virtual-network-rule**: Allowed arguments: show, list
- **eventhubs namespace nsp-configuration**: Allowed arguments: show, list
- **eventhubs namespace private-endpoint-connection**: Allowed arguments: show, list
- **eventhubs namespace private-link-resource**: Allowed arguments: show, list
- **eventhubs namespace replica**: Allowed arguments: show, list
- **eventhubs namespace schema-registry**: Allowed arguments: show, list
- **feature**: Allowed arguments: list, show
- **functionapp**: Allowed arguments: list, show
- **group**: Allowed arguments: list, show
- **hdinsight**: Allowed arguments: list, show
- **identity**: Allowed arguments: list, show
- **iot adr ns device**: Allowed arguments: show, list
- **iot adr ns policy**: Allowed arguments: show, list
- **iot central app identity**: Allowed arguments: show, list
- **iot central app private-endpoint-connection**: Allowed arguments: show, list
- **iot central app private-link-resource**: Allowed arguments: show, list
- **iot central device attestation**: Allowed arguments: show, list
- **iot central device c2d-message**: Allowed arguments: show, list
- **iot central device command**: Allowed arguments: show, list
- **iot central device edge children**: Allowed arguments: show, list
- **iot central device edge manifest**: Allowed arguments: show, list
- **iot central device edge module**: Allowed arguments: show, list
- **iot central device telemetry**: Allowed arguments: show, list
- **iot central device twin**: Allowed arguments: show, list
- **iot central device-group**: Allowed arguments: show, list
- **iot central device-template**: Allowed arguments: show, list
- **iot central diagnostics**: Allowed arguments: show, list
- **iot central enrollment-group**: Allowed arguments: show, list
- **iot central export destination**: Allowed arguments: show, list
- **iot central file-upload-config**: Allowed arguments: show, list
- **iot central job**: Allowed arguments: show, list
- **iot central organization**: Allowed arguments: show, list
- **iot central role**: Allowed arguments: show, list
- **iot central scheduled-job**: Allowed arguments: show, list
- **iot central user**: Allowed arguments: show, list
- **iot device c2d-message**: Allowed arguments: show, list
- **iot device registration**: Allowed arguments: show, list
- **iot dps certificate**: Allowed arguments: show, list
- **iot dps enrollment registration**: Allowed arguments: show, list
- **iot dps enrollment-group registration**: Allowed arguments: show, list
- **iot dps identity**: Allowed arguments: show, list
- **iot dps linked-hub**: Allowed arguments: show, list
- **iot dps policy**: Allowed arguments: show, list
- **iot du account private-endpoint-connection**: Allowed arguments: show, list
- **iot du account private-link-resource**: Allowed arguments: show, list
- **iot du device class**: Allowed arguments: show, list
- **iot du device compliance**: Allowed arguments: show, list
- **iot du device deployment**: Allowed arguments: show, list
- **iot du device group**: Allowed arguments: show, list
- **iot du device health**: Allowed arguments: show, list
- **iot du device log**: Allowed arguments: show, list
- **iot du device module**: Allowed arguments: show, list
- **iot du instance**: Allowed arguments: show, list
- **iot du update file**: Allowed arguments: show, list
- **iot edge deployment**: Allowed arguments: show, list
- **iot edge devices**: Allowed arguments: show, list
- **iot hub certificate**: Allowed arguments: show, list
- **iot hub configuration**: Allowed arguments: show, list
- **iot hub consumer-group**: Allowed arguments: show, list
- **iot hub device-identity children**: Allowed arguments: show, list
- **iot hub device-identity parent**: Allowed arguments: show, list
- **iot hub device-twin**: Allowed arguments: show, list
- **iot hub devicestream**: Allowed arguments: show, list
- **iot hub digital-twin**: Allowed arguments: show, list
- **iot hub distributed-tracing**: Allowed arguments: show, list
- **iot hub identity**: Allowed arguments: show, list
- **iot hub job**: Allowed arguments: show, list
- **iot hub message-endpoint**: Allowed arguments: show, list
- **iot hub message-enrichment**: Allowed arguments: show, list
- **iot hub message-route fallback**: Allowed arguments: show, list
- **iot hub module-identity**: Allowed arguments: show, list
- **iot hub module-twin**: Allowed arguments: show, list
- **iot hub policy**: Allowed arguments: show, list
- **iot hub state**: Allowed arguments: show, list
- **iot ops asset dataset point**: Allowed arguments: show, list
- **iot ops asset endpoint**: Allowed arguments: show, list
- **iot ops asset event**: Allowed arguments: show, list
- **iot ops broker authn method**: Allowed arguments: show, list
- **iot ops broker authz**: Allowed arguments: show, list
- **iot ops broker listener port**: Allowed arguments: show, list
- **iot ops broker persist**: Allowed arguments: show, list
- **iot ops connector opcua client**: Allowed arguments: show, list
- **iot ops connector opcua issuer**: Allowed arguments: show, list
- **iot ops connector opcua trust**: Allowed arguments: show, list
- **iot ops connector template**: Allowed arguments: show, list
- **iot ops dataflow endpoint**: Allowed arguments: show, list
- **iot ops dataflow profile**: Allowed arguments: show, list
- **iot ops dataflowgraph**: Allowed arguments: show, list
- **iot ops identity**: Allowed arguments: show, list
- **iot ops mgmt-actions**: Allowed arguments: show, list
- **iot ops ns asset**: Allowed arguments: show, list
- **iot ops ns device**: Allowed arguments: show, list
- **iot ops ns mgmt-endpoint**: Allowed arguments: show, list
- **iot ops registry**: Allowed arguments: show, list
- **iot ops schema registry**: Allowed arguments: show, list
- **iot ops schema version**: Allowed arguments: show, list
- **iot ops support**: Allowed arguments: show, list
- **keyvault**: Allowed arguments: list, show
- **lock**: Allowed arguments: list, show
- **logicapp**: Allowed arguments: list, show
- **managed-cassandra cluster backup**: Allowed arguments: show, list
- **managed-cassandra datacenter**: Allowed arguments: show, list
- **maps account**: Allowed arguments: show, list
- **maps map**: Allowed arguments: show, list
- **mariadb db**: Allowed arguments: show, list
- **mariadb server configuration**: Allowed arguments: show, list
- **mariadb server firewall-rule**: Allowed arguments: show, list
- **mariadb server private-endpoint-connection**: Allowed arguments: show, list
- **mariadb server private-link-resource**: Allowed arguments: show, list
- **mariadb server replica**: Allowed arguments: show, list
- **mariadb server vnet-rule**: Allowed arguments: show, list
- **mariadb server-logs**: Allowed arguments: show, list
- **monitor log-analytics**: Allowed arguments: query
- **monitor metrics**: Allowed arguments: list
- **mysql db**: Allowed arguments: show, list
- **mysql flexible-server ad-admin**: Allowed arguments: show, list
- **mysql flexible-server advanced-threat-protection-setting**: Allowed arguments: show, list
- **mysql flexible-server backup**: Allowed arguments: show, list
- **mysql flexible-server db**: Allowed arguments: show, list
- **mysql flexible-server firewall-rule**: Allowed arguments: show, list
- **mysql flexible-server gtid**: Allowed arguments: show, list
- **mysql flexible-server identity**: Allowed arguments: show, list
- **mysql flexible-server maintenance**: Allowed arguments: show, list
- **mysql flexible-server parameter**: Allowed arguments: show, list
- **mysql flexible-server replica**: Allowed arguments: show, list
- **mysql flexible-server server-logs**: Allowed arguments: show, list
- **mysql server ad-admin**: Allowed arguments: show, list
- **mysql server configuration**: Allowed arguments: show, list
- **mysql server firewall-rule**: Allowed arguments: show, list
- **mysql server private-endpoint-connection**: Allowed arguments: show, list
- **mysql server private-link-resource**: Allowed arguments: show, list
- **mysql server replica**: Allowed arguments: show, list
- **mysql server vnet-rule**: Allowed arguments: show, list
- **mysql server-logs**: Allowed arguments: show, list
- **netappfiles account ad**: Allowed arguments: show, list
- **netappfiles account backup-policy**: Allowed arguments: show, list
- **netappfiles account backup-vault backup**: Allowed arguments: show, list
- **netappfiles account identity**: Allowed arguments: show, list
- **netappfiles account quota-limit**: Allowed arguments: show, list
- **netappfiles cache**: Allowed arguments: show, list
- **netappfiles pool**: Allowed arguments: show, list
- **netappfiles quota-limit**: Allowed arguments: show, list
- **netappfiles resource region-info default**: Allowed arguments: show, list
- **netappfiles snapshot policy**: Allowed arguments: show, list
- **netappfiles subvolume metadata**: Allowed arguments: show, list
- **netappfiles usage**: Allowed arguments: show, list
- **netappfiles volume bucket**: Allowed arguments: show, list
- **netappfiles volume export-policy**: Allowed arguments: show, list
- **netappfiles volume latest-backup-status current**: Allowed arguments: show, list
- **netappfiles volume latest-restore-status current**: Allowed arguments: show, list
- **netappfiles volume quota-rule**: Allowed arguments: show, list
- **netappfiles volume ransomware-report**: Allowed arguments: show, list
- **netappfiles volume replication**: Allowed arguments: show, list
- **netappfiles volume-group**: Allowed arguments: show, list
- **network nic**: Allowed arguments: list, show
- **network nsg**: Allowed arguments: list, show
- **network public-ip**: Allowed arguments: list, show
- **network vnet**: Allowed arguments: list, show
- **notification-hub authorization-rule**: Allowed arguments: show, list
- **notification-hub namespace authorization-rule**: Allowed arguments: show, list
- **policy assignment identity**: Allowed arguments: show, list
- **policy assignment non-compliance-message**: Allowed arguments: show, list
- **policy attestation**: Allowed arguments: show, list
- **policy definition version**: Allowed arguments: show, list
- **policy enrollment**: Allowed arguments: show, list
- **policy event**: Allowed arguments: show, list
- **policy exemption**: Allowed arguments: show, list
- **policy metadata**: Allowed arguments: show, list
- **policy remediation deployment**: Allowed arguments: show, list
- **policy set-definition version**: Allowed arguments: show, list
- **policy state**: Allowed arguments: show, list
- **postgres flexible-server advanced-threat-protection-setting**: Allowed arguments: show, list
- **postgres flexible-server autonomous-tuning**: Allowed arguments: show, list
- **postgres flexible-server backup**: Allowed arguments: show, list
- **postgres flexible-server db**: Allowed arguments: show, list
- **postgres flexible-server fabric-mirroring**: Allowed arguments: show, list
- **postgres flexible-server firewall-rule**: Allowed arguments: show, list
- **postgres flexible-server identity**: Allowed arguments: show, list
- **postgres flexible-server maintenance-event**: Allowed arguments: show, list
- **postgres flexible-server microsoft-entra-admin**: Allowed arguments: show, list
- **postgres flexible-server migration**: Allowed arguments: show, list
- **postgres flexible-server parameter**: Allowed arguments: show, list
- **postgres flexible-server private-endpoint-connection**: Allowed arguments: show, list
- **postgres flexible-server private-link-resource**: Allowed arguments: show, list
- **postgres flexible-server replica**: Allowed arguments: show, list
- **postgres flexible-server server-logs**: Allowed arguments: show, list
- **postgres flexible-server virtual-endpoint**: Allowed arguments: show, list
- **provider operation**: Allowed arguments: show, list
- **provider permission**: Allowed arguments: show, list
- **redis access-policy**: Allowed arguments: show, list
- **redis access-policy-assignment**: Allowed arguments: show, list
- **redis firewall-rules**: Allowed arguments: show, list
- **redis identity**: Allowed arguments: show, list
- **redis patch-schedule**: Allowed arguments: show, list
- **redis server-link**: Allowed arguments: show, list
- **relay hyco authorization-rule**: Allowed arguments: show, list
- **relay namespace authorization-rule**: Allowed arguments: show, list
- **relay wcfrelay authorization-rule**: Allowed arguments: show, list
- **resource**: Allowed arguments: list, show
- **role assignment**: Allowed arguments: show, list
- **role definition**: Allowed arguments: show, list
- **role deny-assignment**: Allowed arguments: show, list
- **search offering**: Allowed arguments: show, list
- **search private-endpoint-connection**: Allowed arguments: show, list
- **search private-link-resource**: Allowed arguments: show, list
- **search service network-security-perimeter-configuration**: Allowed arguments: show, list
- **search service private-endpoint-connection**: Allowed arguments: show, list
- **search service private-link-resource**: Allowed arguments: show, list
- **search service shared-private-link-resource**: Allowed arguments: show, list
- **search shared-private-link-resource**: Allowed arguments: show, list
- **search usage**: Allowed arguments: show, list
- **security adaptive-application-controls**: Allowed arguments: show, list
- **security adaptive_network_hardenings**: Allowed arguments: show, list
- **security alert**: Allowed arguments: show, list
- **security alerts-suppression-rule**: Allowed arguments: show, list
- **security allowed_connections**: Allowed arguments: show, list
- **security api-collection apim**: Allowed arguments: show, list
- **security assessment**: Allowed arguments: show, list
- **security assessment-metadata**: Allowed arguments: show, list
- **security atp cosmosdb**: Allowed arguments: show, list
- **security atp storage**: Allowed arguments: show, list
- **security auto-provisioning-setting**: Allowed arguments: show, list
- **security automation**: Allowed arguments: show, list
- **security automation-action-event-hub**: Allowed arguments: show, list
- **security automation-action-logic-app**: Allowed arguments: show, list
- **security automation-action-workspace**: Allowed arguments: show, list
- **security automation-rule**: Allowed arguments: show, list
- **security automation-rule-set**: Allowed arguments: show, list
- **security automation-scope**: Allowed arguments: show, list
- **security automation-source**: Allowed arguments: show, list
- **security contact**: Allowed arguments: show, list
- **security discovered-security-solution**: Allowed arguments: show, list
- **security external-security-solution**: Allowed arguments: show, list
- **security iot-alerts**: Allowed arguments: show, list
- **security iot-analytics**: Allowed arguments: show, list
- **security iot-recommendations**: Allowed arguments: show, list
- **security iot-solution**: Allowed arguments: show, list
- **security jit-policy**: Allowed arguments: show, list
- **security location**: Allowed arguments: show, list
- **security pricing**: Allowed arguments: show, list
- **security regulatory-compliance-assessments**: Allowed arguments: show, list
- **security regulatory-compliance-controls**: Allowed arguments: show, list
- **security regulatory-compliance-standards**: Allowed arguments: show, list
- **security secure-score-control-definitions**: Allowed arguments: show, list
- **security secure-score-controls**: Allowed arguments: show, list
- **security secure-scores**: Allowed arguments: show, list
- **security security-connector devops azuredevopsorg project repo**: Allowed arguments: show, list
- **security security-connector devops githubowner repo**: Allowed arguments: show, list
- **security security-connector devops gitlabgroup project**: Allowed arguments: show, list
- **security security-solutions**: Allowed arguments: show, list
- **security security-solutions-reference-data**: Allowed arguments: show, list
- **security setting**: Allowed arguments: show, list
- **security sub-assessment**: Allowed arguments: show, list
- **security task**: Allowed arguments: show, list
- **security topology**: Allowed arguments: show, list
- **security va sql baseline**: Allowed arguments: show, list
- **security va sql results**: Allowed arguments: show, list
- **security va sql scans scan-operation-result**: Allowed arguments: show, list
- **security workspace-setting**: Allowed arguments: show, list
- **servicebus georecovery-alias authorization-rule**: Allowed arguments: show, list
- **servicebus migration**: Allowed arguments: show, list
- **servicebus namespace authorization-rule**: Allowed arguments: show, list
- **servicebus namespace encryption**: Allowed arguments: show, list
- **servicebus namespace identity**: Allowed arguments: show, list
- **servicebus namespace network-rule-set ip-rule**: Allowed arguments: show, list
- **servicebus namespace network-rule-set virtual-network-rule**: Allowed arguments: show, list
- **servicebus namespace private-endpoint-connection**: Allowed arguments: show, list
- **servicebus namespace private-link-resource**: Allowed arguments: show, list
- **servicebus namespace replica**: Allowed arguments: show, list
- **servicebus queue authorization-rule**: Allowed arguments: show, list
- **servicebus topic authorization-rule**: Allowed arguments: show, list
- **servicebus topic subscription rule**: Allowed arguments: show, list
- **sf application certificate**: Allowed arguments: show, list
- **sf application-type version**: Allowed arguments: show, list
- **sf cluster client-certificate**: Allowed arguments: show, list
- **sf cluster durability**: Allowed arguments: show, list
- **sf cluster node**: Allowed arguments: show, list
- **sf cluster node-type**: Allowed arguments: show, list
- **sf cluster reliability**: Allowed arguments: show, list
- **sf cluster setting**: Allowed arguments: show, list
- **sf cluster upgrade-type**: Allowed arguments: show, list
- **sf managed-application**: Allowed arguments: show, list
- **sf managed-application-type version**: Allowed arguments: show, list
- **sf managed-cluster client-certificate**: Allowed arguments: show, list
- **sf managed-cluster network-security-rule**: Allowed arguments: show, list
- **sf managed-node-type node**: Allowed arguments: show, list
- **sf managed-node-type vm-extension**: Allowed arguments: show, list
- **sf managed-service correlation-scheme**: Allowed arguments: show, list
- **sf managed-service load-metrics**: Allowed arguments: show, list
- **sf service**: Allowed arguments: show, list
- **sig gallery-application version**: Allowed arguments: show, list
- **sig identity**: Allowed arguments: show, list
- **sig image-definition**: Allowed arguments: show, list
- **sig image-version**: Allowed arguments: show, list
- **sig in-vm-access-control-profile**: Allowed arguments: show, list
- **sig in-vm-access-control-profile-version**: Allowed arguments: show, list
- **sig share**: Allowed arguments: show, list
- **signalr**: Allowed arguments: list, show
- **spring api-portal custom-domain**: Allowed arguments: show, list
- **spring apm**: Allowed arguments: show, list
- **spring app custom-domain**: Allowed arguments: show, list
- **spring app deployment**: Allowed arguments: show, list
- **spring app identity**: Allowed arguments: show, list
- **spring app-insights**: Allowed arguments: show, list
- **spring application-accelerator customized-accelerator**: Allowed arguments: show, list
- **spring application-accelerator predefined-accelerator**: Allowed arguments: show, list
- **spring application-configuration-service config**: Allowed arguments: show, list
- **spring application-configuration-service git repo**: Allowed arguments: show, list
- **spring application-live-view**: Allowed arguments: show, list
- **spring build-service build result**: Allowed arguments: show, list
- **spring build-service builder buildpack-binding**: Allowed arguments: show, list
- **spring certificate**: Allowed arguments: show, list
- **spring component instance**: Allowed arguments: show, list
- **spring config-server git repo**: Allowed arguments: show, list
- **spring connection**: Allowed arguments: show, list
- **spring container-registry**: Allowed arguments: show, list
- **spring dev-tool**: Allowed arguments: show, list
- **spring eureka-server**: Allowed arguments: show, list
- **spring gateway custom-domain**: Allowed arguments: show, list
- **spring gateway route-config**: Allowed arguments: show, list
- **spring job execution instance**: Allowed arguments: show, list
- **spring private-dns-zone**: Allowed arguments: show, list
- **spring service-registry**: Allowed arguments: show, list
- **spring storage**: Allowed arguments: show, list
- **spring test-endpoint**: Allowed arguments: show, list
- **sql db**: Allowed arguments: list, show
- **sql server**: Allowed arguments: list, show
- **staticwebapp**: Allowed arguments: list, show
- **storage account**: Allowed arguments: list, show
- **synapse activity-run**: Allowed arguments: show, list
- **synapse ad-only-auth**: Allowed arguments: show, list
- **synapse data-flow**: Allowed arguments: show, list
- **synapse dataset**: Allowed arguments: show, list
- **synapse integration-runtime managed**: Allowed arguments: show, list
- **synapse integration-runtime self-hosted**: Allowed arguments: show, list
- **synapse integration-runtime-node**: Allowed arguments: show, list
- **synapse kql-script**: Allowed arguments: show, list
- **synapse kusto attached-database-configuration**: Allowed arguments: show, list
- **synapse kusto data-connection event-grid**: Allowed arguments: show, list
- **synapse kusto data-connection event-hub**: Allowed arguments: show, list
- **synapse kusto data-connection iot-hub**: Allowed arguments: show, list
- **synapse kusto database**: Allowed arguments: show, list
- **synapse kusto database-principal-assignment**: Allowed arguments: show, list
- **synapse kusto pool**: Allowed arguments: show, list
- **synapse kusto pool-principal-assignment**: Allowed arguments: show, list
- **synapse kusto-operation**: Allowed arguments: show, list
- **synapse link-connection**: Allowed arguments: show, list
- **synapse linked-service**: Allowed arguments: show, list
- **synapse managed-private-endpoints**: Allowed arguments: show, list
- **synapse notebook**: Allowed arguments: show, list
- **synapse pipeline**: Allowed arguments: show, list
- **synapse pipeline-run**: Allowed arguments: show, list
- **synapse role assignment**: Allowed arguments: show, list
- **synapse role definition**: Allowed arguments: show, list
- **synapse role scope**: Allowed arguments: show, list
- **synapse spark job**: Allowed arguments: show, list
- **synapse spark pool**: Allowed arguments: show, list
- **synapse spark session**: Allowed arguments: show, list
- **synapse spark statement**: Allowed arguments: show, list
- **synapse spark-job-definition**: Allowed arguments: show, list
- **synapse sql ad-admin**: Allowed arguments: show, list
- **synapse sql audit-policy**: Allowed arguments: show, list
- **synapse sql pool audit-policy**: Allowed arguments: show, list
- **synapse sql pool classification recommendation**: Allowed arguments: show, list
- **synapse sql pool tde**: Allowed arguments: show, list
- **synapse sql pool threat-policy**: Allowed arguments: show, list
- **synapse sql-script**: Allowed arguments: show, list
- **synapse trigger**: Allowed arguments: show, list
- **synapse trigger-run**: Allowed arguments: show, list
- **synapse workspace firewall-rule**: Allowed arguments: show, list
- **synapse workspace managed-identity**: Allowed arguments: show, list
- **synapse workspace-package**: Allowed arguments: show, list
- **tag**: Allowed arguments: list
- **ts**: Allowed arguments: list, show
- **version**: Positional args accepted
- **vm aem**: Allowed arguments: show, list
- **vm application**: Allowed arguments: show, list
- **vm availability-set**: Allowed arguments: show, list
- **vm boot-diagnostics**: Allowed arguments: show, list
- **vm diagnostics**: Allowed arguments: show, list
- **vm disk**: Allowed arguments: show, list
- **vm encryption**: Allowed arguments: show, list
- **vm extension image**: Allowed arguments: show, list
- **vm host group**: Allowed arguments: show, list
- **vm identity**: Allowed arguments: show, list
- **vm image terms**: Allowed arguments: show, list
- **vm monitor log**: Allowed arguments: show, list
- **vm monitor metrics**: Allowed arguments: show, list
- **vm nic**: Allowed arguments: show, list
- **vm repair**: Allowed arguments: show, list
- **vm run-command**: Allowed arguments: show, list
- **vm unmanaged-disk**: Allowed arguments: show, list
- **vm user**: Allowed arguments: show, list
- **vmss application**: Allowed arguments: show, list
- **vmss diagnostics**: Allowed arguments: show, list
- **vmss disk**: Allowed arguments: show, list
- **vmss encryption**: Allowed arguments: show, list
- **vmss extension image**: Allowed arguments: show, list
- **vmss identity**: Allowed arguments: show, list
- **vmss nic**: Allowed arguments: show, list
- **vmss rolling-upgrade**: Allowed arguments: show, list
- **vmss run-command**: Allowed arguments: show, list
- **webapp**: Allowed arguments: list, show
- Allowed standalone flags: --help, -h, --version

**Examples:**

- `az mysql server show --name n --resource-group g`
- `az servicebus namespace list`
- `az batch pool show --pool-id p`
- `az container logs --name n --resource-group g`
- `az cdn name-exists --name n`
- `az search service show --name n --resource-group g`
- `az vm nic list --vm-name v --resource-group g`
- `az batch node list --pool-id p`
- `az eventhubs namespace authorization-rule list --namespace-name n --resource-group g`

### `doctl`
<p class="cmd-url"><a href="https://docs.digitalocean.com/reference/doctl/">https://docs.digitalocean.com/reference/doctl/</a></p>

- **account get**: Flags: --help, -h
- **account ratelimit**: Flags: --help, -h
- **apps get**: Flags: --help, -h
- **apps list**: Flags: --help, -h
- **auth list**: Flags: --help, -h
- **balance get**: Flags: --help, -h
- **billing-history list**: Flags: --help, -h
- **compute action**: Allowed arguments: list, get
- **compute cdn**: Allowed arguments: list, get
- **compute certificate**: Allowed arguments: list, get
- **compute domain**: Allowed arguments: list, get
- **compute droplet**: Allowed arguments: list, get
- **compute firewall**: Allowed arguments: list, get
- **compute image**: Allowed arguments: list, get
- **compute load-balancer**: Allowed arguments: list, get
- **compute region**: Allowed arguments: list
- **compute reserved-ip**: Allowed arguments: list, get
- **compute size**: Allowed arguments: list
- **compute snapshot**: Allowed arguments: list, get
- **compute ssh-key**: Allowed arguments: list, get
- **compute tag**: Allowed arguments: list, get
- **compute volume**: Allowed arguments: list, get
- **databases get**: Flags: --help, -h
- **databases list**: Flags: --help, -h
- **invoice**: Allowed arguments: list, get, summary
- **kubernetes cluster**: Allowed arguments: list, get
- **monitoring alert**: Allowed arguments: list, get
- **projects get**: Flags: --help, -h
- **projects list**: Flags: --help, -h
- **registry get**: Flags: --help, -h
- **version**
- **vpcs get**: Flags: --help, -h
- **vpcs list**: Flags: --help, -h
- Allowed standalone flags: --help, --version, -h, -v

**Examples:**

- `doctl version`
- `doctl account get`
- `doctl account ratelimit`
- `doctl balance get`
- `doctl billing-history list`
- `doctl invoice list`
- `doctl auth list`
- `doctl compute droplet list`
- `doctl compute droplet get 12345`
- `doctl compute snapshot list`
- `doctl compute load-balancer list`
- `doctl databases list`
- `doctl kubernetes cluster list`
- `doctl registry get`
- `doctl vpcs list`
- `doctl monitoring alert list`

### `exo`
<p class="cmd-url"><a href="https://community.exoscale.com/documentation/tools/exoscale-cli/">https://community.exoscale.com/documentation/tools/exoscale-cli/</a></p>

- **compute elastic-ip**: Allowed arguments: list, show
- **compute instance**: Allowed arguments: list, show
- **compute instance-type**: Allowed arguments: list, show
- **compute security-group**: Allowed arguments: list, show
- **compute ssh-key**: Allowed arguments: list, show
- **config list**: Flags: --help, -h
- **config show**: Flags: --help, -h
- **dbaas list**: Flags: --help, -h
- **dbaas show**: Flags: --help, -h
- **dbaas type**: Allowed arguments: list
- **dns list**: Flags: --help, -h
- **dns show**: Flags: --help, -h
- **limits**
- **status**
- **version**
- **zone**
- Allowed standalone flags: --help, -h

### `gcloud`
<p class="cmd-url"><a href="https://cloud.google.com/sdk/gcloud/reference">https://cloud.google.com/sdk/gcloud/reference</a></p>

- **access-context-manager authorized-orgs**: Allowed arguments: describe, list
- **access-context-manager cloud-bindings**: Allowed arguments: describe, list
- **access-context-manager levels conditions**: Allowed arguments: describe, list
- **access-context-manager perimeters dry-run**: Allowed arguments: describe, list
- **access-context-manager policies**: Allowed arguments: describe, list
- **access-context-manager supported-permissions**: Allowed arguments: describe, list
- **access-context-manager supported-services**: Allowed arguments: describe, list
- **ai custom-jobs**: Allowed arguments: describe, list
- **ai endpoints**: Allowed arguments: describe, list
- **ai hp-tuning-jobs**: Allowed arguments: describe, list
- **ai index-endpoints**: Allowed arguments: describe, list
- **ai indexes**: Allowed arguments: describe, list
- **ai model-garden models**: Allowed arguments: describe, list
- **ai model-monitoring-jobs**: Allowed arguments: describe, list
- **ai models**: Allowed arguments: describe, list
- **ai operations**: Allowed arguments: describe, list
- **ai persistent-resources**: Allowed arguments: describe, list
- **ai tensorboards**: Allowed arguments: describe, list
- **ai tuning-jobs**: Allowed arguments: describe, list
- **ai-platform jobs**: Allowed arguments: describe, list
- **ai-platform local**: Allowed arguments: describe, list
- **ai-platform models**: Allowed arguments: describe, list
- **ai-platform operations**: Allowed arguments: describe, list
- **ai-platform versions**: Allowed arguments: describe, list
- **alloydb backups**: Allowed arguments: describe, list
- **alloydb clusters**: Allowed arguments: describe, list
- **alloydb instances**: Allowed arguments: describe, list
- **alloydb operations**: Allowed arguments: describe, list
- **alloydb users**: Allowed arguments: describe, list
- **api-gateway api-configs**: Allowed arguments: describe, list
- **api-gateway apis**: Allowed arguments: describe, list
- **api-gateway gateways**: Allowed arguments: describe, list
- **api-gateway operations**: Allowed arguments: describe, list
- **apigee apis**: Allowed arguments: describe, list
- **apigee applications**: Allowed arguments: describe, list
- **apigee deployments**: Allowed arguments: describe, list
- **apigee developers**: Allowed arguments: describe, list
- **apigee environments**: Allowed arguments: describe, list
- **apigee organizations**: Allowed arguments: describe, list
- **apigee products**: Allowed arguments: describe, list
- **app instances**: Allowed arguments: describe, list
- **app services**: Allowed arguments: describe, list
- **app versions**: Allowed arguments: describe, list
- **artifacts apt**: Allowed arguments: describe, list
- **artifacts apt**: Allowed arguments: describe, list
- **artifacts attachments**: Allowed arguments: describe, list
- **artifacts attachments**: Allowed arguments: describe, list
- **artifacts docker images**: Allowed arguments: describe, list
- **artifacts docker images**: Allowed arguments: describe, list
- **artifacts docker tags**: Allowed arguments: describe, list
- **artifacts docker tags**: Allowed arguments: describe, list
- **artifacts files**: Allowed arguments: describe, list
- **artifacts files**: Allowed arguments: describe, list
- **artifacts generic**: Allowed arguments: describe, list
- **artifacts generic**: Allowed arguments: describe, list
- **artifacts go**: Allowed arguments: describe, list
- **artifacts go**: Allowed arguments: describe, list
- **artifacts image-streaming-cache**: Allowed arguments: describe, list
- **artifacts image-streaming-cache**: Allowed arguments: describe, list
- **artifacts locations**: Allowed arguments: describe, list
- **artifacts locations**: Allowed arguments: describe, list
- **artifacts operations**: Allowed arguments: describe, list
- **artifacts operations**: Allowed arguments: describe, list
- **artifacts packages**: Allowed arguments: describe, list
- **artifacts packages**: Allowed arguments: describe, list
- **artifacts print-settings**: Allowed arguments: describe, list
- **artifacts print-settings**: Allowed arguments: describe, list
- **artifacts projects**: Allowed arguments: describe, list
- **artifacts projects**: Allowed arguments: describe, list
- **artifacts repositories**: Allowed arguments: describe, list
- **artifacts repositories**: Allowed arguments: describe, list
- **artifacts rules**: Allowed arguments: describe, list
- **artifacts rules**: Allowed arguments: describe, list
- **artifacts sbom**: Allowed arguments: describe, list
- **artifacts sbom**: Allowed arguments: describe, list
- **artifacts settings**: Allowed arguments: describe, list
- **artifacts settings**: Allowed arguments: describe, list
- **artifacts tags**: Allowed arguments: describe, list
- **artifacts tags**: Allowed arguments: describe, list
- **artifacts versions**: Allowed arguments: describe, list
- **artifacts versions**: Allowed arguments: describe, list
- **artifacts vpcsc-config**: Allowed arguments: describe, list
- **artifacts vpcsc-config**: Allowed arguments: describe, list
- **artifacts vulnerabilities**: Allowed arguments: describe, list
- **artifacts vulnerabilities**: Allowed arguments: describe, list
- **artifacts yum**: Allowed arguments: describe, list
- **artifacts yum**: Allowed arguments: describe, list
- **assured operations**: Allowed arguments: describe, list
- **assured workloads violations**: Allowed arguments: describe, list
- **auth list**: Flags: --filter-account, --help, -h
- **auth print-access-token**
- **auth print-identity-token**
- **batch jobs**: Allowed arguments: describe, list
- **batch tasks**: Allowed arguments: describe, list
- **bigtable app-profiles**: Allowed arguments: describe, list
- **bigtable authorized-views**: Allowed arguments: describe, list
- **bigtable backups**: Allowed arguments: describe, list
- **bigtable clusters**: Allowed arguments: describe, list
- **bigtable hot-tablets**: Allowed arguments: describe, list
- **bigtable instances tables**: Allowed arguments: describe, list
- **bigtable logical-views**: Allowed arguments: describe, list
- **bigtable materialized-views**: Allowed arguments: describe, list
- **bigtable operations**: Allowed arguments: describe, list
- **bigtable schema-bundles**: Allowed arguments: describe, list
- **bigtable tables**: Allowed arguments: describe, list
- **billing accounts**: Allowed arguments: describe, list
- **billing budgets**: Allowed arguments: describe, list
- **billing projects**: Allowed arguments: describe, list
- **builds**: Allowed arguments: describe, list, log
- **certificate-manager certificates**: Allowed arguments: describe, list
- **certificate-manager dns-authorizations**: Allowed arguments: describe, list
- **certificate-manager issuance-configs**: Allowed arguments: describe, list
- **certificate-manager maps entries**: Allowed arguments: describe, list
- **certificate-manager operations**: Allowed arguments: describe, list
- **certificate-manager trust-configs**: Allowed arguments: describe, list
- **composer environments snapshots**: Allowed arguments: describe, list
- **composer environments storage dags**: Allowed arguments: describe, list
- **composer environments storage data**: Allowed arguments: describe, list
- **composer environments storage plugins**: Allowed arguments: describe, list
- **composer environments user-workloads-config-maps**: Allowed arguments: describe, list
- **composer operations**: Allowed arguments: describe, list
- **compute addresses**: Allowed arguments: describe, list
- **compute disks**: Allowed arguments: describe, list
- **compute firewall-rules**: Allowed arguments: describe, list
- **compute images**: Allowed arguments: describe, list
- **compute instances**: Allowed arguments: describe, list
- **compute machine-types**: Allowed arguments: describe, list
- **compute networks**: Allowed arguments: describe, list
- **compute regions**: Allowed arguments: describe, list
- **compute snapshots**: Allowed arguments: describe, list
- **compute zones**: Allowed arguments: describe, list
- **config get**: Flags: --help, -h
- **config get-value**: Flags: --help, -h
- **config list**: Flags: --all, --help, -h
- **container clusters**: Allowed arguments: describe, list
- **container images**: Allowed arguments: describe, list
- **container node-pools**: Allowed arguments: describe, list
- **container operations**: Allowed arguments: describe, list
- **dataflow flex-template**: Allowed arguments: describe, list
- **dataflow jobs**: Allowed arguments: describe, list
- **dataflow snapshots**: Allowed arguments: describe, list
- **dataflow yaml**: Allowed arguments: describe, list
- **dataproc autoscaling-policies**: Allowed arguments: describe, list
- **dataproc batches**: Allowed arguments: describe, list
- **dataproc clusters gke**: Allowed arguments: describe, list
- **dataproc jobs**: Allowed arguments: describe, list
- **dataproc node-groups**: Allowed arguments: describe, list
- **dataproc operations**: Allowed arguments: describe, list
- **dataproc workflow-templates**: Allowed arguments: describe, list
- **deploy automation-runs**: Allowed arguments: describe, list
- **deploy automations**: Allowed arguments: describe, list
- **deploy custom-target-types**: Allowed arguments: describe, list
- **deploy delivery-pipelines**: Allowed arguments: describe, list
- **deploy deploy-policies**: Allowed arguments: describe, list
- **deploy job-runs**: Allowed arguments: describe, list
- **deploy releases**: Allowed arguments: describe, list
- **deploy rollouts**: Allowed arguments: describe, list
- **deploy targets**: Allowed arguments: describe, list
- **dns managed-zones**: Allowed arguments: describe, list
- **dns record-sets**: Allowed arguments: describe, list
- **endpoints**: Allowed arguments: describe, list
- **essential-contacts**: Allowed arguments: compute, list
- **eventarc audit-logs-provider method-names**: Allowed arguments: describe, list
- **eventarc audit-logs-provider service-names**: Allowed arguments: describe, list
- **eventarc channel-connections**: Allowed arguments: describe, list
- **eventarc channels**: Allowed arguments: describe, list
- **eventarc enrollments**: Allowed arguments: describe, list
- **eventarc google-api-sources**: Allowed arguments: describe, list
- **eventarc google-channels**: Allowed arguments: describe, list
- **eventarc locations**: Allowed arguments: describe, list
- **eventarc message-buses**: Allowed arguments: describe, list
- **eventarc pipelines**: Allowed arguments: describe, list
- **eventarc providers**: Allowed arguments: describe, list
- **eventarc triggers**: Allowed arguments: describe, list
- **filestore backups**: Allowed arguments: describe, list
- **filestore instances snapshots**: Allowed arguments: describe, list
- **filestore locations**: Allowed arguments: describe, list
- **filestore operations**: Allowed arguments: describe, list
- **filestore regions**: Allowed arguments: describe, list
- **filestore zones**: Allowed arguments: describe, list
- **firestore backups schedules**: Allowed arguments: describe, list
- **firestore databases**: Allowed arguments: describe, list
- **firestore fields ttls**: Allowed arguments: describe, list
- **firestore indexes composite**: Allowed arguments: describe, list
- **firestore indexes fields**: Allowed arguments: describe, list
- **firestore locations**: Allowed arguments: describe, list
- **firestore operations**: Allowed arguments: describe, list
- **functions**: Allowed arguments: describe, list
- **healthcare consent-stores**: Allowed arguments: describe, list
- **healthcare datasets**: Allowed arguments: describe, list
- **healthcare dicom-stores**: Allowed arguments: describe, list
- **healthcare fhir-stores**: Allowed arguments: describe, list
- **healthcare hl7v2-stores**: Allowed arguments: describe, list
- **healthcare operations**: Allowed arguments: describe, list
- **iam roles**: Allowed arguments: describe, list
- **iam service-accounts**: Allowed arguments: describe, get-iam-policy, list
- **identity groups memberships**: Allowed arguments: describe, list
- **info**: Flags: --anonymize, --help, --run-diagnostics, -h
- **kms autokey-config**: Allowed arguments: describe, list
- **kms ekm-config**: Allowed arguments: describe, list
- **kms ekm-connections**: Allowed arguments: describe, list
- **kms import-jobs**: Allowed arguments: describe, list
- **kms inventory**: Allowed arguments: describe, list
- **kms key-handles**: Allowed arguments: describe, list
- **kms keyrings**: Allowed arguments: describe, list
- **kms keys versions**: Allowed arguments: describe, list
- **kms locations**: Allowed arguments: describe, list
- **kms operations**: Allowed arguments: describe, list
- **kms retired-resources**: Allowed arguments: describe, list
- **kms single-tenant-hsm proposal**: Allowed arguments: describe, list
- **logging logs**: Allowed arguments: describe, list
- **logging read**: Positional args accepted
- **memcache instances**: Allowed arguments: describe, list
- **memcache operations**: Allowed arguments: describe, list
- **memcache regions**: Allowed arguments: describe, list
- **monitoring dashboards**: Allowed arguments: describe, list
- **monitoring policies conditions**: Allowed arguments: describe, list
- **monitoring snoozes**: Allowed arguments: describe, list
- **monitoring uptime**: Allowed arguments: describe, list
- **network-management connectivity-tests**: Allowed arguments: describe, list
- **network-management network-monitoring-providers monitoring-points**: Allowed arguments: describe, list
- **network-management network-monitoring-providers network-paths**: Allowed arguments: describe, list
- **network-management network-monitoring-providers web-paths**: Allowed arguments: describe, list
- **network-management operations**: Allowed arguments: describe, list
- **network-management vpc-flow-logs-configs**: Allowed arguments: describe, list
- **network-services agent-gateways**: Allowed arguments: describe, list
- **network-services endpoint-policies**: Allowed arguments: describe, list
- **network-services gateways**: Allowed arguments: describe, list
- **network-services grpc-routes**: Allowed arguments: describe, list
- **network-services http-routes**: Allowed arguments: describe, list
- **network-services meshes**: Allowed arguments: describe, list
- **network-services multicast-consumer-associations**: Allowed arguments: describe, list
- **network-services multicast-domain-activations**: Allowed arguments: describe, list
- **network-services multicast-domain-groups**: Allowed arguments: describe, list
- **network-services multicast-domains**: Allowed arguments: describe, list
- **network-services multicast-group-consumer-activations**: Allowed arguments: describe, list
- **network-services multicast-group-producer-activations**: Allowed arguments: describe, list
- **network-services multicast-group-range-activations**: Allowed arguments: describe, list
- **network-services multicast-group-ranges**: Allowed arguments: describe, list
- **network-services multicast-producer-associations**: Allowed arguments: describe, list
- **network-services operations**: Allowed arguments: describe, list
- **network-services route-views**: Allowed arguments: describe, list
- **network-services service-bindings**: Allowed arguments: describe, list
- **network-services service-lb-policies**: Allowed arguments: describe, list
- **network-services tcp-routes**: Allowed arguments: describe, list
- **network-services tls-routes**: Allowed arguments: describe, list
- **notebooks environments**: Allowed arguments: describe, list
- **notebooks instances**: Allowed arguments: describe, list
- **notebooks locations**: Allowed arguments: describe, list
- **notebooks runtimes**: Allowed arguments: describe, list
- **organizations**: Allowed arguments: describe, list
- **policy-intelligence**: Allowed arguments: lint-condition, query-activity, troubleshoot-policy
- **projects**: Allowed arguments: describe, get-iam-policy, list
- **pubsub lite-operations**: Allowed arguments: describe, list
- **pubsub lite-reservations**: Allowed arguments: describe, list
- **pubsub lite-subscriptions**: Allowed arguments: describe, list
- **pubsub lite-topics**: Allowed arguments: describe, list
- **pubsub message-transforms**: Allowed arguments: describe, list
- **pubsub schemas**: Allowed arguments: describe, list
- **pubsub snapshots**: Allowed arguments: describe, list
- **pubsub subscriptions**: Allowed arguments: describe, list
- **pubsub topics**: Allowed arguments: describe, list
- **recaptcha firewall-policies**: Allowed arguments: describe, list
- **recaptcha keys**: Allowed arguments: describe, list
- **recommender insight-type-config**: Allowed arguments: describe, list
- **recommender insights**: Allowed arguments: describe, list
- **recommender recommendations**: Allowed arguments: describe, list
- **recommender recommender-config**: Allowed arguments: describe, list
- **redis acl-policies**: Allowed arguments: describe, list
- **redis clusters backup-collections**: Allowed arguments: describe, list
- **redis clusters backups**: Allowed arguments: describe, list
- **redis instances**: Allowed arguments: describe, list
- **redis operations**: Allowed arguments: describe, list
- **redis regions**: Allowed arguments: describe, list
- **redis zones**: Allowed arguments: describe, list
- **resource-manager capabilities**: Allowed arguments: describe, list
- **resource-manager folders**: Allowed arguments: describe, list
- **resource-manager org-policies**: Allowed arguments: describe, list
- **resource-manager tags bindings**: Allowed arguments: describe, list
- **resource-manager tags holds**: Allowed arguments: describe, list
- **resource-manager tags keys**: Allowed arguments: describe, list
- **resource-manager tags values**: Allowed arguments: describe, list
- **run services**: Allowed arguments: describe, list
- **scc custom-modules sha**: Allowed arguments: describe, list
- **scc manage custom-modules etd**: Allowed arguments: describe, list
- **scc manage custom-modules sha**: Allowed arguments: describe, list
- **scc manage services**: Allowed arguments: describe, list
- **scheduler cmek-config**: Allowed arguments: describe, list
- **scheduler jobs**: Allowed arguments: describe, list
- **scheduler locations**: Allowed arguments: describe, list
- **scheduler operations**: Allowed arguments: describe, list
- **secrets**: Allowed arguments: describe, list
- **service-directory endpoints**: Allowed arguments: describe, list
- **service-directory locations**: Allowed arguments: describe, list
- **service-directory namespaces**: Allowed arguments: describe, list
- **service-directory services**: Allowed arguments: describe, list
- **services**: Allowed arguments: list
- **source project-configs**: Allowed arguments: describe, list
- **source repos**: Allowed arguments: describe, list
- **spanner backup-schedules**: Allowed arguments: describe, list
- **spanner backups**: Allowed arguments: describe, list
- **spanner databases ddl**: Allowed arguments: describe, list
- **spanner databases roles**: Allowed arguments: describe, list
- **spanner databases sessions**: Allowed arguments: describe, list
- **spanner databases splits**: Allowed arguments: describe, list
- **spanner instance-configs**: Allowed arguments: describe, list
- **spanner instance-partitions**: Allowed arguments: describe, list
- **spanner instances**: Allowed arguments: describe, list
- **spanner operations**: Allowed arguments: describe, list
- **spanner rows**: Allowed arguments: describe, list
- **spanner samples**: Allowed arguments: describe, list
- **sql databases**: Allowed arguments: describe, list
- **sql instances**: Allowed arguments: describe, list
- **sql operations**: Allowed arguments: describe, list
- **storage batch-operations bucket-operations**: Allowed arguments: describe, list
- **storage batch-operations jobs**: Allowed arguments: describe, list
- **storage buckets anywhere-caches**: Allowed arguments: describe, list
- **storage buckets notifications**: Allowed arguments: describe, list
- **storage folders**: Allowed arguments: describe, list
- **storage hmac**: Allowed arguments: describe, list
- **storage insights dataset-configs**: Allowed arguments: describe, list
- **storage insights inventory-reports details**: Allowed arguments: describe, list
- **storage intelligence-configs**: Allowed arguments: describe, list
- **storage intelligence-findings revisions**: Allowed arguments: describe, list
- **storage managed-folders**: Allowed arguments: describe, list
- **storage objects**: Allowed arguments: describe, list
- **storage operations**: Allowed arguments: describe, list
- **tasks cmek-config**: Allowed arguments: describe, list
- **tasks locations**: Allowed arguments: describe, list
- **tasks queues**: Allowed arguments: describe, list
- **transfer agent-pools**: Allowed arguments: describe, list
- **transfer agents**: Allowed arguments: describe, list
- **transfer jobs**: Allowed arguments: describe, list
- **transfer operations**: Allowed arguments: describe, list
- **version**: Positional args accepted
- **vmware announcements**: Allowed arguments: describe, list
- **vmware datastores**: Allowed arguments: describe, list
- **vmware dns-bind-permission**: Allowed arguments: describe, list
- **vmware locations**: Allowed arguments: describe, list
- **vmware network-peerings routes**: Allowed arguments: describe, list
- **vmware network-policies external-access-rules**: Allowed arguments: describe, list
- **vmware networks**: Allowed arguments: describe, list
- **vmware node-types**: Allowed arguments: describe, list
- **vmware operations**: Allowed arguments: describe, list
- **vmware private-clouds clusters nodes**: Allowed arguments: describe, list
- **vmware private-clouds dns-forwarding**: Allowed arguments: describe, list
- **vmware private-clouds external-addresses**: Allowed arguments: describe, list
- **vmware private-clouds hcx activationkeys**: Allowed arguments: describe, list
- **vmware private-clouds logging-servers**: Allowed arguments: describe, list
- **vmware private-clouds management-dns-zone-bindings**: Allowed arguments: describe, list
- **vmware private-clouds nsx**: Allowed arguments: describe, list
- **vmware private-clouds subnets**: Allowed arguments: describe, list
- **vmware private-clouds upgrades**: Allowed arguments: describe, list
- **vmware private-clouds vcenter**: Allowed arguments: describe, list
- **vmware private-connections routes**: Allowed arguments: describe, list
- **workflows executions**: Allowed arguments: describe, list
- Allowed standalone flags: --help, -h, --version

### `hcloud`
<p class="cmd-url"><a href="https://github.com/hetznercloud/cli">https://github.com/hetznercloud/cli</a></p>

- **all list**: Flags: --help, -h. Valued: --output, -o
- **certificate describe**: Flags: --help, -h. Valued: --output, -o
- **certificate list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **context active**: Flags: --help, -h
- **context list**: Flags: --help, -h
- **datacenter describe**: Flags: --help, -h. Valued: --output, -o
- **datacenter list**: Flags: --help, -h. Valued: --output, -o
- **firewall describe**: Flags: --help, -h. Valued: --output, -o
- **firewall list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **floating-ip describe**: Flags: --help, -h. Valued: --output, -o
- **floating-ip list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **image describe**: Flags: --help, -h. Valued: --output, -o
- **image list**: Flags: --help, -h. Valued: --output, --selector, --type, -l, -o
- **iso describe**: Flags: --help, -h. Valued: --output, -o
- **iso list**: Flags: --help, -h. Valued: --output, -o
- **load-balancer describe**: Flags: --help, -h. Valued: --output, -o
- **load-balancer list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **load-balancer-type describe**: Flags: --help, -h. Valued: --output, -o
- **load-balancer-type list**: Flags: --help, -h. Valued: --output, -o
- **location describe**: Flags: --help, -h. Valued: --output, -o
- **location list**: Flags: --help, -h. Valued: --output, -o
- **network describe**: Flags: --help, -h. Valued: --output, -o
- **network list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **placement-group describe**: Flags: --help, -h. Valued: --output, -o
- **placement-group list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **primary-ip describe**: Flags: --help, -h. Valued: --output, -o
- **primary-ip list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **server describe**: Flags: --help, -h. Valued: --output, -o
- **server list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **server-type describe**: Flags: --help, -h. Valued: --output, -o
- **server-type list**: Flags: --help, -h. Valued: --output, -o
- **ssh-key describe**: Flags: --help, -h. Valued: --output, -o
- **ssh-key list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **storage-box describe**: Flags: --help, -h. Valued: --output, -o
- **storage-box list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **storage-box-type describe**: Flags: --help, -h. Valued: --output, -o
- **storage-box-type list**: Flags: --help, -h. Valued: --output, -o
- **version**
- **volume describe**: Flags: --help, -h. Valued: --output, -o
- **volume list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- **zone describe**: Flags: --help, -h. Valued: --output, -o
- **zone list**: Flags: --help, -h. Valued: --output, --selector, -l, -o
- Allowed standalone flags: --help, --version, -h, -v

**Examples:**

- `hcloud version`
- `hcloud server list`
- `hcloud server list -o json`
- `hcloud server describe my-server`
- `hcloud image list --type system`
- `hcloud datacenter list`
- `hcloud iso list`
- `hcloud zone list`
- `hcloud all list`
- `hcloud context list`

### `linode-cli`
<p class="cmd-url"><a href="https://www.linode.com/docs/products/tools/cli/get-started/">https://www.linode.com/docs/products/tools/cli/get-started/</a></p>

- **account events-list**: Flags: --help
- **account invoice-view**: Flags: --help
- **account invoices-list**: Flags: --help
- **account notifications-list**: Flags: --help
- **account transfer**: Flags: --help
- **account view**: Flags: --help
- **databases list**: Flags: --help
- **domains list**: Flags: --help
- **domains view**: Flags: --help
- **firewalls list**: Flags: --help
- **firewalls view**: Flags: --help
- **images list**: Flags: --help
- **images view**: Flags: --help
- **linodes kernels**: Flags: --help
- **linodes list**: Flags: --help
- **linodes types**: Flags: --help
- **linodes view**: Flags: --help
- **lke cluster-view**: Flags: --help
- **lke clusters-list**: Flags: --help
- **networking ip-view**: Flags: --help
- **networking ips-list**: Flags: --help
- **nodebalancers list**: Flags: --help
- **nodebalancers view**: Flags: --help
- **profile view**: Flags: --help
- **regions list**: Flags: --help
- **regions view**: Flags: --help
- **stackscripts list**: Flags: --help
- **stackscripts view**: Flags: --help
- **tags list**: Flags: --help
- **tickets list**: Flags: --help
- **tickets view**: Flags: --help
- **volumes list**: Flags: --help
- **volumes view**: Flags: --help
- **vpcs list**: Flags: --help
- **vpcs view**: Flags: --help
- Allowed standalone flags: --help, --version

**Examples:**

- `linode-cli linodes list`
- `linode-cli linodes view 123`
- `linode-cli linodes types`
- `linode-cli linodes kernels`
- `linode-cli regions list`
- `linode-cli images list`
- `linode-cli volumes list`
- `linode-cli account view`
- `linode-cli account invoices-list`
- `linode-cli tickets list`
- `linode-cli stackscripts list`
- `linode-cli vpcs list`
- `linode-cli tags list`

### `oci`
<p class="cmd-url"><a href="https://docs.oracle.com/en-us/iaas/tools/oci-cli/latest/oci_cli_docs/">https://docs.oracle.com/en-us/iaas/tools/oci-cli/latest/oci_cli_docs/</a></p>

- **audit event**: Allowed arguments: list
- **budgets alert-rule**: Allowed arguments: list, get
- **budgets budget**: Allowed arguments: list, get
- **bv boot-volume**: Allowed arguments: list, get
- **bv volume**: Allowed arguments: list, get
- **bv volume-backup**: Allowed arguments: list, get
- **bv volume-group**: Allowed arguments: list, get
- **compute boot-volume-attachment**: Allowed arguments: list, get
- **compute image**: Allowed arguments: list, get
- **compute instance**: Allowed arguments: list, get
- **compute shape**: Allowed arguments: list
- **compute vnic-attachment**: Allowed arguments: list, get
- **db autonomous-database**: Allowed arguments: list, get
- **db backup**: Allowed arguments: list, get
- **db database**: Allowed arguments: list, get
- **db db-home**: Allowed arguments: list, get
- **db db-node**: Allowed arguments: list, get
- **db db-system**: Allowed arguments: list, get
- **fs export**: Allowed arguments: list, get
- **fs file-system**: Allowed arguments: list, get
- **fs mount-target**: Allowed arguments: list, get
- **fs snapshot**: Allowed arguments: list, get
- **iam availability-domain**: Allowed arguments: list
- **iam compartment**: Allowed arguments: list, get
- **iam dynamic-group**: Allowed arguments: list, get
- **iam fault-domain**: Allowed arguments: list
- **iam group**: Allowed arguments: list, get
- **iam policy**: Allowed arguments: list, get
- **iam region**: Allowed arguments: list
- **iam tag**: Allowed arguments: list, get
- **iam tag-namespace**: Allowed arguments: list, get
- **iam user**: Allowed arguments: list, get
- **lb backend**: Allowed arguments: list, get
- **lb backend-set**: Allowed arguments: list, get
- **lb certificate**: Allowed arguments: list, get
- **lb listener**: Allowed arguments: list, get
- **lb load-balancer**: Allowed arguments: list, get
- **limits limit-definition**: Allowed arguments: list
- **limits limit-value**: Allowed arguments: list
- **limits resource-availability**: Allowed arguments: get
- **limits service**: Allowed arguments: list
- **logging log**: Allowed arguments: list, get
- **logging log-group**: Allowed arguments: list, get
- **monitoring alarm**: Allowed arguments: list, get
- **network drg**: Allowed arguments: list, get
- **network internet-gateway**: Allowed arguments: list, get
- **network nat-gateway**: Allowed arguments: list, get
- **network nsg**: Allowed arguments: list, get
- **network public-ip**: Allowed arguments: list, get
- **network route-table**: Allowed arguments: list, get
- **network security-list**: Allowed arguments: list, get
- **network service-gateway**: Allowed arguments: list, get
- **network subnet**: Allowed arguments: list, get
- **network vcn**: Allowed arguments: list, get
- **os bucket**: Allowed arguments: list, get
- **os ns**: Allowed arguments: get
- **os object**: Allowed arguments: list
- **os preauth-request**: Allowed arguments: list, get
- **work-requests work-request**: Allowed arguments: list, get
- **work-requests work-request-error**: Allowed arguments: list
- **work-requests work-request-log-entry**: Allowed arguments: list
- Allowed standalone flags: --help, --version, -v

**Examples:**

- `oci iam compartment list --compartment-id ocid1.tenancy.oc1..aaa`
- `oci iam region list`
- `oci compute instance list --compartment-id ocid1.compartment.oc1..aaa`
- `oci compute instance get --instance-id ocid1.instance.oc1..aaa`
- `oci network vcn list --compartment-id ocid1.compartment.oc1..aaa`
- `oci bv volume list --compartment-id ocid1.compartment.oc1..aaa`
- `oci os ns get`
- `oci os bucket list --compartment-id ocid1.compartment.oc1..aaa --namespace-name n`
- `oci os object list --bucket-name b --namespace-name n`
- `oci db autonomous-database list --compartment-id ocid1.compartment.oc1..aaa`
- `oci lb load-balancer list --compartment-id ocid1.compartment.oc1..aaa`

### `scw`
<p class="cmd-url"><a href="https://github.com/scaleway/scaleway-cli">https://github.com/scaleway/scaleway-cli</a></p>

- **account project**: Allowed arguments: list
- **dns record**: Allowed arguments: list
- **dns zone**: Allowed arguments: list
- **instance image**: Allowed arguments: list, get
- **instance ip**: Allowed arguments: list, get
- **instance security-group**: Allowed arguments: list, get
- **instance server**: Allowed arguments: list, get
- **instance snapshot**: Allowed arguments: list, get
- **instance volume**: Allowed arguments: list, get
- **k8s cluster**: Allowed arguments: list, get
- **k8s pool**: Allowed arguments: list, get
- **lb lb**: Allowed arguments: list, get
- **rdb instance**: Allowed arguments: list, get
- **registry image**: Allowed arguments: list
- **registry namespace**: Allowed arguments: list
- **vpc private-network**: Allowed arguments: list
- Allowed standalone flags: --help, -h

### `stapler`
<p class="cmd-url"><a href="https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution/customizing_the_notarization_workflow">https://developer.apple.com/documentation/security/notarizing_macos_software_before_distribution/customizing_the_notarization_workflow</a></p>

- **staple**: Flags: -q, -v
- **validate**: Flags: -q, -v

### `vultr-cli`
<p class="cmd-url"><a href="https://github.com/vultr/vultr-cli">https://github.com/vultr/vultr-cli</a></p>

- **account**
- **bare-metal get**: Flags: --help, -h
- **bare-metal list**: Flags: --help, -h
- **block-storage get**: Flags: --help, -h
- **block-storage list**: Flags: --help, -h
- **database get**: Flags: --help, -h
- **database list**: Flags: --help, -h
- **dns domain**: Allowed arguments: list
- **dns record**: Allowed arguments: list
- **firewall group**: Allowed arguments: list
- **firewall rule**: Allowed arguments: list
- **instance get**: Flags: --help, -h
- **instance list**: Flags: --help, -h
- **kubernetes get**: Flags: --help, -h
- **kubernetes list**: Flags: --help, -h
- **os list**: Flags: --help, -h
- **plans list**: Flags: --help, -h
- **regions list**: Flags: --help, -h
- **version**
- Allowed standalone flags: --help, --version, -h, -v