heroku 10.0.0-alpha.2 → 10.0.0-beta.2
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/lib/commands/addons/create.js +17 -0
- package/lib/commands/buildpacks/index.js +9 -3
- package/lib/commands/git/remote.js +1 -1
- package/lib/commands/pipelines/diff.d.ts +1 -1
- package/lib/commands/pipelines/diff.js +24 -14
- package/lib/commands/pipelines/promote.js +1 -1
- package/lib/commands/run/inside.d.ts +5 -2
- package/lib/commands/run/inside.js +17 -11
- package/lib/commands/spaces/create.js +14 -0
- package/lib/commands/telemetry/add.d.ts +2 -3
- package/lib/commands/telemetry/add.js +9 -9
- package/lib/commands/telemetry/update.d.ts +2 -2
- package/lib/commands/telemetry/update.js +5 -5
- package/lib/global_telemetry.js +1 -1
- package/lib/lib/api.d.ts +12 -3
- package/lib/lib/api.js +15 -14
- package/lib/lib/buildpacks/buildpacks.d.ts +2 -4
- package/lib/lib/buildpacks/buildpacks.js +37 -8
- package/lib/lib/pipelines/ownership.d.ts +3 -2
- package/lib/lib/pipelines/render-pipeline.d.ts +2 -1
- package/lib/lib/pipelines/render-pipeline.js +6 -6
- package/oclif.manifest.json +716 -713
- package/package.json +2 -3
package/oclif.manifest.json
CHANGED
|
@@ -533,125 +533,124 @@
|
|
|
533
533
|
"update.js"
|
|
534
534
|
]
|
|
535
535
|
},
|
|
536
|
-
"
|
|
536
|
+
"addons:attach": {
|
|
537
537
|
"aliases": [],
|
|
538
538
|
"args": {
|
|
539
|
-
"
|
|
540
|
-
"description": "name of
|
|
541
|
-
"name": "
|
|
542
|
-
"required":
|
|
539
|
+
"addon_name": {
|
|
540
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
541
|
+
"name": "addon_name",
|
|
542
|
+
"required": true
|
|
543
543
|
}
|
|
544
544
|
},
|
|
545
|
-
"description": "
|
|
546
|
-
"examples": [
|
|
547
|
-
"$ heroku apps:create\nCreating app... done, stack is heroku-24\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
|
|
548
|
-
],
|
|
545
|
+
"description": "attach an existing add-on resource to an app",
|
|
549
546
|
"flags": {
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"name": "
|
|
547
|
+
"as": {
|
|
548
|
+
"description": "name for add-on attachment",
|
|
549
|
+
"name": "as",
|
|
553
550
|
"hasDynamicHelp": false,
|
|
554
551
|
"multiple": false,
|
|
555
552
|
"type": "option"
|
|
556
553
|
},
|
|
557
|
-
"
|
|
558
|
-
"description": "
|
|
559
|
-
"name": "
|
|
554
|
+
"credential": {
|
|
555
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
556
|
+
"name": "credential",
|
|
560
557
|
"hasDynamicHelp": false,
|
|
561
558
|
"multiple": false,
|
|
562
559
|
"type": "option"
|
|
563
560
|
},
|
|
564
|
-
"
|
|
565
|
-
"
|
|
566
|
-
"
|
|
567
|
-
"name": "buildpack",
|
|
561
|
+
"confirm": {
|
|
562
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
563
|
+
"name": "confirm",
|
|
568
564
|
"hasDynamicHelp": false,
|
|
569
565
|
"multiple": false,
|
|
570
566
|
"type": "option"
|
|
571
567
|
},
|
|
572
|
-
"
|
|
573
|
-
"char": "
|
|
574
|
-
"description": "
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
|
|
580
|
-
"no-remote": {
|
|
581
|
-
"char": "n",
|
|
582
|
-
"description": "do not create a git remote",
|
|
583
|
-
"name": "no-remote",
|
|
584
|
-
"allowNo": false,
|
|
585
|
-
"type": "boolean"
|
|
568
|
+
"app": {
|
|
569
|
+
"char": "a",
|
|
570
|
+
"description": "app to run command against",
|
|
571
|
+
"name": "app",
|
|
572
|
+
"required": true,
|
|
573
|
+
"hasDynamicHelp": false,
|
|
574
|
+
"multiple": false,
|
|
575
|
+
"type": "option"
|
|
586
576
|
},
|
|
587
577
|
"remote": {
|
|
588
578
|
"char": "r",
|
|
589
|
-
"description": "
|
|
579
|
+
"description": "git remote of app to use",
|
|
590
580
|
"name": "remote",
|
|
591
|
-
"default": "heroku",
|
|
592
581
|
"hasDynamicHelp": false,
|
|
593
582
|
"multiple": false,
|
|
594
583
|
"type": "option"
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"hasDynamicHelp": false,
|
|
587
|
+
"hiddenAliases": [],
|
|
588
|
+
"id": "addons:attach",
|
|
589
|
+
"pluginAlias": "heroku",
|
|
590
|
+
"pluginName": "heroku",
|
|
591
|
+
"pluginType": "core",
|
|
592
|
+
"strict": true,
|
|
593
|
+
"topic": "addons",
|
|
594
|
+
"isESM": false,
|
|
595
|
+
"relativePath": [
|
|
596
|
+
"lib",
|
|
597
|
+
"commands",
|
|
598
|
+
"addons",
|
|
599
|
+
"attach.js"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"addons:create": {
|
|
603
|
+
"aliases": [],
|
|
604
|
+
"args": {
|
|
605
|
+
"service:plan": {
|
|
606
|
+
"description": "unique identifier or unique name of the add-on service plan",
|
|
607
|
+
"name": "service:plan",
|
|
608
|
+
"required": true
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"description": "Create a new add-on resource.\n\nIn order to add additional config items, please place them at the end of the command after a double-dash (--).\n",
|
|
612
|
+
"examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
613
|
+
"flags": {
|
|
614
|
+
"name": {
|
|
615
|
+
"description": "name for the add-on resource",
|
|
616
|
+
"name": "name",
|
|
600
617
|
"hasDynamicHelp": false,
|
|
601
618
|
"multiple": false,
|
|
602
619
|
"type": "option"
|
|
603
620
|
},
|
|
604
|
-
"
|
|
605
|
-
"description": "
|
|
606
|
-
"name": "
|
|
621
|
+
"as": {
|
|
622
|
+
"description": "name for the initial add-on attachment",
|
|
623
|
+
"name": "as",
|
|
607
624
|
"hasDynamicHelp": false,
|
|
608
625
|
"multiple": false,
|
|
609
626
|
"type": "option"
|
|
610
627
|
},
|
|
611
|
-
"
|
|
612
|
-
"description": "
|
|
613
|
-
"name": "
|
|
628
|
+
"confirm": {
|
|
629
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
630
|
+
"name": "confirm",
|
|
614
631
|
"hasDynamicHelp": false,
|
|
615
632
|
"multiple": false,
|
|
616
633
|
"type": "option"
|
|
617
634
|
},
|
|
618
|
-
"
|
|
619
|
-
"description": "
|
|
620
|
-
"
|
|
621
|
-
"name": "internal-routing",
|
|
635
|
+
"wait": {
|
|
636
|
+
"description": "watch add-on creation status and exit when complete",
|
|
637
|
+
"name": "wait",
|
|
622
638
|
"allowNo": false,
|
|
623
639
|
"type": "boolean"
|
|
624
640
|
},
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"type": "option"
|
|
631
|
-
},
|
|
632
|
-
"kernel": {
|
|
633
|
-
"hidden": true,
|
|
634
|
-
"name": "kernel",
|
|
641
|
+
"app": {
|
|
642
|
+
"char": "a",
|
|
643
|
+
"description": "app to run command against",
|
|
644
|
+
"name": "app",
|
|
645
|
+
"required": true,
|
|
635
646
|
"hasDynamicHelp": false,
|
|
636
647
|
"multiple": false,
|
|
637
648
|
"type": "option"
|
|
638
649
|
},
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"type": "boolean"
|
|
644
|
-
},
|
|
645
|
-
"json": {
|
|
646
|
-
"description": "output in json format",
|
|
647
|
-
"name": "json",
|
|
648
|
-
"allowNo": false,
|
|
649
|
-
"type": "boolean"
|
|
650
|
-
},
|
|
651
|
-
"team": {
|
|
652
|
-
"char": "t",
|
|
653
|
-
"description": "team to use",
|
|
654
|
-
"name": "team",
|
|
650
|
+
"remote": {
|
|
651
|
+
"char": "r",
|
|
652
|
+
"description": "git remote of app to use",
|
|
653
|
+
"name": "remote",
|
|
655
654
|
"hasDynamicHelp": false,
|
|
656
655
|
"multiple": false,
|
|
657
656
|
"type": "option"
|
|
@@ -659,31 +658,57 @@
|
|
|
659
658
|
},
|
|
660
659
|
"hasDynamicHelp": false,
|
|
661
660
|
"hiddenAliases": [
|
|
662
|
-
"
|
|
661
|
+
"addons:add"
|
|
663
662
|
],
|
|
664
|
-
"id": "
|
|
663
|
+
"id": "addons:create",
|
|
665
664
|
"pluginAlias": "heroku",
|
|
666
665
|
"pluginName": "heroku",
|
|
667
666
|
"pluginType": "core",
|
|
668
|
-
"strict":
|
|
667
|
+
"strict": false,
|
|
668
|
+
"topic": "addons",
|
|
669
|
+
"example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
669
670
|
"isESM": false,
|
|
670
671
|
"relativePath": [
|
|
671
672
|
"lib",
|
|
672
673
|
"commands",
|
|
673
|
-
"
|
|
674
|
+
"addons",
|
|
674
675
|
"create.js"
|
|
675
676
|
]
|
|
676
677
|
},
|
|
677
|
-
"
|
|
678
|
+
"addons:destroy": {
|
|
678
679
|
"aliases": [],
|
|
679
680
|
"args": {
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"name": "
|
|
681
|
+
"addonName": {
|
|
682
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
683
|
+
"name": "addonName",
|
|
684
|
+
"required": true
|
|
683
685
|
}
|
|
684
686
|
},
|
|
685
|
-
"description": "permanently destroy an
|
|
687
|
+
"description": "permanently destroy an add-on resource",
|
|
688
|
+
"examples": [
|
|
689
|
+
"addons:destroy [ADDON]... [flags]"
|
|
690
|
+
],
|
|
686
691
|
"flags": {
|
|
692
|
+
"force": {
|
|
693
|
+
"char": "f",
|
|
694
|
+
"description": "allow destruction even if connected to other apps",
|
|
695
|
+
"name": "force",
|
|
696
|
+
"allowNo": false,
|
|
697
|
+
"type": "boolean"
|
|
698
|
+
},
|
|
699
|
+
"confirm": {
|
|
700
|
+
"char": "c",
|
|
701
|
+
"name": "confirm",
|
|
702
|
+
"hasDynamicHelp": false,
|
|
703
|
+
"multiple": false,
|
|
704
|
+
"type": "option"
|
|
705
|
+
},
|
|
706
|
+
"wait": {
|
|
707
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
708
|
+
"name": "wait",
|
|
709
|
+
"allowNo": false,
|
|
710
|
+
"type": "boolean"
|
|
711
|
+
},
|
|
687
712
|
"app": {
|
|
688
713
|
"char": "a",
|
|
689
714
|
"description": "app to run command against",
|
|
@@ -699,38 +724,36 @@
|
|
|
699
724
|
"hasDynamicHelp": false,
|
|
700
725
|
"multiple": false,
|
|
701
726
|
"type": "option"
|
|
702
|
-
},
|
|
703
|
-
"confirm": {
|
|
704
|
-
"char": "c",
|
|
705
|
-
"name": "confirm",
|
|
706
|
-
"hasDynamicHelp": false,
|
|
707
|
-
"multiple": false,
|
|
708
|
-
"type": "option"
|
|
709
727
|
}
|
|
710
728
|
},
|
|
711
729
|
"hasDynamicHelp": false,
|
|
712
730
|
"hiddenAliases": [
|
|
713
|
-
"
|
|
714
|
-
"apps:delete"
|
|
731
|
+
"addons:remove"
|
|
715
732
|
],
|
|
716
|
-
"id": "
|
|
733
|
+
"id": "addons:destroy",
|
|
717
734
|
"pluginAlias": "heroku",
|
|
718
735
|
"pluginName": "heroku",
|
|
719
736
|
"pluginType": "core",
|
|
720
|
-
"strict":
|
|
721
|
-
"
|
|
737
|
+
"strict": false,
|
|
738
|
+
"topic": "addons",
|
|
722
739
|
"isESM": false,
|
|
723
740
|
"relativePath": [
|
|
724
741
|
"lib",
|
|
725
742
|
"commands",
|
|
726
|
-
"
|
|
743
|
+
"addons",
|
|
727
744
|
"destroy.js"
|
|
728
745
|
]
|
|
729
746
|
},
|
|
730
|
-
"
|
|
747
|
+
"addons:detach": {
|
|
731
748
|
"aliases": [],
|
|
732
|
-
"args": {
|
|
733
|
-
|
|
749
|
+
"args": {
|
|
750
|
+
"attachment_name": {
|
|
751
|
+
"description": "unique identifier of the add-on attachment",
|
|
752
|
+
"name": "attachment_name",
|
|
753
|
+
"required": true
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"description": "detach an existing add-on resource from an app",
|
|
734
757
|
"flags": {
|
|
735
758
|
"app": {
|
|
736
759
|
"char": "a",
|
|
@@ -748,136 +771,96 @@
|
|
|
748
771
|
"hasDynamicHelp": false,
|
|
749
772
|
"multiple": false,
|
|
750
773
|
"type": "option"
|
|
751
|
-
},
|
|
752
|
-
"json": {
|
|
753
|
-
"description": "output in json format",
|
|
754
|
-
"name": "json",
|
|
755
|
-
"allowNo": false,
|
|
756
|
-
"type": "boolean"
|
|
757
|
-
},
|
|
758
|
-
"hours": {
|
|
759
|
-
"description": "number of hours to look back (default 24)",
|
|
760
|
-
"name": "hours",
|
|
761
|
-
"default": "24",
|
|
762
|
-
"hasDynamicHelp": false,
|
|
763
|
-
"multiple": false,
|
|
764
|
-
"type": "option"
|
|
765
|
-
},
|
|
766
|
-
"router": {
|
|
767
|
-
"description": "show only router errors",
|
|
768
|
-
"name": "router",
|
|
769
|
-
"allowNo": false,
|
|
770
|
-
"type": "boolean"
|
|
771
|
-
},
|
|
772
|
-
"dyno": {
|
|
773
|
-
"description": "show only dyno errors",
|
|
774
|
-
"name": "dyno",
|
|
775
|
-
"allowNo": false,
|
|
776
|
-
"type": "boolean"
|
|
777
774
|
}
|
|
778
775
|
},
|
|
779
776
|
"hasDynamicHelp": false,
|
|
780
777
|
"hiddenAliases": [],
|
|
781
|
-
"id": "
|
|
778
|
+
"id": "addons:detach",
|
|
782
779
|
"pluginAlias": "heroku",
|
|
783
780
|
"pluginName": "heroku",
|
|
784
781
|
"pluginType": "core",
|
|
785
782
|
"strict": true,
|
|
783
|
+
"topic": "addons",
|
|
786
784
|
"isESM": false,
|
|
787
785
|
"relativePath": [
|
|
788
786
|
"lib",
|
|
789
787
|
"commands",
|
|
790
|
-
"
|
|
791
|
-
"
|
|
788
|
+
"addons",
|
|
789
|
+
"detach.js"
|
|
792
790
|
]
|
|
793
791
|
},
|
|
794
|
-
"
|
|
792
|
+
"addons:docs": {
|
|
795
793
|
"aliases": [],
|
|
796
|
-
"args": {
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
794
|
+
"args": {
|
|
795
|
+
"addon": {
|
|
796
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
797
|
+
"name": "addon",
|
|
798
|
+
"required": true
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"description": "open an add-on's Dev Center documentation in your browser",
|
|
801
802
|
"flags": {
|
|
802
|
-
"
|
|
803
|
-
"
|
|
804
|
-
"
|
|
805
|
-
"name": "all",
|
|
806
|
-
"allowNo": false,
|
|
807
|
-
"type": "boolean"
|
|
808
|
-
},
|
|
809
|
-
"json": {
|
|
810
|
-
"char": "j",
|
|
811
|
-
"description": "output in json format",
|
|
812
|
-
"name": "json",
|
|
803
|
+
"show-url": {
|
|
804
|
+
"description": "show URL, do not open browser",
|
|
805
|
+
"name": "show-url",
|
|
813
806
|
"allowNo": false,
|
|
814
807
|
"type": "boolean"
|
|
815
808
|
},
|
|
816
|
-
"
|
|
817
|
-
"char": "
|
|
818
|
-
"description": "
|
|
819
|
-
"name": "
|
|
809
|
+
"app": {
|
|
810
|
+
"char": "a",
|
|
811
|
+
"description": "app to run command against",
|
|
812
|
+
"name": "app",
|
|
820
813
|
"hasDynamicHelp": false,
|
|
821
814
|
"multiple": false,
|
|
822
815
|
"type": "option"
|
|
823
816
|
},
|
|
824
|
-
"
|
|
825
|
-
"char": "
|
|
826
|
-
"description": "
|
|
827
|
-
"name": "
|
|
828
|
-
"allowNo": false,
|
|
829
|
-
"type": "boolean"
|
|
830
|
-
},
|
|
831
|
-
"internal-routing": {
|
|
832
|
-
"char": "i",
|
|
833
|
-
"description": "filter to Internal Web Apps",
|
|
834
|
-
"hidden": true,
|
|
835
|
-
"name": "internal-routing",
|
|
836
|
-
"allowNo": false,
|
|
837
|
-
"type": "boolean"
|
|
838
|
-
},
|
|
839
|
-
"team": {
|
|
840
|
-
"char": "t",
|
|
841
|
-
"description": "team to use",
|
|
842
|
-
"name": "team",
|
|
817
|
+
"remote": {
|
|
818
|
+
"char": "r",
|
|
819
|
+
"description": "git remote of app to use",
|
|
820
|
+
"name": "remote",
|
|
843
821
|
"hasDynamicHelp": false,
|
|
844
822
|
"multiple": false,
|
|
845
823
|
"type": "option"
|
|
846
824
|
}
|
|
847
825
|
},
|
|
848
826
|
"hasDynamicHelp": false,
|
|
849
|
-
"hiddenAliases": [
|
|
850
|
-
|
|
851
|
-
"apps:list"
|
|
852
|
-
],
|
|
853
|
-
"id": "apps",
|
|
827
|
+
"hiddenAliases": [],
|
|
828
|
+
"id": "addons:docs",
|
|
854
829
|
"pluginAlias": "heroku",
|
|
855
830
|
"pluginName": "heroku",
|
|
856
831
|
"pluginType": "core",
|
|
857
832
|
"strict": true,
|
|
858
|
-
"topic": "
|
|
833
|
+
"topic": "addons",
|
|
859
834
|
"isESM": false,
|
|
860
835
|
"relativePath": [
|
|
861
836
|
"lib",
|
|
862
837
|
"commands",
|
|
863
|
-
"
|
|
864
|
-
"
|
|
838
|
+
"addons",
|
|
839
|
+
"docs.js"
|
|
865
840
|
]
|
|
866
841
|
},
|
|
867
|
-
"
|
|
842
|
+
"addons": {
|
|
868
843
|
"aliases": [],
|
|
869
|
-
"args": {
|
|
870
|
-
|
|
871
|
-
"hidden": true,
|
|
872
|
-
"name": "app"
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
"description": "show detailed app information",
|
|
844
|
+
"args": {},
|
|
845
|
+
"description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
|
|
876
846
|
"examples": [
|
|
877
|
-
"$ heroku
|
|
878
|
-
"$ heroku
|
|
847
|
+
"$ heroku addons --all",
|
|
848
|
+
"$ heroku addons --app acme-inc-www"
|
|
879
849
|
],
|
|
880
850
|
"flags": {
|
|
851
|
+
"all": {
|
|
852
|
+
"char": "A",
|
|
853
|
+
"description": "show add-ons and attachments for all accessible apps",
|
|
854
|
+
"name": "all",
|
|
855
|
+
"allowNo": false,
|
|
856
|
+
"type": "boolean"
|
|
857
|
+
},
|
|
858
|
+
"json": {
|
|
859
|
+
"description": "return add-ons in json format",
|
|
860
|
+
"name": "json",
|
|
861
|
+
"allowNo": false,
|
|
862
|
+
"type": "boolean"
|
|
863
|
+
},
|
|
881
864
|
"app": {
|
|
882
865
|
"char": "a",
|
|
883
866
|
"description": "app to run command against",
|
|
@@ -893,60 +876,40 @@
|
|
|
893
876
|
"hasDynamicHelp": false,
|
|
894
877
|
"multiple": false,
|
|
895
878
|
"type": "option"
|
|
896
|
-
},
|
|
897
|
-
"shell": {
|
|
898
|
-
"char": "s",
|
|
899
|
-
"description": "output more shell friendly key/value pairs",
|
|
900
|
-
"name": "shell",
|
|
901
|
-
"allowNo": false,
|
|
902
|
-
"type": "boolean"
|
|
903
|
-
},
|
|
904
|
-
"extended": {
|
|
905
|
-
"char": "x",
|
|
906
|
-
"hidden": true,
|
|
907
|
-
"name": "extended",
|
|
908
|
-
"allowNo": false,
|
|
909
|
-
"type": "boolean"
|
|
910
|
-
},
|
|
911
|
-
"json": {
|
|
912
|
-
"char": "j",
|
|
913
|
-
"description": "output in json format",
|
|
914
|
-
"name": "json",
|
|
915
|
-
"allowNo": false,
|
|
916
|
-
"type": "boolean"
|
|
917
879
|
}
|
|
918
880
|
},
|
|
919
881
|
"hasDynamicHelp": false,
|
|
920
|
-
"hiddenAliases": [
|
|
921
|
-
|
|
922
|
-
],
|
|
923
|
-
"id": "apps:info",
|
|
882
|
+
"hiddenAliases": [],
|
|
883
|
+
"id": "addons",
|
|
924
884
|
"pluginAlias": "heroku",
|
|
925
885
|
"pluginName": "heroku",
|
|
926
886
|
"pluginType": "core",
|
|
927
887
|
"strict": true,
|
|
928
|
-
"
|
|
929
|
-
"
|
|
888
|
+
"usage": "addons [--all|--app APP]",
|
|
889
|
+
"topic": "addons",
|
|
930
890
|
"isESM": false,
|
|
931
891
|
"relativePath": [
|
|
932
892
|
"lib",
|
|
933
893
|
"commands",
|
|
934
|
-
"
|
|
935
|
-
"
|
|
894
|
+
"addons",
|
|
895
|
+
"index.js"
|
|
936
896
|
]
|
|
937
897
|
},
|
|
938
|
-
"
|
|
939
|
-
"aliases": [
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
898
|
+
"addons:info": {
|
|
899
|
+
"aliases": [],
|
|
900
|
+
"args": {
|
|
901
|
+
"addon": {
|
|
902
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
903
|
+
"name": "addon",
|
|
904
|
+
"required": true
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
"description": "show detailed add-on resource and attachment information",
|
|
944
908
|
"flags": {
|
|
945
909
|
"app": {
|
|
946
910
|
"char": "a",
|
|
947
911
|
"description": "app to run command against",
|
|
948
912
|
"name": "app",
|
|
949
|
-
"required": true,
|
|
950
913
|
"hasDynamicHelp": false,
|
|
951
914
|
"multiple": false,
|
|
952
915
|
"type": "option"
|
|
@@ -962,33 +925,42 @@
|
|
|
962
925
|
},
|
|
963
926
|
"hasDynamicHelp": false,
|
|
964
927
|
"hiddenAliases": [],
|
|
965
|
-
"id": "
|
|
928
|
+
"id": "addons:info",
|
|
966
929
|
"pluginAlias": "heroku",
|
|
967
930
|
"pluginName": "heroku",
|
|
968
931
|
"pluginType": "core",
|
|
969
932
|
"strict": true,
|
|
970
|
-
"
|
|
933
|
+
"usage": "addons:info ADDON",
|
|
934
|
+
"topic": "addons",
|
|
971
935
|
"isESM": false,
|
|
972
936
|
"relativePath": [
|
|
973
937
|
"lib",
|
|
974
938
|
"commands",
|
|
975
|
-
"
|
|
976
|
-
"
|
|
939
|
+
"addons",
|
|
940
|
+
"info.js"
|
|
977
941
|
]
|
|
978
942
|
},
|
|
979
|
-
"
|
|
980
|
-
"aliases": [
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
943
|
+
"addons:open": {
|
|
944
|
+
"aliases": [],
|
|
945
|
+
"args": {
|
|
946
|
+
"addon": {
|
|
947
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
948
|
+
"name": "addon",
|
|
949
|
+
"required": true
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"description": "open an add-on's dashboard in your browser",
|
|
986
953
|
"flags": {
|
|
954
|
+
"show-url": {
|
|
955
|
+
"description": "show URL, do not open browser",
|
|
956
|
+
"name": "show-url",
|
|
957
|
+
"allowNo": false,
|
|
958
|
+
"type": "boolean"
|
|
959
|
+
},
|
|
987
960
|
"app": {
|
|
988
961
|
"char": "a",
|
|
989
962
|
"description": "app to run command against",
|
|
990
963
|
"name": "app",
|
|
991
|
-
"required": true,
|
|
992
964
|
"hasDynamicHelp": false,
|
|
993
965
|
"multiple": false,
|
|
994
966
|
"type": "option"
|
|
@@ -1004,193 +976,134 @@
|
|
|
1004
976
|
},
|
|
1005
977
|
"hasDynamicHelp": false,
|
|
1006
978
|
"hiddenAliases": [],
|
|
1007
|
-
"id": "
|
|
979
|
+
"id": "addons:open",
|
|
1008
980
|
"pluginAlias": "heroku",
|
|
1009
981
|
"pluginName": "heroku",
|
|
1010
982
|
"pluginType": "core",
|
|
1011
983
|
"strict": true,
|
|
1012
|
-
"topic": "
|
|
1013
|
-
"example": "heroku apps:leave -a APP",
|
|
984
|
+
"topic": "addons",
|
|
1014
985
|
"isESM": false,
|
|
1015
986
|
"relativePath": [
|
|
1016
987
|
"lib",
|
|
1017
988
|
"commands",
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
989
|
+
"addons",
|
|
990
|
+
"open.js"
|
|
1020
991
|
]
|
|
1021
992
|
},
|
|
1022
|
-
"
|
|
1023
|
-
"aliases": [
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
993
|
+
"addons:plans": {
|
|
994
|
+
"aliases": [],
|
|
995
|
+
"args": {
|
|
996
|
+
"service": {
|
|
997
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
998
|
+
"name": "service",
|
|
999
|
+
"required": true
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
"description": "list all available plans for an add-on service",
|
|
1028
1003
|
"flags": {
|
|
1029
|
-
"
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1034
|
-
"hasDynamicHelp": false,
|
|
1035
|
-
"multiple": false,
|
|
1036
|
-
"type": "option"
|
|
1037
|
-
},
|
|
1038
|
-
"remote": {
|
|
1039
|
-
"char": "r",
|
|
1040
|
-
"description": "git remote of app to use",
|
|
1041
|
-
"name": "remote",
|
|
1042
|
-
"hasDynamicHelp": false,
|
|
1043
|
-
"multiple": false,
|
|
1044
|
-
"type": "option"
|
|
1004
|
+
"json": {
|
|
1005
|
+
"description": "output in json format",
|
|
1006
|
+
"name": "json",
|
|
1007
|
+
"allowNo": false,
|
|
1008
|
+
"type": "boolean"
|
|
1045
1009
|
}
|
|
1046
1010
|
},
|
|
1047
1011
|
"hasDynamicHelp": false,
|
|
1048
1012
|
"hiddenAliases": [],
|
|
1049
|
-
"id": "
|
|
1013
|
+
"id": "addons:plans",
|
|
1050
1014
|
"pluginAlias": "heroku",
|
|
1051
1015
|
"pluginName": "heroku",
|
|
1052
1016
|
"pluginType": "core",
|
|
1053
1017
|
"strict": true,
|
|
1054
|
-
"topic": "
|
|
1018
|
+
"topic": "addons",
|
|
1055
1019
|
"isESM": false,
|
|
1056
1020
|
"relativePath": [
|
|
1057
1021
|
"lib",
|
|
1058
1022
|
"commands",
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1023
|
+
"addons",
|
|
1024
|
+
"plans.js"
|
|
1061
1025
|
]
|
|
1062
1026
|
},
|
|
1063
|
-
"
|
|
1027
|
+
"addons:rename": {
|
|
1064
1028
|
"aliases": [],
|
|
1065
1029
|
"args": {
|
|
1066
|
-
"
|
|
1067
|
-
"description": "
|
|
1068
|
-
"name": "
|
|
1069
|
-
"required":
|
|
1070
|
-
}
|
|
1071
|
-
},
|
|
1072
|
-
"description": "open the app in a web browser",
|
|
1073
|
-
"examples": [
|
|
1074
|
-
"$ heroku open -a myapp",
|
|
1075
|
-
"$ heroku open -a myapp /foo"
|
|
1076
|
-
],
|
|
1077
|
-
"flags": {
|
|
1078
|
-
"app": {
|
|
1079
|
-
"char": "a",
|
|
1080
|
-
"description": "app to run command against",
|
|
1081
|
-
"name": "app",
|
|
1082
|
-
"required": true,
|
|
1083
|
-
"hasDynamicHelp": false,
|
|
1084
|
-
"multiple": false,
|
|
1085
|
-
"type": "option"
|
|
1030
|
+
"addon_name": {
|
|
1031
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1032
|
+
"name": "addon_name",
|
|
1033
|
+
"required": true
|
|
1086
1034
|
},
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1089
|
-
"
|
|
1090
|
-
"
|
|
1091
|
-
"hasDynamicHelp": false,
|
|
1092
|
-
"multiple": false,
|
|
1093
|
-
"type": "option"
|
|
1035
|
+
"new_name": {
|
|
1036
|
+
"description": "new globally unique name of the add-on",
|
|
1037
|
+
"name": "new_name",
|
|
1038
|
+
"required": true
|
|
1094
1039
|
}
|
|
1095
1040
|
},
|
|
1041
|
+
"description": "rename an add-on",
|
|
1042
|
+
"flags": {},
|
|
1096
1043
|
"hasDynamicHelp": false,
|
|
1097
|
-
"hiddenAliases": [
|
|
1098
|
-
|
|
1099
|
-
],
|
|
1100
|
-
"id": "apps:open",
|
|
1044
|
+
"hiddenAliases": [],
|
|
1045
|
+
"id": "addons:rename",
|
|
1101
1046
|
"pluginAlias": "heroku",
|
|
1102
1047
|
"pluginName": "heroku",
|
|
1103
1048
|
"pluginType": "core",
|
|
1104
1049
|
"strict": true,
|
|
1105
|
-
"topic": "
|
|
1050
|
+
"topic": "addons",
|
|
1106
1051
|
"isESM": false,
|
|
1107
1052
|
"relativePath": [
|
|
1108
1053
|
"lib",
|
|
1109
1054
|
"commands",
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1055
|
+
"addons",
|
|
1056
|
+
"rename.js"
|
|
1112
1057
|
]
|
|
1113
1058
|
},
|
|
1114
|
-
"
|
|
1059
|
+
"addons:services": {
|
|
1115
1060
|
"aliases": [],
|
|
1116
|
-
"args": {
|
|
1117
|
-
|
|
1118
|
-
"description": "new unique name of the app",
|
|
1119
|
-
"name": "newname",
|
|
1120
|
-
"required": true
|
|
1121
|
-
}
|
|
1122
|
-
},
|
|
1123
|
-
"description": "rename an app",
|
|
1124
|
-
"examples": [
|
|
1125
|
-
"$ heroku apps:rename --app oldname newname"
|
|
1126
|
-
],
|
|
1061
|
+
"args": {},
|
|
1062
|
+
"description": "list all available add-on services",
|
|
1127
1063
|
"flags": {
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1132
|
-
"
|
|
1133
|
-
"hasDynamicHelp": false,
|
|
1134
|
-
"multiple": false,
|
|
1135
|
-
"type": "option"
|
|
1136
|
-
},
|
|
1137
|
-
"remote": {
|
|
1138
|
-
"char": "r",
|
|
1139
|
-
"description": "git remote of app to use",
|
|
1140
|
-
"name": "remote",
|
|
1141
|
-
"hasDynamicHelp": false,
|
|
1142
|
-
"multiple": false,
|
|
1143
|
-
"type": "option"
|
|
1064
|
+
"json": {
|
|
1065
|
+
"description": "output in json format",
|
|
1066
|
+
"name": "json",
|
|
1067
|
+
"allowNo": false,
|
|
1068
|
+
"type": "boolean"
|
|
1144
1069
|
}
|
|
1145
1070
|
},
|
|
1146
1071
|
"hasDynamicHelp": false,
|
|
1147
|
-
"hiddenAliases": [
|
|
1148
|
-
|
|
1149
|
-
],
|
|
1150
|
-
"id": "apps:rename",
|
|
1072
|
+
"hiddenAliases": [],
|
|
1073
|
+
"id": "addons:services",
|
|
1151
1074
|
"pluginAlias": "heroku",
|
|
1152
1075
|
"pluginName": "heroku",
|
|
1153
1076
|
"pluginType": "core",
|
|
1154
1077
|
"strict": true,
|
|
1155
|
-
"
|
|
1156
|
-
"topic": "apps",
|
|
1078
|
+
"topic": "addons",
|
|
1157
1079
|
"isESM": false,
|
|
1158
1080
|
"relativePath": [
|
|
1159
1081
|
"lib",
|
|
1160
1082
|
"commands",
|
|
1161
|
-
"
|
|
1162
|
-
"
|
|
1083
|
+
"addons",
|
|
1084
|
+
"services.js"
|
|
1163
1085
|
]
|
|
1164
1086
|
},
|
|
1165
|
-
"
|
|
1166
|
-
"aliases": [
|
|
1087
|
+
"addons:upgrade": {
|
|
1088
|
+
"aliases": [
|
|
1089
|
+
"addons:downgrade"
|
|
1090
|
+
],
|
|
1167
1091
|
"args": {
|
|
1168
|
-
"
|
|
1169
|
-
"description": "
|
|
1170
|
-
"name": "
|
|
1092
|
+
"addon": {
|
|
1093
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1094
|
+
"name": "addon",
|
|
1171
1095
|
"required": true
|
|
1096
|
+
},
|
|
1097
|
+
"plan": {
|
|
1098
|
+
"description": "unique identifier or name of the plan",
|
|
1099
|
+
"name": "plan"
|
|
1172
1100
|
}
|
|
1173
1101
|
},
|
|
1174
|
-
"description": "
|
|
1102
|
+
"description": "change add-on plan.\n See available plans with `heroku addons:plans SERVICE`.\n\n Note that `heroku addons:upgrade` and `heroku addons:downgrade` are the same. Either one can be used to change an add-on plan up or down.\n\n https://devcenter.heroku.com/articles/managing-add-ons\n ",
|
|
1175
1103
|
"examples": [
|
|
1176
|
-
"
|
|
1104
|
+
"Upgrade an add-on by service name:\n$ heroku addons:upgrade heroku-redis:premium-2\n\nUpgrade a specific add-on:\n$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2"
|
|
1177
1105
|
],
|
|
1178
1106
|
"flags": {
|
|
1179
|
-
"locked": {
|
|
1180
|
-
"char": "l",
|
|
1181
|
-
"description": "lock the app upon transfer",
|
|
1182
|
-
"name": "locked",
|
|
1183
|
-
"required": false,
|
|
1184
|
-
"allowNo": false,
|
|
1185
|
-
"type": "boolean"
|
|
1186
|
-
},
|
|
1187
|
-
"bulk": {
|
|
1188
|
-
"description": "transfer applications in bulk",
|
|
1189
|
-
"name": "bulk",
|
|
1190
|
-
"required": false,
|
|
1191
|
-
"allowNo": false,
|
|
1192
|
-
"type": "boolean"
|
|
1193
|
-
},
|
|
1194
1107
|
"app": {
|
|
1195
1108
|
"char": "a",
|
|
1196
1109
|
"description": "app to run command against",
|
|
@@ -1206,44 +1119,45 @@
|
|
|
1206
1119
|
"hasDynamicHelp": false,
|
|
1207
1120
|
"multiple": false,
|
|
1208
1121
|
"type": "option"
|
|
1209
|
-
},
|
|
1210
|
-
"confirm": {
|
|
1211
|
-
"char": "c",
|
|
1212
|
-
"hidden": true,
|
|
1213
|
-
"name": "confirm",
|
|
1214
|
-
"hasDynamicHelp": false,
|
|
1215
|
-
"multiple": false,
|
|
1216
|
-
"type": "option"
|
|
1217
1122
|
}
|
|
1218
1123
|
},
|
|
1219
1124
|
"hasDynamicHelp": false,
|
|
1220
1125
|
"hiddenAliases": [],
|
|
1221
|
-
"id": "
|
|
1126
|
+
"id": "addons:upgrade",
|
|
1222
1127
|
"pluginAlias": "heroku",
|
|
1223
1128
|
"pluginName": "heroku",
|
|
1224
1129
|
"pluginType": "core",
|
|
1225
1130
|
"strict": true,
|
|
1226
|
-
"topic": "
|
|
1131
|
+
"topic": "addons",
|
|
1227
1132
|
"isESM": false,
|
|
1228
1133
|
"relativePath": [
|
|
1229
1134
|
"lib",
|
|
1230
1135
|
"commands",
|
|
1231
|
-
"
|
|
1232
|
-
"
|
|
1136
|
+
"addons",
|
|
1137
|
+
"upgrade.js"
|
|
1233
1138
|
]
|
|
1234
1139
|
},
|
|
1235
|
-
"
|
|
1236
|
-
"aliases": [
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1140
|
+
"addons:wait": {
|
|
1141
|
+
"aliases": [],
|
|
1142
|
+
"args": {
|
|
1143
|
+
"addon": {
|
|
1144
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1145
|
+
"name": "addon"
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
"description": "show provisioning status of the add-ons on the app",
|
|
1241
1149
|
"flags": {
|
|
1150
|
+
"wait-interval": {
|
|
1151
|
+
"description": "how frequently to poll in seconds",
|
|
1152
|
+
"name": "wait-interval",
|
|
1153
|
+
"hasDynamicHelp": false,
|
|
1154
|
+
"multiple": false,
|
|
1155
|
+
"type": "option"
|
|
1156
|
+
},
|
|
1242
1157
|
"app": {
|
|
1243
1158
|
"char": "a",
|
|
1244
1159
|
"description": "app to run command against",
|
|
1245
1160
|
"name": "app",
|
|
1246
|
-
"required": true,
|
|
1247
1161
|
"hasDynamicHelp": false,
|
|
1248
1162
|
"multiple": false,
|
|
1249
1163
|
"type": "option"
|
|
@@ -1259,125 +1173,219 @@
|
|
|
1259
1173
|
},
|
|
1260
1174
|
"hasDynamicHelp": false,
|
|
1261
1175
|
"hiddenAliases": [],
|
|
1262
|
-
"id": "
|
|
1176
|
+
"id": "addons:wait",
|
|
1263
1177
|
"pluginAlias": "heroku",
|
|
1264
1178
|
"pluginName": "heroku",
|
|
1265
1179
|
"pluginType": "core",
|
|
1266
1180
|
"strict": true,
|
|
1267
|
-
"topic": "
|
|
1181
|
+
"topic": "addons",
|
|
1268
1182
|
"isESM": false,
|
|
1269
1183
|
"relativePath": [
|
|
1270
1184
|
"lib",
|
|
1271
1185
|
"commands",
|
|
1272
|
-
"
|
|
1273
|
-
"
|
|
1186
|
+
"addons",
|
|
1187
|
+
"wait.js"
|
|
1274
1188
|
]
|
|
1275
1189
|
},
|
|
1276
|
-
"
|
|
1190
|
+
"apps:create": {
|
|
1277
1191
|
"aliases": [],
|
|
1278
1192
|
"args": {
|
|
1279
|
-
"
|
|
1280
|
-
"description": "
|
|
1281
|
-
"name": "
|
|
1282
|
-
"required":
|
|
1193
|
+
"app": {
|
|
1194
|
+
"description": "name of app to create",
|
|
1195
|
+
"name": "app",
|
|
1196
|
+
"required": false
|
|
1283
1197
|
}
|
|
1284
1198
|
},
|
|
1285
|
-
"description": "
|
|
1199
|
+
"description": "creates a new app",
|
|
1200
|
+
"examples": [
|
|
1201
|
+
"$ heroku apps:create\nCreating app... done, stack is heroku-24\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
|
|
1202
|
+
],
|
|
1286
1203
|
"flags": {
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1289
|
-
"name": "
|
|
1204
|
+
"app": {
|
|
1205
|
+
"hidden": true,
|
|
1206
|
+
"name": "app",
|
|
1290
1207
|
"hasDynamicHelp": false,
|
|
1291
1208
|
"multiple": false,
|
|
1292
1209
|
"type": "option"
|
|
1293
1210
|
},
|
|
1294
|
-
"
|
|
1295
|
-
"description": "
|
|
1296
|
-
"name": "
|
|
1211
|
+
"addons": {
|
|
1212
|
+
"description": "comma-delimited list of addons to install",
|
|
1213
|
+
"name": "addons",
|
|
1297
1214
|
"hasDynamicHelp": false,
|
|
1298
1215
|
"multiple": false,
|
|
1299
1216
|
"type": "option"
|
|
1300
1217
|
},
|
|
1301
|
-
"
|
|
1302
|
-
"
|
|
1303
|
-
"
|
|
1218
|
+
"buildpack": {
|
|
1219
|
+
"char": "b",
|
|
1220
|
+
"description": "buildpack url to use for this app",
|
|
1221
|
+
"name": "buildpack",
|
|
1304
1222
|
"hasDynamicHelp": false,
|
|
1305
1223
|
"multiple": false,
|
|
1306
1224
|
"type": "option"
|
|
1307
1225
|
},
|
|
1308
|
-
"
|
|
1309
|
-
"char": "
|
|
1310
|
-
"description": "
|
|
1311
|
-
"
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
|
|
1226
|
+
"manifest": {
|
|
1227
|
+
"char": "m",
|
|
1228
|
+
"description": "use heroku.yml settings for this app",
|
|
1229
|
+
"hidden": true,
|
|
1230
|
+
"name": "manifest",
|
|
1231
|
+
"allowNo": false,
|
|
1232
|
+
"type": "boolean"
|
|
1233
|
+
},
|
|
1234
|
+
"no-remote": {
|
|
1235
|
+
"char": "n",
|
|
1236
|
+
"description": "do not create a git remote",
|
|
1237
|
+
"name": "no-remote",
|
|
1238
|
+
"allowNo": false,
|
|
1239
|
+
"type": "boolean"
|
|
1316
1240
|
},
|
|
1317
1241
|
"remote": {
|
|
1318
1242
|
"char": "r",
|
|
1319
|
-
"description": "git remote
|
|
1243
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
1320
1244
|
"name": "remote",
|
|
1245
|
+
"default": "heroku",
|
|
1246
|
+
"hasDynamicHelp": false,
|
|
1247
|
+
"multiple": false,
|
|
1248
|
+
"type": "option"
|
|
1249
|
+
},
|
|
1250
|
+
"stack": {
|
|
1251
|
+
"char": "s",
|
|
1252
|
+
"description": "the stack to create the app on",
|
|
1253
|
+
"name": "stack",
|
|
1254
|
+
"hasDynamicHelp": false,
|
|
1255
|
+
"multiple": false,
|
|
1256
|
+
"type": "option"
|
|
1257
|
+
},
|
|
1258
|
+
"space": {
|
|
1259
|
+
"description": "the private space to create the app in",
|
|
1260
|
+
"name": "space",
|
|
1261
|
+
"hasDynamicHelp": false,
|
|
1262
|
+
"multiple": false,
|
|
1263
|
+
"type": "option"
|
|
1264
|
+
},
|
|
1265
|
+
"region": {
|
|
1266
|
+
"description": "specify region for the app to run in",
|
|
1267
|
+
"name": "region",
|
|
1268
|
+
"hasDynamicHelp": false,
|
|
1269
|
+
"multiple": false,
|
|
1270
|
+
"type": "option"
|
|
1271
|
+
},
|
|
1272
|
+
"internal-routing": {
|
|
1273
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
1274
|
+
"hidden": true,
|
|
1275
|
+
"name": "internal-routing",
|
|
1276
|
+
"allowNo": false,
|
|
1277
|
+
"type": "boolean"
|
|
1278
|
+
},
|
|
1279
|
+
"features": {
|
|
1280
|
+
"hidden": true,
|
|
1281
|
+
"name": "features",
|
|
1282
|
+
"hasDynamicHelp": false,
|
|
1283
|
+
"multiple": false,
|
|
1284
|
+
"type": "option"
|
|
1285
|
+
},
|
|
1286
|
+
"kernel": {
|
|
1287
|
+
"hidden": true,
|
|
1288
|
+
"name": "kernel",
|
|
1289
|
+
"hasDynamicHelp": false,
|
|
1290
|
+
"multiple": false,
|
|
1291
|
+
"type": "option"
|
|
1292
|
+
},
|
|
1293
|
+
"locked": {
|
|
1294
|
+
"hidden": true,
|
|
1295
|
+
"name": "locked",
|
|
1296
|
+
"allowNo": false,
|
|
1297
|
+
"type": "boolean"
|
|
1298
|
+
},
|
|
1299
|
+
"json": {
|
|
1300
|
+
"description": "output in json format",
|
|
1301
|
+
"name": "json",
|
|
1302
|
+
"allowNo": false,
|
|
1303
|
+
"type": "boolean"
|
|
1304
|
+
},
|
|
1305
|
+
"team": {
|
|
1306
|
+
"char": "t",
|
|
1307
|
+
"description": "team to use",
|
|
1308
|
+
"name": "team",
|
|
1321
1309
|
"hasDynamicHelp": false,
|
|
1322
1310
|
"multiple": false,
|
|
1323
1311
|
"type": "option"
|
|
1324
1312
|
}
|
|
1325
1313
|
},
|
|
1326
1314
|
"hasDynamicHelp": false,
|
|
1327
|
-
"hiddenAliases": [
|
|
1328
|
-
|
|
1315
|
+
"hiddenAliases": [
|
|
1316
|
+
"create"
|
|
1317
|
+
],
|
|
1318
|
+
"id": "apps:create",
|
|
1329
1319
|
"pluginAlias": "heroku",
|
|
1330
1320
|
"pluginName": "heroku",
|
|
1331
1321
|
"pluginType": "core",
|
|
1332
1322
|
"strict": true,
|
|
1333
|
-
"topic": "addons",
|
|
1334
1323
|
"isESM": false,
|
|
1335
1324
|
"relativePath": [
|
|
1336
1325
|
"lib",
|
|
1337
1326
|
"commands",
|
|
1338
|
-
"
|
|
1339
|
-
"
|
|
1327
|
+
"apps",
|
|
1328
|
+
"create.js"
|
|
1340
1329
|
]
|
|
1341
1330
|
},
|
|
1342
|
-
"
|
|
1331
|
+
"apps:destroy": {
|
|
1343
1332
|
"aliases": [],
|
|
1344
1333
|
"args": {
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1347
|
-
"name": "
|
|
1348
|
-
"required": true
|
|
1334
|
+
"app": {
|
|
1335
|
+
"hidden": true,
|
|
1336
|
+
"name": "app"
|
|
1349
1337
|
}
|
|
1350
1338
|
},
|
|
1351
|
-
"description": "
|
|
1352
|
-
"examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
1339
|
+
"description": "permanently destroy an app",
|
|
1353
1340
|
"flags": {
|
|
1354
|
-
"
|
|
1355
|
-
"
|
|
1356
|
-
"
|
|
1341
|
+
"app": {
|
|
1342
|
+
"char": "a",
|
|
1343
|
+
"description": "app to run command against",
|
|
1344
|
+
"name": "app",
|
|
1357
1345
|
"hasDynamicHelp": false,
|
|
1358
1346
|
"multiple": false,
|
|
1359
1347
|
"type": "option"
|
|
1360
1348
|
},
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1349
|
+
"remote": {
|
|
1350
|
+
"char": "r",
|
|
1351
|
+
"description": "git remote of app to use",
|
|
1352
|
+
"name": "remote",
|
|
1364
1353
|
"hasDynamicHelp": false,
|
|
1365
1354
|
"multiple": false,
|
|
1366
1355
|
"type": "option"
|
|
1367
1356
|
},
|
|
1368
1357
|
"confirm": {
|
|
1369
|
-
"
|
|
1358
|
+
"char": "c",
|
|
1370
1359
|
"name": "confirm",
|
|
1371
1360
|
"hasDynamicHelp": false,
|
|
1372
1361
|
"multiple": false,
|
|
1373
1362
|
"type": "option"
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
"hasDynamicHelp": false,
|
|
1366
|
+
"hiddenAliases": [
|
|
1367
|
+
"destroy",
|
|
1368
|
+
"apps:delete"
|
|
1369
|
+
],
|
|
1370
|
+
"id": "apps:destroy",
|
|
1371
|
+
"pluginAlias": "heroku",
|
|
1372
|
+
"pluginName": "heroku",
|
|
1373
|
+
"pluginType": "core",
|
|
1374
|
+
"strict": true,
|
|
1375
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
1376
|
+
"isESM": false,
|
|
1377
|
+
"relativePath": [
|
|
1378
|
+
"lib",
|
|
1379
|
+
"commands",
|
|
1380
|
+
"apps",
|
|
1381
|
+
"destroy.js"
|
|
1382
|
+
]
|
|
1383
|
+
},
|
|
1384
|
+
"apps:errors": {
|
|
1385
|
+
"aliases": [],
|
|
1386
|
+
"args": {},
|
|
1387
|
+
"description": "view app errors",
|
|
1388
|
+
"flags": {
|
|
1381
1389
|
"app": {
|
|
1382
1390
|
"char": "a",
|
|
1383
1391
|
"description": "app to run command against",
|
|
@@ -1394,73 +1402,98 @@
|
|
|
1394
1402
|
"hasDynamicHelp": false,
|
|
1395
1403
|
"multiple": false,
|
|
1396
1404
|
"type": "option"
|
|
1405
|
+
},
|
|
1406
|
+
"json": {
|
|
1407
|
+
"description": "output in json format",
|
|
1408
|
+
"name": "json",
|
|
1409
|
+
"allowNo": false,
|
|
1410
|
+
"type": "boolean"
|
|
1411
|
+
},
|
|
1412
|
+
"hours": {
|
|
1413
|
+
"description": "number of hours to look back (default 24)",
|
|
1414
|
+
"name": "hours",
|
|
1415
|
+
"default": "24",
|
|
1416
|
+
"hasDynamicHelp": false,
|
|
1417
|
+
"multiple": false,
|
|
1418
|
+
"type": "option"
|
|
1419
|
+
},
|
|
1420
|
+
"router": {
|
|
1421
|
+
"description": "show only router errors",
|
|
1422
|
+
"name": "router",
|
|
1423
|
+
"allowNo": false,
|
|
1424
|
+
"type": "boolean"
|
|
1425
|
+
},
|
|
1426
|
+
"dyno": {
|
|
1427
|
+
"description": "show only dyno errors",
|
|
1428
|
+
"name": "dyno",
|
|
1429
|
+
"allowNo": false,
|
|
1430
|
+
"type": "boolean"
|
|
1397
1431
|
}
|
|
1398
1432
|
},
|
|
1399
1433
|
"hasDynamicHelp": false,
|
|
1400
|
-
"hiddenAliases": [
|
|
1401
|
-
|
|
1402
|
-
],
|
|
1403
|
-
"id": "addons:create",
|
|
1434
|
+
"hiddenAliases": [],
|
|
1435
|
+
"id": "apps:errors",
|
|
1404
1436
|
"pluginAlias": "heroku",
|
|
1405
1437
|
"pluginName": "heroku",
|
|
1406
1438
|
"pluginType": "core",
|
|
1407
|
-
"strict":
|
|
1408
|
-
"topic": "addons",
|
|
1409
|
-
"example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
1439
|
+
"strict": true,
|
|
1410
1440
|
"isESM": false,
|
|
1411
1441
|
"relativePath": [
|
|
1412
1442
|
"lib",
|
|
1413
1443
|
"commands",
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1444
|
+
"apps",
|
|
1445
|
+
"errors.js"
|
|
1416
1446
|
]
|
|
1417
1447
|
},
|
|
1418
|
-
"
|
|
1448
|
+
"apps": {
|
|
1419
1449
|
"aliases": [],
|
|
1420
|
-
"args": {
|
|
1421
|
-
|
|
1422
|
-
"description": "unique identifier or globally unique name of the add-on",
|
|
1423
|
-
"name": "addonName",
|
|
1424
|
-
"required": true
|
|
1425
|
-
}
|
|
1426
|
-
},
|
|
1427
|
-
"description": "permanently destroy an add-on resource",
|
|
1450
|
+
"args": {},
|
|
1451
|
+
"description": "list your apps",
|
|
1428
1452
|
"examples": [
|
|
1429
|
-
"
|
|
1453
|
+
"$ heroku apps"
|
|
1430
1454
|
],
|
|
1431
1455
|
"flags": {
|
|
1432
|
-
"
|
|
1433
|
-
"char": "
|
|
1434
|
-
"description": "
|
|
1435
|
-
"name": "
|
|
1456
|
+
"all": {
|
|
1457
|
+
"char": "A",
|
|
1458
|
+
"description": "include apps in all teams",
|
|
1459
|
+
"name": "all",
|
|
1436
1460
|
"allowNo": false,
|
|
1437
1461
|
"type": "boolean"
|
|
1438
1462
|
},
|
|
1439
|
-
"
|
|
1440
|
-
"char": "
|
|
1441
|
-
"
|
|
1463
|
+
"json": {
|
|
1464
|
+
"char": "j",
|
|
1465
|
+
"description": "output in json format",
|
|
1466
|
+
"name": "json",
|
|
1467
|
+
"allowNo": false,
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
},
|
|
1470
|
+
"space": {
|
|
1471
|
+
"char": "s",
|
|
1472
|
+
"description": "filter by space",
|
|
1473
|
+
"name": "space",
|
|
1442
1474
|
"hasDynamicHelp": false,
|
|
1443
1475
|
"multiple": false,
|
|
1444
1476
|
"type": "option"
|
|
1445
1477
|
},
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1448
|
-
"
|
|
1478
|
+
"personal": {
|
|
1479
|
+
"char": "p",
|
|
1480
|
+
"description": "list apps in personal account when a default team is set",
|
|
1481
|
+
"name": "personal",
|
|
1449
1482
|
"allowNo": false,
|
|
1450
1483
|
"type": "boolean"
|
|
1451
1484
|
},
|
|
1452
|
-
"
|
|
1453
|
-
"char": "
|
|
1454
|
-
"description": "
|
|
1455
|
-
"
|
|
1456
|
-
"
|
|
1457
|
-
"
|
|
1458
|
-
"type": "
|
|
1485
|
+
"internal-routing": {
|
|
1486
|
+
"char": "i",
|
|
1487
|
+
"description": "filter to Internal Web Apps",
|
|
1488
|
+
"hidden": true,
|
|
1489
|
+
"name": "internal-routing",
|
|
1490
|
+
"allowNo": false,
|
|
1491
|
+
"type": "boolean"
|
|
1459
1492
|
},
|
|
1460
|
-
"
|
|
1461
|
-
"char": "
|
|
1462
|
-
"description": "
|
|
1463
|
-
"name": "
|
|
1493
|
+
"team": {
|
|
1494
|
+
"char": "t",
|
|
1495
|
+
"description": "team to use",
|
|
1496
|
+
"name": "team",
|
|
1464
1497
|
"hasDynamicHelp": false,
|
|
1465
1498
|
"multiple": false,
|
|
1466
1499
|
"type": "option"
|
|
@@ -1468,38 +1501,41 @@
|
|
|
1468
1501
|
},
|
|
1469
1502
|
"hasDynamicHelp": false,
|
|
1470
1503
|
"hiddenAliases": [
|
|
1471
|
-
"
|
|
1504
|
+
"list",
|
|
1505
|
+
"apps:list"
|
|
1472
1506
|
],
|
|
1473
|
-
"id": "
|
|
1507
|
+
"id": "apps",
|
|
1474
1508
|
"pluginAlias": "heroku",
|
|
1475
1509
|
"pluginName": "heroku",
|
|
1476
1510
|
"pluginType": "core",
|
|
1477
|
-
"strict":
|
|
1478
|
-
"topic": "
|
|
1511
|
+
"strict": true,
|
|
1512
|
+
"topic": "apps",
|
|
1479
1513
|
"isESM": false,
|
|
1480
1514
|
"relativePath": [
|
|
1481
1515
|
"lib",
|
|
1482
1516
|
"commands",
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1517
|
+
"apps",
|
|
1518
|
+
"index.js"
|
|
1485
1519
|
]
|
|
1486
1520
|
},
|
|
1487
|
-
"
|
|
1521
|
+
"apps:info": {
|
|
1488
1522
|
"aliases": [],
|
|
1489
1523
|
"args": {
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1492
|
-
"name": "
|
|
1493
|
-
"required": true
|
|
1524
|
+
"app": {
|
|
1525
|
+
"hidden": true,
|
|
1526
|
+
"name": "app"
|
|
1494
1527
|
}
|
|
1495
1528
|
},
|
|
1496
|
-
"description": "
|
|
1529
|
+
"description": "show detailed app information",
|
|
1530
|
+
"examples": [
|
|
1531
|
+
"$ heroku apps:info",
|
|
1532
|
+
"$ heroku apps:info --shell"
|
|
1533
|
+
],
|
|
1497
1534
|
"flags": {
|
|
1498
1535
|
"app": {
|
|
1499
1536
|
"char": "a",
|
|
1500
1537
|
"description": "app to run command against",
|
|
1501
1538
|
"name": "app",
|
|
1502
|
-
"required": true,
|
|
1503
1539
|
"hasDynamicHelp": false,
|
|
1504
1540
|
"multiple": false,
|
|
1505
1541
|
"type": "option"
|
|
@@ -1511,45 +1547,60 @@
|
|
|
1511
1547
|
"hasDynamicHelp": false,
|
|
1512
1548
|
"multiple": false,
|
|
1513
1549
|
"type": "option"
|
|
1550
|
+
},
|
|
1551
|
+
"shell": {
|
|
1552
|
+
"char": "s",
|
|
1553
|
+
"description": "output more shell friendly key/value pairs",
|
|
1554
|
+
"name": "shell",
|
|
1555
|
+
"allowNo": false,
|
|
1556
|
+
"type": "boolean"
|
|
1557
|
+
},
|
|
1558
|
+
"extended": {
|
|
1559
|
+
"char": "x",
|
|
1560
|
+
"hidden": true,
|
|
1561
|
+
"name": "extended",
|
|
1562
|
+
"allowNo": false,
|
|
1563
|
+
"type": "boolean"
|
|
1564
|
+
},
|
|
1565
|
+
"json": {
|
|
1566
|
+
"char": "j",
|
|
1567
|
+
"description": "output in json format",
|
|
1568
|
+
"name": "json",
|
|
1569
|
+
"allowNo": false,
|
|
1570
|
+
"type": "boolean"
|
|
1514
1571
|
}
|
|
1515
1572
|
},
|
|
1516
1573
|
"hasDynamicHelp": false,
|
|
1517
|
-
"hiddenAliases": [
|
|
1518
|
-
|
|
1574
|
+
"hiddenAliases": [
|
|
1575
|
+
"info"
|
|
1576
|
+
],
|
|
1577
|
+
"id": "apps:info",
|
|
1519
1578
|
"pluginAlias": "heroku",
|
|
1520
1579
|
"pluginName": "heroku",
|
|
1521
1580
|
"pluginType": "core",
|
|
1522
1581
|
"strict": true,
|
|
1523
|
-
"topic": "
|
|
1582
|
+
"topic": "apps",
|
|
1583
|
+
"help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
|
|
1524
1584
|
"isESM": false,
|
|
1525
1585
|
"relativePath": [
|
|
1526
1586
|
"lib",
|
|
1527
1587
|
"commands",
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1588
|
+
"apps",
|
|
1589
|
+
"info.js"
|
|
1530
1590
|
]
|
|
1531
1591
|
},
|
|
1532
|
-
"
|
|
1533
|
-
"aliases": [
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
"required": true
|
|
1539
|
-
}
|
|
1540
|
-
},
|
|
1541
|
-
"description": "open an add-on's Dev Center documentation in your browser",
|
|
1592
|
+
"apps:join": {
|
|
1593
|
+
"aliases": [
|
|
1594
|
+
"join"
|
|
1595
|
+
],
|
|
1596
|
+
"args": {},
|
|
1597
|
+
"description": "add yourself to a team app",
|
|
1542
1598
|
"flags": {
|
|
1543
|
-
"show-url": {
|
|
1544
|
-
"description": "show URL, do not open browser",
|
|
1545
|
-
"name": "show-url",
|
|
1546
|
-
"allowNo": false,
|
|
1547
|
-
"type": "boolean"
|
|
1548
|
-
},
|
|
1549
1599
|
"app": {
|
|
1550
1600
|
"char": "a",
|
|
1551
1601
|
"description": "app to run command against",
|
|
1552
1602
|
"name": "app",
|
|
1603
|
+
"required": true,
|
|
1553
1604
|
"hasDynamicHelp": false,
|
|
1554
1605
|
"multiple": false,
|
|
1555
1606
|
"type": "option"
|
|
@@ -1565,46 +1616,33 @@
|
|
|
1565
1616
|
},
|
|
1566
1617
|
"hasDynamicHelp": false,
|
|
1567
1618
|
"hiddenAliases": [],
|
|
1568
|
-
"id": "
|
|
1619
|
+
"id": "apps:join",
|
|
1569
1620
|
"pluginAlias": "heroku",
|
|
1570
1621
|
"pluginName": "heroku",
|
|
1571
1622
|
"pluginType": "core",
|
|
1572
1623
|
"strict": true,
|
|
1573
|
-
"topic": "
|
|
1624
|
+
"topic": "apps",
|
|
1574
1625
|
"isESM": false,
|
|
1575
1626
|
"relativePath": [
|
|
1576
1627
|
"lib",
|
|
1577
1628
|
"commands",
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1629
|
+
"apps",
|
|
1630
|
+
"join.js"
|
|
1580
1631
|
]
|
|
1581
1632
|
},
|
|
1582
|
-
"
|
|
1583
|
-
"aliases": [
|
|
1584
|
-
|
|
1585
|
-
"description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
|
|
1586
|
-
"examples": [
|
|
1587
|
-
"$ heroku addons --all",
|
|
1588
|
-
"$ heroku addons --app acme-inc-www"
|
|
1633
|
+
"apps:leave": {
|
|
1634
|
+
"aliases": [
|
|
1635
|
+
"leave"
|
|
1589
1636
|
],
|
|
1637
|
+
"args": {},
|
|
1638
|
+
"description": "remove yourself from a team app",
|
|
1639
|
+
"examples": "heroku apps:leave -a APP",
|
|
1590
1640
|
"flags": {
|
|
1591
|
-
"all": {
|
|
1592
|
-
"char": "A",
|
|
1593
|
-
"description": "show add-ons and attachments for all accessible apps",
|
|
1594
|
-
"name": "all",
|
|
1595
|
-
"allowNo": false,
|
|
1596
|
-
"type": "boolean"
|
|
1597
|
-
},
|
|
1598
|
-
"json": {
|
|
1599
|
-
"description": "return add-ons in json format",
|
|
1600
|
-
"name": "json",
|
|
1601
|
-
"allowNo": false,
|
|
1602
|
-
"type": "boolean"
|
|
1603
|
-
},
|
|
1604
1641
|
"app": {
|
|
1605
1642
|
"char": "a",
|
|
1606
1643
|
"description": "app to run command against",
|
|
1607
1644
|
"name": "app",
|
|
1645
|
+
"required": true,
|
|
1608
1646
|
"hasDynamicHelp": false,
|
|
1609
1647
|
"multiple": false,
|
|
1610
1648
|
"type": "option"
|
|
@@ -1620,36 +1658,33 @@
|
|
|
1620
1658
|
},
|
|
1621
1659
|
"hasDynamicHelp": false,
|
|
1622
1660
|
"hiddenAliases": [],
|
|
1623
|
-
"id": "
|
|
1661
|
+
"id": "apps:leave",
|
|
1624
1662
|
"pluginAlias": "heroku",
|
|
1625
1663
|
"pluginName": "heroku",
|
|
1626
1664
|
"pluginType": "core",
|
|
1627
1665
|
"strict": true,
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1666
|
+
"topic": "apps",
|
|
1667
|
+
"example": "heroku apps:leave -a APP",
|
|
1630
1668
|
"isESM": false,
|
|
1631
1669
|
"relativePath": [
|
|
1632
1670
|
"lib",
|
|
1633
1671
|
"commands",
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1672
|
+
"apps",
|
|
1673
|
+
"leave.js"
|
|
1636
1674
|
]
|
|
1637
1675
|
},
|
|
1638
|
-
"
|
|
1639
|
-
"aliases": [
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
"required": true
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
"description": "show detailed add-on resource and attachment information",
|
|
1676
|
+
"apps:lock": {
|
|
1677
|
+
"aliases": [
|
|
1678
|
+
"lock"
|
|
1679
|
+
],
|
|
1680
|
+
"args": {},
|
|
1681
|
+
"description": "prevent team members from joining an app",
|
|
1648
1682
|
"flags": {
|
|
1649
1683
|
"app": {
|
|
1650
1684
|
"char": "a",
|
|
1651
1685
|
"description": "app to run command against",
|
|
1652
1686
|
"name": "app",
|
|
1687
|
+
"required": true,
|
|
1653
1688
|
"hasDynamicHelp": false,
|
|
1654
1689
|
"multiple": false,
|
|
1655
1690
|
"type": "option"
|
|
@@ -1665,42 +1700,40 @@
|
|
|
1665
1700
|
},
|
|
1666
1701
|
"hasDynamicHelp": false,
|
|
1667
1702
|
"hiddenAliases": [],
|
|
1668
|
-
"id": "
|
|
1703
|
+
"id": "apps:lock",
|
|
1669
1704
|
"pluginAlias": "heroku",
|
|
1670
1705
|
"pluginName": "heroku",
|
|
1671
1706
|
"pluginType": "core",
|
|
1672
1707
|
"strict": true,
|
|
1673
|
-
"
|
|
1674
|
-
"topic": "addons",
|
|
1708
|
+
"topic": "apps",
|
|
1675
1709
|
"isESM": false,
|
|
1676
1710
|
"relativePath": [
|
|
1677
1711
|
"lib",
|
|
1678
1712
|
"commands",
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1713
|
+
"apps",
|
|
1714
|
+
"lock.js"
|
|
1681
1715
|
]
|
|
1682
1716
|
},
|
|
1683
|
-
"
|
|
1717
|
+
"apps:open": {
|
|
1684
1718
|
"aliases": [],
|
|
1685
1719
|
"args": {
|
|
1686
|
-
"
|
|
1687
|
-
"description": "
|
|
1688
|
-
"name": "
|
|
1689
|
-
"required":
|
|
1720
|
+
"path": {
|
|
1721
|
+
"description": "base URL path of app",
|
|
1722
|
+
"name": "path",
|
|
1723
|
+
"required": false
|
|
1690
1724
|
}
|
|
1691
1725
|
},
|
|
1692
|
-
"description": "open
|
|
1726
|
+
"description": "open the app in a web browser",
|
|
1727
|
+
"examples": [
|
|
1728
|
+
"$ heroku open -a myapp",
|
|
1729
|
+
"$ heroku open -a myapp /foo"
|
|
1730
|
+
],
|
|
1693
1731
|
"flags": {
|
|
1694
|
-
"show-url": {
|
|
1695
|
-
"description": "show URL, do not open browser",
|
|
1696
|
-
"name": "show-url",
|
|
1697
|
-
"allowNo": false,
|
|
1698
|
-
"type": "boolean"
|
|
1699
|
-
},
|
|
1700
1732
|
"app": {
|
|
1701
1733
|
"char": "a",
|
|
1702
1734
|
"description": "app to run command against",
|
|
1703
1735
|
"name": "app",
|
|
1736
|
+
"required": true,
|
|
1704
1737
|
"hasDynamicHelp": false,
|
|
1705
1738
|
"multiple": false,
|
|
1706
1739
|
"type": "option"
|
|
@@ -1715,135 +1748,103 @@
|
|
|
1715
1748
|
}
|
|
1716
1749
|
},
|
|
1717
1750
|
"hasDynamicHelp": false,
|
|
1718
|
-
"hiddenAliases": [
|
|
1719
|
-
|
|
1751
|
+
"hiddenAliases": [
|
|
1752
|
+
"open"
|
|
1753
|
+
],
|
|
1754
|
+
"id": "apps:open",
|
|
1720
1755
|
"pluginAlias": "heroku",
|
|
1721
1756
|
"pluginName": "heroku",
|
|
1722
1757
|
"pluginType": "core",
|
|
1723
1758
|
"strict": true,
|
|
1724
|
-
"topic": "
|
|
1759
|
+
"topic": "apps",
|
|
1725
1760
|
"isESM": false,
|
|
1726
1761
|
"relativePath": [
|
|
1727
1762
|
"lib",
|
|
1728
1763
|
"commands",
|
|
1729
|
-
"
|
|
1764
|
+
"apps",
|
|
1730
1765
|
"open.js"
|
|
1731
1766
|
]
|
|
1732
1767
|
},
|
|
1733
|
-
"
|
|
1768
|
+
"apps:rename": {
|
|
1734
1769
|
"aliases": [],
|
|
1735
1770
|
"args": {
|
|
1736
|
-
"
|
|
1737
|
-
"description": "
|
|
1738
|
-
"name": "
|
|
1771
|
+
"newname": {
|
|
1772
|
+
"description": "new unique name of the app",
|
|
1773
|
+
"name": "newname",
|
|
1739
1774
|
"required": true
|
|
1740
1775
|
}
|
|
1741
1776
|
},
|
|
1742
|
-
"description": "
|
|
1777
|
+
"description": "rename an app",
|
|
1778
|
+
"examples": [
|
|
1779
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1780
|
+
],
|
|
1743
1781
|
"flags": {
|
|
1744
|
-
"
|
|
1745
|
-
"
|
|
1746
|
-
"
|
|
1747
|
-
"
|
|
1748
|
-
"
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
"hiddenAliases": [],
|
|
1753
|
-
"id": "addons:plans",
|
|
1754
|
-
"pluginAlias": "heroku",
|
|
1755
|
-
"pluginName": "heroku",
|
|
1756
|
-
"pluginType": "core",
|
|
1757
|
-
"strict": true,
|
|
1758
|
-
"topic": "addons",
|
|
1759
|
-
"isESM": false,
|
|
1760
|
-
"relativePath": [
|
|
1761
|
-
"lib",
|
|
1762
|
-
"commands",
|
|
1763
|
-
"addons",
|
|
1764
|
-
"plans.js"
|
|
1765
|
-
]
|
|
1766
|
-
},
|
|
1767
|
-
"addons:rename": {
|
|
1768
|
-
"aliases": [],
|
|
1769
|
-
"args": {
|
|
1770
|
-
"addon_name": {
|
|
1771
|
-
"description": "unique identifier or globally unique name of the add-on",
|
|
1772
|
-
"name": "addon_name",
|
|
1773
|
-
"required": true
|
|
1782
|
+
"app": {
|
|
1783
|
+
"char": "a",
|
|
1784
|
+
"description": "app to run command against",
|
|
1785
|
+
"name": "app",
|
|
1786
|
+
"required": true,
|
|
1787
|
+
"hasDynamicHelp": false,
|
|
1788
|
+
"multiple": false,
|
|
1789
|
+
"type": "option"
|
|
1774
1790
|
},
|
|
1775
|
-
"
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1791
|
+
"remote": {
|
|
1792
|
+
"char": "r",
|
|
1793
|
+
"description": "git remote of app to use",
|
|
1794
|
+
"name": "remote",
|
|
1795
|
+
"hasDynamicHelp": false,
|
|
1796
|
+
"multiple": false,
|
|
1797
|
+
"type": "option"
|
|
1779
1798
|
}
|
|
1780
1799
|
},
|
|
1781
|
-
"description": "rename an add-on",
|
|
1782
|
-
"flags": {},
|
|
1783
1800
|
"hasDynamicHelp": false,
|
|
1784
|
-
"hiddenAliases": [
|
|
1785
|
-
|
|
1801
|
+
"hiddenAliases": [
|
|
1802
|
+
"rename"
|
|
1803
|
+
],
|
|
1804
|
+
"id": "apps:rename",
|
|
1786
1805
|
"pluginAlias": "heroku",
|
|
1787
1806
|
"pluginName": "heroku",
|
|
1788
1807
|
"pluginType": "core",
|
|
1789
1808
|
"strict": true,
|
|
1790
|
-
"
|
|
1809
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1810
|
+
"topic": "apps",
|
|
1791
1811
|
"isESM": false,
|
|
1792
1812
|
"relativePath": [
|
|
1793
1813
|
"lib",
|
|
1794
1814
|
"commands",
|
|
1795
|
-
"
|
|
1815
|
+
"apps",
|
|
1796
1816
|
"rename.js"
|
|
1797
1817
|
]
|
|
1798
1818
|
},
|
|
1799
|
-
"
|
|
1819
|
+
"apps:transfer": {
|
|
1800
1820
|
"aliases": [],
|
|
1801
|
-
"args": {},
|
|
1802
|
-
"description": "list all available add-on services",
|
|
1803
|
-
"flags": {
|
|
1804
|
-
"json": {
|
|
1805
|
-
"description": "output in json format",
|
|
1806
|
-
"name": "json",
|
|
1807
|
-
"allowNo": false,
|
|
1808
|
-
"type": "boolean"
|
|
1809
|
-
}
|
|
1810
|
-
},
|
|
1811
|
-
"hasDynamicHelp": false,
|
|
1812
|
-
"hiddenAliases": [],
|
|
1813
|
-
"id": "addons:services",
|
|
1814
|
-
"pluginAlias": "heroku",
|
|
1815
|
-
"pluginName": "heroku",
|
|
1816
|
-
"pluginType": "core",
|
|
1817
|
-
"strict": true,
|
|
1818
|
-
"topic": "addons",
|
|
1819
|
-
"isESM": false,
|
|
1820
|
-
"relativePath": [
|
|
1821
|
-
"lib",
|
|
1822
|
-
"commands",
|
|
1823
|
-
"addons",
|
|
1824
|
-
"services.js"
|
|
1825
|
-
]
|
|
1826
|
-
},
|
|
1827
|
-
"addons:upgrade": {
|
|
1828
|
-
"aliases": [
|
|
1829
|
-
"addons:downgrade"
|
|
1830
|
-
],
|
|
1831
1821
|
"args": {
|
|
1832
|
-
"
|
|
1833
|
-
"description": "
|
|
1834
|
-
"name": "
|
|
1822
|
+
"recipient": {
|
|
1823
|
+
"description": "user or team to transfer applications to",
|
|
1824
|
+
"name": "recipient",
|
|
1835
1825
|
"required": true
|
|
1836
|
-
},
|
|
1837
|
-
"plan": {
|
|
1838
|
-
"description": "unique identifier or name of the plan",
|
|
1839
|
-
"name": "plan"
|
|
1840
1826
|
}
|
|
1841
1827
|
},
|
|
1842
|
-
"description": "
|
|
1828
|
+
"description": "transfer applications to another user or team",
|
|
1843
1829
|
"examples": [
|
|
1844
|
-
"
|
|
1830
|
+
"$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
|
|
1845
1831
|
],
|
|
1846
1832
|
"flags": {
|
|
1833
|
+
"locked": {
|
|
1834
|
+
"char": "l",
|
|
1835
|
+
"description": "lock the app upon transfer",
|
|
1836
|
+
"name": "locked",
|
|
1837
|
+
"required": false,
|
|
1838
|
+
"allowNo": false,
|
|
1839
|
+
"type": "boolean"
|
|
1840
|
+
},
|
|
1841
|
+
"bulk": {
|
|
1842
|
+
"description": "transfer applications in bulk",
|
|
1843
|
+
"name": "bulk",
|
|
1844
|
+
"required": false,
|
|
1845
|
+
"allowNo": false,
|
|
1846
|
+
"type": "boolean"
|
|
1847
|
+
},
|
|
1847
1848
|
"app": {
|
|
1848
1849
|
"char": "a",
|
|
1849
1850
|
"description": "app to run command against",
|
|
@@ -1859,45 +1860,44 @@
|
|
|
1859
1860
|
"hasDynamicHelp": false,
|
|
1860
1861
|
"multiple": false,
|
|
1861
1862
|
"type": "option"
|
|
1863
|
+
},
|
|
1864
|
+
"confirm": {
|
|
1865
|
+
"char": "c",
|
|
1866
|
+
"hidden": true,
|
|
1867
|
+
"name": "confirm",
|
|
1868
|
+
"hasDynamicHelp": false,
|
|
1869
|
+
"multiple": false,
|
|
1870
|
+
"type": "option"
|
|
1862
1871
|
}
|
|
1863
1872
|
},
|
|
1864
1873
|
"hasDynamicHelp": false,
|
|
1865
1874
|
"hiddenAliases": [],
|
|
1866
|
-
"id": "
|
|
1875
|
+
"id": "apps:transfer",
|
|
1867
1876
|
"pluginAlias": "heroku",
|
|
1868
1877
|
"pluginName": "heroku",
|
|
1869
1878
|
"pluginType": "core",
|
|
1870
1879
|
"strict": true,
|
|
1871
|
-
"topic": "
|
|
1880
|
+
"topic": "apps",
|
|
1872
1881
|
"isESM": false,
|
|
1873
1882
|
"relativePath": [
|
|
1874
1883
|
"lib",
|
|
1875
1884
|
"commands",
|
|
1876
|
-
"
|
|
1877
|
-
"
|
|
1885
|
+
"apps",
|
|
1886
|
+
"transfer.js"
|
|
1878
1887
|
]
|
|
1879
1888
|
},
|
|
1880
|
-
"
|
|
1881
|
-
"aliases": [
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
}
|
|
1887
|
-
},
|
|
1888
|
-
"description": "show provisioning status of the add-ons on the app",
|
|
1889
|
+
"apps:unlock": {
|
|
1890
|
+
"aliases": [
|
|
1891
|
+
"unlock"
|
|
1892
|
+
],
|
|
1893
|
+
"args": {},
|
|
1894
|
+
"description": "unlock an app so any team member can join",
|
|
1889
1895
|
"flags": {
|
|
1890
|
-
"wait-interval": {
|
|
1891
|
-
"description": "how frequently to poll in seconds",
|
|
1892
|
-
"name": "wait-interval",
|
|
1893
|
-
"hasDynamicHelp": false,
|
|
1894
|
-
"multiple": false,
|
|
1895
|
-
"type": "option"
|
|
1896
|
-
},
|
|
1897
1896
|
"app": {
|
|
1898
1897
|
"char": "a",
|
|
1899
1898
|
"description": "app to run command against",
|
|
1900
1899
|
"name": "app",
|
|
1900
|
+
"required": true,
|
|
1901
1901
|
"hasDynamicHelp": false,
|
|
1902
1902
|
"multiple": false,
|
|
1903
1903
|
"type": "option"
|
|
@@ -1913,18 +1913,18 @@
|
|
|
1913
1913
|
},
|
|
1914
1914
|
"hasDynamicHelp": false,
|
|
1915
1915
|
"hiddenAliases": [],
|
|
1916
|
-
"id": "
|
|
1916
|
+
"id": "apps:unlock",
|
|
1917
1917
|
"pluginAlias": "heroku",
|
|
1918
1918
|
"pluginName": "heroku",
|
|
1919
1919
|
"pluginType": "core",
|
|
1920
1920
|
"strict": true,
|
|
1921
|
-
"topic": "
|
|
1921
|
+
"topic": "apps",
|
|
1922
1922
|
"isESM": false,
|
|
1923
1923
|
"relativePath": [
|
|
1924
1924
|
"lib",
|
|
1925
1925
|
"commands",
|
|
1926
|
-
"
|
|
1927
|
-
"
|
|
1926
|
+
"apps",
|
|
1927
|
+
"unlock.js"
|
|
1928
1928
|
]
|
|
1929
1929
|
},
|
|
1930
1930
|
"auth:login": {
|
|
@@ -5273,7 +5273,7 @@
|
|
|
5273
5273
|
"aliases": [],
|
|
5274
5274
|
"args": {},
|
|
5275
5275
|
"description": "adds a git remote to an app repo\nextra arguments will be passed to git remote add\n",
|
|
5276
|
-
"examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
|
|
5276
|
+
"examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example-staging",
|
|
5277
5277
|
"flags": {
|
|
5278
5278
|
"app": {
|
|
5279
5279
|
"char": "a",
|
|
@@ -5299,7 +5299,7 @@
|
|
|
5299
5299
|
"pluginName": "heroku",
|
|
5300
5300
|
"pluginType": "core",
|
|
5301
5301
|
"strict": false,
|
|
5302
|
-
"example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
|
|
5302
|
+
"example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example-staging",
|
|
5303
5303
|
"isESM": false,
|
|
5304
5304
|
"relativePath": [
|
|
5305
5305
|
"lib",
|
|
@@ -9329,11 +9329,20 @@
|
|
|
9329
9329
|
},
|
|
9330
9330
|
"run:inside": {
|
|
9331
9331
|
"aliases": [],
|
|
9332
|
-
"args": {
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9332
|
+
"args": {
|
|
9333
|
+
"DYNO_NAME": {
|
|
9334
|
+
"description": "name of the dyno to run command inside",
|
|
9335
|
+
"name": "DYNO_NAME",
|
|
9336
|
+
"required": true
|
|
9337
|
+
},
|
|
9338
|
+
"COMMAND": {
|
|
9339
|
+
"description": "command to run",
|
|
9340
|
+
"name": "COMMAND",
|
|
9341
|
+
"required": true
|
|
9342
|
+
}
|
|
9343
|
+
},
|
|
9344
|
+
"description": "run a one-off process inside an existing heroku dyno (for Fir-generation apps only)",
|
|
9345
|
+
"examples": "Run bash\n $ heroku run:inside web-848cd4f64d-pvpr2 bash\nRun a command supplied by a script\n $ heroku run:inside web-848cd4f64d-pvpr2 -- myscript.sh\nRun a command declared for the worker process type in a Procfile\n $ heroku run:inside worker\n",
|
|
9337
9346
|
"flags": {
|
|
9338
9347
|
"app": {
|
|
9339
9348
|
"char": "a",
|
|
@@ -9368,13 +9377,13 @@
|
|
|
9368
9377
|
}
|
|
9369
9378
|
},
|
|
9370
9379
|
"hasDynamicHelp": false,
|
|
9371
|
-
"hidden": true,
|
|
9372
9380
|
"hiddenAliases": [],
|
|
9373
9381
|
"id": "run:inside",
|
|
9374
9382
|
"pluginAlias": "heroku",
|
|
9375
9383
|
"pluginName": "heroku",
|
|
9376
9384
|
"pluginType": "core",
|
|
9377
9385
|
"strict": false,
|
|
9386
|
+
"example": "Run bash\n $ heroku run:inside web-848cd4f64d-pvpr2 bash\nRun a command supplied by a script\n $ heroku run:inside web-848cd4f64d-pvpr2 -- myscript.sh\nRun a command declared for the worker process type in a Procfile\n $ heroku run:inside worker\n",
|
|
9378
9387
|
"isESM": false,
|
|
9379
9388
|
"relativePath": [
|
|
9380
9389
|
"lib",
|
|
@@ -9976,14 +9985,14 @@
|
|
|
9976
9985
|
"telemetry:add": {
|
|
9977
9986
|
"aliases": [],
|
|
9978
9987
|
"args": {
|
|
9979
|
-
"
|
|
9980
|
-
"description": "
|
|
9981
|
-
"name": "
|
|
9988
|
+
"endpoint": {
|
|
9989
|
+
"description": "drain url",
|
|
9990
|
+
"name": "endpoint",
|
|
9982
9991
|
"required": true
|
|
9983
9992
|
}
|
|
9984
9993
|
},
|
|
9985
9994
|
"description": "Add and configure a new telemetry drain. Defaults to collecting all telemetry unless otherwise specified.",
|
|
9986
|
-
"examples": "Add a telemetry drain to an app to collect logs and traces:\n$ heroku telemetry:add --app myapp --signals logs,traces --
|
|
9995
|
+
"examples": "Add a telemetry drain to an app to collect logs and traces:\n$ heroku telemetry:add https://my-endpoint.com --app myapp --signals logs,traces --headers '{\"x-drain-example-team\": \"API_KEY\", \"x-drain-example-dataset\": \"METRICS_DATASET\"}'\n",
|
|
9987
9996
|
"flags": {
|
|
9988
9997
|
"app": {
|
|
9989
9998
|
"char": "a",
|
|
@@ -9993,10 +10002,9 @@
|
|
|
9993
10002
|
"multiple": false,
|
|
9994
10003
|
"type": "option"
|
|
9995
10004
|
},
|
|
9996
|
-
"
|
|
9997
|
-
"
|
|
9998
|
-
"
|
|
9999
|
-
"name": "remote",
|
|
10005
|
+
"headers": {
|
|
10006
|
+
"description": "custom headers to configure the drain in json format",
|
|
10007
|
+
"name": "headers",
|
|
10000
10008
|
"hasDynamicHelp": false,
|
|
10001
10009
|
"multiple": false,
|
|
10002
10010
|
"type": "option"
|
|
@@ -10017,18 +10025,10 @@
|
|
|
10017
10025
|
"multiple": false,
|
|
10018
10026
|
"type": "option"
|
|
10019
10027
|
},
|
|
10020
|
-
"endpoint": {
|
|
10021
|
-
"description": "drain url",
|
|
10022
|
-
"name": "endpoint",
|
|
10023
|
-
"required": true,
|
|
10024
|
-
"hasDynamicHelp": false,
|
|
10025
|
-
"multiple": false,
|
|
10026
|
-
"type": "option"
|
|
10027
|
-
},
|
|
10028
10028
|
"transport": {
|
|
10029
10029
|
"description": "transport protocol for the drain",
|
|
10030
10030
|
"name": "transport",
|
|
10031
|
-
"
|
|
10031
|
+
"default": "http",
|
|
10032
10032
|
"hasDynamicHelp": false,
|
|
10033
10033
|
"multiple": false,
|
|
10034
10034
|
"options": [
|
|
@@ -10045,7 +10045,7 @@
|
|
|
10045
10045
|
"pluginName": "heroku",
|
|
10046
10046
|
"pluginType": "core",
|
|
10047
10047
|
"strict": true,
|
|
10048
|
-
"example": "Add a telemetry drain to an app to collect logs and traces:\n$ heroku telemetry:add --app myapp --signals logs,traces --
|
|
10048
|
+
"example": "Add a telemetry drain to an app to collect logs and traces:\n$ heroku telemetry:add https://my-endpoint.com --app myapp --signals logs,traces --headers '{\"x-drain-example-team\": \"API_KEY\", \"x-drain-example-dataset\": \"METRICS_DATASET\"}'\n",
|
|
10049
10049
|
"isESM": false,
|
|
10050
10050
|
"relativePath": [
|
|
10051
10051
|
"lib",
|
|
@@ -10173,25 +10173,28 @@
|
|
|
10173
10173
|
"description": "ID of the drain to update",
|
|
10174
10174
|
"name": "telemetry_drain_id",
|
|
10175
10175
|
"required": true
|
|
10176
|
-
},
|
|
10177
|
-
"headers": {
|
|
10178
|
-
"description": "custom headers to configure the drain in json format",
|
|
10179
|
-
"name": "headers"
|
|
10180
10176
|
}
|
|
10181
10177
|
},
|
|
10182
10178
|
"description": "updates a telemetry drain with provided attributes (attributes not provided remain unchanged)",
|
|
10183
10179
|
"examples": "$ heroku telemetry:update acde070d-8c4c-4f0d-9d8a-162843c10333 --signals logs,metrics --endpoint https://my-new-endpoint.com\n",
|
|
10184
10180
|
"flags": {
|
|
10185
|
-
"
|
|
10186
|
-
"description": "
|
|
10187
|
-
"name": "
|
|
10181
|
+
"endpoint": {
|
|
10182
|
+
"description": "drain url",
|
|
10183
|
+
"name": "endpoint",
|
|
10188
10184
|
"hasDynamicHelp": false,
|
|
10189
10185
|
"multiple": false,
|
|
10190
10186
|
"type": "option"
|
|
10191
10187
|
},
|
|
10192
|
-
"
|
|
10193
|
-
"description": "drain
|
|
10194
|
-
"name": "
|
|
10188
|
+
"headers": {
|
|
10189
|
+
"description": "custom headers to configure the drain in json format",
|
|
10190
|
+
"name": "headers",
|
|
10191
|
+
"hasDynamicHelp": false,
|
|
10192
|
+
"multiple": false,
|
|
10193
|
+
"type": "option"
|
|
10194
|
+
},
|
|
10195
|
+
"signals": {
|
|
10196
|
+
"description": "comma-delimited list of signals to collect (traces, metrics, logs). Use \"all\" to collect all signals.",
|
|
10197
|
+
"name": "signals",
|
|
10195
10198
|
"hasDynamicHelp": false,
|
|
10196
10199
|
"multiple": false,
|
|
10197
10200
|
"type": "option"
|
|
@@ -14439,5 +14442,5 @@
|
|
|
14439
14442
|
]
|
|
14440
14443
|
}
|
|
14441
14444
|
},
|
|
14442
|
-
"version": "10.0.0-
|
|
14445
|
+
"version": "10.0.0-beta.2"
|
|
14443
14446
|
}
|