@bussolabs/closeyourit-cli 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/tickets/attachment-download.js +3 -3
- package/dist/commands/tickets/comments.js +9 -4
- package/dist/commands/tickets/show.d.ts +5 -0
- package/dist/commands/tickets/show.js +90 -6
- package/dist/lib/output.d.ts +13 -0
- package/dist/lib/output.js +13 -0
- package/oclif.manifest.json +1134 -1132
- package/opencli.json +84 -3
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -469,233 +469,6 @@
|
|
|
469
469
|
"update.js"
|
|
470
470
|
]
|
|
471
471
|
},
|
|
472
|
-
"environments:create": {
|
|
473
|
-
"aliases": [],
|
|
474
|
-
"args": {
|
|
475
|
-
"code": {
|
|
476
|
-
"description": "Environment code (lowercase, e.g. production)",
|
|
477
|
-
"name": "code",
|
|
478
|
-
"required": true
|
|
479
|
-
}
|
|
480
|
-
},
|
|
481
|
-
"description": "Create an environment (production, staging, …) in your organization",
|
|
482
|
-
"examples": [
|
|
483
|
-
"<%= config.bin %> environments create production --label Production",
|
|
484
|
-
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
485
|
-
],
|
|
486
|
-
"flags": {
|
|
487
|
-
"json": {
|
|
488
|
-
"description": "Format output as json.",
|
|
489
|
-
"helpGroup": "GLOBAL",
|
|
490
|
-
"name": "json",
|
|
491
|
-
"allowNo": false,
|
|
492
|
-
"type": "boolean"
|
|
493
|
-
},
|
|
494
|
-
"label": {
|
|
495
|
-
"description": "Human-readable label",
|
|
496
|
-
"name": "label",
|
|
497
|
-
"required": true,
|
|
498
|
-
"hasDynamicHelp": false,
|
|
499
|
-
"multiple": false,
|
|
500
|
-
"type": "option"
|
|
501
|
-
},
|
|
502
|
-
"color": {
|
|
503
|
-
"description": "Color label",
|
|
504
|
-
"name": "color",
|
|
505
|
-
"default": "emerald",
|
|
506
|
-
"hasDynamicHelp": false,
|
|
507
|
-
"multiple": false,
|
|
508
|
-
"type": "option"
|
|
509
|
-
},
|
|
510
|
-
"position": {
|
|
511
|
-
"description": "Sort position",
|
|
512
|
-
"name": "position",
|
|
513
|
-
"hasDynamicHelp": false,
|
|
514
|
-
"multiple": false,
|
|
515
|
-
"type": "option"
|
|
516
|
-
},
|
|
517
|
-
"active": {
|
|
518
|
-
"description": "Whether the environment is active",
|
|
519
|
-
"name": "active",
|
|
520
|
-
"allowNo": true,
|
|
521
|
-
"type": "boolean"
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
|
-
"hasDynamicHelp": false,
|
|
525
|
-
"hiddenAliases": [],
|
|
526
|
-
"id": "environments:create",
|
|
527
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
528
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
529
|
-
"pluginType": "core",
|
|
530
|
-
"strict": true,
|
|
531
|
-
"enableJsonFlag": true,
|
|
532
|
-
"isESM": false,
|
|
533
|
-
"relativePath": [
|
|
534
|
-
"dist",
|
|
535
|
-
"commands",
|
|
536
|
-
"environments",
|
|
537
|
-
"create.js"
|
|
538
|
-
]
|
|
539
|
-
},
|
|
540
|
-
"environments:delete": {
|
|
541
|
-
"aliases": [],
|
|
542
|
-
"args": {
|
|
543
|
-
"environment": {
|
|
544
|
-
"description": "Environment id (UUID) or code",
|
|
545
|
-
"name": "environment",
|
|
546
|
-
"required": true
|
|
547
|
-
}
|
|
548
|
-
},
|
|
549
|
-
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
550
|
-
"examples": [
|
|
551
|
-
"<%= config.bin %> environments delete staging --confirm"
|
|
552
|
-
],
|
|
553
|
-
"flags": {
|
|
554
|
-
"json": {
|
|
555
|
-
"description": "Format output as json.",
|
|
556
|
-
"helpGroup": "GLOBAL",
|
|
557
|
-
"name": "json",
|
|
558
|
-
"allowNo": false,
|
|
559
|
-
"type": "boolean"
|
|
560
|
-
},
|
|
561
|
-
"confirm": {
|
|
562
|
-
"description": "Required: confirm the deletion",
|
|
563
|
-
"name": "confirm",
|
|
564
|
-
"allowNo": false,
|
|
565
|
-
"type": "boolean"
|
|
566
|
-
}
|
|
567
|
-
},
|
|
568
|
-
"hasDynamicHelp": false,
|
|
569
|
-
"hiddenAliases": [],
|
|
570
|
-
"id": "environments:delete",
|
|
571
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
572
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
573
|
-
"pluginType": "core",
|
|
574
|
-
"strict": true,
|
|
575
|
-
"enableJsonFlag": true,
|
|
576
|
-
"isESM": false,
|
|
577
|
-
"relativePath": [
|
|
578
|
-
"dist",
|
|
579
|
-
"commands",
|
|
580
|
-
"environments",
|
|
581
|
-
"delete.js"
|
|
582
|
-
]
|
|
583
|
-
},
|
|
584
|
-
"environments:list": {
|
|
585
|
-
"aliases": [],
|
|
586
|
-
"args": {},
|
|
587
|
-
"description": "List the environments (production, staging, …) in your organization",
|
|
588
|
-
"examples": [
|
|
589
|
-
"<%= config.bin %> environments list",
|
|
590
|
-
"<%= config.bin %> environments list --page 2 --json"
|
|
591
|
-
],
|
|
592
|
-
"flags": {
|
|
593
|
-
"json": {
|
|
594
|
-
"description": "Format output as json.",
|
|
595
|
-
"helpGroup": "GLOBAL",
|
|
596
|
-
"name": "json",
|
|
597
|
-
"allowNo": false,
|
|
598
|
-
"type": "boolean"
|
|
599
|
-
},
|
|
600
|
-
"page": {
|
|
601
|
-
"description": "Page number",
|
|
602
|
-
"name": "page",
|
|
603
|
-
"default": 1,
|
|
604
|
-
"hasDynamicHelp": false,
|
|
605
|
-
"multiple": false,
|
|
606
|
-
"type": "option"
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
|
-
"hasDynamicHelp": false,
|
|
610
|
-
"hiddenAliases": [],
|
|
611
|
-
"id": "environments:list",
|
|
612
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
613
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
614
|
-
"pluginType": "core",
|
|
615
|
-
"strict": true,
|
|
616
|
-
"enableJsonFlag": true,
|
|
617
|
-
"isESM": false,
|
|
618
|
-
"relativePath": [
|
|
619
|
-
"dist",
|
|
620
|
-
"commands",
|
|
621
|
-
"environments",
|
|
622
|
-
"list.js"
|
|
623
|
-
]
|
|
624
|
-
},
|
|
625
|
-
"environments:update": {
|
|
626
|
-
"aliases": [],
|
|
627
|
-
"args": {
|
|
628
|
-
"environment": {
|
|
629
|
-
"description": "Environment id (UUID) or code",
|
|
630
|
-
"name": "environment",
|
|
631
|
-
"required": true
|
|
632
|
-
}
|
|
633
|
-
},
|
|
634
|
-
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
635
|
-
"examples": [
|
|
636
|
-
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
637
|
-
"<%= config.bin %> environments update production --color indigo",
|
|
638
|
-
"<%= config.bin %> environments update staging --no-active"
|
|
639
|
-
],
|
|
640
|
-
"flags": {
|
|
641
|
-
"json": {
|
|
642
|
-
"description": "Format output as json.",
|
|
643
|
-
"helpGroup": "GLOBAL",
|
|
644
|
-
"name": "json",
|
|
645
|
-
"allowNo": false,
|
|
646
|
-
"type": "boolean"
|
|
647
|
-
},
|
|
648
|
-
"code": {
|
|
649
|
-
"description": "New code (lowercase)",
|
|
650
|
-
"name": "code",
|
|
651
|
-
"hasDynamicHelp": false,
|
|
652
|
-
"multiple": false,
|
|
653
|
-
"type": "option"
|
|
654
|
-
},
|
|
655
|
-
"label": {
|
|
656
|
-
"description": "New label",
|
|
657
|
-
"name": "label",
|
|
658
|
-
"hasDynamicHelp": false,
|
|
659
|
-
"multiple": false,
|
|
660
|
-
"type": "option"
|
|
661
|
-
},
|
|
662
|
-
"color": {
|
|
663
|
-
"description": "Color label",
|
|
664
|
-
"name": "color",
|
|
665
|
-
"hasDynamicHelp": false,
|
|
666
|
-
"multiple": false,
|
|
667
|
-
"type": "option"
|
|
668
|
-
},
|
|
669
|
-
"position": {
|
|
670
|
-
"description": "Sort position",
|
|
671
|
-
"name": "position",
|
|
672
|
-
"hasDynamicHelp": false,
|
|
673
|
-
"multiple": false,
|
|
674
|
-
"type": "option"
|
|
675
|
-
},
|
|
676
|
-
"active": {
|
|
677
|
-
"description": "Whether the environment is active",
|
|
678
|
-
"name": "active",
|
|
679
|
-
"allowNo": true,
|
|
680
|
-
"type": "boolean"
|
|
681
|
-
}
|
|
682
|
-
},
|
|
683
|
-
"hasDynamicHelp": false,
|
|
684
|
-
"hiddenAliases": [],
|
|
685
|
-
"id": "environments:update",
|
|
686
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
687
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
688
|
-
"pluginType": "core",
|
|
689
|
-
"strict": true,
|
|
690
|
-
"enableJsonFlag": true,
|
|
691
|
-
"isESM": false,
|
|
692
|
-
"relativePath": [
|
|
693
|
-
"dist",
|
|
694
|
-
"commands",
|
|
695
|
-
"environments",
|
|
696
|
-
"update.js"
|
|
697
|
-
]
|
|
698
|
-
},
|
|
699
472
|
"groups:create": {
|
|
700
473
|
"aliases": [],
|
|
701
474
|
"args": {
|
|
@@ -1049,13 +822,19 @@
|
|
|
1049
822
|
"revoke.js"
|
|
1050
823
|
]
|
|
1051
824
|
},
|
|
1052
|
-
"
|
|
825
|
+
"environments:create": {
|
|
1053
826
|
"aliases": [],
|
|
1054
|
-
"args": {
|
|
1055
|
-
|
|
827
|
+
"args": {
|
|
828
|
+
"code": {
|
|
829
|
+
"description": "Environment code (lowercase, e.g. production)",
|
|
830
|
+
"name": "code",
|
|
831
|
+
"required": true
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
"description": "Create an environment (production, staging, …) in your organization",
|
|
1056
835
|
"examples": [
|
|
1057
|
-
"<%= config.bin %>
|
|
1058
|
-
"<%= config.bin %>
|
|
836
|
+
"<%= config.bin %> environments create production --label Production",
|
|
837
|
+
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
1059
838
|
],
|
|
1060
839
|
"flags": {
|
|
1061
840
|
"json": {
|
|
@@ -1065,21 +844,242 @@
|
|
|
1065
844
|
"allowNo": false,
|
|
1066
845
|
"type": "boolean"
|
|
1067
846
|
},
|
|
1068
|
-
"
|
|
1069
|
-
"
|
|
1070
|
-
"
|
|
1071
|
-
"name": "project",
|
|
847
|
+
"label": {
|
|
848
|
+
"description": "Human-readable label",
|
|
849
|
+
"name": "label",
|
|
1072
850
|
"required": true,
|
|
1073
851
|
"hasDynamicHelp": false,
|
|
1074
852
|
"multiple": false,
|
|
1075
853
|
"type": "option"
|
|
1076
854
|
},
|
|
1077
|
-
"
|
|
1078
|
-
"description": "
|
|
1079
|
-
"name": "
|
|
1080
|
-
"default":
|
|
1081
|
-
"hasDynamicHelp": false,
|
|
1082
|
-
"multiple": false,
|
|
855
|
+
"color": {
|
|
856
|
+
"description": "Color label",
|
|
857
|
+
"name": "color",
|
|
858
|
+
"default": "emerald",
|
|
859
|
+
"hasDynamicHelp": false,
|
|
860
|
+
"multiple": false,
|
|
861
|
+
"type": "option"
|
|
862
|
+
},
|
|
863
|
+
"position": {
|
|
864
|
+
"description": "Sort position",
|
|
865
|
+
"name": "position",
|
|
866
|
+
"hasDynamicHelp": false,
|
|
867
|
+
"multiple": false,
|
|
868
|
+
"type": "option"
|
|
869
|
+
},
|
|
870
|
+
"active": {
|
|
871
|
+
"description": "Whether the environment is active",
|
|
872
|
+
"name": "active",
|
|
873
|
+
"allowNo": true,
|
|
874
|
+
"type": "boolean"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
"hasDynamicHelp": false,
|
|
878
|
+
"hiddenAliases": [],
|
|
879
|
+
"id": "environments:create",
|
|
880
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
881
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
882
|
+
"pluginType": "core",
|
|
883
|
+
"strict": true,
|
|
884
|
+
"enableJsonFlag": true,
|
|
885
|
+
"isESM": false,
|
|
886
|
+
"relativePath": [
|
|
887
|
+
"dist",
|
|
888
|
+
"commands",
|
|
889
|
+
"environments",
|
|
890
|
+
"create.js"
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
"environments:delete": {
|
|
894
|
+
"aliases": [],
|
|
895
|
+
"args": {
|
|
896
|
+
"environment": {
|
|
897
|
+
"description": "Environment id (UUID) or code",
|
|
898
|
+
"name": "environment",
|
|
899
|
+
"required": true
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
903
|
+
"examples": [
|
|
904
|
+
"<%= config.bin %> environments delete staging --confirm"
|
|
905
|
+
],
|
|
906
|
+
"flags": {
|
|
907
|
+
"json": {
|
|
908
|
+
"description": "Format output as json.",
|
|
909
|
+
"helpGroup": "GLOBAL",
|
|
910
|
+
"name": "json",
|
|
911
|
+
"allowNo": false,
|
|
912
|
+
"type": "boolean"
|
|
913
|
+
},
|
|
914
|
+
"confirm": {
|
|
915
|
+
"description": "Required: confirm the deletion",
|
|
916
|
+
"name": "confirm",
|
|
917
|
+
"allowNo": false,
|
|
918
|
+
"type": "boolean"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"hasDynamicHelp": false,
|
|
922
|
+
"hiddenAliases": [],
|
|
923
|
+
"id": "environments:delete",
|
|
924
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
925
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
926
|
+
"pluginType": "core",
|
|
927
|
+
"strict": true,
|
|
928
|
+
"enableJsonFlag": true,
|
|
929
|
+
"isESM": false,
|
|
930
|
+
"relativePath": [
|
|
931
|
+
"dist",
|
|
932
|
+
"commands",
|
|
933
|
+
"environments",
|
|
934
|
+
"delete.js"
|
|
935
|
+
]
|
|
936
|
+
},
|
|
937
|
+
"environments:list": {
|
|
938
|
+
"aliases": [],
|
|
939
|
+
"args": {},
|
|
940
|
+
"description": "List the environments (production, staging, …) in your organization",
|
|
941
|
+
"examples": [
|
|
942
|
+
"<%= config.bin %> environments list",
|
|
943
|
+
"<%= config.bin %> environments list --page 2 --json"
|
|
944
|
+
],
|
|
945
|
+
"flags": {
|
|
946
|
+
"json": {
|
|
947
|
+
"description": "Format output as json.",
|
|
948
|
+
"helpGroup": "GLOBAL",
|
|
949
|
+
"name": "json",
|
|
950
|
+
"allowNo": false,
|
|
951
|
+
"type": "boolean"
|
|
952
|
+
},
|
|
953
|
+
"page": {
|
|
954
|
+
"description": "Page number",
|
|
955
|
+
"name": "page",
|
|
956
|
+
"default": 1,
|
|
957
|
+
"hasDynamicHelp": false,
|
|
958
|
+
"multiple": false,
|
|
959
|
+
"type": "option"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
"hasDynamicHelp": false,
|
|
963
|
+
"hiddenAliases": [],
|
|
964
|
+
"id": "environments:list",
|
|
965
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
966
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
967
|
+
"pluginType": "core",
|
|
968
|
+
"strict": true,
|
|
969
|
+
"enableJsonFlag": true,
|
|
970
|
+
"isESM": false,
|
|
971
|
+
"relativePath": [
|
|
972
|
+
"dist",
|
|
973
|
+
"commands",
|
|
974
|
+
"environments",
|
|
975
|
+
"list.js"
|
|
976
|
+
]
|
|
977
|
+
},
|
|
978
|
+
"environments:update": {
|
|
979
|
+
"aliases": [],
|
|
980
|
+
"args": {
|
|
981
|
+
"environment": {
|
|
982
|
+
"description": "Environment id (UUID) or code",
|
|
983
|
+
"name": "environment",
|
|
984
|
+
"required": true
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
988
|
+
"examples": [
|
|
989
|
+
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
990
|
+
"<%= config.bin %> environments update production --color indigo",
|
|
991
|
+
"<%= config.bin %> environments update staging --no-active"
|
|
992
|
+
],
|
|
993
|
+
"flags": {
|
|
994
|
+
"json": {
|
|
995
|
+
"description": "Format output as json.",
|
|
996
|
+
"helpGroup": "GLOBAL",
|
|
997
|
+
"name": "json",
|
|
998
|
+
"allowNo": false,
|
|
999
|
+
"type": "boolean"
|
|
1000
|
+
},
|
|
1001
|
+
"code": {
|
|
1002
|
+
"description": "New code (lowercase)",
|
|
1003
|
+
"name": "code",
|
|
1004
|
+
"hasDynamicHelp": false,
|
|
1005
|
+
"multiple": false,
|
|
1006
|
+
"type": "option"
|
|
1007
|
+
},
|
|
1008
|
+
"label": {
|
|
1009
|
+
"description": "New label",
|
|
1010
|
+
"name": "label",
|
|
1011
|
+
"hasDynamicHelp": false,
|
|
1012
|
+
"multiple": false,
|
|
1013
|
+
"type": "option"
|
|
1014
|
+
},
|
|
1015
|
+
"color": {
|
|
1016
|
+
"description": "Color label",
|
|
1017
|
+
"name": "color",
|
|
1018
|
+
"hasDynamicHelp": false,
|
|
1019
|
+
"multiple": false,
|
|
1020
|
+
"type": "option"
|
|
1021
|
+
},
|
|
1022
|
+
"position": {
|
|
1023
|
+
"description": "Sort position",
|
|
1024
|
+
"name": "position",
|
|
1025
|
+
"hasDynamicHelp": false,
|
|
1026
|
+
"multiple": false,
|
|
1027
|
+
"type": "option"
|
|
1028
|
+
},
|
|
1029
|
+
"active": {
|
|
1030
|
+
"description": "Whether the environment is active",
|
|
1031
|
+
"name": "active",
|
|
1032
|
+
"allowNo": true,
|
|
1033
|
+
"type": "boolean"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"hasDynamicHelp": false,
|
|
1037
|
+
"hiddenAliases": [],
|
|
1038
|
+
"id": "environments:update",
|
|
1039
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1040
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1041
|
+
"pluginType": "core",
|
|
1042
|
+
"strict": true,
|
|
1043
|
+
"enableJsonFlag": true,
|
|
1044
|
+
"isESM": false,
|
|
1045
|
+
"relativePath": [
|
|
1046
|
+
"dist",
|
|
1047
|
+
"commands",
|
|
1048
|
+
"environments",
|
|
1049
|
+
"update.js"
|
|
1050
|
+
]
|
|
1051
|
+
},
|
|
1052
|
+
"errors:list": {
|
|
1053
|
+
"aliases": [],
|
|
1054
|
+
"args": {},
|
|
1055
|
+
"description": "List error groups for a project",
|
|
1056
|
+
"examples": [
|
|
1057
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
1058
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1059
|
+
],
|
|
1060
|
+
"flags": {
|
|
1061
|
+
"json": {
|
|
1062
|
+
"description": "Format output as json.",
|
|
1063
|
+
"helpGroup": "GLOBAL",
|
|
1064
|
+
"name": "json",
|
|
1065
|
+
"allowNo": false,
|
|
1066
|
+
"type": "boolean"
|
|
1067
|
+
},
|
|
1068
|
+
"project": {
|
|
1069
|
+
"char": "p",
|
|
1070
|
+
"description": "Project id (UUID) or key",
|
|
1071
|
+
"name": "project",
|
|
1072
|
+
"required": true,
|
|
1073
|
+
"hasDynamicHelp": false,
|
|
1074
|
+
"multiple": false,
|
|
1075
|
+
"type": "option"
|
|
1076
|
+
},
|
|
1077
|
+
"page": {
|
|
1078
|
+
"description": "Page number",
|
|
1079
|
+
"name": "page",
|
|
1080
|
+
"default": 1,
|
|
1081
|
+
"hasDynamicHelp": false,
|
|
1082
|
+
"multiple": false,
|
|
1083
1083
|
"type": "option"
|
|
1084
1084
|
},
|
|
1085
1085
|
"status": {
|
|
@@ -1459,13 +1459,13 @@
|
|
|
1459
1459
|
"list.js"
|
|
1460
1460
|
]
|
|
1461
1461
|
},
|
|
1462
|
-
"
|
|
1462
|
+
"members:list": {
|
|
1463
1463
|
"aliases": [],
|
|
1464
1464
|
"args": {},
|
|
1465
|
-
"description": "List
|
|
1465
|
+
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
1466
1466
|
"examples": [
|
|
1467
|
-
"<%= config.bin %>
|
|
1468
|
-
"<%= config.bin %>
|
|
1467
|
+
"<%= config.bin %> members list",
|
|
1468
|
+
"<%= config.bin %> members list --json"
|
|
1469
1469
|
],
|
|
1470
1470
|
"flags": {
|
|
1471
1471
|
"json": {
|
|
@@ -1475,15 +1475,6 @@
|
|
|
1475
1475
|
"allowNo": false,
|
|
1476
1476
|
"type": "boolean"
|
|
1477
1477
|
},
|
|
1478
|
-
"project": {
|
|
1479
|
-
"char": "p",
|
|
1480
|
-
"description": "Project id (UUID) or key",
|
|
1481
|
-
"name": "project",
|
|
1482
|
-
"required": true,
|
|
1483
|
-
"hasDynamicHelp": false,
|
|
1484
|
-
"multiple": false,
|
|
1485
|
-
"type": "option"
|
|
1486
|
-
},
|
|
1487
1478
|
"page": {
|
|
1488
1479
|
"description": "Page number",
|
|
1489
1480
|
"name": "page",
|
|
@@ -1491,18 +1482,11 @@
|
|
|
1491
1482
|
"hasDynamicHelp": false,
|
|
1492
1483
|
"multiple": false,
|
|
1493
1484
|
"type": "option"
|
|
1494
|
-
},
|
|
1495
|
-
"kind": {
|
|
1496
|
-
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1497
|
-
"name": "kind",
|
|
1498
|
-
"hasDynamicHelp": false,
|
|
1499
|
-
"multiple": false,
|
|
1500
|
-
"type": "option"
|
|
1501
1485
|
}
|
|
1502
1486
|
},
|
|
1503
1487
|
"hasDynamicHelp": false,
|
|
1504
1488
|
"hiddenAliases": [],
|
|
1505
|
-
"id": "
|
|
1489
|
+
"id": "members:list",
|
|
1506
1490
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1507
1491
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1508
1492
|
"pluginType": "core",
|
|
@@ -1512,22 +1496,24 @@
|
|
|
1512
1496
|
"relativePath": [
|
|
1513
1497
|
"dist",
|
|
1514
1498
|
"commands",
|
|
1515
|
-
"
|
|
1499
|
+
"members",
|
|
1516
1500
|
"list.js"
|
|
1517
1501
|
]
|
|
1518
1502
|
},
|
|
1519
|
-
"
|
|
1503
|
+
"members:set-access": {
|
|
1520
1504
|
"aliases": [],
|
|
1521
1505
|
"args": {
|
|
1522
1506
|
"id": {
|
|
1523
|
-
"description": "
|
|
1507
|
+
"description": "Membership id",
|
|
1524
1508
|
"name": "id",
|
|
1525
1509
|
"required": true
|
|
1526
1510
|
}
|
|
1527
1511
|
},
|
|
1528
|
-
"description": "
|
|
1512
|
+
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
1529
1513
|
"examples": [
|
|
1530
|
-
"<%= config.bin %>
|
|
1514
|
+
"<%= config.bin %> members set-access <membership-id> --project acme-api --project acme-web",
|
|
1515
|
+
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1516
|
+
"<%= config.bin %> members set-access <membership-id>"
|
|
1531
1517
|
],
|
|
1532
1518
|
"flags": {
|
|
1533
1519
|
"json": {
|
|
@@ -1537,19 +1523,26 @@
|
|
|
1537
1523
|
"allowNo": false,
|
|
1538
1524
|
"type": "boolean"
|
|
1539
1525
|
},
|
|
1526
|
+
"group": {
|
|
1527
|
+
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
1528
|
+
"name": "group",
|
|
1529
|
+
"default": [],
|
|
1530
|
+
"hasDynamicHelp": false,
|
|
1531
|
+
"multiple": true,
|
|
1532
|
+
"type": "option"
|
|
1533
|
+
},
|
|
1540
1534
|
"project": {
|
|
1541
|
-
"
|
|
1542
|
-
"description": "Project id (UUID) or key",
|
|
1535
|
+
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
1543
1536
|
"name": "project",
|
|
1544
|
-
"
|
|
1537
|
+
"default": [],
|
|
1545
1538
|
"hasDynamicHelp": false,
|
|
1546
|
-
"multiple":
|
|
1539
|
+
"multiple": true,
|
|
1547
1540
|
"type": "option"
|
|
1548
1541
|
}
|
|
1549
1542
|
},
|
|
1550
1543
|
"hasDynamicHelp": false,
|
|
1551
1544
|
"hiddenAliases": [],
|
|
1552
|
-
"id": "
|
|
1545
|
+
"id": "members:set-access",
|
|
1553
1546
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1554
1547
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1555
1548
|
"pluginType": "core",
|
|
@@ -1559,22 +1552,23 @@
|
|
|
1559
1552
|
"relativePath": [
|
|
1560
1553
|
"dist",
|
|
1561
1554
|
"commands",
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1555
|
+
"members",
|
|
1556
|
+
"set-access.js"
|
|
1564
1557
|
]
|
|
1565
1558
|
},
|
|
1566
|
-
"
|
|
1559
|
+
"members:set-role": {
|
|
1567
1560
|
"aliases": [],
|
|
1568
1561
|
"args": {
|
|
1569
1562
|
"id": {
|
|
1570
|
-
"description": "
|
|
1563
|
+
"description": "Membership id",
|
|
1571
1564
|
"name": "id",
|
|
1572
1565
|
"required": true
|
|
1573
1566
|
}
|
|
1574
1567
|
},
|
|
1575
|
-
"description": "
|
|
1568
|
+
"description": "Change a member's organization role",
|
|
1576
1569
|
"examples": [
|
|
1577
|
-
"<%= config.bin %>
|
|
1570
|
+
"<%= config.bin %> members set-role <membership-id> --role admin",
|
|
1571
|
+
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1578
1572
|
],
|
|
1579
1573
|
"flags": {
|
|
1580
1574
|
"json": {
|
|
@@ -1584,19 +1578,24 @@
|
|
|
1584
1578
|
"allowNo": false,
|
|
1585
1579
|
"type": "boolean"
|
|
1586
1580
|
},
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1590
|
-
"name": "project",
|
|
1581
|
+
"role": {
|
|
1582
|
+
"description": "Organization role",
|
|
1583
|
+
"name": "role",
|
|
1591
1584
|
"required": true,
|
|
1592
1585
|
"hasDynamicHelp": false,
|
|
1593
1586
|
"multiple": false,
|
|
1587
|
+
"options": [
|
|
1588
|
+
"member",
|
|
1589
|
+
"admin",
|
|
1590
|
+
"owner",
|
|
1591
|
+
"customer"
|
|
1592
|
+
],
|
|
1594
1593
|
"type": "option"
|
|
1595
1594
|
}
|
|
1596
1595
|
},
|
|
1597
1596
|
"hasDynamicHelp": false,
|
|
1598
1597
|
"hiddenAliases": [],
|
|
1599
|
-
"id": "
|
|
1598
|
+
"id": "members:set-role",
|
|
1600
1599
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1601
1600
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1602
1601
|
"pluginType": "core",
|
|
@@ -1606,17 +1605,17 @@
|
|
|
1606
1605
|
"relativePath": [
|
|
1607
1606
|
"dist",
|
|
1608
1607
|
"commands",
|
|
1609
|
-
"
|
|
1610
|
-
"
|
|
1608
|
+
"members",
|
|
1609
|
+
"set-role.js"
|
|
1611
1610
|
]
|
|
1612
1611
|
},
|
|
1613
|
-
"
|
|
1612
|
+
"metrics:list": {
|
|
1614
1613
|
"aliases": [],
|
|
1615
1614
|
"args": {},
|
|
1616
|
-
"description": "List
|
|
1615
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
1617
1616
|
"examples": [
|
|
1618
|
-
"<%= config.bin %>
|
|
1619
|
-
"<%= config.bin %>
|
|
1617
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
1618
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
1620
1619
|
],
|
|
1621
1620
|
"flags": {
|
|
1622
1621
|
"json": {
|
|
@@ -1626,6 +1625,15 @@
|
|
|
1626
1625
|
"allowNo": false,
|
|
1627
1626
|
"type": "boolean"
|
|
1628
1627
|
},
|
|
1628
|
+
"project": {
|
|
1629
|
+
"char": "p",
|
|
1630
|
+
"description": "Project id (UUID) or key",
|
|
1631
|
+
"name": "project",
|
|
1632
|
+
"required": true,
|
|
1633
|
+
"hasDynamicHelp": false,
|
|
1634
|
+
"multiple": false,
|
|
1635
|
+
"type": "option"
|
|
1636
|
+
},
|
|
1629
1637
|
"page": {
|
|
1630
1638
|
"description": "Page number",
|
|
1631
1639
|
"name": "page",
|
|
@@ -1633,11 +1641,18 @@
|
|
|
1633
1641
|
"hasDynamicHelp": false,
|
|
1634
1642
|
"multiple": false,
|
|
1635
1643
|
"type": "option"
|
|
1644
|
+
},
|
|
1645
|
+
"kind": {
|
|
1646
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1647
|
+
"name": "kind",
|
|
1648
|
+
"hasDynamicHelp": false,
|
|
1649
|
+
"multiple": false,
|
|
1650
|
+
"type": "option"
|
|
1636
1651
|
}
|
|
1637
1652
|
},
|
|
1638
1653
|
"hasDynamicHelp": false,
|
|
1639
1654
|
"hiddenAliases": [],
|
|
1640
|
-
"id": "
|
|
1655
|
+
"id": "metrics:list",
|
|
1641
1656
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1642
1657
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1643
1658
|
"pluginType": "core",
|
|
@@ -1647,24 +1662,22 @@
|
|
|
1647
1662
|
"relativePath": [
|
|
1648
1663
|
"dist",
|
|
1649
1664
|
"commands",
|
|
1650
|
-
"
|
|
1665
|
+
"metrics",
|
|
1651
1666
|
"list.js"
|
|
1652
1667
|
]
|
|
1653
1668
|
},
|
|
1654
|
-
"
|
|
1669
|
+
"metrics:promote": {
|
|
1655
1670
|
"aliases": [],
|
|
1656
1671
|
"args": {
|
|
1657
1672
|
"id": {
|
|
1658
|
-
"description": "
|
|
1673
|
+
"description": "Metric group id",
|
|
1659
1674
|
"name": "id",
|
|
1660
1675
|
"required": true
|
|
1661
1676
|
}
|
|
1662
1677
|
},
|
|
1663
|
-
"description": "
|
|
1678
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
1664
1679
|
"examples": [
|
|
1665
|
-
"<%= config.bin %>
|
|
1666
|
-
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1667
|
-
"<%= config.bin %> members set-access <membership-id>"
|
|
1680
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
1668
1681
|
],
|
|
1669
1682
|
"flags": {
|
|
1670
1683
|
"json": {
|
|
@@ -1674,26 +1687,19 @@
|
|
|
1674
1687
|
"allowNo": false,
|
|
1675
1688
|
"type": "boolean"
|
|
1676
1689
|
},
|
|
1677
|
-
"group": {
|
|
1678
|
-
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
1679
|
-
"name": "group",
|
|
1680
|
-
"default": [],
|
|
1681
|
-
"hasDynamicHelp": false,
|
|
1682
|
-
"multiple": true,
|
|
1683
|
-
"type": "option"
|
|
1684
|
-
},
|
|
1685
1690
|
"project": {
|
|
1686
|
-
"
|
|
1691
|
+
"char": "p",
|
|
1692
|
+
"description": "Project id (UUID) or key",
|
|
1687
1693
|
"name": "project",
|
|
1688
|
-
"
|
|
1694
|
+
"required": true,
|
|
1689
1695
|
"hasDynamicHelp": false,
|
|
1690
|
-
"multiple":
|
|
1696
|
+
"multiple": false,
|
|
1691
1697
|
"type": "option"
|
|
1692
1698
|
}
|
|
1693
1699
|
},
|
|
1694
1700
|
"hasDynamicHelp": false,
|
|
1695
1701
|
"hiddenAliases": [],
|
|
1696
|
-
"id": "
|
|
1702
|
+
"id": "metrics:promote",
|
|
1697
1703
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1698
1704
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1699
1705
|
"pluginType": "core",
|
|
@@ -1703,23 +1709,22 @@
|
|
|
1703
1709
|
"relativePath": [
|
|
1704
1710
|
"dist",
|
|
1705
1711
|
"commands",
|
|
1706
|
-
"
|
|
1707
|
-
"
|
|
1712
|
+
"metrics",
|
|
1713
|
+
"promote.js"
|
|
1708
1714
|
]
|
|
1709
1715
|
},
|
|
1710
|
-
"
|
|
1716
|
+
"metrics:show": {
|
|
1711
1717
|
"aliases": [],
|
|
1712
1718
|
"args": {
|
|
1713
1719
|
"id": {
|
|
1714
|
-
"description": "
|
|
1720
|
+
"description": "Metric group id",
|
|
1715
1721
|
"name": "id",
|
|
1716
1722
|
"required": true
|
|
1717
1723
|
}
|
|
1718
1724
|
},
|
|
1719
|
-
"description": "
|
|
1725
|
+
"description": "Show a single metric group",
|
|
1720
1726
|
"examples": [
|
|
1721
|
-
"<%= config.bin %>
|
|
1722
|
-
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1727
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
1723
1728
|
],
|
|
1724
1729
|
"flags": {
|
|
1725
1730
|
"json": {
|
|
@@ -1729,24 +1734,19 @@
|
|
|
1729
1734
|
"allowNo": false,
|
|
1730
1735
|
"type": "boolean"
|
|
1731
1736
|
},
|
|
1732
|
-
"
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
1737
|
+
"project": {
|
|
1738
|
+
"char": "p",
|
|
1739
|
+
"description": "Project id (UUID) or key",
|
|
1740
|
+
"name": "project",
|
|
1735
1741
|
"required": true,
|
|
1736
1742
|
"hasDynamicHelp": false,
|
|
1737
1743
|
"multiple": false,
|
|
1738
|
-
"options": [
|
|
1739
|
-
"member",
|
|
1740
|
-
"admin",
|
|
1741
|
-
"owner",
|
|
1742
|
-
"customer"
|
|
1743
|
-
],
|
|
1744
1744
|
"type": "option"
|
|
1745
1745
|
}
|
|
1746
1746
|
},
|
|
1747
1747
|
"hasDynamicHelp": false,
|
|
1748
1748
|
"hiddenAliases": [],
|
|
1749
|
-
"id": "
|
|
1749
|
+
"id": "metrics:show",
|
|
1750
1750
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1751
1751
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1752
1752
|
"pluginType": "core",
|
|
@@ -1756,8 +1756,8 @@
|
|
|
1756
1756
|
"relativePath": [
|
|
1757
1757
|
"dist",
|
|
1758
1758
|
"commands",
|
|
1759
|
-
"
|
|
1760
|
-
"
|
|
1759
|
+
"metrics",
|
|
1760
|
+
"show.js"
|
|
1761
1761
|
]
|
|
1762
1762
|
},
|
|
1763
1763
|
"milestones:create": {
|
|
@@ -2510,6 +2510,98 @@
|
|
|
2510
2510
|
"update.js"
|
|
2511
2511
|
]
|
|
2512
2512
|
},
|
|
2513
|
+
"org:show": {
|
|
2514
|
+
"aliases": [],
|
|
2515
|
+
"args": {},
|
|
2516
|
+
"description": "Show your organization settings",
|
|
2517
|
+
"examples": [
|
|
2518
|
+
"<%= config.bin %> org show",
|
|
2519
|
+
"<%= config.bin %> org show --json"
|
|
2520
|
+
],
|
|
2521
|
+
"flags": {
|
|
2522
|
+
"json": {
|
|
2523
|
+
"description": "Format output as json.",
|
|
2524
|
+
"helpGroup": "GLOBAL",
|
|
2525
|
+
"name": "json",
|
|
2526
|
+
"allowNo": false,
|
|
2527
|
+
"type": "boolean"
|
|
2528
|
+
}
|
|
2529
|
+
},
|
|
2530
|
+
"hasDynamicHelp": false,
|
|
2531
|
+
"hiddenAliases": [],
|
|
2532
|
+
"id": "org:show",
|
|
2533
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2534
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2535
|
+
"pluginType": "core",
|
|
2536
|
+
"strict": true,
|
|
2537
|
+
"enableJsonFlag": true,
|
|
2538
|
+
"isESM": false,
|
|
2539
|
+
"relativePath": [
|
|
2540
|
+
"dist",
|
|
2541
|
+
"commands",
|
|
2542
|
+
"org",
|
|
2543
|
+
"show.js"
|
|
2544
|
+
]
|
|
2545
|
+
},
|
|
2546
|
+
"org:update": {
|
|
2547
|
+
"aliases": [],
|
|
2548
|
+
"args": {},
|
|
2549
|
+
"description": "Update your organization settings (requires organization.manage)",
|
|
2550
|
+
"examples": [
|
|
2551
|
+
"<%= config.bin %> org update --name \"Acme Inc\"",
|
|
2552
|
+
"<%= config.bin %> org update --slug acme-inc",
|
|
2553
|
+
"<%= config.bin %> org update --projects-view table"
|
|
2554
|
+
],
|
|
2555
|
+
"flags": {
|
|
2556
|
+
"json": {
|
|
2557
|
+
"description": "Format output as json.",
|
|
2558
|
+
"helpGroup": "GLOBAL",
|
|
2559
|
+
"name": "json",
|
|
2560
|
+
"allowNo": false,
|
|
2561
|
+
"type": "boolean"
|
|
2562
|
+
},
|
|
2563
|
+
"name": {
|
|
2564
|
+
"description": "New organization name",
|
|
2565
|
+
"name": "name",
|
|
2566
|
+
"hasDynamicHelp": false,
|
|
2567
|
+
"multiple": false,
|
|
2568
|
+
"type": "option"
|
|
2569
|
+
},
|
|
2570
|
+
"slug": {
|
|
2571
|
+
"description": "New organization slug (lowercase, a-z 0-9 and hyphens)",
|
|
2572
|
+
"name": "slug",
|
|
2573
|
+
"hasDynamicHelp": false,
|
|
2574
|
+
"multiple": false,
|
|
2575
|
+
"type": "option"
|
|
2576
|
+
},
|
|
2577
|
+
"projects-view": {
|
|
2578
|
+
"description": "Default projects list view",
|
|
2579
|
+
"name": "projects-view",
|
|
2580
|
+
"hasDynamicHelp": false,
|
|
2581
|
+
"multiple": false,
|
|
2582
|
+
"options": [
|
|
2583
|
+
"cards",
|
|
2584
|
+
"table"
|
|
2585
|
+
],
|
|
2586
|
+
"type": "option"
|
|
2587
|
+
}
|
|
2588
|
+
},
|
|
2589
|
+
"hasDynamicHelp": false,
|
|
2590
|
+
"hiddenAliases": [],
|
|
2591
|
+
"id": "org:update",
|
|
2592
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2593
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2594
|
+
"pluginType": "core",
|
|
2595
|
+
"strict": true,
|
|
2596
|
+
"enableJsonFlag": true,
|
|
2597
|
+
"isESM": false,
|
|
2598
|
+
"relativePath": [
|
|
2599
|
+
"dist",
|
|
2600
|
+
"commands",
|
|
2601
|
+
"org",
|
|
2602
|
+
"update.js"
|
|
2603
|
+
]
|
|
2604
|
+
},
|
|
2513
2605
|
"platforms:create": {
|
|
2514
2606
|
"aliases": [],
|
|
2515
2607
|
"args": {
|
|
@@ -2737,112 +2829,18 @@
|
|
|
2737
2829
|
"update.js"
|
|
2738
2830
|
]
|
|
2739
2831
|
},
|
|
2740
|
-
"
|
|
2832
|
+
"roles:create": {
|
|
2741
2833
|
"aliases": [],
|
|
2742
|
-
"args": {
|
|
2743
|
-
|
|
2834
|
+
"args": {
|
|
2835
|
+
"name": {
|
|
2836
|
+
"description": "Role name",
|
|
2837
|
+
"name": "name",
|
|
2838
|
+
"required": true
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
2744
2842
|
"examples": [
|
|
2745
|
-
"<%= config.bin %>
|
|
2746
|
-
"<%= config.bin %> org show --json"
|
|
2747
|
-
],
|
|
2748
|
-
"flags": {
|
|
2749
|
-
"json": {
|
|
2750
|
-
"description": "Format output as json.",
|
|
2751
|
-
"helpGroup": "GLOBAL",
|
|
2752
|
-
"name": "json",
|
|
2753
|
-
"allowNo": false,
|
|
2754
|
-
"type": "boolean"
|
|
2755
|
-
}
|
|
2756
|
-
},
|
|
2757
|
-
"hasDynamicHelp": false,
|
|
2758
|
-
"hiddenAliases": [],
|
|
2759
|
-
"id": "org:show",
|
|
2760
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2761
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2762
|
-
"pluginType": "core",
|
|
2763
|
-
"strict": true,
|
|
2764
|
-
"enableJsonFlag": true,
|
|
2765
|
-
"isESM": false,
|
|
2766
|
-
"relativePath": [
|
|
2767
|
-
"dist",
|
|
2768
|
-
"commands",
|
|
2769
|
-
"org",
|
|
2770
|
-
"show.js"
|
|
2771
|
-
]
|
|
2772
|
-
},
|
|
2773
|
-
"org:update": {
|
|
2774
|
-
"aliases": [],
|
|
2775
|
-
"args": {},
|
|
2776
|
-
"description": "Update your organization settings (requires organization.manage)",
|
|
2777
|
-
"examples": [
|
|
2778
|
-
"<%= config.bin %> org update --name \"Acme Inc\"",
|
|
2779
|
-
"<%= config.bin %> org update --slug acme-inc",
|
|
2780
|
-
"<%= config.bin %> org update --projects-view table"
|
|
2781
|
-
],
|
|
2782
|
-
"flags": {
|
|
2783
|
-
"json": {
|
|
2784
|
-
"description": "Format output as json.",
|
|
2785
|
-
"helpGroup": "GLOBAL",
|
|
2786
|
-
"name": "json",
|
|
2787
|
-
"allowNo": false,
|
|
2788
|
-
"type": "boolean"
|
|
2789
|
-
},
|
|
2790
|
-
"name": {
|
|
2791
|
-
"description": "New organization name",
|
|
2792
|
-
"name": "name",
|
|
2793
|
-
"hasDynamicHelp": false,
|
|
2794
|
-
"multiple": false,
|
|
2795
|
-
"type": "option"
|
|
2796
|
-
},
|
|
2797
|
-
"slug": {
|
|
2798
|
-
"description": "New organization slug (lowercase, a-z 0-9 and hyphens)",
|
|
2799
|
-
"name": "slug",
|
|
2800
|
-
"hasDynamicHelp": false,
|
|
2801
|
-
"multiple": false,
|
|
2802
|
-
"type": "option"
|
|
2803
|
-
},
|
|
2804
|
-
"projects-view": {
|
|
2805
|
-
"description": "Default projects list view",
|
|
2806
|
-
"name": "projects-view",
|
|
2807
|
-
"hasDynamicHelp": false,
|
|
2808
|
-
"multiple": false,
|
|
2809
|
-
"options": [
|
|
2810
|
-
"cards",
|
|
2811
|
-
"table"
|
|
2812
|
-
],
|
|
2813
|
-
"type": "option"
|
|
2814
|
-
}
|
|
2815
|
-
},
|
|
2816
|
-
"hasDynamicHelp": false,
|
|
2817
|
-
"hiddenAliases": [],
|
|
2818
|
-
"id": "org:update",
|
|
2819
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2820
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2821
|
-
"pluginType": "core",
|
|
2822
|
-
"strict": true,
|
|
2823
|
-
"enableJsonFlag": true,
|
|
2824
|
-
"isESM": false,
|
|
2825
|
-
"relativePath": [
|
|
2826
|
-
"dist",
|
|
2827
|
-
"commands",
|
|
2828
|
-
"org",
|
|
2829
|
-
"update.js"
|
|
2830
|
-
]
|
|
2831
|
-
},
|
|
2832
|
-
"projects:create": {
|
|
2833
|
-
"aliases": [],
|
|
2834
|
-
"args": {
|
|
2835
|
-
"name": {
|
|
2836
|
-
"description": "Project name",
|
|
2837
|
-
"name": "name",
|
|
2838
|
-
"required": true
|
|
2839
|
-
}
|
|
2840
|
-
},
|
|
2841
|
-
"description": "Create a project (optionally inside a group)",
|
|
2842
|
-
"examples": [
|
|
2843
|
-
"<%= config.bin %> projects create driverone-rails --key DRRA",
|
|
2844
|
-
"<%= config.bin %> projects create driverone-rails --group DriverOne --key DRRA",
|
|
2845
|
-
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
2843
|
+
"<%= config.bin %> roles create Client --permission tickets.edit --permission tickets.assign"
|
|
2846
2844
|
],
|
|
2847
2845
|
"flags": {
|
|
2848
2846
|
"json": {
|
|
@@ -2859,34 +2857,17 @@
|
|
|
2859
2857
|
"multiple": false,
|
|
2860
2858
|
"type": "option"
|
|
2861
2859
|
},
|
|
2862
|
-
"
|
|
2863
|
-
"description": "
|
|
2864
|
-
"name": "
|
|
2865
|
-
"hasDynamicHelp": false,
|
|
2866
|
-
"multiple": false,
|
|
2867
|
-
"type": "option"
|
|
2868
|
-
},
|
|
2869
|
-
"group": {
|
|
2870
|
-
"char": "g",
|
|
2871
|
-
"description": "Group id (UUID) or name to place the project in",
|
|
2872
|
-
"name": "group",
|
|
2873
|
-
"hasDynamicHelp": false,
|
|
2874
|
-
"multiple": false,
|
|
2875
|
-
"type": "option"
|
|
2876
|
-
},
|
|
2877
|
-
"key": {
|
|
2878
|
-
"char": "k",
|
|
2879
|
-
"description": "Project key (uppercase A-Z0-9, max 4 chars, unique per org)",
|
|
2880
|
-
"name": "key",
|
|
2881
|
-
"required": true,
|
|
2860
|
+
"permission": {
|
|
2861
|
+
"description": "Permission key from the catalog (repeatable)",
|
|
2862
|
+
"name": "permission",
|
|
2882
2863
|
"hasDynamicHelp": false,
|
|
2883
|
-
"multiple":
|
|
2864
|
+
"multiple": true,
|
|
2884
2865
|
"type": "option"
|
|
2885
2866
|
}
|
|
2886
2867
|
},
|
|
2887
2868
|
"hasDynamicHelp": false,
|
|
2888
2869
|
"hiddenAliases": [],
|
|
2889
|
-
"id": "
|
|
2870
|
+
"id": "roles:create",
|
|
2890
2871
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2891
2872
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2892
2873
|
"pluginType": "core",
|
|
@@ -2896,16 +2877,22 @@
|
|
|
2896
2877
|
"relativePath": [
|
|
2897
2878
|
"dist",
|
|
2898
2879
|
"commands",
|
|
2899
|
-
"
|
|
2880
|
+
"roles",
|
|
2900
2881
|
"create.js"
|
|
2901
2882
|
]
|
|
2902
2883
|
},
|
|
2903
|
-
"
|
|
2884
|
+
"roles:delete": {
|
|
2904
2885
|
"aliases": [],
|
|
2905
|
-
"args": {
|
|
2906
|
-
|
|
2886
|
+
"args": {
|
|
2887
|
+
"role": {
|
|
2888
|
+
"description": "Role id (UUID) or name",
|
|
2889
|
+
"name": "role",
|
|
2890
|
+
"required": true
|
|
2891
|
+
}
|
|
2892
|
+
},
|
|
2893
|
+
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
2907
2894
|
"examples": [
|
|
2908
|
-
"<%= config.bin %>
|
|
2895
|
+
"<%= config.bin %> roles delete Client"
|
|
2909
2896
|
],
|
|
2910
2897
|
"flags": {
|
|
2911
2898
|
"json": {
|
|
@@ -2914,26 +2901,11 @@
|
|
|
2914
2901
|
"name": "json",
|
|
2915
2902
|
"allowNo": false,
|
|
2916
2903
|
"type": "boolean"
|
|
2917
|
-
},
|
|
2918
|
-
"project": {
|
|
2919
|
-
"char": "p",
|
|
2920
|
-
"description": "Project id (UUID) or key",
|
|
2921
|
-
"name": "project",
|
|
2922
|
-
"required": true,
|
|
2923
|
-
"hasDynamicHelp": false,
|
|
2924
|
-
"multiple": false,
|
|
2925
|
-
"type": "option"
|
|
2926
|
-
},
|
|
2927
|
-
"confirm": {
|
|
2928
|
-
"description": "Required: confirm the irreversible deletion",
|
|
2929
|
-
"name": "confirm",
|
|
2930
|
-
"allowNo": false,
|
|
2931
|
-
"type": "boolean"
|
|
2932
2904
|
}
|
|
2933
2905
|
},
|
|
2934
2906
|
"hasDynamicHelp": false,
|
|
2935
2907
|
"hiddenAliases": [],
|
|
2936
|
-
"id": "
|
|
2908
|
+
"id": "roles:delete",
|
|
2937
2909
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2938
2910
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2939
2911
|
"pluginType": "core",
|
|
@@ -2943,17 +2915,17 @@
|
|
|
2943
2915
|
"relativePath": [
|
|
2944
2916
|
"dist",
|
|
2945
2917
|
"commands",
|
|
2946
|
-
"
|
|
2918
|
+
"roles",
|
|
2947
2919
|
"delete.js"
|
|
2948
2920
|
]
|
|
2949
2921
|
},
|
|
2950
|
-
"
|
|
2922
|
+
"roles:list": {
|
|
2951
2923
|
"aliases": [],
|
|
2952
2924
|
"args": {},
|
|
2953
|
-
"description": "List the
|
|
2925
|
+
"description": "List the RBAC roles in your organization",
|
|
2954
2926
|
"examples": [
|
|
2955
|
-
"<%= config.bin %>
|
|
2956
|
-
"<%= config.bin %>
|
|
2927
|
+
"<%= config.bin %> roles list",
|
|
2928
|
+
"<%= config.bin %> roles list --json"
|
|
2957
2929
|
],
|
|
2958
2930
|
"flags": {
|
|
2959
2931
|
"json": {
|
|
@@ -2974,7 +2946,7 @@
|
|
|
2974
2946
|
},
|
|
2975
2947
|
"hasDynamicHelp": false,
|
|
2976
2948
|
"hiddenAliases": [],
|
|
2977
|
-
"id": "
|
|
2949
|
+
"id": "roles:list",
|
|
2978
2950
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2979
2951
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2980
2952
|
"pluginType": "core",
|
|
@@ -2984,139 +2956,22 @@
|
|
|
2984
2956
|
"relativePath": [
|
|
2985
2957
|
"dist",
|
|
2986
2958
|
"commands",
|
|
2987
|
-
"
|
|
2959
|
+
"roles",
|
|
2988
2960
|
"list.js"
|
|
2989
2961
|
]
|
|
2990
2962
|
},
|
|
2991
|
-
"
|
|
2992
|
-
"aliases": [],
|
|
2993
|
-
"args": {},
|
|
2994
|
-
"description": "Declare the environments a project receives data from (replaces the current set)",
|
|
2995
|
-
"examples": [
|
|
2996
|
-
"<%= config.bin %> projects set-environments --project legalbloom-rails --code production",
|
|
2997
|
-
"<%= config.bin %> projects set-environments -p LBRA --code production --code staging"
|
|
2998
|
-
],
|
|
2999
|
-
"flags": {
|
|
3000
|
-
"json": {
|
|
3001
|
-
"description": "Format output as json.",
|
|
3002
|
-
"helpGroup": "GLOBAL",
|
|
3003
|
-
"name": "json",
|
|
3004
|
-
"allowNo": false,
|
|
3005
|
-
"type": "boolean"
|
|
3006
|
-
},
|
|
3007
|
-
"project": {
|
|
3008
|
-
"char": "p",
|
|
3009
|
-
"description": "Project id (UUID) or key",
|
|
3010
|
-
"name": "project",
|
|
3011
|
-
"required": true,
|
|
3012
|
-
"hasDynamicHelp": false,
|
|
3013
|
-
"multiple": false,
|
|
3014
|
-
"type": "option"
|
|
3015
|
-
},
|
|
3016
|
-
"code": {
|
|
3017
|
-
"description": "Environment code, e.g. production (repeatable)",
|
|
3018
|
-
"name": "code",
|
|
3019
|
-
"default": [],
|
|
3020
|
-
"hasDynamicHelp": false,
|
|
3021
|
-
"multiple": true,
|
|
3022
|
-
"type": "option"
|
|
3023
|
-
},
|
|
3024
|
-
"environment-id": {
|
|
3025
|
-
"description": "Environment id / UUID (repeatable)",
|
|
3026
|
-
"name": "environment-id",
|
|
3027
|
-
"default": [],
|
|
3028
|
-
"hasDynamicHelp": false,
|
|
3029
|
-
"multiple": true,
|
|
3030
|
-
"type": "option"
|
|
3031
|
-
}
|
|
3032
|
-
},
|
|
3033
|
-
"hasDynamicHelp": false,
|
|
3034
|
-
"hiddenAliases": [],
|
|
3035
|
-
"id": "projects:set-environments",
|
|
3036
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3037
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3038
|
-
"pluginType": "core",
|
|
3039
|
-
"strict": true,
|
|
3040
|
-
"enableJsonFlag": true,
|
|
3041
|
-
"isESM": false,
|
|
3042
|
-
"relativePath": [
|
|
3043
|
-
"dist",
|
|
3044
|
-
"commands",
|
|
3045
|
-
"projects",
|
|
3046
|
-
"set-environments.js"
|
|
3047
|
-
]
|
|
3048
|
-
},
|
|
3049
|
-
"projects:set-platforms": {
|
|
3050
|
-
"aliases": [],
|
|
3051
|
-
"args": {},
|
|
3052
|
-
"description": "Declare the platforms of a project (replaces the current set)",
|
|
3053
|
-
"examples": [
|
|
3054
|
-
"<%= config.bin %> projects set-platforms --project legalbloom-rails --code web",
|
|
3055
|
-
"<%= config.bin %> projects set-platforms -p LBRA --code web --code ios"
|
|
3056
|
-
],
|
|
3057
|
-
"flags": {
|
|
3058
|
-
"json": {
|
|
3059
|
-
"description": "Format output as json.",
|
|
3060
|
-
"helpGroup": "GLOBAL",
|
|
3061
|
-
"name": "json",
|
|
3062
|
-
"allowNo": false,
|
|
3063
|
-
"type": "boolean"
|
|
3064
|
-
},
|
|
3065
|
-
"project": {
|
|
3066
|
-
"char": "p",
|
|
3067
|
-
"description": "Project id (UUID) or key",
|
|
3068
|
-
"name": "project",
|
|
3069
|
-
"required": true,
|
|
3070
|
-
"hasDynamicHelp": false,
|
|
3071
|
-
"multiple": false,
|
|
3072
|
-
"type": "option"
|
|
3073
|
-
},
|
|
3074
|
-
"code": {
|
|
3075
|
-
"description": "Platform code, e.g. web (repeatable)",
|
|
3076
|
-
"name": "code",
|
|
3077
|
-
"default": [],
|
|
3078
|
-
"hasDynamicHelp": false,
|
|
3079
|
-
"multiple": true,
|
|
3080
|
-
"type": "option"
|
|
3081
|
-
},
|
|
3082
|
-
"platform-id": {
|
|
3083
|
-
"description": "Platform id / UUID (repeatable)",
|
|
3084
|
-
"name": "platform-id",
|
|
3085
|
-
"default": [],
|
|
3086
|
-
"hasDynamicHelp": false,
|
|
3087
|
-
"multiple": true,
|
|
3088
|
-
"type": "option"
|
|
3089
|
-
}
|
|
3090
|
-
},
|
|
3091
|
-
"hasDynamicHelp": false,
|
|
3092
|
-
"hiddenAliases": [],
|
|
3093
|
-
"id": "projects:set-platforms",
|
|
3094
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3095
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3096
|
-
"pluginType": "core",
|
|
3097
|
-
"strict": true,
|
|
3098
|
-
"enableJsonFlag": true,
|
|
3099
|
-
"isESM": false,
|
|
3100
|
-
"relativePath": [
|
|
3101
|
-
"dist",
|
|
3102
|
-
"commands",
|
|
3103
|
-
"projects",
|
|
3104
|
-
"set-platforms.js"
|
|
3105
|
-
]
|
|
3106
|
-
},
|
|
3107
|
-
"projects:show": {
|
|
2963
|
+
"roles:show": {
|
|
3108
2964
|
"aliases": [],
|
|
3109
2965
|
"args": {
|
|
3110
|
-
"
|
|
3111
|
-
"description": "
|
|
3112
|
-
"name": "
|
|
2966
|
+
"role": {
|
|
2967
|
+
"description": "Role id (UUID) or name",
|
|
2968
|
+
"name": "role",
|
|
3113
2969
|
"required": true
|
|
3114
2970
|
}
|
|
3115
2971
|
},
|
|
3116
|
-
"description": "Show a
|
|
2972
|
+
"description": "Show a role by id or name (with its permission keys)",
|
|
3117
2973
|
"examples": [
|
|
3118
|
-
"<%= config.bin %>
|
|
3119
|
-
"<%= config.bin %> projects show <uuid> --json"
|
|
2974
|
+
"<%= config.bin %> roles show Client"
|
|
3120
2975
|
],
|
|
3121
2976
|
"flags": {
|
|
3122
2977
|
"json": {
|
|
@@ -3129,7 +2984,7 @@
|
|
|
3129
2984
|
},
|
|
3130
2985
|
"hasDynamicHelp": false,
|
|
3131
2986
|
"hiddenAliases": [],
|
|
3132
|
-
"id": "
|
|
2987
|
+
"id": "roles:show",
|
|
3133
2988
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3134
2989
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3135
2990
|
"pluginType": "core",
|
|
@@ -3139,183 +2994,49 @@
|
|
|
3139
2994
|
"relativePath": [
|
|
3140
2995
|
"dist",
|
|
3141
2996
|
"commands",
|
|
3142
|
-
"
|
|
2997
|
+
"roles",
|
|
3143
2998
|
"show.js"
|
|
3144
2999
|
]
|
|
3145
3000
|
},
|
|
3146
|
-
"
|
|
3147
|
-
"aliases": [],
|
|
3148
|
-
"args": {},
|
|
3149
|
-
"description": "Update a project (name, key, color, description, group)",
|
|
3150
|
-
"examples": [
|
|
3151
|
-
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
3152
|
-
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
3153
|
-
],
|
|
3154
|
-
"flags": {
|
|
3155
|
-
"json": {
|
|
3156
|
-
"description": "Format output as json.",
|
|
3157
|
-
"helpGroup": "GLOBAL",
|
|
3158
|
-
"name": "json",
|
|
3159
|
-
"allowNo": false,
|
|
3160
|
-
"type": "boolean"
|
|
3161
|
-
},
|
|
3162
|
-
"project": {
|
|
3163
|
-
"char": "p",
|
|
3164
|
-
"description": "Project id (UUID) or key",
|
|
3165
|
-
"name": "project",
|
|
3166
|
-
"required": true,
|
|
3167
|
-
"hasDynamicHelp": false,
|
|
3168
|
-
"multiple": false,
|
|
3169
|
-
"type": "option"
|
|
3170
|
-
},
|
|
3171
|
-
"name": {
|
|
3172
|
-
"description": "New project name",
|
|
3173
|
-
"name": "name",
|
|
3174
|
-
"hasDynamicHelp": false,
|
|
3175
|
-
"multiple": false,
|
|
3176
|
-
"type": "option"
|
|
3177
|
-
},
|
|
3178
|
-
"key": {
|
|
3179
|
-
"description": "New project key (uppercase A-Z0-9)",
|
|
3180
|
-
"name": "key",
|
|
3181
|
-
"hasDynamicHelp": false,
|
|
3182
|
-
"multiple": false,
|
|
3183
|
-
"type": "option"
|
|
3184
|
-
},
|
|
3185
|
-
"color": {
|
|
3186
|
-
"description": "Color label",
|
|
3187
|
-
"name": "color",
|
|
3188
|
-
"hasDynamicHelp": false,
|
|
3189
|
-
"multiple": false,
|
|
3190
|
-
"type": "option"
|
|
3191
|
-
},
|
|
3192
|
-
"description": {
|
|
3193
|
-
"description": "Free-form description",
|
|
3194
|
-
"name": "description",
|
|
3195
|
-
"hasDynamicHelp": false,
|
|
3196
|
-
"multiple": false,
|
|
3197
|
-
"type": "option"
|
|
3198
|
-
},
|
|
3199
|
-
"group": {
|
|
3200
|
-
"description": "Group id (UUID) or name to move the project into",
|
|
3201
|
-
"name": "group",
|
|
3202
|
-
"hasDynamicHelp": false,
|
|
3203
|
-
"multiple": false,
|
|
3204
|
-
"type": "option"
|
|
3205
|
-
}
|
|
3206
|
-
},
|
|
3207
|
-
"hasDynamicHelp": false,
|
|
3208
|
-
"hiddenAliases": [],
|
|
3209
|
-
"id": "projects:update",
|
|
3210
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3211
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3212
|
-
"pluginType": "core",
|
|
3213
|
-
"strict": true,
|
|
3214
|
-
"enableJsonFlag": true,
|
|
3215
|
-
"isESM": false,
|
|
3216
|
-
"relativePath": [
|
|
3217
|
-
"dist",
|
|
3218
|
-
"commands",
|
|
3219
|
-
"projects",
|
|
3220
|
-
"update.js"
|
|
3221
|
-
]
|
|
3222
|
-
},
|
|
3223
|
-
"teams:add-member": {
|
|
3224
|
-
"aliases": [],
|
|
3225
|
-
"args": {
|
|
3226
|
-
"team": {
|
|
3227
|
-
"description": "Team id (UUID) or name",
|
|
3228
|
-
"name": "team",
|
|
3229
|
-
"required": true
|
|
3230
|
-
},
|
|
3231
|
-
"member": {
|
|
3232
|
-
"description": "Member account id or email (must be an org member)",
|
|
3233
|
-
"name": "member",
|
|
3234
|
-
"required": true
|
|
3235
|
-
}
|
|
3236
|
-
},
|
|
3237
|
-
"description": "Add a person to a team, keeping the existing members",
|
|
3238
|
-
"examples": [
|
|
3239
|
-
"<%= config.bin %> teams add-member DriverOne client@acme.com"
|
|
3240
|
-
],
|
|
3241
|
-
"flags": {
|
|
3242
|
-
"json": {
|
|
3243
|
-
"description": "Format output as json.",
|
|
3244
|
-
"helpGroup": "GLOBAL",
|
|
3245
|
-
"name": "json",
|
|
3246
|
-
"allowNo": false,
|
|
3247
|
-
"type": "boolean"
|
|
3248
|
-
}
|
|
3249
|
-
},
|
|
3250
|
-
"hasDynamicHelp": false,
|
|
3251
|
-
"hiddenAliases": [],
|
|
3252
|
-
"id": "teams:add-member",
|
|
3253
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3254
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3255
|
-
"pluginType": "core",
|
|
3256
|
-
"strict": true,
|
|
3257
|
-
"enableJsonFlag": true,
|
|
3258
|
-
"isESM": false,
|
|
3259
|
-
"relativePath": [
|
|
3260
|
-
"dist",
|
|
3261
|
-
"commands",
|
|
3262
|
-
"teams",
|
|
3263
|
-
"add-member.js"
|
|
3264
|
-
]
|
|
3265
|
-
},
|
|
3266
|
-
"teams:create": {
|
|
3001
|
+
"roles:update": {
|
|
3267
3002
|
"aliases": [],
|
|
3268
3003
|
"args": {
|
|
3269
|
-
"
|
|
3270
|
-
"description": "
|
|
3271
|
-
"name": "
|
|
3004
|
+
"role": {
|
|
3005
|
+
"description": "Role id (UUID) or name",
|
|
3006
|
+
"name": "role",
|
|
3272
3007
|
"required": true
|
|
3273
3008
|
}
|
|
3274
3009
|
},
|
|
3275
|
-
"description": "
|
|
3010
|
+
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
3276
3011
|
"examples": [
|
|
3277
|
-
"<%= config.bin %>
|
|
3278
|
-
"<%= config.bin %>
|
|
3012
|
+
"<%= config.bin %> roles update Client --permission tickets.edit --permission tickets.assign",
|
|
3013
|
+
"<%= config.bin %> roles update Client --name \"Client manager\""
|
|
3279
3014
|
],
|
|
3280
3015
|
"flags": {
|
|
3281
3016
|
"json": {
|
|
3282
|
-
"description": "Format output as json.",
|
|
3283
|
-
"helpGroup": "GLOBAL",
|
|
3284
|
-
"name": "json",
|
|
3285
|
-
"allowNo": false,
|
|
3286
|
-
"type": "boolean"
|
|
3287
|
-
},
|
|
3288
|
-
"color": {
|
|
3289
|
-
"description": "Color label",
|
|
3290
|
-
"name": "color",
|
|
3291
|
-
"hasDynamicHelp": false,
|
|
3292
|
-
"multiple": false,
|
|
3293
|
-
"type": "option"
|
|
3294
|
-
},
|
|
3295
|
-
"group": {
|
|
3296
|
-
"description": "Group id or name to scope the team to (repeatable)",
|
|
3297
|
-
"name": "group",
|
|
3298
|
-
"hasDynamicHelp": false,
|
|
3299
|
-
"multiple": true,
|
|
3300
|
-
"type": "option"
|
|
3017
|
+
"description": "Format output as json.",
|
|
3018
|
+
"helpGroup": "GLOBAL",
|
|
3019
|
+
"name": "json",
|
|
3020
|
+
"allowNo": false,
|
|
3021
|
+
"type": "boolean"
|
|
3301
3022
|
},
|
|
3302
|
-
"
|
|
3303
|
-
"description": "
|
|
3304
|
-
"name": "
|
|
3023
|
+
"color": {
|
|
3024
|
+
"description": "Color label",
|
|
3025
|
+
"name": "color",
|
|
3305
3026
|
"hasDynamicHelp": false,
|
|
3306
|
-
"multiple":
|
|
3027
|
+
"multiple": false,
|
|
3307
3028
|
"type": "option"
|
|
3308
3029
|
},
|
|
3309
|
-
"
|
|
3310
|
-
"description": "
|
|
3311
|
-
"name": "
|
|
3030
|
+
"name": {
|
|
3031
|
+
"description": "New name",
|
|
3032
|
+
"name": "name",
|
|
3312
3033
|
"hasDynamicHelp": false,
|
|
3313
|
-
"multiple":
|
|
3034
|
+
"multiple": false,
|
|
3314
3035
|
"type": "option"
|
|
3315
3036
|
},
|
|
3316
|
-
"
|
|
3317
|
-
"description": "
|
|
3318
|
-
"name": "
|
|
3037
|
+
"permission": {
|
|
3038
|
+
"description": "Permission key (repeatable); when given, REPLACES the whole set",
|
|
3039
|
+
"name": "permission",
|
|
3319
3040
|
"hasDynamicHelp": false,
|
|
3320
3041
|
"multiple": true,
|
|
3321
3042
|
"type": "option"
|
|
@@ -3323,7 +3044,7 @@
|
|
|
3323
3044
|
},
|
|
3324
3045
|
"hasDynamicHelp": false,
|
|
3325
3046
|
"hiddenAliases": [],
|
|
3326
|
-
"id": "
|
|
3047
|
+
"id": "roles:update",
|
|
3327
3048
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3328
3049
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3329
3050
|
"pluginType": "core",
|
|
@@ -3333,22 +3054,22 @@
|
|
|
3333
3054
|
"relativePath": [
|
|
3334
3055
|
"dist",
|
|
3335
3056
|
"commands",
|
|
3336
|
-
"
|
|
3337
|
-
"
|
|
3057
|
+
"roles",
|
|
3058
|
+
"update.js"
|
|
3338
3059
|
]
|
|
3339
3060
|
},
|
|
3340
|
-
"
|
|
3061
|
+
"servers:delete": {
|
|
3341
3062
|
"aliases": [],
|
|
3342
3063
|
"args": {
|
|
3343
|
-
"
|
|
3344
|
-
"description": "
|
|
3345
|
-
"name": "
|
|
3064
|
+
"id": {
|
|
3065
|
+
"description": "Server id",
|
|
3066
|
+
"name": "id",
|
|
3346
3067
|
"required": true
|
|
3347
3068
|
}
|
|
3348
3069
|
},
|
|
3349
|
-
"description": "Delete a
|
|
3070
|
+
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
3350
3071
|
"examples": [
|
|
3351
|
-
"<%= config.bin %>
|
|
3072
|
+
"<%= config.bin %> servers delete <server-id> --confirm"
|
|
3352
3073
|
],
|
|
3353
3074
|
"flags": {
|
|
3354
3075
|
"json": {
|
|
@@ -3357,11 +3078,17 @@
|
|
|
3357
3078
|
"name": "json",
|
|
3358
3079
|
"allowNo": false,
|
|
3359
3080
|
"type": "boolean"
|
|
3081
|
+
},
|
|
3082
|
+
"confirm": {
|
|
3083
|
+
"description": "Required: confirm the deletion",
|
|
3084
|
+
"name": "confirm",
|
|
3085
|
+
"allowNo": false,
|
|
3086
|
+
"type": "boolean"
|
|
3360
3087
|
}
|
|
3361
3088
|
},
|
|
3362
3089
|
"hasDynamicHelp": false,
|
|
3363
3090
|
"hiddenAliases": [],
|
|
3364
|
-
"id": "
|
|
3091
|
+
"id": "servers:delete",
|
|
3365
3092
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3366
3093
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3367
3094
|
"pluginType": "core",
|
|
@@ -3371,17 +3098,17 @@
|
|
|
3371
3098
|
"relativePath": [
|
|
3372
3099
|
"dist",
|
|
3373
3100
|
"commands",
|
|
3374
|
-
"
|
|
3101
|
+
"servers",
|
|
3375
3102
|
"delete.js"
|
|
3376
3103
|
]
|
|
3377
3104
|
},
|
|
3378
|
-
"
|
|
3105
|
+
"servers:list": {
|
|
3379
3106
|
"aliases": [],
|
|
3380
3107
|
"args": {},
|
|
3381
|
-
"description": "List the
|
|
3108
|
+
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
3382
3109
|
"examples": [
|
|
3383
|
-
"<%= config.bin %>
|
|
3384
|
-
"<%= config.bin %>
|
|
3110
|
+
"<%= config.bin %> servers list",
|
|
3111
|
+
"<%= config.bin %> servers list --status down --json"
|
|
3385
3112
|
],
|
|
3386
3113
|
"flags": {
|
|
3387
3114
|
"json": {
|
|
@@ -3398,11 +3125,24 @@
|
|
|
3398
3125
|
"hasDynamicHelp": false,
|
|
3399
3126
|
"multiple": false,
|
|
3400
3127
|
"type": "option"
|
|
3128
|
+
},
|
|
3129
|
+
"status": {
|
|
3130
|
+
"description": "Filter by status (repeatable)",
|
|
3131
|
+
"name": "status",
|
|
3132
|
+
"hasDynamicHelp": false,
|
|
3133
|
+
"multiple": true,
|
|
3134
|
+
"options": [
|
|
3135
|
+
"pending",
|
|
3136
|
+
"up",
|
|
3137
|
+
"down",
|
|
3138
|
+
"paused"
|
|
3139
|
+
],
|
|
3140
|
+
"type": "option"
|
|
3401
3141
|
}
|
|
3402
3142
|
},
|
|
3403
3143
|
"hasDynamicHelp": false,
|
|
3404
3144
|
"hiddenAliases": [],
|
|
3405
|
-
"id": "
|
|
3145
|
+
"id": "servers:list",
|
|
3406
3146
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3407
3147
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3408
3148
|
"pluginType": "core",
|
|
@@ -3412,27 +3152,22 @@
|
|
|
3412
3152
|
"relativePath": [
|
|
3413
3153
|
"dist",
|
|
3414
3154
|
"commands",
|
|
3415
|
-
"
|
|
3155
|
+
"servers",
|
|
3416
3156
|
"list.js"
|
|
3417
3157
|
]
|
|
3418
3158
|
},
|
|
3419
|
-
"
|
|
3159
|
+
"servers:pause": {
|
|
3420
3160
|
"aliases": [],
|
|
3421
3161
|
"args": {
|
|
3422
|
-
"
|
|
3423
|
-
"description": "
|
|
3424
|
-
"name": "
|
|
3425
|
-
"required": true
|
|
3426
|
-
},
|
|
3427
|
-
"member": {
|
|
3428
|
-
"description": "Member account id or email",
|
|
3429
|
-
"name": "member",
|
|
3162
|
+
"id": {
|
|
3163
|
+
"description": "Server id",
|
|
3164
|
+
"name": "id",
|
|
3430
3165
|
"required": true
|
|
3431
3166
|
}
|
|
3432
3167
|
},
|
|
3433
|
-
"description": "
|
|
3168
|
+
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
3434
3169
|
"examples": [
|
|
3435
|
-
"<%= config.bin %>
|
|
3170
|
+
"<%= config.bin %> servers pause <server-id>"
|
|
3436
3171
|
],
|
|
3437
3172
|
"flags": {
|
|
3438
3173
|
"json": {
|
|
@@ -3445,7 +3180,7 @@
|
|
|
3445
3180
|
},
|
|
3446
3181
|
"hasDynamicHelp": false,
|
|
3447
3182
|
"hiddenAliases": [],
|
|
3448
|
-
"id": "
|
|
3183
|
+
"id": "servers:pause",
|
|
3449
3184
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3450
3185
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3451
3186
|
"pluginType": "core",
|
|
@@ -3455,22 +3190,22 @@
|
|
|
3455
3190
|
"relativePath": [
|
|
3456
3191
|
"dist",
|
|
3457
3192
|
"commands",
|
|
3458
|
-
"
|
|
3459
|
-
"
|
|
3193
|
+
"servers",
|
|
3194
|
+
"pause.js"
|
|
3460
3195
|
]
|
|
3461
3196
|
},
|
|
3462
|
-
"
|
|
3197
|
+
"servers:rename": {
|
|
3463
3198
|
"aliases": [],
|
|
3464
3199
|
"args": {
|
|
3465
|
-
"
|
|
3466
|
-
"description": "
|
|
3467
|
-
"name": "
|
|
3200
|
+
"id": {
|
|
3201
|
+
"description": "Server id",
|
|
3202
|
+
"name": "id",
|
|
3468
3203
|
"required": true
|
|
3469
3204
|
}
|
|
3470
3205
|
},
|
|
3471
|
-
"description": "
|
|
3206
|
+
"description": "Rename a monitored server (display name only)",
|
|
3472
3207
|
"examples": [
|
|
3473
|
-
"<%= config.bin %>
|
|
3208
|
+
"<%= config.bin %> servers rename <server-id> --name apps-prod"
|
|
3474
3209
|
],
|
|
3475
3210
|
"flags": {
|
|
3476
3211
|
"json": {
|
|
@@ -3479,11 +3214,19 @@
|
|
|
3479
3214
|
"name": "json",
|
|
3480
3215
|
"allowNo": false,
|
|
3481
3216
|
"type": "boolean"
|
|
3217
|
+
},
|
|
3218
|
+
"name": {
|
|
3219
|
+
"description": "New display name",
|
|
3220
|
+
"name": "name",
|
|
3221
|
+
"required": true,
|
|
3222
|
+
"hasDynamicHelp": false,
|
|
3223
|
+
"multiple": false,
|
|
3224
|
+
"type": "option"
|
|
3482
3225
|
}
|
|
3483
3226
|
},
|
|
3484
3227
|
"hasDynamicHelp": false,
|
|
3485
3228
|
"hiddenAliases": [],
|
|
3486
|
-
"id": "
|
|
3229
|
+
"id": "servers:rename",
|
|
3487
3230
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3488
3231
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3489
3232
|
"pluginType": "core",
|
|
@@ -3493,23 +3236,22 @@
|
|
|
3493
3236
|
"relativePath": [
|
|
3494
3237
|
"dist",
|
|
3495
3238
|
"commands",
|
|
3496
|
-
"
|
|
3497
|
-
"
|
|
3239
|
+
"servers",
|
|
3240
|
+
"rename.js"
|
|
3498
3241
|
]
|
|
3499
3242
|
},
|
|
3500
|
-
"
|
|
3243
|
+
"servers:resume": {
|
|
3501
3244
|
"aliases": [],
|
|
3502
3245
|
"args": {
|
|
3503
|
-
"
|
|
3504
|
-
"description": "
|
|
3505
|
-
"name": "
|
|
3246
|
+
"id": {
|
|
3247
|
+
"description": "Server id",
|
|
3248
|
+
"name": "id",
|
|
3506
3249
|
"required": true
|
|
3507
3250
|
}
|
|
3508
3251
|
},
|
|
3509
|
-
"description": "
|
|
3252
|
+
"description": "Resume a paused server (back up at the next agent push)",
|
|
3510
3253
|
"examples": [
|
|
3511
|
-
"<%= config.bin %>
|
|
3512
|
-
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
3254
|
+
"<%= config.bin %> servers resume <server-id>"
|
|
3513
3255
|
],
|
|
3514
3256
|
"flags": {
|
|
3515
3257
|
"json": {
|
|
@@ -3518,53 +3260,11 @@
|
|
|
3518
3260
|
"name": "json",
|
|
3519
3261
|
"allowNo": false,
|
|
3520
3262
|
"type": "boolean"
|
|
3521
|
-
},
|
|
3522
|
-
"color": {
|
|
3523
|
-
"description": "Color label",
|
|
3524
|
-
"name": "color",
|
|
3525
|
-
"hasDynamicHelp": false,
|
|
3526
|
-
"multiple": false,
|
|
3527
|
-
"type": "option"
|
|
3528
|
-
},
|
|
3529
|
-
"group": {
|
|
3530
|
-
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
3531
|
-
"name": "group",
|
|
3532
|
-
"hasDynamicHelp": false,
|
|
3533
|
-
"multiple": true,
|
|
3534
|
-
"type": "option"
|
|
3535
|
-
},
|
|
3536
|
-
"member": {
|
|
3537
|
-
"description": "Member account id or email (repeatable; replaces the members)",
|
|
3538
|
-
"name": "member",
|
|
3539
|
-
"hasDynamicHelp": false,
|
|
3540
|
-
"multiple": true,
|
|
3541
|
-
"type": "option"
|
|
3542
|
-
},
|
|
3543
|
-
"name": {
|
|
3544
|
-
"description": "New name",
|
|
3545
|
-
"name": "name",
|
|
3546
|
-
"hasDynamicHelp": false,
|
|
3547
|
-
"multiple": false,
|
|
3548
|
-
"type": "option"
|
|
3549
|
-
},
|
|
3550
|
-
"project": {
|
|
3551
|
-
"description": "Project id or key (repeatable; replaces the project scope)",
|
|
3552
|
-
"name": "project",
|
|
3553
|
-
"hasDynamicHelp": false,
|
|
3554
|
-
"multiple": true,
|
|
3555
|
-
"type": "option"
|
|
3556
|
-
},
|
|
3557
|
-
"role": {
|
|
3558
|
-
"description": "Role id or name (repeatable; replaces the roles)",
|
|
3559
|
-
"name": "role",
|
|
3560
|
-
"hasDynamicHelp": false,
|
|
3561
|
-
"multiple": true,
|
|
3562
|
-
"type": "option"
|
|
3563
3263
|
}
|
|
3564
3264
|
},
|
|
3565
3265
|
"hasDynamicHelp": false,
|
|
3566
3266
|
"hiddenAliases": [],
|
|
3567
|
-
"id": "
|
|
3267
|
+
"id": "servers:resume",
|
|
3568
3268
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3569
3269
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3570
3270
|
"pluginType": "core",
|
|
@@ -3574,11 +3274,11 @@
|
|
|
3574
3274
|
"relativePath": [
|
|
3575
3275
|
"dist",
|
|
3576
3276
|
"commands",
|
|
3577
|
-
"
|
|
3578
|
-
"
|
|
3277
|
+
"servers",
|
|
3278
|
+
"resume.js"
|
|
3579
3279
|
]
|
|
3580
3280
|
},
|
|
3581
|
-
"servers:
|
|
3281
|
+
"servers:revoke": {
|
|
3582
3282
|
"aliases": [],
|
|
3583
3283
|
"args": {
|
|
3584
3284
|
"id": {
|
|
@@ -3587,9 +3287,9 @@
|
|
|
3587
3287
|
"required": true
|
|
3588
3288
|
}
|
|
3589
3289
|
},
|
|
3590
|
-
"description": "
|
|
3290
|
+
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
3591
3291
|
"examples": [
|
|
3592
|
-
"<%= config.bin %> servers
|
|
3292
|
+
"<%= config.bin %> servers revoke <server-id> --confirm"
|
|
3593
3293
|
],
|
|
3594
3294
|
"flags": {
|
|
3595
3295
|
"json": {
|
|
@@ -3600,7 +3300,7 @@
|
|
|
3600
3300
|
"type": "boolean"
|
|
3601
3301
|
},
|
|
3602
3302
|
"confirm": {
|
|
3603
|
-
"description": "Required: confirm the
|
|
3303
|
+
"description": "Required: confirm the revocation",
|
|
3604
3304
|
"name": "confirm",
|
|
3605
3305
|
"allowNo": false,
|
|
3606
3306
|
"type": "boolean"
|
|
@@ -3608,61 +3308,7 @@
|
|
|
3608
3308
|
},
|
|
3609
3309
|
"hasDynamicHelp": false,
|
|
3610
3310
|
"hiddenAliases": [],
|
|
3611
|
-
"id": "servers:
|
|
3612
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3613
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3614
|
-
"pluginType": "core",
|
|
3615
|
-
"strict": true,
|
|
3616
|
-
"enableJsonFlag": true,
|
|
3617
|
-
"isESM": false,
|
|
3618
|
-
"relativePath": [
|
|
3619
|
-
"dist",
|
|
3620
|
-
"commands",
|
|
3621
|
-
"servers",
|
|
3622
|
-
"delete.js"
|
|
3623
|
-
]
|
|
3624
|
-
},
|
|
3625
|
-
"servers:list": {
|
|
3626
|
-
"aliases": [],
|
|
3627
|
-
"args": {},
|
|
3628
|
-
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
3629
|
-
"examples": [
|
|
3630
|
-
"<%= config.bin %> servers list",
|
|
3631
|
-
"<%= config.bin %> servers list --status down --json"
|
|
3632
|
-
],
|
|
3633
|
-
"flags": {
|
|
3634
|
-
"json": {
|
|
3635
|
-
"description": "Format output as json.",
|
|
3636
|
-
"helpGroup": "GLOBAL",
|
|
3637
|
-
"name": "json",
|
|
3638
|
-
"allowNo": false,
|
|
3639
|
-
"type": "boolean"
|
|
3640
|
-
},
|
|
3641
|
-
"page": {
|
|
3642
|
-
"description": "Page number",
|
|
3643
|
-
"name": "page",
|
|
3644
|
-
"default": 1,
|
|
3645
|
-
"hasDynamicHelp": false,
|
|
3646
|
-
"multiple": false,
|
|
3647
|
-
"type": "option"
|
|
3648
|
-
},
|
|
3649
|
-
"status": {
|
|
3650
|
-
"description": "Filter by status (repeatable)",
|
|
3651
|
-
"name": "status",
|
|
3652
|
-
"hasDynamicHelp": false,
|
|
3653
|
-
"multiple": true,
|
|
3654
|
-
"options": [
|
|
3655
|
-
"pending",
|
|
3656
|
-
"up",
|
|
3657
|
-
"down",
|
|
3658
|
-
"paused"
|
|
3659
|
-
],
|
|
3660
|
-
"type": "option"
|
|
3661
|
-
}
|
|
3662
|
-
},
|
|
3663
|
-
"hasDynamicHelp": false,
|
|
3664
|
-
"hiddenAliases": [],
|
|
3665
|
-
"id": "servers:list",
|
|
3311
|
+
"id": "servers:revoke",
|
|
3666
3312
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3667
3313
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3668
3314
|
"pluginType": "core",
|
|
@@ -3673,10 +3319,10 @@
|
|
|
3673
3319
|
"dist",
|
|
3674
3320
|
"commands",
|
|
3675
3321
|
"servers",
|
|
3676
|
-
"
|
|
3322
|
+
"revoke.js"
|
|
3677
3323
|
]
|
|
3678
3324
|
},
|
|
3679
|
-
"servers:
|
|
3325
|
+
"servers:show": {
|
|
3680
3326
|
"aliases": [],
|
|
3681
3327
|
"args": {
|
|
3682
3328
|
"id": {
|
|
@@ -3685,9 +3331,9 @@
|
|
|
3685
3331
|
"required": true
|
|
3686
3332
|
}
|
|
3687
3333
|
},
|
|
3688
|
-
"description": "
|
|
3334
|
+
"description": "Show a monitored server (latest snapshot)",
|
|
3689
3335
|
"examples": [
|
|
3690
|
-
"<%= config.bin %> servers
|
|
3336
|
+
"<%= config.bin %> servers show <server-id>"
|
|
3691
3337
|
],
|
|
3692
3338
|
"flags": {
|
|
3693
3339
|
"json": {
|
|
@@ -3700,7 +3346,7 @@
|
|
|
3700
3346
|
},
|
|
3701
3347
|
"hasDynamicHelp": false,
|
|
3702
3348
|
"hiddenAliases": [],
|
|
3703
|
-
"id": "servers:
|
|
3349
|
+
"id": "servers:show",
|
|
3704
3350
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3705
3351
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3706
3352
|
"pluginType": "core",
|
|
@@ -3711,10 +3357,10 @@
|
|
|
3711
3357
|
"dist",
|
|
3712
3358
|
"commands",
|
|
3713
3359
|
"servers",
|
|
3714
|
-
"
|
|
3360
|
+
"show.js"
|
|
3715
3361
|
]
|
|
3716
3362
|
},
|
|
3717
|
-
"servers:
|
|
3363
|
+
"servers:unrevoke": {
|
|
3718
3364
|
"aliases": [],
|
|
3719
3365
|
"args": {
|
|
3720
3366
|
"id": {
|
|
@@ -3723,9 +3369,9 @@
|
|
|
3723
3369
|
"required": true
|
|
3724
3370
|
}
|
|
3725
3371
|
},
|
|
3726
|
-
"description": "
|
|
3372
|
+
"description": "Restore a revoked server (its agent can push again)",
|
|
3727
3373
|
"examples": [
|
|
3728
|
-
"<%= config.bin %> servers
|
|
3374
|
+
"<%= config.bin %> servers unrevoke <server-id>"
|
|
3729
3375
|
],
|
|
3730
3376
|
"flags": {
|
|
3731
3377
|
"json": {
|
|
@@ -3734,19 +3380,11 @@
|
|
|
3734
3380
|
"name": "json",
|
|
3735
3381
|
"allowNo": false,
|
|
3736
3382
|
"type": "boolean"
|
|
3737
|
-
},
|
|
3738
|
-
"name": {
|
|
3739
|
-
"description": "New display name",
|
|
3740
|
-
"name": "name",
|
|
3741
|
-
"required": true,
|
|
3742
|
-
"hasDynamicHelp": false,
|
|
3743
|
-
"multiple": false,
|
|
3744
|
-
"type": "option"
|
|
3745
3383
|
}
|
|
3746
3384
|
},
|
|
3747
3385
|
"hasDynamicHelp": false,
|
|
3748
3386
|
"hiddenAliases": [],
|
|
3749
|
-
"id": "servers:
|
|
3387
|
+
"id": "servers:unrevoke",
|
|
3750
3388
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3751
3389
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3752
3390
|
"pluginType": "core",
|
|
@@ -3757,21 +3395,23 @@
|
|
|
3757
3395
|
"dist",
|
|
3758
3396
|
"commands",
|
|
3759
3397
|
"servers",
|
|
3760
|
-
"
|
|
3398
|
+
"unrevoke.js"
|
|
3761
3399
|
]
|
|
3762
3400
|
},
|
|
3763
|
-
"
|
|
3401
|
+
"projects:create": {
|
|
3764
3402
|
"aliases": [],
|
|
3765
3403
|
"args": {
|
|
3766
|
-
"
|
|
3767
|
-
"description": "
|
|
3768
|
-
"name": "
|
|
3404
|
+
"name": {
|
|
3405
|
+
"description": "Project name",
|
|
3406
|
+
"name": "name",
|
|
3769
3407
|
"required": true
|
|
3770
3408
|
}
|
|
3771
3409
|
},
|
|
3772
|
-
"description": "
|
|
3410
|
+
"description": "Create a project (optionally inside a group)",
|
|
3773
3411
|
"examples": [
|
|
3774
|
-
"<%= config.bin %>
|
|
3412
|
+
"<%= config.bin %> projects create driverone-rails --key DRRA",
|
|
3413
|
+
"<%= config.bin %> projects create driverone-rails --group DriverOne --key DRRA",
|
|
3414
|
+
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
3775
3415
|
],
|
|
3776
3416
|
"flags": {
|
|
3777
3417
|
"json": {
|
|
@@ -3780,11 +3420,42 @@
|
|
|
3780
3420
|
"name": "json",
|
|
3781
3421
|
"allowNo": false,
|
|
3782
3422
|
"type": "boolean"
|
|
3423
|
+
},
|
|
3424
|
+
"color": {
|
|
3425
|
+
"description": "Color label",
|
|
3426
|
+
"name": "color",
|
|
3427
|
+
"hasDynamicHelp": false,
|
|
3428
|
+
"multiple": false,
|
|
3429
|
+
"type": "option"
|
|
3430
|
+
},
|
|
3431
|
+
"description": {
|
|
3432
|
+
"description": "Free-form description",
|
|
3433
|
+
"name": "description",
|
|
3434
|
+
"hasDynamicHelp": false,
|
|
3435
|
+
"multiple": false,
|
|
3436
|
+
"type": "option"
|
|
3437
|
+
},
|
|
3438
|
+
"group": {
|
|
3439
|
+
"char": "g",
|
|
3440
|
+
"description": "Group id (UUID) or name to place the project in",
|
|
3441
|
+
"name": "group",
|
|
3442
|
+
"hasDynamicHelp": false,
|
|
3443
|
+
"multiple": false,
|
|
3444
|
+
"type": "option"
|
|
3445
|
+
},
|
|
3446
|
+
"key": {
|
|
3447
|
+
"char": "k",
|
|
3448
|
+
"description": "Project key (uppercase A-Z0-9, max 4 chars, unique per org)",
|
|
3449
|
+
"name": "key",
|
|
3450
|
+
"required": true,
|
|
3451
|
+
"hasDynamicHelp": false,
|
|
3452
|
+
"multiple": false,
|
|
3453
|
+
"type": "option"
|
|
3783
3454
|
}
|
|
3784
3455
|
},
|
|
3785
3456
|
"hasDynamicHelp": false,
|
|
3786
3457
|
"hiddenAliases": [],
|
|
3787
|
-
"id": "
|
|
3458
|
+
"id": "projects:create",
|
|
3788
3459
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3789
3460
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3790
3461
|
"pluginType": "core",
|
|
@@ -3794,22 +3465,16 @@
|
|
|
3794
3465
|
"relativePath": [
|
|
3795
3466
|
"dist",
|
|
3796
3467
|
"commands",
|
|
3797
|
-
"
|
|
3798
|
-
"
|
|
3468
|
+
"projects",
|
|
3469
|
+
"create.js"
|
|
3799
3470
|
]
|
|
3800
3471
|
},
|
|
3801
|
-
"
|
|
3472
|
+
"projects:delete": {
|
|
3802
3473
|
"aliases": [],
|
|
3803
|
-
"args": {
|
|
3804
|
-
|
|
3805
|
-
"description": "Server id",
|
|
3806
|
-
"name": "id",
|
|
3807
|
-
"required": true
|
|
3808
|
-
}
|
|
3809
|
-
},
|
|
3810
|
-
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
3474
|
+
"args": {},
|
|
3475
|
+
"description": "Delete a project (irreversible)",
|
|
3811
3476
|
"examples": [
|
|
3812
|
-
"<%= config.bin %>
|
|
3477
|
+
"<%= config.bin %> projects delete --project LBRA --confirm"
|
|
3813
3478
|
],
|
|
3814
3479
|
"flags": {
|
|
3815
3480
|
"json": {
|
|
@@ -3819,8 +3484,17 @@
|
|
|
3819
3484
|
"allowNo": false,
|
|
3820
3485
|
"type": "boolean"
|
|
3821
3486
|
},
|
|
3487
|
+
"project": {
|
|
3488
|
+
"char": "p",
|
|
3489
|
+
"description": "Project id (UUID) or key",
|
|
3490
|
+
"name": "project",
|
|
3491
|
+
"required": true,
|
|
3492
|
+
"hasDynamicHelp": false,
|
|
3493
|
+
"multiple": false,
|
|
3494
|
+
"type": "option"
|
|
3495
|
+
},
|
|
3822
3496
|
"confirm": {
|
|
3823
|
-
"description": "Required: confirm the
|
|
3497
|
+
"description": "Required: confirm the irreversible deletion",
|
|
3824
3498
|
"name": "confirm",
|
|
3825
3499
|
"allowNo": false,
|
|
3826
3500
|
"type": "boolean"
|
|
@@ -3828,7 +3502,7 @@
|
|
|
3828
3502
|
},
|
|
3829
3503
|
"hasDynamicHelp": false,
|
|
3830
3504
|
"hiddenAliases": [],
|
|
3831
|
-
"id": "
|
|
3505
|
+
"id": "projects:delete",
|
|
3832
3506
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3833
3507
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3834
3508
|
"pluginType": "core",
|
|
@@ -3838,22 +3512,17 @@
|
|
|
3838
3512
|
"relativePath": [
|
|
3839
3513
|
"dist",
|
|
3840
3514
|
"commands",
|
|
3841
|
-
"
|
|
3842
|
-
"
|
|
3515
|
+
"projects",
|
|
3516
|
+
"delete.js"
|
|
3843
3517
|
]
|
|
3844
3518
|
},
|
|
3845
|
-
"
|
|
3519
|
+
"projects:list": {
|
|
3846
3520
|
"aliases": [],
|
|
3847
|
-
"args": {
|
|
3848
|
-
|
|
3849
|
-
"description": "Server id",
|
|
3850
|
-
"name": "id",
|
|
3851
|
-
"required": true
|
|
3852
|
-
}
|
|
3853
|
-
},
|
|
3854
|
-
"description": "Show a monitored server (latest snapshot)",
|
|
3521
|
+
"args": {},
|
|
3522
|
+
"description": "List the projects visible to you",
|
|
3855
3523
|
"examples": [
|
|
3856
|
-
"<%= config.bin %>
|
|
3524
|
+
"<%= config.bin %> projects list",
|
|
3525
|
+
"<%= config.bin %> projects list --page 2 --json"
|
|
3857
3526
|
],
|
|
3858
3527
|
"flags": {
|
|
3859
3528
|
"json": {
|
|
@@ -3862,11 +3531,19 @@
|
|
|
3862
3531
|
"name": "json",
|
|
3863
3532
|
"allowNo": false,
|
|
3864
3533
|
"type": "boolean"
|
|
3534
|
+
},
|
|
3535
|
+
"page": {
|
|
3536
|
+
"description": "Page number",
|
|
3537
|
+
"name": "page",
|
|
3538
|
+
"default": 1,
|
|
3539
|
+
"hasDynamicHelp": false,
|
|
3540
|
+
"multiple": false,
|
|
3541
|
+
"type": "option"
|
|
3865
3542
|
}
|
|
3866
3543
|
},
|
|
3867
3544
|
"hasDynamicHelp": false,
|
|
3868
3545
|
"hiddenAliases": [],
|
|
3869
|
-
"id": "
|
|
3546
|
+
"id": "projects:list",
|
|
3870
3547
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3871
3548
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3872
3549
|
"pluginType": "core",
|
|
@@ -3876,22 +3553,17 @@
|
|
|
3876
3553
|
"relativePath": [
|
|
3877
3554
|
"dist",
|
|
3878
3555
|
"commands",
|
|
3879
|
-
"
|
|
3880
|
-
"
|
|
3556
|
+
"projects",
|
|
3557
|
+
"list.js"
|
|
3881
3558
|
]
|
|
3882
3559
|
},
|
|
3883
|
-
"
|
|
3560
|
+
"projects:set-environments": {
|
|
3884
3561
|
"aliases": [],
|
|
3885
|
-
"args": {
|
|
3886
|
-
|
|
3887
|
-
"description": "Server id",
|
|
3888
|
-
"name": "id",
|
|
3889
|
-
"required": true
|
|
3890
|
-
}
|
|
3891
|
-
},
|
|
3892
|
-
"description": "Restore a revoked server (its agent can push again)",
|
|
3562
|
+
"args": {},
|
|
3563
|
+
"description": "Declare the environments a project receives data from (replaces the current set)",
|
|
3893
3564
|
"examples": [
|
|
3894
|
-
"<%= config.bin %>
|
|
3565
|
+
"<%= config.bin %> projects set-environments --project legalbloom-rails --code production",
|
|
3566
|
+
"<%= config.bin %> projects set-environments -p LBRA --code production --code staging"
|
|
3895
3567
|
],
|
|
3896
3568
|
"flags": {
|
|
3897
3569
|
"json": {
|
|
@@ -3900,11 +3572,36 @@
|
|
|
3900
3572
|
"name": "json",
|
|
3901
3573
|
"allowNo": false,
|
|
3902
3574
|
"type": "boolean"
|
|
3575
|
+
},
|
|
3576
|
+
"project": {
|
|
3577
|
+
"char": "p",
|
|
3578
|
+
"description": "Project id (UUID) or key",
|
|
3579
|
+
"name": "project",
|
|
3580
|
+
"required": true,
|
|
3581
|
+
"hasDynamicHelp": false,
|
|
3582
|
+
"multiple": false,
|
|
3583
|
+
"type": "option"
|
|
3584
|
+
},
|
|
3585
|
+
"code": {
|
|
3586
|
+
"description": "Environment code, e.g. production (repeatable)",
|
|
3587
|
+
"name": "code",
|
|
3588
|
+
"default": [],
|
|
3589
|
+
"hasDynamicHelp": false,
|
|
3590
|
+
"multiple": true,
|
|
3591
|
+
"type": "option"
|
|
3592
|
+
},
|
|
3593
|
+
"environment-id": {
|
|
3594
|
+
"description": "Environment id / UUID (repeatable)",
|
|
3595
|
+
"name": "environment-id",
|
|
3596
|
+
"default": [],
|
|
3597
|
+
"hasDynamicHelp": false,
|
|
3598
|
+
"multiple": true,
|
|
3599
|
+
"type": "option"
|
|
3903
3600
|
}
|
|
3904
3601
|
},
|
|
3905
3602
|
"hasDynamicHelp": false,
|
|
3906
3603
|
"hiddenAliases": [],
|
|
3907
|
-
"id": "
|
|
3604
|
+
"id": "projects:set-environments",
|
|
3908
3605
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3909
3606
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3910
3607
|
"pluginType": "core",
|
|
@@ -3914,22 +3611,17 @@
|
|
|
3914
3611
|
"relativePath": [
|
|
3915
3612
|
"dist",
|
|
3916
3613
|
"commands",
|
|
3917
|
-
"
|
|
3918
|
-
"
|
|
3614
|
+
"projects",
|
|
3615
|
+
"set-environments.js"
|
|
3919
3616
|
]
|
|
3920
3617
|
},
|
|
3921
|
-
"
|
|
3618
|
+
"projects:set-platforms": {
|
|
3922
3619
|
"aliases": [],
|
|
3923
|
-
"args": {
|
|
3924
|
-
|
|
3925
|
-
"description": "Role name",
|
|
3926
|
-
"name": "name",
|
|
3927
|
-
"required": true
|
|
3928
|
-
}
|
|
3929
|
-
},
|
|
3930
|
-
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
3620
|
+
"args": {},
|
|
3621
|
+
"description": "Declare the platforms of a project (replaces the current set)",
|
|
3931
3622
|
"examples": [
|
|
3932
|
-
"<%= config.bin %>
|
|
3623
|
+
"<%= config.bin %> projects set-platforms --project legalbloom-rails --code web",
|
|
3624
|
+
"<%= config.bin %> projects set-platforms -p LBRA --code web --code ios"
|
|
3933
3625
|
],
|
|
3934
3626
|
"flags": {
|
|
3935
3627
|
"json": {
|
|
@@ -3939,16 +3631,27 @@
|
|
|
3939
3631
|
"allowNo": false,
|
|
3940
3632
|
"type": "boolean"
|
|
3941
3633
|
},
|
|
3942
|
-
"
|
|
3943
|
-
"
|
|
3944
|
-
"
|
|
3634
|
+
"project": {
|
|
3635
|
+
"char": "p",
|
|
3636
|
+
"description": "Project id (UUID) or key",
|
|
3637
|
+
"name": "project",
|
|
3638
|
+
"required": true,
|
|
3945
3639
|
"hasDynamicHelp": false,
|
|
3946
3640
|
"multiple": false,
|
|
3947
3641
|
"type": "option"
|
|
3948
3642
|
},
|
|
3949
|
-
"
|
|
3950
|
-
"description": "
|
|
3951
|
-
"name": "
|
|
3643
|
+
"code": {
|
|
3644
|
+
"description": "Platform code, e.g. web (repeatable)",
|
|
3645
|
+
"name": "code",
|
|
3646
|
+
"default": [],
|
|
3647
|
+
"hasDynamicHelp": false,
|
|
3648
|
+
"multiple": true,
|
|
3649
|
+
"type": "option"
|
|
3650
|
+
},
|
|
3651
|
+
"platform-id": {
|
|
3652
|
+
"description": "Platform id / UUID (repeatable)",
|
|
3653
|
+
"name": "platform-id",
|
|
3654
|
+
"default": [],
|
|
3952
3655
|
"hasDynamicHelp": false,
|
|
3953
3656
|
"multiple": true,
|
|
3954
3657
|
"type": "option"
|
|
@@ -3956,7 +3659,7 @@
|
|
|
3956
3659
|
},
|
|
3957
3660
|
"hasDynamicHelp": false,
|
|
3958
3661
|
"hiddenAliases": [],
|
|
3959
|
-
"id": "
|
|
3662
|
+
"id": "projects:set-platforms",
|
|
3960
3663
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3961
3664
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3962
3665
|
"pluginType": "core",
|
|
@@ -3966,22 +3669,23 @@
|
|
|
3966
3669
|
"relativePath": [
|
|
3967
3670
|
"dist",
|
|
3968
3671
|
"commands",
|
|
3969
|
-
"
|
|
3970
|
-
"
|
|
3672
|
+
"projects",
|
|
3673
|
+
"set-platforms.js"
|
|
3971
3674
|
]
|
|
3972
3675
|
},
|
|
3973
|
-
"
|
|
3676
|
+
"projects:show": {
|
|
3974
3677
|
"aliases": [],
|
|
3975
3678
|
"args": {
|
|
3976
|
-
"
|
|
3977
|
-
"description": "
|
|
3978
|
-
"name": "
|
|
3679
|
+
"id": {
|
|
3680
|
+
"description": "Project id (UUID) or key",
|
|
3681
|
+
"name": "id",
|
|
3979
3682
|
"required": true
|
|
3980
3683
|
}
|
|
3981
3684
|
},
|
|
3982
|
-
"description": "
|
|
3685
|
+
"description": "Show a single project by id or key",
|
|
3983
3686
|
"examples": [
|
|
3984
|
-
"<%= config.bin %>
|
|
3687
|
+
"<%= config.bin %> projects show acme-api",
|
|
3688
|
+
"<%= config.bin %> projects show <uuid> --json"
|
|
3985
3689
|
],
|
|
3986
3690
|
"flags": {
|
|
3987
3691
|
"json": {
|
|
@@ -3994,7 +3698,7 @@
|
|
|
3994
3698
|
},
|
|
3995
3699
|
"hasDynamicHelp": false,
|
|
3996
3700
|
"hiddenAliases": [],
|
|
3997
|
-
"id": "
|
|
3701
|
+
"id": "projects:show",
|
|
3998
3702
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3999
3703
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4000
3704
|
"pluginType": "core",
|
|
@@ -4004,17 +3708,17 @@
|
|
|
4004
3708
|
"relativePath": [
|
|
4005
3709
|
"dist",
|
|
4006
3710
|
"commands",
|
|
4007
|
-
"
|
|
4008
|
-
"
|
|
3711
|
+
"projects",
|
|
3712
|
+
"show.js"
|
|
4009
3713
|
]
|
|
4010
3714
|
},
|
|
4011
|
-
"
|
|
3715
|
+
"projects:update": {
|
|
4012
3716
|
"aliases": [],
|
|
4013
3717
|
"args": {},
|
|
4014
|
-
"description": "
|
|
3718
|
+
"description": "Update a project (name, key, color, description, group)",
|
|
4015
3719
|
"examples": [
|
|
4016
|
-
"<%= config.bin %>
|
|
4017
|
-
"<%= config.bin %>
|
|
3720
|
+
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
3721
|
+
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
4018
3722
|
],
|
|
4019
3723
|
"flags": {
|
|
4020
3724
|
"json": {
|
|
@@ -4024,10 +3728,46 @@
|
|
|
4024
3728
|
"allowNo": false,
|
|
4025
3729
|
"type": "boolean"
|
|
4026
3730
|
},
|
|
4027
|
-
"
|
|
4028
|
-
"
|
|
4029
|
-
"
|
|
4030
|
-
"
|
|
3731
|
+
"project": {
|
|
3732
|
+
"char": "p",
|
|
3733
|
+
"description": "Project id (UUID) or key",
|
|
3734
|
+
"name": "project",
|
|
3735
|
+
"required": true,
|
|
3736
|
+
"hasDynamicHelp": false,
|
|
3737
|
+
"multiple": false,
|
|
3738
|
+
"type": "option"
|
|
3739
|
+
},
|
|
3740
|
+
"name": {
|
|
3741
|
+
"description": "New project name",
|
|
3742
|
+
"name": "name",
|
|
3743
|
+
"hasDynamicHelp": false,
|
|
3744
|
+
"multiple": false,
|
|
3745
|
+
"type": "option"
|
|
3746
|
+
},
|
|
3747
|
+
"key": {
|
|
3748
|
+
"description": "New project key (uppercase A-Z0-9)",
|
|
3749
|
+
"name": "key",
|
|
3750
|
+
"hasDynamicHelp": false,
|
|
3751
|
+
"multiple": false,
|
|
3752
|
+
"type": "option"
|
|
3753
|
+
},
|
|
3754
|
+
"color": {
|
|
3755
|
+
"description": "Color label",
|
|
3756
|
+
"name": "color",
|
|
3757
|
+
"hasDynamicHelp": false,
|
|
3758
|
+
"multiple": false,
|
|
3759
|
+
"type": "option"
|
|
3760
|
+
},
|
|
3761
|
+
"description": {
|
|
3762
|
+
"description": "Free-form description",
|
|
3763
|
+
"name": "description",
|
|
3764
|
+
"hasDynamicHelp": false,
|
|
3765
|
+
"multiple": false,
|
|
3766
|
+
"type": "option"
|
|
3767
|
+
},
|
|
3768
|
+
"group": {
|
|
3769
|
+
"description": "Group id (UUID) or name to move the project into",
|
|
3770
|
+
"name": "group",
|
|
4031
3771
|
"hasDynamicHelp": false,
|
|
4032
3772
|
"multiple": false,
|
|
4033
3773
|
"type": "option"
|
|
@@ -4035,7 +3775,7 @@
|
|
|
4035
3775
|
},
|
|
4036
3776
|
"hasDynamicHelp": false,
|
|
4037
3777
|
"hiddenAliases": [],
|
|
4038
|
-
"id": "
|
|
3778
|
+
"id": "projects:update",
|
|
4039
3779
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4040
3780
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4041
3781
|
"pluginType": "core",
|
|
@@ -4045,22 +3785,27 @@
|
|
|
4045
3785
|
"relativePath": [
|
|
4046
3786
|
"dist",
|
|
4047
3787
|
"commands",
|
|
4048
|
-
"
|
|
4049
|
-
"
|
|
3788
|
+
"projects",
|
|
3789
|
+
"update.js"
|
|
4050
3790
|
]
|
|
4051
3791
|
},
|
|
4052
|
-
"
|
|
3792
|
+
"teams:add-member": {
|
|
4053
3793
|
"aliases": [],
|
|
4054
3794
|
"args": {
|
|
4055
|
-
"
|
|
4056
|
-
"description": "
|
|
4057
|
-
"name": "
|
|
3795
|
+
"team": {
|
|
3796
|
+
"description": "Team id (UUID) or name",
|
|
3797
|
+
"name": "team",
|
|
3798
|
+
"required": true
|
|
3799
|
+
},
|
|
3800
|
+
"member": {
|
|
3801
|
+
"description": "Member account id or email (must be an org member)",
|
|
3802
|
+
"name": "member",
|
|
4058
3803
|
"required": true
|
|
4059
3804
|
}
|
|
4060
3805
|
},
|
|
4061
|
-
"description": "
|
|
3806
|
+
"description": "Add a person to a team, keeping the existing members",
|
|
4062
3807
|
"examples": [
|
|
4063
|
-
"<%= config.bin %>
|
|
3808
|
+
"<%= config.bin %> teams add-member DriverOne client@acme.com"
|
|
4064
3809
|
],
|
|
4065
3810
|
"flags": {
|
|
4066
3811
|
"json": {
|
|
@@ -4073,7 +3818,7 @@
|
|
|
4073
3818
|
},
|
|
4074
3819
|
"hasDynamicHelp": false,
|
|
4075
3820
|
"hiddenAliases": [],
|
|
4076
|
-
"id": "
|
|
3821
|
+
"id": "teams:add-member",
|
|
4077
3822
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4078
3823
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4079
3824
|
"pluginType": "core",
|
|
@@ -4083,23 +3828,23 @@
|
|
|
4083
3828
|
"relativePath": [
|
|
4084
3829
|
"dist",
|
|
4085
3830
|
"commands",
|
|
4086
|
-
"
|
|
4087
|
-
"
|
|
3831
|
+
"teams",
|
|
3832
|
+
"add-member.js"
|
|
4088
3833
|
]
|
|
4089
3834
|
},
|
|
4090
|
-
"
|
|
3835
|
+
"teams:create": {
|
|
4091
3836
|
"aliases": [],
|
|
4092
3837
|
"args": {
|
|
4093
|
-
"
|
|
4094
|
-
"description": "
|
|
4095
|
-
"name": "
|
|
3838
|
+
"name": {
|
|
3839
|
+
"description": "Team name",
|
|
3840
|
+
"name": "name",
|
|
4096
3841
|
"required": true
|
|
4097
3842
|
}
|
|
4098
3843
|
},
|
|
4099
|
-
"description": "
|
|
3844
|
+
"description": "Create a team and (optionally) set its roles, group/project scope and members",
|
|
4100
3845
|
"examples": [
|
|
4101
|
-
"<%= config.bin %>
|
|
4102
|
-
"<%= config.bin %>
|
|
3846
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne",
|
|
3847
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
4103
3848
|
],
|
|
4104
3849
|
"flags": {
|
|
4105
3850
|
"json": {
|
|
@@ -4116,16 +3861,30 @@
|
|
|
4116
3861
|
"multiple": false,
|
|
4117
3862
|
"type": "option"
|
|
4118
3863
|
},
|
|
4119
|
-
"
|
|
4120
|
-
"description": "
|
|
4121
|
-
"name": "
|
|
3864
|
+
"group": {
|
|
3865
|
+
"description": "Group id or name to scope the team to (repeatable)",
|
|
3866
|
+
"name": "group",
|
|
4122
3867
|
"hasDynamicHelp": false,
|
|
4123
|
-
"multiple":
|
|
3868
|
+
"multiple": true,
|
|
4124
3869
|
"type": "option"
|
|
4125
3870
|
},
|
|
4126
|
-
"
|
|
4127
|
-
"description": "
|
|
4128
|
-
"name": "
|
|
3871
|
+
"member": {
|
|
3872
|
+
"description": "Member account id or email (repeatable; must be an org member)",
|
|
3873
|
+
"name": "member",
|
|
3874
|
+
"hasDynamicHelp": false,
|
|
3875
|
+
"multiple": true,
|
|
3876
|
+
"type": "option"
|
|
3877
|
+
},
|
|
3878
|
+
"project": {
|
|
3879
|
+
"description": "Project id or key to scope the team to (repeatable)",
|
|
3880
|
+
"name": "project",
|
|
3881
|
+
"hasDynamicHelp": false,
|
|
3882
|
+
"multiple": true,
|
|
3883
|
+
"type": "option"
|
|
3884
|
+
},
|
|
3885
|
+
"role": {
|
|
3886
|
+
"description": "Role id or name to grant to the team (repeatable)",
|
|
3887
|
+
"name": "role",
|
|
4129
3888
|
"hasDynamicHelp": false,
|
|
4130
3889
|
"multiple": true,
|
|
4131
3890
|
"type": "option"
|
|
@@ -4133,7 +3892,7 @@
|
|
|
4133
3892
|
},
|
|
4134
3893
|
"hasDynamicHelp": false,
|
|
4135
3894
|
"hiddenAliases": [],
|
|
4136
|
-
"id": "
|
|
3895
|
+
"id": "teams:create",
|
|
4137
3896
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4138
3897
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4139
3898
|
"pluginType": "core",
|
|
@@ -4143,16 +3902,22 @@
|
|
|
4143
3902
|
"relativePath": [
|
|
4144
3903
|
"dist",
|
|
4145
3904
|
"commands",
|
|
4146
|
-
"
|
|
4147
|
-
"
|
|
3905
|
+
"teams",
|
|
3906
|
+
"create.js"
|
|
4148
3907
|
]
|
|
4149
3908
|
},
|
|
4150
|
-
"
|
|
3909
|
+
"teams:delete": {
|
|
4151
3910
|
"aliases": [],
|
|
4152
|
-
"args": {
|
|
4153
|
-
|
|
3911
|
+
"args": {
|
|
3912
|
+
"team": {
|
|
3913
|
+
"description": "Team id (UUID) or name",
|
|
3914
|
+
"name": "team",
|
|
3915
|
+
"required": true
|
|
3916
|
+
}
|
|
3917
|
+
},
|
|
3918
|
+
"description": "Delete a team (its members lose the access this team granted)",
|
|
4154
3919
|
"examples": [
|
|
4155
|
-
"<%= config.bin %>
|
|
3920
|
+
"<%= config.bin %> teams delete DriverOne"
|
|
4156
3921
|
],
|
|
4157
3922
|
"flags": {
|
|
4158
3923
|
"json": {
|
|
@@ -4161,36 +3926,11 @@
|
|
|
4161
3926
|
"name": "json",
|
|
4162
3927
|
"allowNo": false,
|
|
4163
3928
|
"type": "boolean"
|
|
4164
|
-
},
|
|
4165
|
-
"project": {
|
|
4166
|
-
"char": "p",
|
|
4167
|
-
"description": "Project id (UUID) or key",
|
|
4168
|
-
"name": "project",
|
|
4169
|
-
"required": true,
|
|
4170
|
-
"hasDynamicHelp": false,
|
|
4171
|
-
"multiple": false,
|
|
4172
|
-
"type": "option"
|
|
4173
|
-
},
|
|
4174
|
-
"name": {
|
|
4175
|
-
"description": "Human-readable token name",
|
|
4176
|
-
"name": "name",
|
|
4177
|
-
"required": true,
|
|
4178
|
-
"hasDynamicHelp": false,
|
|
4179
|
-
"multiple": false,
|
|
4180
|
-
"type": "option"
|
|
4181
|
-
},
|
|
4182
|
-
"environment-id": {
|
|
4183
|
-
"description": "Environment id the token is scoped to",
|
|
4184
|
-
"name": "environment-id",
|
|
4185
|
-
"required": true,
|
|
4186
|
-
"hasDynamicHelp": false,
|
|
4187
|
-
"multiple": false,
|
|
4188
|
-
"type": "option"
|
|
4189
3929
|
}
|
|
4190
3930
|
},
|
|
4191
3931
|
"hasDynamicHelp": false,
|
|
4192
3932
|
"hiddenAliases": [],
|
|
4193
|
-
"id": "
|
|
3933
|
+
"id": "teams:delete",
|
|
4194
3934
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4195
3935
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4196
3936
|
"pluginType": "core",
|
|
@@ -4200,17 +3940,17 @@
|
|
|
4200
3940
|
"relativePath": [
|
|
4201
3941
|
"dist",
|
|
4202
3942
|
"commands",
|
|
4203
|
-
"
|
|
4204
|
-
"
|
|
3943
|
+
"teams",
|
|
3944
|
+
"delete.js"
|
|
4205
3945
|
]
|
|
4206
3946
|
},
|
|
4207
|
-
"
|
|
3947
|
+
"teams:list": {
|
|
4208
3948
|
"aliases": [],
|
|
4209
3949
|
"args": {},
|
|
4210
|
-
"description": "List
|
|
3950
|
+
"description": "List the teams (people with scope) in your organization",
|
|
4211
3951
|
"examples": [
|
|
4212
|
-
"<%= config.bin %>
|
|
4213
|
-
"<%= config.bin %>
|
|
3952
|
+
"<%= config.bin %> teams list",
|
|
3953
|
+
"<%= config.bin %> teams list --json"
|
|
4214
3954
|
],
|
|
4215
3955
|
"flags": {
|
|
4216
3956
|
"json": {
|
|
@@ -4220,11 +3960,10 @@
|
|
|
4220
3960
|
"allowNo": false,
|
|
4221
3961
|
"type": "boolean"
|
|
4222
3962
|
},
|
|
4223
|
-
"
|
|
4224
|
-
"
|
|
4225
|
-
"
|
|
4226
|
-
"
|
|
4227
|
-
"required": true,
|
|
3963
|
+
"page": {
|
|
3964
|
+
"description": "Page number",
|
|
3965
|
+
"name": "page",
|
|
3966
|
+
"default": 1,
|
|
4228
3967
|
"hasDynamicHelp": false,
|
|
4229
3968
|
"multiple": false,
|
|
4230
3969
|
"type": "option"
|
|
@@ -4232,7 +3971,7 @@
|
|
|
4232
3971
|
},
|
|
4233
3972
|
"hasDynamicHelp": false,
|
|
4234
3973
|
"hiddenAliases": [],
|
|
4235
|
-
"id": "
|
|
3974
|
+
"id": "teams:list",
|
|
4236
3975
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4237
3976
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4238
3977
|
"pluginType": "core",
|
|
@@ -4242,22 +3981,27 @@
|
|
|
4242
3981
|
"relativePath": [
|
|
4243
3982
|
"dist",
|
|
4244
3983
|
"commands",
|
|
4245
|
-
"
|
|
3984
|
+
"teams",
|
|
4246
3985
|
"list.js"
|
|
4247
3986
|
]
|
|
4248
3987
|
},
|
|
4249
|
-
"
|
|
3988
|
+
"teams:remove-member": {
|
|
4250
3989
|
"aliases": [],
|
|
4251
3990
|
"args": {
|
|
4252
|
-
"
|
|
4253
|
-
"description": "
|
|
4254
|
-
"name": "
|
|
3991
|
+
"team": {
|
|
3992
|
+
"description": "Team id (UUID) or name",
|
|
3993
|
+
"name": "team",
|
|
3994
|
+
"required": true
|
|
3995
|
+
},
|
|
3996
|
+
"member": {
|
|
3997
|
+
"description": "Member account id or email",
|
|
3998
|
+
"name": "member",
|
|
4255
3999
|
"required": true
|
|
4256
4000
|
}
|
|
4257
4001
|
},
|
|
4258
|
-
"description": "
|
|
4002
|
+
"description": "Remove a person from a team, keeping the other members",
|
|
4259
4003
|
"examples": [
|
|
4260
|
-
"<%= config.bin %>
|
|
4004
|
+
"<%= config.bin %> teams remove-member DriverOne client@acme.com"
|
|
4261
4005
|
],
|
|
4262
4006
|
"flags": {
|
|
4263
4007
|
"json": {
|
|
@@ -4266,20 +4010,11 @@
|
|
|
4266
4010
|
"name": "json",
|
|
4267
4011
|
"allowNo": false,
|
|
4268
4012
|
"type": "boolean"
|
|
4269
|
-
},
|
|
4270
|
-
"project": {
|
|
4271
|
-
"char": "p",
|
|
4272
|
-
"description": "Project id (UUID) or key",
|
|
4273
|
-
"name": "project",
|
|
4274
|
-
"required": true,
|
|
4275
|
-
"hasDynamicHelp": false,
|
|
4276
|
-
"multiple": false,
|
|
4277
|
-
"type": "option"
|
|
4278
4013
|
}
|
|
4279
4014
|
},
|
|
4280
4015
|
"hasDynamicHelp": false,
|
|
4281
4016
|
"hiddenAliases": [],
|
|
4282
|
-
"id": "
|
|
4017
|
+
"id": "teams:remove-member",
|
|
4283
4018
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4284
4019
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4285
4020
|
"pluginType": "core",
|
|
@@ -4289,22 +4024,61 @@
|
|
|
4289
4024
|
"relativePath": [
|
|
4290
4025
|
"dist",
|
|
4291
4026
|
"commands",
|
|
4292
|
-
"
|
|
4293
|
-
"
|
|
4027
|
+
"teams",
|
|
4028
|
+
"remove-member.js"
|
|
4029
|
+
]
|
|
4030
|
+
},
|
|
4031
|
+
"teams:show": {
|
|
4032
|
+
"aliases": [],
|
|
4033
|
+
"args": {
|
|
4034
|
+
"team": {
|
|
4035
|
+
"description": "Team id (UUID) or name",
|
|
4036
|
+
"name": "team",
|
|
4037
|
+
"required": true
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
"description": "Show a team by id or name (roles, group/project scope, members)",
|
|
4041
|
+
"examples": [
|
|
4042
|
+
"<%= config.bin %> teams show DriverOne"
|
|
4043
|
+
],
|
|
4044
|
+
"flags": {
|
|
4045
|
+
"json": {
|
|
4046
|
+
"description": "Format output as json.",
|
|
4047
|
+
"helpGroup": "GLOBAL",
|
|
4048
|
+
"name": "json",
|
|
4049
|
+
"allowNo": false,
|
|
4050
|
+
"type": "boolean"
|
|
4051
|
+
}
|
|
4052
|
+
},
|
|
4053
|
+
"hasDynamicHelp": false,
|
|
4054
|
+
"hiddenAliases": [],
|
|
4055
|
+
"id": "teams:show",
|
|
4056
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4057
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4058
|
+
"pluginType": "core",
|
|
4059
|
+
"strict": true,
|
|
4060
|
+
"enableJsonFlag": true,
|
|
4061
|
+
"isESM": false,
|
|
4062
|
+
"relativePath": [
|
|
4063
|
+
"dist",
|
|
4064
|
+
"commands",
|
|
4065
|
+
"teams",
|
|
4066
|
+
"show.js"
|
|
4294
4067
|
]
|
|
4295
4068
|
},
|
|
4296
|
-
"
|
|
4069
|
+
"teams:update": {
|
|
4297
4070
|
"aliases": [],
|
|
4298
4071
|
"args": {
|
|
4299
|
-
"
|
|
4300
|
-
"description": "
|
|
4301
|
-
"name": "
|
|
4072
|
+
"team": {
|
|
4073
|
+
"description": "Team id (UUID) or name",
|
|
4074
|
+
"name": "team",
|
|
4302
4075
|
"required": true
|
|
4303
4076
|
}
|
|
4304
4077
|
},
|
|
4305
|
-
"description": "
|
|
4078
|
+
"description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
|
|
4306
4079
|
"examples": [
|
|
4307
|
-
"<%= config.bin %>
|
|
4080
|
+
"<%= config.bin %> teams update DriverOne --role Client --group DriverOne",
|
|
4081
|
+
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
4308
4082
|
],
|
|
4309
4083
|
"flags": {
|
|
4310
4084
|
"json": {
|
|
@@ -4314,19 +4088,52 @@
|
|
|
4314
4088
|
"allowNo": false,
|
|
4315
4089
|
"type": "boolean"
|
|
4316
4090
|
},
|
|
4091
|
+
"color": {
|
|
4092
|
+
"description": "Color label",
|
|
4093
|
+
"name": "color",
|
|
4094
|
+
"hasDynamicHelp": false,
|
|
4095
|
+
"multiple": false,
|
|
4096
|
+
"type": "option"
|
|
4097
|
+
},
|
|
4098
|
+
"group": {
|
|
4099
|
+
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
4100
|
+
"name": "group",
|
|
4101
|
+
"hasDynamicHelp": false,
|
|
4102
|
+
"multiple": true,
|
|
4103
|
+
"type": "option"
|
|
4104
|
+
},
|
|
4105
|
+
"member": {
|
|
4106
|
+
"description": "Member account id or email (repeatable; replaces the members)",
|
|
4107
|
+
"name": "member",
|
|
4108
|
+
"hasDynamicHelp": false,
|
|
4109
|
+
"multiple": true,
|
|
4110
|
+
"type": "option"
|
|
4111
|
+
},
|
|
4112
|
+
"name": {
|
|
4113
|
+
"description": "New name",
|
|
4114
|
+
"name": "name",
|
|
4115
|
+
"hasDynamicHelp": false,
|
|
4116
|
+
"multiple": false,
|
|
4117
|
+
"type": "option"
|
|
4118
|
+
},
|
|
4317
4119
|
"project": {
|
|
4318
|
-
"
|
|
4319
|
-
"description": "Project id (UUID) or key",
|
|
4120
|
+
"description": "Project id or key (repeatable; replaces the project scope)",
|
|
4320
4121
|
"name": "project",
|
|
4321
|
-
"required": true,
|
|
4322
4122
|
"hasDynamicHelp": false,
|
|
4323
|
-
"multiple":
|
|
4123
|
+
"multiple": true,
|
|
4124
|
+
"type": "option"
|
|
4125
|
+
},
|
|
4126
|
+
"role": {
|
|
4127
|
+
"description": "Role id or name (repeatable; replaces the roles)",
|
|
4128
|
+
"name": "role",
|
|
4129
|
+
"hasDynamicHelp": false,
|
|
4130
|
+
"multiple": true,
|
|
4324
4131
|
"type": "option"
|
|
4325
4132
|
}
|
|
4326
4133
|
},
|
|
4327
4134
|
"hasDynamicHelp": false,
|
|
4328
4135
|
"hiddenAliases": [],
|
|
4329
|
-
"id": "
|
|
4136
|
+
"id": "teams:update",
|
|
4330
4137
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4331
4138
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4332
4139
|
"pluginType": "core",
|
|
@@ -4336,8 +4143,8 @@
|
|
|
4336
4143
|
"relativePath": [
|
|
4337
4144
|
"dist",
|
|
4338
4145
|
"commands",
|
|
4339
|
-
"
|
|
4340
|
-
"
|
|
4146
|
+
"teams",
|
|
4147
|
+
"update.js"
|
|
4341
4148
|
]
|
|
4342
4149
|
},
|
|
4343
4150
|
"tickets:assign": {
|
|
@@ -4467,17 +4274,17 @@
|
|
|
4467
4274
|
"aliases": [],
|
|
4468
4275
|
"args": {
|
|
4469
4276
|
"id": {
|
|
4470
|
-
"description": "Ticket id",
|
|
4277
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4471
4278
|
"name": "id",
|
|
4472
4279
|
"required": true
|
|
4473
4280
|
},
|
|
4474
4281
|
"attachment": {
|
|
4475
|
-
"description": "Attachment id",
|
|
4282
|
+
"description": "Attachment id (ticket attachment or comment file)",
|
|
4476
4283
|
"name": "attachment",
|
|
4477
4284
|
"required": true
|
|
4478
4285
|
}
|
|
4479
4286
|
},
|
|
4480
|
-
"description": "Download a ticket
|
|
4287
|
+
"description": "Download a ticket binary to disk: works for ticket attachments AND files attached to its comments",
|
|
4481
4288
|
"examples": [
|
|
4482
4289
|
"<%= config.bin %> tickets attachment-download <ticket-id> <attachment-id> --project acme-api",
|
|
4483
4290
|
"<%= config.bin %> tickets attachment-download <ticket-id> <attachment-id> -p acme-api --out ./downloads"
|
|
@@ -4699,12 +4506,12 @@
|
|
|
4699
4506
|
"aliases": [],
|
|
4700
4507
|
"args": {
|
|
4701
4508
|
"id": {
|
|
4702
|
-
"description": "Ticket id",
|
|
4509
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4703
4510
|
"name": "id",
|
|
4704
4511
|
"required": true
|
|
4705
4512
|
}
|
|
4706
4513
|
},
|
|
4707
|
-
"description": "List all comments of a ticket (oldest first)",
|
|
4514
|
+
"description": "List all comments of a ticket (oldest first), including attached files — download them with tickets attachment-download",
|
|
4708
4515
|
"examples": [
|
|
4709
4516
|
"<%= config.bin %> tickets comments <ticket-id> --project acme-api",
|
|
4710
4517
|
"<%= config.bin %> tickets comments <ticket-id> -p acme-api --json"
|
|
@@ -5085,14 +4892,16 @@
|
|
|
5085
4892
|
"aliases": [],
|
|
5086
4893
|
"args": {
|
|
5087
4894
|
"id": {
|
|
5088
|
-
"description": "Ticket id or code",
|
|
4895
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
5089
4896
|
"name": "id",
|
|
5090
4897
|
"required": true
|
|
5091
4898
|
}
|
|
5092
4899
|
},
|
|
5093
|
-
"description": "Show a single ticket",
|
|
4900
|
+
"description": "Show a single ticket in full: body (description + Given/When/Then/Expected), comments (with their files) and attachments",
|
|
5094
4901
|
"examples": [
|
|
5095
|
-
"<%= config.bin %> tickets show <ticket-id> --project acme-api"
|
|
4902
|
+
"<%= config.bin %> tickets show <ticket-id> --project acme-api",
|
|
4903
|
+
"<%= config.bin %> tickets show DRFL-3 --project driverone-flutter",
|
|
4904
|
+
"<%= config.bin %> tickets show DRFL-3 -p driverone-flutter --json"
|
|
5096
4905
|
],
|
|
5097
4906
|
"flags": {
|
|
5098
4907
|
"json": {
|
|
@@ -5416,6 +5225,199 @@
|
|
|
5416
5225
|
"vote.js"
|
|
5417
5226
|
]
|
|
5418
5227
|
},
|
|
5228
|
+
"tokens:create": {
|
|
5229
|
+
"aliases": [],
|
|
5230
|
+
"args": {},
|
|
5231
|
+
"description": "Create an ingest token (the secret is shown only once)",
|
|
5232
|
+
"examples": [
|
|
5233
|
+
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
5234
|
+
],
|
|
5235
|
+
"flags": {
|
|
5236
|
+
"json": {
|
|
5237
|
+
"description": "Format output as json.",
|
|
5238
|
+
"helpGroup": "GLOBAL",
|
|
5239
|
+
"name": "json",
|
|
5240
|
+
"allowNo": false,
|
|
5241
|
+
"type": "boolean"
|
|
5242
|
+
},
|
|
5243
|
+
"project": {
|
|
5244
|
+
"char": "p",
|
|
5245
|
+
"description": "Project id (UUID) or key",
|
|
5246
|
+
"name": "project",
|
|
5247
|
+
"required": true,
|
|
5248
|
+
"hasDynamicHelp": false,
|
|
5249
|
+
"multiple": false,
|
|
5250
|
+
"type": "option"
|
|
5251
|
+
},
|
|
5252
|
+
"name": {
|
|
5253
|
+
"description": "Human-readable token name",
|
|
5254
|
+
"name": "name",
|
|
5255
|
+
"required": true,
|
|
5256
|
+
"hasDynamicHelp": false,
|
|
5257
|
+
"multiple": false,
|
|
5258
|
+
"type": "option"
|
|
5259
|
+
},
|
|
5260
|
+
"environment-id": {
|
|
5261
|
+
"description": "Environment id the token is scoped to",
|
|
5262
|
+
"name": "environment-id",
|
|
5263
|
+
"required": true,
|
|
5264
|
+
"hasDynamicHelp": false,
|
|
5265
|
+
"multiple": false,
|
|
5266
|
+
"type": "option"
|
|
5267
|
+
}
|
|
5268
|
+
},
|
|
5269
|
+
"hasDynamicHelp": false,
|
|
5270
|
+
"hiddenAliases": [],
|
|
5271
|
+
"id": "tokens:create",
|
|
5272
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5273
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5274
|
+
"pluginType": "core",
|
|
5275
|
+
"strict": true,
|
|
5276
|
+
"enableJsonFlag": true,
|
|
5277
|
+
"isESM": false,
|
|
5278
|
+
"relativePath": [
|
|
5279
|
+
"dist",
|
|
5280
|
+
"commands",
|
|
5281
|
+
"tokens",
|
|
5282
|
+
"create.js"
|
|
5283
|
+
]
|
|
5284
|
+
},
|
|
5285
|
+
"tokens:list": {
|
|
5286
|
+
"aliases": [],
|
|
5287
|
+
"args": {},
|
|
5288
|
+
"description": "List ingest tokens for a project",
|
|
5289
|
+
"examples": [
|
|
5290
|
+
"<%= config.bin %> tokens list --project acme-api",
|
|
5291
|
+
"<%= config.bin %> tokens list -p acme-api --json"
|
|
5292
|
+
],
|
|
5293
|
+
"flags": {
|
|
5294
|
+
"json": {
|
|
5295
|
+
"description": "Format output as json.",
|
|
5296
|
+
"helpGroup": "GLOBAL",
|
|
5297
|
+
"name": "json",
|
|
5298
|
+
"allowNo": false,
|
|
5299
|
+
"type": "boolean"
|
|
5300
|
+
},
|
|
5301
|
+
"project": {
|
|
5302
|
+
"char": "p",
|
|
5303
|
+
"description": "Project id (UUID) or key",
|
|
5304
|
+
"name": "project",
|
|
5305
|
+
"required": true,
|
|
5306
|
+
"hasDynamicHelp": false,
|
|
5307
|
+
"multiple": false,
|
|
5308
|
+
"type": "option"
|
|
5309
|
+
}
|
|
5310
|
+
},
|
|
5311
|
+
"hasDynamicHelp": false,
|
|
5312
|
+
"hiddenAliases": [],
|
|
5313
|
+
"id": "tokens:list",
|
|
5314
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5315
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5316
|
+
"pluginType": "core",
|
|
5317
|
+
"strict": true,
|
|
5318
|
+
"enableJsonFlag": true,
|
|
5319
|
+
"isESM": false,
|
|
5320
|
+
"relativePath": [
|
|
5321
|
+
"dist",
|
|
5322
|
+
"commands",
|
|
5323
|
+
"tokens",
|
|
5324
|
+
"list.js"
|
|
5325
|
+
]
|
|
5326
|
+
},
|
|
5327
|
+
"tokens:revoke": {
|
|
5328
|
+
"aliases": [],
|
|
5329
|
+
"args": {
|
|
5330
|
+
"id": {
|
|
5331
|
+
"description": "Token id",
|
|
5332
|
+
"name": "id",
|
|
5333
|
+
"required": true
|
|
5334
|
+
}
|
|
5335
|
+
},
|
|
5336
|
+
"description": "Revoke an ingest token",
|
|
5337
|
+
"examples": [
|
|
5338
|
+
"<%= config.bin %> tokens revoke <token-id> --project acme-api"
|
|
5339
|
+
],
|
|
5340
|
+
"flags": {
|
|
5341
|
+
"json": {
|
|
5342
|
+
"description": "Format output as json.",
|
|
5343
|
+
"helpGroup": "GLOBAL",
|
|
5344
|
+
"name": "json",
|
|
5345
|
+
"allowNo": false,
|
|
5346
|
+
"type": "boolean"
|
|
5347
|
+
},
|
|
5348
|
+
"project": {
|
|
5349
|
+
"char": "p",
|
|
5350
|
+
"description": "Project id (UUID) or key",
|
|
5351
|
+
"name": "project",
|
|
5352
|
+
"required": true,
|
|
5353
|
+
"hasDynamicHelp": false,
|
|
5354
|
+
"multiple": false,
|
|
5355
|
+
"type": "option"
|
|
5356
|
+
}
|
|
5357
|
+
},
|
|
5358
|
+
"hasDynamicHelp": false,
|
|
5359
|
+
"hiddenAliases": [],
|
|
5360
|
+
"id": "tokens:revoke",
|
|
5361
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5362
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5363
|
+
"pluginType": "core",
|
|
5364
|
+
"strict": true,
|
|
5365
|
+
"enableJsonFlag": true,
|
|
5366
|
+
"isESM": false,
|
|
5367
|
+
"relativePath": [
|
|
5368
|
+
"dist",
|
|
5369
|
+
"commands",
|
|
5370
|
+
"tokens",
|
|
5371
|
+
"revoke.js"
|
|
5372
|
+
]
|
|
5373
|
+
},
|
|
5374
|
+
"tokens:rotate": {
|
|
5375
|
+
"aliases": [],
|
|
5376
|
+
"args": {
|
|
5377
|
+
"id": {
|
|
5378
|
+
"description": "Token id",
|
|
5379
|
+
"name": "id",
|
|
5380
|
+
"required": true
|
|
5381
|
+
}
|
|
5382
|
+
},
|
|
5383
|
+
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
5384
|
+
"examples": [
|
|
5385
|
+
"<%= config.bin %> tokens rotate <token-id> --project acme-api"
|
|
5386
|
+
],
|
|
5387
|
+
"flags": {
|
|
5388
|
+
"json": {
|
|
5389
|
+
"description": "Format output as json.",
|
|
5390
|
+
"helpGroup": "GLOBAL",
|
|
5391
|
+
"name": "json",
|
|
5392
|
+
"allowNo": false,
|
|
5393
|
+
"type": "boolean"
|
|
5394
|
+
},
|
|
5395
|
+
"project": {
|
|
5396
|
+
"char": "p",
|
|
5397
|
+
"description": "Project id (UUID) or key",
|
|
5398
|
+
"name": "project",
|
|
5399
|
+
"required": true,
|
|
5400
|
+
"hasDynamicHelp": false,
|
|
5401
|
+
"multiple": false,
|
|
5402
|
+
"type": "option"
|
|
5403
|
+
}
|
|
5404
|
+
},
|
|
5405
|
+
"hasDynamicHelp": false,
|
|
5406
|
+
"hiddenAliases": [],
|
|
5407
|
+
"id": "tokens:rotate",
|
|
5408
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5409
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5410
|
+
"pluginType": "core",
|
|
5411
|
+
"strict": true,
|
|
5412
|
+
"enableJsonFlag": true,
|
|
5413
|
+
"isESM": false,
|
|
5414
|
+
"relativePath": [
|
|
5415
|
+
"dist",
|
|
5416
|
+
"commands",
|
|
5417
|
+
"tokens",
|
|
5418
|
+
"rotate.js"
|
|
5419
|
+
]
|
|
5420
|
+
},
|
|
5419
5421
|
"alerts:channels:create": {
|
|
5420
5422
|
"aliases": [],
|
|
5421
5423
|
"args": {
|
|
@@ -5708,5 +5710,5 @@
|
|
|
5708
5710
|
]
|
|
5709
5711
|
}
|
|
5710
5712
|
},
|
|
5711
|
-
"version": "0.0.
|
|
5713
|
+
"version": "0.0.11"
|
|
5712
5714
|
}
|