heroku 10.1.1-beta.0 → 10.2.0
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/logs.js +1 -1
- package/lib/commands/pg/backups/restore.js +3 -2
- package/oclif.manifest.json +1059 -1059
- package/package.json +3 -3
package/oclif.manifest.json
CHANGED
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
},
|
|
170
170
|
"tail": {
|
|
171
171
|
"char": "t",
|
|
172
|
-
"description": "continually stream logs (
|
|
172
|
+
"description": "continually stream logs (always enabled for Fir-generation apps)",
|
|
173
173
|
"name": "tail",
|
|
174
174
|
"allowNo": false,
|
|
175
175
|
"type": "boolean"
|
|
@@ -533,124 +533,125 @@
|
|
|
533
533
|
"update.js"
|
|
534
534
|
]
|
|
535
535
|
},
|
|
536
|
-
"
|
|
536
|
+
"apps:create": {
|
|
537
537
|
"aliases": [],
|
|
538
538
|
"args": {
|
|
539
|
-
"
|
|
540
|
-
"description": "
|
|
541
|
-
"name": "
|
|
542
|
-
"required":
|
|
539
|
+
"app": {
|
|
540
|
+
"description": "name of app to create",
|
|
541
|
+
"name": "app",
|
|
542
|
+
"required": false
|
|
543
543
|
}
|
|
544
544
|
},
|
|
545
|
-
"description": "
|
|
545
|
+
"description": "creates a new app",
|
|
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
|
+
],
|
|
546
549
|
"flags": {
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"name": "
|
|
550
|
+
"app": {
|
|
551
|
+
"hidden": true,
|
|
552
|
+
"name": "app",
|
|
550
553
|
"hasDynamicHelp": false,
|
|
551
554
|
"multiple": false,
|
|
552
555
|
"type": "option"
|
|
553
556
|
},
|
|
554
|
-
"
|
|
555
|
-
"description": "
|
|
556
|
-
"name": "
|
|
557
|
+
"addons": {
|
|
558
|
+
"description": "comma-delimited list of addons to install",
|
|
559
|
+
"name": "addons",
|
|
557
560
|
"hasDynamicHelp": false,
|
|
558
561
|
"multiple": false,
|
|
559
562
|
"type": "option"
|
|
560
563
|
},
|
|
561
|
-
"
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
+
"buildpack": {
|
|
565
|
+
"char": "b",
|
|
566
|
+
"description": "buildpack url to use for this app",
|
|
567
|
+
"name": "buildpack",
|
|
564
568
|
"hasDynamicHelp": false,
|
|
565
569
|
"multiple": false,
|
|
566
570
|
"type": "option"
|
|
567
571
|
},
|
|
568
|
-
"
|
|
569
|
-
"char": "
|
|
570
|
-
"description": "
|
|
571
|
-
"
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
|
|
572
|
+
"manifest": {
|
|
573
|
+
"char": "m",
|
|
574
|
+
"description": "use heroku.yml settings for this app",
|
|
575
|
+
"hidden": true,
|
|
576
|
+
"name": "manifest",
|
|
577
|
+
"allowNo": false,
|
|
578
|
+
"type": "boolean"
|
|
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"
|
|
576
586
|
},
|
|
577
587
|
"remote": {
|
|
578
588
|
"char": "r",
|
|
579
|
-
"description": "git remote
|
|
589
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
580
590
|
"name": "remote",
|
|
591
|
+
"default": "heroku",
|
|
581
592
|
"hasDynamicHelp": false,
|
|
582
593
|
"multiple": false,
|
|
583
594
|
"type": "option"
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
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",
|
|
595
|
+
},
|
|
596
|
+
"stack": {
|
|
597
|
+
"char": "s",
|
|
598
|
+
"description": "the stack to create the app on",
|
|
599
|
+
"name": "stack",
|
|
617
600
|
"hasDynamicHelp": false,
|
|
618
601
|
"multiple": false,
|
|
619
602
|
"type": "option"
|
|
620
603
|
},
|
|
621
|
-
"
|
|
622
|
-
"description": "
|
|
623
|
-
"name": "
|
|
604
|
+
"space": {
|
|
605
|
+
"description": "the private space to create the app in",
|
|
606
|
+
"name": "space",
|
|
624
607
|
"hasDynamicHelp": false,
|
|
625
608
|
"multiple": false,
|
|
626
609
|
"type": "option"
|
|
627
610
|
},
|
|
628
|
-
"
|
|
629
|
-
"description": "
|
|
630
|
-
"name": "
|
|
611
|
+
"region": {
|
|
612
|
+
"description": "specify region for the app to run in",
|
|
613
|
+
"name": "region",
|
|
631
614
|
"hasDynamicHelp": false,
|
|
632
615
|
"multiple": false,
|
|
633
616
|
"type": "option"
|
|
634
617
|
},
|
|
635
|
-
"
|
|
636
|
-
"description": "
|
|
637
|
-
"
|
|
618
|
+
"internal-routing": {
|
|
619
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
620
|
+
"hidden": true,
|
|
621
|
+
"name": "internal-routing",
|
|
638
622
|
"allowNo": false,
|
|
639
623
|
"type": "boolean"
|
|
640
624
|
},
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
"name": "app",
|
|
645
|
-
"required": true,
|
|
625
|
+
"features": {
|
|
626
|
+
"hidden": true,
|
|
627
|
+
"name": "features",
|
|
646
628
|
"hasDynamicHelp": false,
|
|
647
629
|
"multiple": false,
|
|
648
630
|
"type": "option"
|
|
649
631
|
},
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
632
|
+
"kernel": {
|
|
633
|
+
"hidden": true,
|
|
634
|
+
"name": "kernel",
|
|
635
|
+
"hasDynamicHelp": false,
|
|
636
|
+
"multiple": false,
|
|
637
|
+
"type": "option"
|
|
638
|
+
},
|
|
639
|
+
"locked": {
|
|
640
|
+
"hidden": true,
|
|
641
|
+
"name": "locked",
|
|
642
|
+
"allowNo": false,
|
|
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",
|
|
654
655
|
"hasDynamicHelp": false,
|
|
655
656
|
"multiple": false,
|
|
656
657
|
"type": "option"
|
|
@@ -658,57 +659,31 @@
|
|
|
658
659
|
},
|
|
659
660
|
"hasDynamicHelp": false,
|
|
660
661
|
"hiddenAliases": [
|
|
661
|
-
"
|
|
662
|
+
"create"
|
|
662
663
|
],
|
|
663
|
-
"id": "
|
|
664
|
+
"id": "apps:create",
|
|
664
665
|
"pluginAlias": "heroku",
|
|
665
666
|
"pluginName": "heroku",
|
|
666
667
|
"pluginType": "core",
|
|
667
|
-
"strict":
|
|
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",
|
|
668
|
+
"strict": true,
|
|
670
669
|
"isESM": false,
|
|
671
670
|
"relativePath": [
|
|
672
671
|
"lib",
|
|
673
672
|
"commands",
|
|
674
|
-
"
|
|
673
|
+
"apps",
|
|
675
674
|
"create.js"
|
|
676
675
|
]
|
|
677
676
|
},
|
|
678
|
-
"
|
|
677
|
+
"apps:destroy": {
|
|
679
678
|
"aliases": [],
|
|
680
679
|
"args": {
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"name": "
|
|
684
|
-
"required": true
|
|
680
|
+
"app": {
|
|
681
|
+
"hidden": true,
|
|
682
|
+
"name": "app"
|
|
685
683
|
}
|
|
686
684
|
},
|
|
687
|
-
"description": "permanently destroy an
|
|
688
|
-
"examples": [
|
|
689
|
-
"addons:destroy [ADDON]... [flags]"
|
|
690
|
-
],
|
|
685
|
+
"description": "permanently destroy an app",
|
|
691
686
|
"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
|
-
},
|
|
712
687
|
"app": {
|
|
713
688
|
"char": "a",
|
|
714
689
|
"description": "app to run command against",
|
|
@@ -724,36 +699,38 @@
|
|
|
724
699
|
"hasDynamicHelp": false,
|
|
725
700
|
"multiple": false,
|
|
726
701
|
"type": "option"
|
|
702
|
+
},
|
|
703
|
+
"confirm": {
|
|
704
|
+
"char": "c",
|
|
705
|
+
"name": "confirm",
|
|
706
|
+
"hasDynamicHelp": false,
|
|
707
|
+
"multiple": false,
|
|
708
|
+
"type": "option"
|
|
727
709
|
}
|
|
728
710
|
},
|
|
729
711
|
"hasDynamicHelp": false,
|
|
730
712
|
"hiddenAliases": [
|
|
731
|
-
"
|
|
713
|
+
"destroy",
|
|
714
|
+
"apps:delete"
|
|
732
715
|
],
|
|
733
|
-
"id": "
|
|
716
|
+
"id": "apps:destroy",
|
|
734
717
|
"pluginAlias": "heroku",
|
|
735
718
|
"pluginName": "heroku",
|
|
736
719
|
"pluginType": "core",
|
|
737
|
-
"strict":
|
|
738
|
-
"
|
|
720
|
+
"strict": true,
|
|
721
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
739
722
|
"isESM": false,
|
|
740
723
|
"relativePath": [
|
|
741
724
|
"lib",
|
|
742
725
|
"commands",
|
|
743
|
-
"
|
|
726
|
+
"apps",
|
|
744
727
|
"destroy.js"
|
|
745
728
|
]
|
|
746
729
|
},
|
|
747
|
-
"
|
|
730
|
+
"apps:errors": {
|
|
748
731
|
"aliases": [],
|
|
749
|
-
"args": {
|
|
750
|
-
|
|
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",
|
|
732
|
+
"args": {},
|
|
733
|
+
"description": "view app errors",
|
|
757
734
|
"flags": {
|
|
758
735
|
"app": {
|
|
759
736
|
"char": "a",
|
|
@@ -771,96 +748,136 @@
|
|
|
771
748
|
"hasDynamicHelp": false,
|
|
772
749
|
"multiple": false,
|
|
773
750
|
"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"
|
|
774
777
|
}
|
|
775
778
|
},
|
|
776
779
|
"hasDynamicHelp": false,
|
|
777
780
|
"hiddenAliases": [],
|
|
778
|
-
"id": "
|
|
781
|
+
"id": "apps:errors",
|
|
779
782
|
"pluginAlias": "heroku",
|
|
780
783
|
"pluginName": "heroku",
|
|
781
784
|
"pluginType": "core",
|
|
782
785
|
"strict": true,
|
|
783
|
-
"topic": "addons",
|
|
784
786
|
"isESM": false,
|
|
785
787
|
"relativePath": [
|
|
786
788
|
"lib",
|
|
787
789
|
"commands",
|
|
788
|
-
"
|
|
789
|
-
"
|
|
790
|
+
"apps",
|
|
791
|
+
"errors.js"
|
|
790
792
|
]
|
|
791
793
|
},
|
|
792
|
-
"
|
|
794
|
+
"apps": {
|
|
793
795
|
"aliases": [],
|
|
794
|
-
"args": {
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
}
|
|
800
|
-
},
|
|
801
|
-
"description": "open an add-on's Dev Center documentation in your browser",
|
|
796
|
+
"args": {},
|
|
797
|
+
"description": "list your apps",
|
|
798
|
+
"examples": [
|
|
799
|
+
"$ heroku apps"
|
|
800
|
+
],
|
|
802
801
|
"flags": {
|
|
803
|
-
"
|
|
804
|
-
"
|
|
805
|
-
"
|
|
802
|
+
"all": {
|
|
803
|
+
"char": "A",
|
|
804
|
+
"description": "include apps in all teams",
|
|
805
|
+
"name": "all",
|
|
806
806
|
"allowNo": false,
|
|
807
807
|
"type": "boolean"
|
|
808
808
|
},
|
|
809
|
-
"
|
|
810
|
-
"char": "
|
|
811
|
-
"description": "
|
|
812
|
-
"name": "
|
|
809
|
+
"json": {
|
|
810
|
+
"char": "j",
|
|
811
|
+
"description": "output in json format",
|
|
812
|
+
"name": "json",
|
|
813
|
+
"allowNo": false,
|
|
814
|
+
"type": "boolean"
|
|
815
|
+
},
|
|
816
|
+
"space": {
|
|
817
|
+
"char": "s",
|
|
818
|
+
"description": "filter by space",
|
|
819
|
+
"name": "space",
|
|
813
820
|
"hasDynamicHelp": false,
|
|
814
821
|
"multiple": false,
|
|
815
822
|
"type": "option"
|
|
816
823
|
},
|
|
817
|
-
"
|
|
818
|
-
"char": "
|
|
819
|
-
"description": "
|
|
820
|
-
"name": "
|
|
824
|
+
"personal": {
|
|
825
|
+
"char": "p",
|
|
826
|
+
"description": "list apps in personal account when a default team is set",
|
|
827
|
+
"name": "personal",
|
|
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",
|
|
821
843
|
"hasDynamicHelp": false,
|
|
822
844
|
"multiple": false,
|
|
823
845
|
"type": "option"
|
|
824
846
|
}
|
|
825
847
|
},
|
|
826
848
|
"hasDynamicHelp": false,
|
|
827
|
-
"hiddenAliases": [
|
|
828
|
-
|
|
849
|
+
"hiddenAliases": [
|
|
850
|
+
"list",
|
|
851
|
+
"apps:list"
|
|
852
|
+
],
|
|
853
|
+
"id": "apps",
|
|
829
854
|
"pluginAlias": "heroku",
|
|
830
855
|
"pluginName": "heroku",
|
|
831
856
|
"pluginType": "core",
|
|
832
857
|
"strict": true,
|
|
833
|
-
"topic": "
|
|
858
|
+
"topic": "apps",
|
|
834
859
|
"isESM": false,
|
|
835
860
|
"relativePath": [
|
|
836
861
|
"lib",
|
|
837
862
|
"commands",
|
|
838
|
-
"
|
|
839
|
-
"
|
|
863
|
+
"apps",
|
|
864
|
+
"index.js"
|
|
840
865
|
]
|
|
841
866
|
},
|
|
842
|
-
"
|
|
867
|
+
"apps:info": {
|
|
843
868
|
"aliases": [],
|
|
844
|
-
"args": {
|
|
845
|
-
|
|
869
|
+
"args": {
|
|
870
|
+
"app": {
|
|
871
|
+
"hidden": true,
|
|
872
|
+
"name": "app"
|
|
873
|
+
}
|
|
874
|
+
},
|
|
875
|
+
"description": "show detailed app information",
|
|
846
876
|
"examples": [
|
|
847
|
-
"$ heroku
|
|
848
|
-
"$ heroku
|
|
877
|
+
"$ heroku apps:info",
|
|
878
|
+
"$ heroku apps:info --shell"
|
|
849
879
|
],
|
|
850
880
|
"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
|
-
},
|
|
864
881
|
"app": {
|
|
865
882
|
"char": "a",
|
|
866
883
|
"description": "app to run command against",
|
|
@@ -876,40 +893,60 @@
|
|
|
876
893
|
"hasDynamicHelp": false,
|
|
877
894
|
"multiple": false,
|
|
878
895
|
"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"
|
|
879
917
|
}
|
|
880
918
|
},
|
|
881
919
|
"hasDynamicHelp": false,
|
|
882
|
-
"hiddenAliases": [
|
|
883
|
-
|
|
920
|
+
"hiddenAliases": [
|
|
921
|
+
"info"
|
|
922
|
+
],
|
|
923
|
+
"id": "apps:info",
|
|
884
924
|
"pluginAlias": "heroku",
|
|
885
925
|
"pluginName": "heroku",
|
|
886
926
|
"pluginType": "core",
|
|
887
927
|
"strict": true,
|
|
888
|
-
"
|
|
889
|
-
"
|
|
928
|
+
"topic": "apps",
|
|
929
|
+
"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...",
|
|
890
930
|
"isESM": false,
|
|
891
931
|
"relativePath": [
|
|
892
932
|
"lib",
|
|
893
933
|
"commands",
|
|
894
|
-
"
|
|
895
|
-
"
|
|
934
|
+
"apps",
|
|
935
|
+
"info.js"
|
|
896
936
|
]
|
|
897
937
|
},
|
|
898
|
-
"
|
|
899
|
-
"aliases": [
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
"required": true
|
|
905
|
-
}
|
|
906
|
-
},
|
|
907
|
-
"description": "show detailed add-on resource and attachment information",
|
|
938
|
+
"apps:join": {
|
|
939
|
+
"aliases": [
|
|
940
|
+
"join"
|
|
941
|
+
],
|
|
942
|
+
"args": {},
|
|
943
|
+
"description": "add yourself to a team app",
|
|
908
944
|
"flags": {
|
|
909
945
|
"app": {
|
|
910
946
|
"char": "a",
|
|
911
947
|
"description": "app to run command against",
|
|
912
948
|
"name": "app",
|
|
949
|
+
"required": true,
|
|
913
950
|
"hasDynamicHelp": false,
|
|
914
951
|
"multiple": false,
|
|
915
952
|
"type": "option"
|
|
@@ -925,42 +962,33 @@
|
|
|
925
962
|
},
|
|
926
963
|
"hasDynamicHelp": false,
|
|
927
964
|
"hiddenAliases": [],
|
|
928
|
-
"id": "
|
|
965
|
+
"id": "apps:join",
|
|
929
966
|
"pluginAlias": "heroku",
|
|
930
967
|
"pluginName": "heroku",
|
|
931
968
|
"pluginType": "core",
|
|
932
969
|
"strict": true,
|
|
933
|
-
"
|
|
934
|
-
"topic": "addons",
|
|
970
|
+
"topic": "apps",
|
|
935
971
|
"isESM": false,
|
|
936
972
|
"relativePath": [
|
|
937
973
|
"lib",
|
|
938
974
|
"commands",
|
|
939
|
-
"
|
|
940
|
-
"
|
|
975
|
+
"apps",
|
|
976
|
+
"join.js"
|
|
941
977
|
]
|
|
942
978
|
},
|
|
943
|
-
"
|
|
944
|
-
"aliases": [
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
}
|
|
951
|
-
},
|
|
952
|
-
"description": "open an add-on's dashboard in your browser",
|
|
979
|
+
"apps:leave": {
|
|
980
|
+
"aliases": [
|
|
981
|
+
"leave"
|
|
982
|
+
],
|
|
983
|
+
"args": {},
|
|
984
|
+
"description": "remove yourself from a team app",
|
|
985
|
+
"examples": "heroku apps:leave -a APP",
|
|
953
986
|
"flags": {
|
|
954
|
-
"show-url": {
|
|
955
|
-
"description": "show URL, do not open browser",
|
|
956
|
-
"name": "show-url",
|
|
957
|
-
"allowNo": false,
|
|
958
|
-
"type": "boolean"
|
|
959
|
-
},
|
|
960
987
|
"app": {
|
|
961
988
|
"char": "a",
|
|
962
989
|
"description": "app to run command against",
|
|
963
990
|
"name": "app",
|
|
991
|
+
"required": true,
|
|
964
992
|
"hasDynamicHelp": false,
|
|
965
993
|
"multiple": false,
|
|
966
994
|
"type": "option"
|
|
@@ -976,138 +1004,132 @@
|
|
|
976
1004
|
},
|
|
977
1005
|
"hasDynamicHelp": false,
|
|
978
1006
|
"hiddenAliases": [],
|
|
979
|
-
"id": "
|
|
1007
|
+
"id": "apps:leave",
|
|
980
1008
|
"pluginAlias": "heroku",
|
|
981
1009
|
"pluginName": "heroku",
|
|
982
1010
|
"pluginType": "core",
|
|
983
1011
|
"strict": true,
|
|
984
|
-
"topic": "
|
|
1012
|
+
"topic": "apps",
|
|
1013
|
+
"example": "heroku apps:leave -a APP",
|
|
985
1014
|
"isESM": false,
|
|
986
1015
|
"relativePath": [
|
|
987
1016
|
"lib",
|
|
988
1017
|
"commands",
|
|
989
|
-
"
|
|
990
|
-
"
|
|
1018
|
+
"apps",
|
|
1019
|
+
"leave.js"
|
|
991
1020
|
]
|
|
992
1021
|
},
|
|
993
|
-
"
|
|
994
|
-
"aliases": [
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
"required": true
|
|
1000
|
-
}
|
|
1001
|
-
},
|
|
1002
|
-
"description": "list all available plans for an add-on service",
|
|
1022
|
+
"apps:lock": {
|
|
1023
|
+
"aliases": [
|
|
1024
|
+
"lock"
|
|
1025
|
+
],
|
|
1026
|
+
"args": {},
|
|
1027
|
+
"description": "prevent team members from joining an app",
|
|
1003
1028
|
"flags": {
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1029
|
+
"app": {
|
|
1030
|
+
"char": "a",
|
|
1031
|
+
"description": "app to run command against",
|
|
1032
|
+
"name": "app",
|
|
1033
|
+
"required": true,
|
|
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"
|
|
1009
1045
|
}
|
|
1010
1046
|
},
|
|
1011
1047
|
"hasDynamicHelp": false,
|
|
1012
1048
|
"hiddenAliases": [],
|
|
1013
|
-
"id": "
|
|
1049
|
+
"id": "apps:lock",
|
|
1014
1050
|
"pluginAlias": "heroku",
|
|
1015
1051
|
"pluginName": "heroku",
|
|
1016
1052
|
"pluginType": "core",
|
|
1017
1053
|
"strict": true,
|
|
1018
|
-
"topic": "
|
|
1054
|
+
"topic": "apps",
|
|
1019
1055
|
"isESM": false,
|
|
1020
1056
|
"relativePath": [
|
|
1021
1057
|
"lib",
|
|
1022
1058
|
"commands",
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1059
|
+
"apps",
|
|
1060
|
+
"lock.js"
|
|
1025
1061
|
]
|
|
1026
1062
|
},
|
|
1027
|
-
"
|
|
1063
|
+
"apps:open": {
|
|
1028
1064
|
"aliases": [],
|
|
1029
1065
|
"args": {
|
|
1030
|
-
"
|
|
1031
|
-
"description": "
|
|
1032
|
-
"name": "
|
|
1033
|
-
"required":
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
"description": "rename an add-on",
|
|
1042
|
-
"flags": {},
|
|
1043
|
-
"hasDynamicHelp": false,
|
|
1044
|
-
"hiddenAliases": [],
|
|
1045
|
-
"id": "addons:rename",
|
|
1046
|
-
"pluginAlias": "heroku",
|
|
1047
|
-
"pluginName": "heroku",
|
|
1048
|
-
"pluginType": "core",
|
|
1049
|
-
"strict": true,
|
|
1050
|
-
"topic": "addons",
|
|
1051
|
-
"isESM": false,
|
|
1052
|
-
"relativePath": [
|
|
1053
|
-
"lib",
|
|
1054
|
-
"commands",
|
|
1055
|
-
"addons",
|
|
1056
|
-
"rename.js"
|
|
1057
|
-
]
|
|
1058
|
-
},
|
|
1059
|
-
"addons:services": {
|
|
1060
|
-
"aliases": [],
|
|
1061
|
-
"args": {},
|
|
1062
|
-
"description": "list all available add-on services",
|
|
1066
|
+
"path": {
|
|
1067
|
+
"description": "base URL path of app",
|
|
1068
|
+
"name": "path",
|
|
1069
|
+
"required": false
|
|
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
|
+
],
|
|
1063
1077
|
"flags": {
|
|
1064
|
-
"
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1067
|
-
"
|
|
1068
|
-
"
|
|
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"
|
|
1086
|
+
},
|
|
1087
|
+
"remote": {
|
|
1088
|
+
"char": "r",
|
|
1089
|
+
"description": "git remote of app to use",
|
|
1090
|
+
"name": "remote",
|
|
1091
|
+
"hasDynamicHelp": false,
|
|
1092
|
+
"multiple": false,
|
|
1093
|
+
"type": "option"
|
|
1069
1094
|
}
|
|
1070
1095
|
},
|
|
1071
1096
|
"hasDynamicHelp": false,
|
|
1072
|
-
"hiddenAliases": [
|
|
1073
|
-
|
|
1097
|
+
"hiddenAliases": [
|
|
1098
|
+
"open"
|
|
1099
|
+
],
|
|
1100
|
+
"id": "apps:open",
|
|
1074
1101
|
"pluginAlias": "heroku",
|
|
1075
1102
|
"pluginName": "heroku",
|
|
1076
1103
|
"pluginType": "core",
|
|
1077
1104
|
"strict": true,
|
|
1078
|
-
"topic": "
|
|
1105
|
+
"topic": "apps",
|
|
1079
1106
|
"isESM": false,
|
|
1080
1107
|
"relativePath": [
|
|
1081
1108
|
"lib",
|
|
1082
1109
|
"commands",
|
|
1083
|
-
"
|
|
1084
|
-
"
|
|
1110
|
+
"apps",
|
|
1111
|
+
"open.js"
|
|
1085
1112
|
]
|
|
1086
1113
|
},
|
|
1087
|
-
"
|
|
1088
|
-
"aliases": [
|
|
1089
|
-
"addons:downgrade"
|
|
1090
|
-
],
|
|
1114
|
+
"apps:rename": {
|
|
1115
|
+
"aliases": [],
|
|
1091
1116
|
"args": {
|
|
1092
|
-
"
|
|
1093
|
-
"description": "
|
|
1094
|
-
"name": "
|
|
1117
|
+
"newname": {
|
|
1118
|
+
"description": "new unique name of the app",
|
|
1119
|
+
"name": "newname",
|
|
1095
1120
|
"required": true
|
|
1096
|
-
},
|
|
1097
|
-
"plan": {
|
|
1098
|
-
"description": "unique identifier or name of the plan",
|
|
1099
|
-
"name": "plan"
|
|
1100
1121
|
}
|
|
1101
1122
|
},
|
|
1102
|
-
"description": "
|
|
1123
|
+
"description": "rename an app",
|
|
1103
1124
|
"examples": [
|
|
1104
|
-
"
|
|
1125
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1105
1126
|
],
|
|
1106
1127
|
"flags": {
|
|
1107
1128
|
"app": {
|
|
1108
1129
|
"char": "a",
|
|
1109
1130
|
"description": "app to run command against",
|
|
1110
1131
|
"name": "app",
|
|
1132
|
+
"required": true,
|
|
1111
1133
|
"hasDynamicHelp": false,
|
|
1112
1134
|
"multiple": false,
|
|
1113
1135
|
"type": "option"
|
|
@@ -1122,37 +1144,52 @@
|
|
|
1122
1144
|
}
|
|
1123
1145
|
},
|
|
1124
1146
|
"hasDynamicHelp": false,
|
|
1125
|
-
"hiddenAliases": [
|
|
1126
|
-
|
|
1147
|
+
"hiddenAliases": [
|
|
1148
|
+
"rename"
|
|
1149
|
+
],
|
|
1150
|
+
"id": "apps:rename",
|
|
1127
1151
|
"pluginAlias": "heroku",
|
|
1128
1152
|
"pluginName": "heroku",
|
|
1129
1153
|
"pluginType": "core",
|
|
1130
1154
|
"strict": true,
|
|
1131
|
-
"
|
|
1155
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1156
|
+
"topic": "apps",
|
|
1132
1157
|
"isESM": false,
|
|
1133
1158
|
"relativePath": [
|
|
1134
1159
|
"lib",
|
|
1135
1160
|
"commands",
|
|
1136
|
-
"
|
|
1137
|
-
"
|
|
1161
|
+
"apps",
|
|
1162
|
+
"rename.js"
|
|
1138
1163
|
]
|
|
1139
1164
|
},
|
|
1140
|
-
"
|
|
1165
|
+
"apps:transfer": {
|
|
1141
1166
|
"aliases": [],
|
|
1142
1167
|
"args": {
|
|
1143
|
-
"
|
|
1144
|
-
"description": "
|
|
1145
|
-
"name": "
|
|
1168
|
+
"recipient": {
|
|
1169
|
+
"description": "user or team to transfer applications to",
|
|
1170
|
+
"name": "recipient",
|
|
1171
|
+
"required": true
|
|
1146
1172
|
}
|
|
1147
1173
|
},
|
|
1148
|
-
"description": "
|
|
1174
|
+
"description": "transfer applications to another user or team",
|
|
1175
|
+
"examples": [
|
|
1176
|
+
"$ 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..."
|
|
1177
|
+
],
|
|
1149
1178
|
"flags": {
|
|
1150
|
-
"
|
|
1151
|
-
"
|
|
1152
|
-
"
|
|
1153
|
-
"
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
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"
|
|
1156
1193
|
},
|
|
1157
1194
|
"app": {
|
|
1158
1195
|
"char": "a",
|
|
@@ -1169,223 +1206,178 @@
|
|
|
1169
1206
|
"hasDynamicHelp": false,
|
|
1170
1207
|
"multiple": false,
|
|
1171
1208
|
"type": "option"
|
|
1209
|
+
},
|
|
1210
|
+
"confirm": {
|
|
1211
|
+
"char": "c",
|
|
1212
|
+
"hidden": true,
|
|
1213
|
+
"name": "confirm",
|
|
1214
|
+
"hasDynamicHelp": false,
|
|
1215
|
+
"multiple": false,
|
|
1216
|
+
"type": "option"
|
|
1172
1217
|
}
|
|
1173
1218
|
},
|
|
1174
1219
|
"hasDynamicHelp": false,
|
|
1175
1220
|
"hiddenAliases": [],
|
|
1176
|
-
"id": "
|
|
1221
|
+
"id": "apps:transfer",
|
|
1177
1222
|
"pluginAlias": "heroku",
|
|
1178
1223
|
"pluginName": "heroku",
|
|
1179
1224
|
"pluginType": "core",
|
|
1180
1225
|
"strict": true,
|
|
1181
|
-
"topic": "
|
|
1226
|
+
"topic": "apps",
|
|
1182
1227
|
"isESM": false,
|
|
1183
1228
|
"relativePath": [
|
|
1184
1229
|
"lib",
|
|
1185
1230
|
"commands",
|
|
1186
|
-
"
|
|
1187
|
-
"
|
|
1231
|
+
"apps",
|
|
1232
|
+
"transfer.js"
|
|
1188
1233
|
]
|
|
1189
1234
|
},
|
|
1190
|
-
"apps:
|
|
1191
|
-
"aliases": [
|
|
1192
|
-
|
|
1193
|
-
"app": {
|
|
1194
|
-
"description": "name of app to create",
|
|
1195
|
-
"name": "app",
|
|
1196
|
-
"required": false
|
|
1197
|
-
}
|
|
1198
|
-
},
|
|
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"
|
|
1235
|
+
"apps:unlock": {
|
|
1236
|
+
"aliases": [
|
|
1237
|
+
"unlock"
|
|
1202
1238
|
],
|
|
1239
|
+
"args": {},
|
|
1240
|
+
"description": "unlock an app so any team member can join",
|
|
1203
1241
|
"flags": {
|
|
1204
1242
|
"app": {
|
|
1205
|
-
"
|
|
1243
|
+
"char": "a",
|
|
1244
|
+
"description": "app to run command against",
|
|
1206
1245
|
"name": "app",
|
|
1246
|
+
"required": true,
|
|
1207
1247
|
"hasDynamicHelp": false,
|
|
1208
1248
|
"multiple": false,
|
|
1209
1249
|
"type": "option"
|
|
1210
1250
|
},
|
|
1211
|
-
"addons": {
|
|
1212
|
-
"description": "comma-delimited list of addons to install",
|
|
1213
|
-
"name": "addons",
|
|
1214
|
-
"hasDynamicHelp": false,
|
|
1215
|
-
"multiple": false,
|
|
1216
|
-
"type": "option"
|
|
1217
|
-
},
|
|
1218
|
-
"buildpack": {
|
|
1219
|
-
"char": "b",
|
|
1220
|
-
"description": "buildpack url to use for this app",
|
|
1221
|
-
"name": "buildpack",
|
|
1222
|
-
"hasDynamicHelp": false,
|
|
1223
|
-
"multiple": false,
|
|
1224
|
-
"type": "option"
|
|
1225
|
-
},
|
|
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"
|
|
1240
|
-
},
|
|
1241
1251
|
"remote": {
|
|
1242
1252
|
"char": "r",
|
|
1243
|
-
"description": "
|
|
1253
|
+
"description": "git remote of app to use",
|
|
1244
1254
|
"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
1255
|
"hasDynamicHelp": false,
|
|
1255
1256
|
"multiple": false,
|
|
1256
1257
|
"type": "option"
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
"hasDynamicHelp": false,
|
|
1261
|
+
"hiddenAliases": [],
|
|
1262
|
+
"id": "apps:unlock",
|
|
1263
|
+
"pluginAlias": "heroku",
|
|
1264
|
+
"pluginName": "heroku",
|
|
1265
|
+
"pluginType": "core",
|
|
1266
|
+
"strict": true,
|
|
1267
|
+
"topic": "apps",
|
|
1268
|
+
"isESM": false,
|
|
1269
|
+
"relativePath": [
|
|
1270
|
+
"lib",
|
|
1271
|
+
"commands",
|
|
1272
|
+
"apps",
|
|
1273
|
+
"unlock.js"
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
"addons:attach": {
|
|
1277
|
+
"aliases": [],
|
|
1278
|
+
"args": {
|
|
1279
|
+
"addon_name": {
|
|
1280
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1281
|
+
"name": "addon_name",
|
|
1282
|
+
"required": true
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"description": "attach an existing add-on resource to an app",
|
|
1286
|
+
"flags": {
|
|
1287
|
+
"as": {
|
|
1288
|
+
"description": "name for add-on attachment",
|
|
1289
|
+
"name": "as",
|
|
1261
1290
|
"hasDynamicHelp": false,
|
|
1262
1291
|
"multiple": false,
|
|
1263
1292
|
"type": "option"
|
|
1264
1293
|
},
|
|
1265
|
-
"
|
|
1266
|
-
"description": "
|
|
1267
|
-
"name": "
|
|
1294
|
+
"credential": {
|
|
1295
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
1296
|
+
"name": "credential",
|
|
1268
1297
|
"hasDynamicHelp": false,
|
|
1269
1298
|
"multiple": false,
|
|
1270
1299
|
"type": "option"
|
|
1271
1300
|
},
|
|
1272
|
-
"
|
|
1273
|
-
"description": "
|
|
1274
|
-
"
|
|
1275
|
-
"name": "internal-routing",
|
|
1276
|
-
"allowNo": false,
|
|
1277
|
-
"type": "boolean"
|
|
1278
|
-
},
|
|
1279
|
-
"features": {
|
|
1280
|
-
"hidden": true,
|
|
1281
|
-
"name": "features",
|
|
1301
|
+
"confirm": {
|
|
1302
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
1303
|
+
"name": "confirm",
|
|
1282
1304
|
"hasDynamicHelp": false,
|
|
1283
1305
|
"multiple": false,
|
|
1284
1306
|
"type": "option"
|
|
1285
1307
|
},
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1308
|
+
"app": {
|
|
1309
|
+
"char": "a",
|
|
1310
|
+
"description": "app to run command against",
|
|
1311
|
+
"name": "app",
|
|
1312
|
+
"required": true,
|
|
1289
1313
|
"hasDynamicHelp": false,
|
|
1290
1314
|
"multiple": false,
|
|
1291
1315
|
"type": "option"
|
|
1292
1316
|
},
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1296
|
-
"
|
|
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",
|
|
1317
|
+
"remote": {
|
|
1318
|
+
"char": "r",
|
|
1319
|
+
"description": "git remote of app to use",
|
|
1320
|
+
"name": "remote",
|
|
1309
1321
|
"hasDynamicHelp": false,
|
|
1310
1322
|
"multiple": false,
|
|
1311
1323
|
"type": "option"
|
|
1312
1324
|
}
|
|
1313
1325
|
},
|
|
1314
1326
|
"hasDynamicHelp": false,
|
|
1315
|
-
"hiddenAliases": [
|
|
1316
|
-
|
|
1317
|
-
],
|
|
1318
|
-
"id": "apps:create",
|
|
1327
|
+
"hiddenAliases": [],
|
|
1328
|
+
"id": "addons:attach",
|
|
1319
1329
|
"pluginAlias": "heroku",
|
|
1320
1330
|
"pluginName": "heroku",
|
|
1321
1331
|
"pluginType": "core",
|
|
1322
1332
|
"strict": true,
|
|
1333
|
+
"topic": "addons",
|
|
1323
1334
|
"isESM": false,
|
|
1324
1335
|
"relativePath": [
|
|
1325
1336
|
"lib",
|
|
1326
1337
|
"commands",
|
|
1327
|
-
"
|
|
1328
|
-
"
|
|
1338
|
+
"addons",
|
|
1339
|
+
"attach.js"
|
|
1329
1340
|
]
|
|
1330
1341
|
},
|
|
1331
|
-
"
|
|
1342
|
+
"addons:create": {
|
|
1332
1343
|
"aliases": [],
|
|
1333
1344
|
"args": {
|
|
1334
|
-
"
|
|
1335
|
-
"
|
|
1336
|
-
"name": "
|
|
1345
|
+
"service:plan": {
|
|
1346
|
+
"description": "unique identifier or unique name of the add-on service plan",
|
|
1347
|
+
"name": "service:plan",
|
|
1348
|
+
"required": true
|
|
1337
1349
|
}
|
|
1338
1350
|
},
|
|
1339
|
-
"description": "
|
|
1340
|
-
"
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
"description": "
|
|
1344
|
-
"name": "
|
|
1351
|
+
"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",
|
|
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",
|
|
1353
|
+
"flags": {
|
|
1354
|
+
"name": {
|
|
1355
|
+
"description": "name for the add-on resource",
|
|
1356
|
+
"name": "name",
|
|
1345
1357
|
"hasDynamicHelp": false,
|
|
1346
1358
|
"multiple": false,
|
|
1347
1359
|
"type": "option"
|
|
1348
1360
|
},
|
|
1349
|
-
"
|
|
1350
|
-
"
|
|
1351
|
-
"
|
|
1352
|
-
"name": "remote",
|
|
1361
|
+
"as": {
|
|
1362
|
+
"description": "name for the initial add-on attachment",
|
|
1363
|
+
"name": "as",
|
|
1353
1364
|
"hasDynamicHelp": false,
|
|
1354
1365
|
"multiple": false,
|
|
1355
1366
|
"type": "option"
|
|
1356
1367
|
},
|
|
1357
1368
|
"confirm": {
|
|
1358
|
-
"
|
|
1369
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
1359
1370
|
"name": "confirm",
|
|
1360
1371
|
"hasDynamicHelp": false,
|
|
1361
1372
|
"multiple": false,
|
|
1362
1373
|
"type": "option"
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
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": {
|
|
1374
|
+
},
|
|
1375
|
+
"wait": {
|
|
1376
|
+
"description": "watch add-on creation status and exit when complete",
|
|
1377
|
+
"name": "wait",
|
|
1378
|
+
"allowNo": false,
|
|
1379
|
+
"type": "boolean"
|
|
1380
|
+
},
|
|
1389
1381
|
"app": {
|
|
1390
1382
|
"char": "a",
|
|
1391
1383
|
"description": "app to run command against",
|
|
@@ -1402,98 +1394,73 @@
|
|
|
1402
1394
|
"hasDynamicHelp": false,
|
|
1403
1395
|
"multiple": false,
|
|
1404
1396
|
"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"
|
|
1431
1397
|
}
|
|
1432
1398
|
},
|
|
1433
1399
|
"hasDynamicHelp": false,
|
|
1434
|
-
"hiddenAliases": [
|
|
1435
|
-
|
|
1400
|
+
"hiddenAliases": [
|
|
1401
|
+
"addons:add"
|
|
1402
|
+
],
|
|
1403
|
+
"id": "addons:create",
|
|
1436
1404
|
"pluginAlias": "heroku",
|
|
1437
1405
|
"pluginName": "heroku",
|
|
1438
1406
|
"pluginType": "core",
|
|
1439
|
-
"strict":
|
|
1407
|
+
"strict": false,
|
|
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",
|
|
1440
1410
|
"isESM": false,
|
|
1441
1411
|
"relativePath": [
|
|
1442
1412
|
"lib",
|
|
1443
1413
|
"commands",
|
|
1444
|
-
"
|
|
1445
|
-
"
|
|
1414
|
+
"addons",
|
|
1415
|
+
"create.js"
|
|
1446
1416
|
]
|
|
1447
1417
|
},
|
|
1448
|
-
"
|
|
1418
|
+
"addons:destroy": {
|
|
1449
1419
|
"aliases": [],
|
|
1450
|
-
"args": {
|
|
1451
|
-
|
|
1420
|
+
"args": {
|
|
1421
|
+
"addonName": {
|
|
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",
|
|
1452
1428
|
"examples": [
|
|
1453
|
-
"
|
|
1429
|
+
"addons:destroy [ADDON]... [flags]"
|
|
1454
1430
|
],
|
|
1455
1431
|
"flags": {
|
|
1456
|
-
"
|
|
1457
|
-
"char": "
|
|
1458
|
-
"description": "
|
|
1459
|
-
"name": "
|
|
1460
|
-
"allowNo": false,
|
|
1461
|
-
"type": "boolean"
|
|
1462
|
-
},
|
|
1463
|
-
"json": {
|
|
1464
|
-
"char": "j",
|
|
1465
|
-
"description": "output in json format",
|
|
1466
|
-
"name": "json",
|
|
1432
|
+
"force": {
|
|
1433
|
+
"char": "f",
|
|
1434
|
+
"description": "allow destruction even if connected to other apps",
|
|
1435
|
+
"name": "force",
|
|
1467
1436
|
"allowNo": false,
|
|
1468
1437
|
"type": "boolean"
|
|
1469
1438
|
},
|
|
1470
|
-
"
|
|
1471
|
-
"char": "
|
|
1472
|
-
"
|
|
1473
|
-
"name": "space",
|
|
1439
|
+
"confirm": {
|
|
1440
|
+
"char": "c",
|
|
1441
|
+
"name": "confirm",
|
|
1474
1442
|
"hasDynamicHelp": false,
|
|
1475
1443
|
"multiple": false,
|
|
1476
1444
|
"type": "option"
|
|
1477
1445
|
},
|
|
1478
|
-
"
|
|
1479
|
-
"
|
|
1480
|
-
"
|
|
1481
|
-
"name": "personal",
|
|
1446
|
+
"wait": {
|
|
1447
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
1448
|
+
"name": "wait",
|
|
1482
1449
|
"allowNo": false,
|
|
1483
1450
|
"type": "boolean"
|
|
1484
1451
|
},
|
|
1485
|
-
"
|
|
1486
|
-
"char": "
|
|
1487
|
-
"description": "
|
|
1488
|
-
"
|
|
1489
|
-
"
|
|
1490
|
-
"
|
|
1491
|
-
"type": "
|
|
1452
|
+
"app": {
|
|
1453
|
+
"char": "a",
|
|
1454
|
+
"description": "app to run command against",
|
|
1455
|
+
"name": "app",
|
|
1456
|
+
"hasDynamicHelp": false,
|
|
1457
|
+
"multiple": false,
|
|
1458
|
+
"type": "option"
|
|
1492
1459
|
},
|
|
1493
|
-
"
|
|
1494
|
-
"char": "
|
|
1495
|
-
"description": "
|
|
1496
|
-
"name": "
|
|
1460
|
+
"remote": {
|
|
1461
|
+
"char": "r",
|
|
1462
|
+
"description": "git remote of app to use",
|
|
1463
|
+
"name": "remote",
|
|
1497
1464
|
"hasDynamicHelp": false,
|
|
1498
1465
|
"multiple": false,
|
|
1499
1466
|
"type": "option"
|
|
@@ -1501,41 +1468,38 @@
|
|
|
1501
1468
|
},
|
|
1502
1469
|
"hasDynamicHelp": false,
|
|
1503
1470
|
"hiddenAliases": [
|
|
1504
|
-
"
|
|
1505
|
-
"apps:list"
|
|
1471
|
+
"addons:remove"
|
|
1506
1472
|
],
|
|
1507
|
-
"id": "
|
|
1473
|
+
"id": "addons:destroy",
|
|
1508
1474
|
"pluginAlias": "heroku",
|
|
1509
1475
|
"pluginName": "heroku",
|
|
1510
1476
|
"pluginType": "core",
|
|
1511
|
-
"strict":
|
|
1512
|
-
"topic": "
|
|
1477
|
+
"strict": false,
|
|
1478
|
+
"topic": "addons",
|
|
1513
1479
|
"isESM": false,
|
|
1514
1480
|
"relativePath": [
|
|
1515
1481
|
"lib",
|
|
1516
1482
|
"commands",
|
|
1517
|
-
"
|
|
1518
|
-
"
|
|
1483
|
+
"addons",
|
|
1484
|
+
"destroy.js"
|
|
1519
1485
|
]
|
|
1520
1486
|
},
|
|
1521
|
-
"
|
|
1487
|
+
"addons:detach": {
|
|
1522
1488
|
"aliases": [],
|
|
1523
1489
|
"args": {
|
|
1524
|
-
"
|
|
1525
|
-
"
|
|
1526
|
-
"name": "
|
|
1490
|
+
"attachment_name": {
|
|
1491
|
+
"description": "unique identifier of the add-on attachment",
|
|
1492
|
+
"name": "attachment_name",
|
|
1493
|
+
"required": true
|
|
1527
1494
|
}
|
|
1528
1495
|
},
|
|
1529
|
-
"description": "
|
|
1530
|
-
"examples": [
|
|
1531
|
-
"$ heroku apps:info",
|
|
1532
|
-
"$ heroku apps:info --shell"
|
|
1533
|
-
],
|
|
1496
|
+
"description": "detach an existing add-on resource from an app",
|
|
1534
1497
|
"flags": {
|
|
1535
1498
|
"app": {
|
|
1536
1499
|
"char": "a",
|
|
1537
1500
|
"description": "app to run command against",
|
|
1538
1501
|
"name": "app",
|
|
1502
|
+
"required": true,
|
|
1539
1503
|
"hasDynamicHelp": false,
|
|
1540
1504
|
"multiple": false,
|
|
1541
1505
|
"type": "option"
|
|
@@ -1547,60 +1511,45 @@
|
|
|
1547
1511
|
"hasDynamicHelp": false,
|
|
1548
1512
|
"multiple": false,
|
|
1549
1513
|
"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"
|
|
1571
1514
|
}
|
|
1572
1515
|
},
|
|
1573
1516
|
"hasDynamicHelp": false,
|
|
1574
|
-
"hiddenAliases": [
|
|
1575
|
-
|
|
1576
|
-
],
|
|
1577
|
-
"id": "apps:info",
|
|
1517
|
+
"hiddenAliases": [],
|
|
1518
|
+
"id": "addons:detach",
|
|
1578
1519
|
"pluginAlias": "heroku",
|
|
1579
1520
|
"pluginName": "heroku",
|
|
1580
1521
|
"pluginType": "core",
|
|
1581
1522
|
"strict": true,
|
|
1582
|
-
"topic": "
|
|
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...",
|
|
1523
|
+
"topic": "addons",
|
|
1584
1524
|
"isESM": false,
|
|
1585
1525
|
"relativePath": [
|
|
1586
1526
|
"lib",
|
|
1587
1527
|
"commands",
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1528
|
+
"addons",
|
|
1529
|
+
"detach.js"
|
|
1590
1530
|
]
|
|
1591
1531
|
},
|
|
1592
|
-
"
|
|
1593
|
-
"aliases": [
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1532
|
+
"addons:docs": {
|
|
1533
|
+
"aliases": [],
|
|
1534
|
+
"args": {
|
|
1535
|
+
"addon": {
|
|
1536
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1537
|
+
"name": "addon",
|
|
1538
|
+
"required": true
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"description": "open an add-on's Dev Center documentation in your browser",
|
|
1598
1542
|
"flags": {
|
|
1543
|
+
"show-url": {
|
|
1544
|
+
"description": "show URL, do not open browser",
|
|
1545
|
+
"name": "show-url",
|
|
1546
|
+
"allowNo": false,
|
|
1547
|
+
"type": "boolean"
|
|
1548
|
+
},
|
|
1599
1549
|
"app": {
|
|
1600
1550
|
"char": "a",
|
|
1601
1551
|
"description": "app to run command against",
|
|
1602
1552
|
"name": "app",
|
|
1603
|
-
"required": true,
|
|
1604
1553
|
"hasDynamicHelp": false,
|
|
1605
1554
|
"multiple": false,
|
|
1606
1555
|
"type": "option"
|
|
@@ -1616,33 +1565,46 @@
|
|
|
1616
1565
|
},
|
|
1617
1566
|
"hasDynamicHelp": false,
|
|
1618
1567
|
"hiddenAliases": [],
|
|
1619
|
-
"id": "
|
|
1568
|
+
"id": "addons:docs",
|
|
1620
1569
|
"pluginAlias": "heroku",
|
|
1621
1570
|
"pluginName": "heroku",
|
|
1622
1571
|
"pluginType": "core",
|
|
1623
1572
|
"strict": true,
|
|
1624
|
-
"topic": "
|
|
1573
|
+
"topic": "addons",
|
|
1625
1574
|
"isESM": false,
|
|
1626
1575
|
"relativePath": [
|
|
1627
1576
|
"lib",
|
|
1628
1577
|
"commands",
|
|
1629
|
-
"
|
|
1630
|
-
"
|
|
1578
|
+
"addons",
|
|
1579
|
+
"docs.js"
|
|
1631
1580
|
]
|
|
1632
1581
|
},
|
|
1633
|
-
"
|
|
1634
|
-
"aliases": [
|
|
1635
|
-
|
|
1582
|
+
"addons": {
|
|
1583
|
+
"aliases": [],
|
|
1584
|
+
"args": {},
|
|
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"
|
|
1636
1589
|
],
|
|
1637
|
-
"args": {},
|
|
1638
|
-
"description": "remove yourself from a team app",
|
|
1639
|
-
"examples": "heroku apps:leave -a APP",
|
|
1640
1590
|
"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
|
+
},
|
|
1641
1604
|
"app": {
|
|
1642
1605
|
"char": "a",
|
|
1643
1606
|
"description": "app to run command against",
|
|
1644
1607
|
"name": "app",
|
|
1645
|
-
"required": true,
|
|
1646
1608
|
"hasDynamicHelp": false,
|
|
1647
1609
|
"multiple": false,
|
|
1648
1610
|
"type": "option"
|
|
@@ -1658,33 +1620,36 @@
|
|
|
1658
1620
|
},
|
|
1659
1621
|
"hasDynamicHelp": false,
|
|
1660
1622
|
"hiddenAliases": [],
|
|
1661
|
-
"id": "
|
|
1623
|
+
"id": "addons",
|
|
1662
1624
|
"pluginAlias": "heroku",
|
|
1663
1625
|
"pluginName": "heroku",
|
|
1664
1626
|
"pluginType": "core",
|
|
1665
1627
|
"strict": true,
|
|
1666
|
-
"
|
|
1667
|
-
"
|
|
1628
|
+
"usage": "addons [--all|--app APP]",
|
|
1629
|
+
"topic": "addons",
|
|
1668
1630
|
"isESM": false,
|
|
1669
1631
|
"relativePath": [
|
|
1670
1632
|
"lib",
|
|
1671
1633
|
"commands",
|
|
1672
|
-
"
|
|
1673
|
-
"
|
|
1634
|
+
"addons",
|
|
1635
|
+
"index.js"
|
|
1674
1636
|
]
|
|
1675
1637
|
},
|
|
1676
|
-
"
|
|
1677
|
-
"aliases": [
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1638
|
+
"addons:info": {
|
|
1639
|
+
"aliases": [],
|
|
1640
|
+
"args": {
|
|
1641
|
+
"addon": {
|
|
1642
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1643
|
+
"name": "addon",
|
|
1644
|
+
"required": true
|
|
1645
|
+
}
|
|
1646
|
+
},
|
|
1647
|
+
"description": "show detailed add-on resource and attachment information",
|
|
1682
1648
|
"flags": {
|
|
1683
1649
|
"app": {
|
|
1684
1650
|
"char": "a",
|
|
1685
1651
|
"description": "app to run command against",
|
|
1686
1652
|
"name": "app",
|
|
1687
|
-
"required": true,
|
|
1688
1653
|
"hasDynamicHelp": false,
|
|
1689
1654
|
"multiple": false,
|
|
1690
1655
|
"type": "option"
|
|
@@ -1700,40 +1665,42 @@
|
|
|
1700
1665
|
},
|
|
1701
1666
|
"hasDynamicHelp": false,
|
|
1702
1667
|
"hiddenAliases": [],
|
|
1703
|
-
"id": "
|
|
1668
|
+
"id": "addons:info",
|
|
1704
1669
|
"pluginAlias": "heroku",
|
|
1705
1670
|
"pluginName": "heroku",
|
|
1706
1671
|
"pluginType": "core",
|
|
1707
1672
|
"strict": true,
|
|
1708
|
-
"
|
|
1673
|
+
"usage": "addons:info ADDON",
|
|
1674
|
+
"topic": "addons",
|
|
1709
1675
|
"isESM": false,
|
|
1710
1676
|
"relativePath": [
|
|
1711
1677
|
"lib",
|
|
1712
1678
|
"commands",
|
|
1713
|
-
"
|
|
1714
|
-
"
|
|
1679
|
+
"addons",
|
|
1680
|
+
"info.js"
|
|
1715
1681
|
]
|
|
1716
1682
|
},
|
|
1717
|
-
"
|
|
1683
|
+
"addons:open": {
|
|
1718
1684
|
"aliases": [],
|
|
1719
1685
|
"args": {
|
|
1720
|
-
"
|
|
1721
|
-
"description": "
|
|
1722
|
-
"name": "
|
|
1723
|
-
"required":
|
|
1686
|
+
"addon": {
|
|
1687
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1688
|
+
"name": "addon",
|
|
1689
|
+
"required": true
|
|
1724
1690
|
}
|
|
1725
1691
|
},
|
|
1726
|
-
"description": "open
|
|
1727
|
-
"examples": [
|
|
1728
|
-
"$ heroku open -a myapp",
|
|
1729
|
-
"$ heroku open -a myapp /foo"
|
|
1730
|
-
],
|
|
1692
|
+
"description": "open an add-on's dashboard in your browser",
|
|
1731
1693
|
"flags": {
|
|
1694
|
+
"show-url": {
|
|
1695
|
+
"description": "show URL, do not open browser",
|
|
1696
|
+
"name": "show-url",
|
|
1697
|
+
"allowNo": false,
|
|
1698
|
+
"type": "boolean"
|
|
1699
|
+
},
|
|
1732
1700
|
"app": {
|
|
1733
1701
|
"char": "a",
|
|
1734
1702
|
"description": "app to run command against",
|
|
1735
1703
|
"name": "app",
|
|
1736
|
-
"required": true,
|
|
1737
1704
|
"hasDynamicHelp": false,
|
|
1738
1705
|
"multiple": false,
|
|
1739
1706
|
"type": "option"
|
|
@@ -1748,103 +1715,135 @@
|
|
|
1748
1715
|
}
|
|
1749
1716
|
},
|
|
1750
1717
|
"hasDynamicHelp": false,
|
|
1751
|
-
"hiddenAliases": [
|
|
1752
|
-
|
|
1753
|
-
],
|
|
1754
|
-
"id": "apps:open",
|
|
1718
|
+
"hiddenAliases": [],
|
|
1719
|
+
"id": "addons:open",
|
|
1755
1720
|
"pluginAlias": "heroku",
|
|
1756
1721
|
"pluginName": "heroku",
|
|
1757
1722
|
"pluginType": "core",
|
|
1758
1723
|
"strict": true,
|
|
1759
|
-
"topic": "
|
|
1724
|
+
"topic": "addons",
|
|
1760
1725
|
"isESM": false,
|
|
1761
1726
|
"relativePath": [
|
|
1762
1727
|
"lib",
|
|
1763
1728
|
"commands",
|
|
1764
|
-
"
|
|
1729
|
+
"addons",
|
|
1765
1730
|
"open.js"
|
|
1766
1731
|
]
|
|
1767
1732
|
},
|
|
1768
|
-
"
|
|
1733
|
+
"addons:plans": {
|
|
1769
1734
|
"aliases": [],
|
|
1770
1735
|
"args": {
|
|
1771
|
-
"
|
|
1772
|
-
"description": "
|
|
1773
|
-
"name": "
|
|
1736
|
+
"service": {
|
|
1737
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1738
|
+
"name": "service",
|
|
1774
1739
|
"required": true
|
|
1775
1740
|
}
|
|
1776
1741
|
},
|
|
1777
|
-
"description": "
|
|
1778
|
-
"examples": [
|
|
1779
|
-
"$ heroku apps:rename --app oldname newname"
|
|
1780
|
-
],
|
|
1742
|
+
"description": "list all available plans for an add-on service",
|
|
1781
1743
|
"flags": {
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1784
|
-
"
|
|
1785
|
-
"
|
|
1786
|
-
"
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1744
|
+
"json": {
|
|
1745
|
+
"description": "output in json format",
|
|
1746
|
+
"name": "json",
|
|
1747
|
+
"allowNo": false,
|
|
1748
|
+
"type": "boolean"
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
"hasDynamicHelp": false,
|
|
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
|
|
1790
1774
|
},
|
|
1791
|
-
"
|
|
1792
|
-
"
|
|
1793
|
-
"
|
|
1794
|
-
"
|
|
1795
|
-
"hasDynamicHelp": false,
|
|
1796
|
-
"multiple": false,
|
|
1797
|
-
"type": "option"
|
|
1775
|
+
"new_name": {
|
|
1776
|
+
"description": "new globally unique name of the add-on",
|
|
1777
|
+
"name": "new_name",
|
|
1778
|
+
"required": true
|
|
1798
1779
|
}
|
|
1799
1780
|
},
|
|
1781
|
+
"description": "rename an add-on",
|
|
1782
|
+
"flags": {},
|
|
1800
1783
|
"hasDynamicHelp": false,
|
|
1801
|
-
"hiddenAliases": [
|
|
1802
|
-
|
|
1803
|
-
],
|
|
1804
|
-
"id": "apps:rename",
|
|
1784
|
+
"hiddenAliases": [],
|
|
1785
|
+
"id": "addons:rename",
|
|
1805
1786
|
"pluginAlias": "heroku",
|
|
1806
1787
|
"pluginName": "heroku",
|
|
1807
1788
|
"pluginType": "core",
|
|
1808
1789
|
"strict": true,
|
|
1809
|
-
"
|
|
1810
|
-
"topic": "apps",
|
|
1790
|
+
"topic": "addons",
|
|
1811
1791
|
"isESM": false,
|
|
1812
1792
|
"relativePath": [
|
|
1813
1793
|
"lib",
|
|
1814
1794
|
"commands",
|
|
1815
|
-
"
|
|
1795
|
+
"addons",
|
|
1816
1796
|
"rename.js"
|
|
1817
1797
|
]
|
|
1818
1798
|
},
|
|
1819
|
-
"
|
|
1799
|
+
"addons:services": {
|
|
1820
1800
|
"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
|
+
],
|
|
1821
1831
|
"args": {
|
|
1822
|
-
"
|
|
1823
|
-
"description": "
|
|
1824
|
-
"name": "
|
|
1832
|
+
"addon": {
|
|
1833
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1834
|
+
"name": "addon",
|
|
1825
1835
|
"required": true
|
|
1836
|
+
},
|
|
1837
|
+
"plan": {
|
|
1838
|
+
"description": "unique identifier or name of the plan",
|
|
1839
|
+
"name": "plan"
|
|
1826
1840
|
}
|
|
1827
1841
|
},
|
|
1828
|
-
"description": "
|
|
1842
|
+
"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 ",
|
|
1829
1843
|
"examples": [
|
|
1830
|
-
"
|
|
1844
|
+
"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"
|
|
1831
1845
|
],
|
|
1832
1846
|
"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
|
-
},
|
|
1848
1847
|
"app": {
|
|
1849
1848
|
"char": "a",
|
|
1850
1849
|
"description": "app to run command against",
|
|
@@ -1860,44 +1859,45 @@
|
|
|
1860
1859
|
"hasDynamicHelp": false,
|
|
1861
1860
|
"multiple": false,
|
|
1862
1861
|
"type": "option"
|
|
1863
|
-
},
|
|
1864
|
-
"confirm": {
|
|
1865
|
-
"char": "c",
|
|
1866
|
-
"hidden": true,
|
|
1867
|
-
"name": "confirm",
|
|
1868
|
-
"hasDynamicHelp": false,
|
|
1869
|
-
"multiple": false,
|
|
1870
|
-
"type": "option"
|
|
1871
1862
|
}
|
|
1872
1863
|
},
|
|
1873
1864
|
"hasDynamicHelp": false,
|
|
1874
1865
|
"hiddenAliases": [],
|
|
1875
|
-
"id": "
|
|
1866
|
+
"id": "addons:upgrade",
|
|
1876
1867
|
"pluginAlias": "heroku",
|
|
1877
1868
|
"pluginName": "heroku",
|
|
1878
1869
|
"pluginType": "core",
|
|
1879
1870
|
"strict": true,
|
|
1880
|
-
"topic": "
|
|
1871
|
+
"topic": "addons",
|
|
1881
1872
|
"isESM": false,
|
|
1882
1873
|
"relativePath": [
|
|
1883
1874
|
"lib",
|
|
1884
1875
|
"commands",
|
|
1885
|
-
"
|
|
1886
|
-
"
|
|
1876
|
+
"addons",
|
|
1877
|
+
"upgrade.js"
|
|
1887
1878
|
]
|
|
1888
1879
|
},
|
|
1889
|
-
"
|
|
1890
|
-
"aliases": [
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1880
|
+
"addons:wait": {
|
|
1881
|
+
"aliases": [],
|
|
1882
|
+
"args": {
|
|
1883
|
+
"addon": {
|
|
1884
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1885
|
+
"name": "addon"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
"description": "show provisioning status of the add-ons on the app",
|
|
1895
1889
|
"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
|
+
},
|
|
1896
1897
|
"app": {
|
|
1897
1898
|
"char": "a",
|
|
1898
1899
|
"description": "app to run command against",
|
|
1899
1900
|
"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": "addons:wait",
|
|
1917
1917
|
"pluginAlias": "heroku",
|
|
1918
1918
|
"pluginName": "heroku",
|
|
1919
1919
|
"pluginType": "core",
|
|
1920
1920
|
"strict": true,
|
|
1921
|
-
"topic": "
|
|
1921
|
+
"topic": "addons",
|
|
1922
1922
|
"isESM": false,
|
|
1923
1923
|
"relativePath": [
|
|
1924
1924
|
"lib",
|
|
1925
1925
|
"commands",
|
|
1926
|
-
"
|
|
1927
|
-
"
|
|
1926
|
+
"addons",
|
|
1927
|
+
"wait.js"
|
|
1928
1928
|
]
|
|
1929
1929
|
},
|
|
1930
1930
|
"auth:login": {
|
|
@@ -10741,248 +10741,16 @@
|
|
|
10741
10741
|
]
|
|
10742
10742
|
},
|
|
10743
10743
|
"apps:stacks:set": {
|
|
10744
|
-
"aliases": [],
|
|
10745
|
-
"args": {
|
|
10746
|
-
"stack": {
|
|
10747
|
-
"description": "unique name or identifier of the stack",
|
|
10748
|
-
"name": "stack",
|
|
10749
|
-
"required": true
|
|
10750
|
-
}
|
|
10751
|
-
},
|
|
10752
|
-
"description": "set the stack of an app",
|
|
10753
|
-
"examples": "$ heroku stack:set heroku-24 -a myapp\nSetting stack to heroku-24... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp.",
|
|
10754
|
-
"flags": {
|
|
10755
|
-
"app": {
|
|
10756
|
-
"char": "a",
|
|
10757
|
-
"description": "app to run command against",
|
|
10758
|
-
"name": "app",
|
|
10759
|
-
"required": true,
|
|
10760
|
-
"hasDynamicHelp": false,
|
|
10761
|
-
"multiple": false,
|
|
10762
|
-
"type": "option"
|
|
10763
|
-
},
|
|
10764
|
-
"remote": {
|
|
10765
|
-
"char": "r",
|
|
10766
|
-
"description": "git remote of app to use",
|
|
10767
|
-
"name": "remote",
|
|
10768
|
-
"hasDynamicHelp": false,
|
|
10769
|
-
"multiple": false,
|
|
10770
|
-
"type": "option"
|
|
10771
|
-
}
|
|
10772
|
-
},
|
|
10773
|
-
"hasDynamicHelp": false,
|
|
10774
|
-
"hiddenAliases": [
|
|
10775
|
-
"stack:set"
|
|
10776
|
-
],
|
|
10777
|
-
"id": "apps:stacks:set",
|
|
10778
|
-
"pluginAlias": "heroku",
|
|
10779
|
-
"pluginName": "heroku",
|
|
10780
|
-
"pluginType": "core",
|
|
10781
|
-
"strict": true,
|
|
10782
|
-
"example": "$ heroku stack:set heroku-24 -a myapp\nSetting stack to heroku-24... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp.",
|
|
10783
|
-
"isESM": false,
|
|
10784
|
-
"relativePath": [
|
|
10785
|
-
"lib",
|
|
10786
|
-
"commands",
|
|
10787
|
-
"apps",
|
|
10788
|
-
"stacks",
|
|
10789
|
-
"set.js"
|
|
10790
|
-
]
|
|
10791
|
-
},
|
|
10792
|
-
"auth:2fa:disable": {
|
|
10793
|
-
"aliases": [
|
|
10794
|
-
"twofactor:disable",
|
|
10795
|
-
"2fa:disable"
|
|
10796
|
-
],
|
|
10797
|
-
"args": {},
|
|
10798
|
-
"description": "disables 2fa on account",
|
|
10799
|
-
"examples": "$ heroku auth:2fa:disable",
|
|
10800
|
-
"flags": {},
|
|
10801
|
-
"hasDynamicHelp": false,
|
|
10802
|
-
"hiddenAliases": [],
|
|
10803
|
-
"id": "auth:2fa:disable",
|
|
10804
|
-
"pluginAlias": "heroku",
|
|
10805
|
-
"pluginName": "heroku",
|
|
10806
|
-
"pluginType": "core",
|
|
10807
|
-
"strict": true,
|
|
10808
|
-
"example": "$ heroku auth:2fa:disable",
|
|
10809
|
-
"isESM": false,
|
|
10810
|
-
"relativePath": [
|
|
10811
|
-
"lib",
|
|
10812
|
-
"commands",
|
|
10813
|
-
"auth",
|
|
10814
|
-
"2fa",
|
|
10815
|
-
"disable.js"
|
|
10816
|
-
]
|
|
10817
|
-
},
|
|
10818
|
-
"auth:2fa": {
|
|
10819
|
-
"aliases": [
|
|
10820
|
-
"2fa",
|
|
10821
|
-
"twofactor"
|
|
10822
|
-
],
|
|
10823
|
-
"args": {},
|
|
10824
|
-
"description": "check 2fa status",
|
|
10825
|
-
"flags": {},
|
|
10826
|
-
"hasDynamicHelp": false,
|
|
10827
|
-
"hiddenAliases": [],
|
|
10828
|
-
"id": "auth:2fa",
|
|
10829
|
-
"pluginAlias": "heroku",
|
|
10830
|
-
"pluginName": "heroku",
|
|
10831
|
-
"pluginType": "core",
|
|
10832
|
-
"strict": true,
|
|
10833
|
-
"isESM": false,
|
|
10834
|
-
"relativePath": [
|
|
10835
|
-
"lib",
|
|
10836
|
-
"commands",
|
|
10837
|
-
"auth",
|
|
10838
|
-
"2fa",
|
|
10839
|
-
"index.js"
|
|
10840
|
-
]
|
|
10841
|
-
},
|
|
10842
|
-
"certs:auto:disable": {
|
|
10843
|
-
"aliases": [],
|
|
10844
|
-
"args": {},
|
|
10845
|
-
"description": "disable ACM for an app",
|
|
10846
|
-
"flags": {
|
|
10847
|
-
"confirm": {
|
|
10848
|
-
"char": "c",
|
|
10849
|
-
"hidden": true,
|
|
10850
|
-
"name": "confirm",
|
|
10851
|
-
"hasDynamicHelp": false,
|
|
10852
|
-
"multiple": false,
|
|
10853
|
-
"type": "option"
|
|
10854
|
-
},
|
|
10855
|
-
"app": {
|
|
10856
|
-
"char": "a",
|
|
10857
|
-
"description": "app to run command against",
|
|
10858
|
-
"name": "app",
|
|
10859
|
-
"required": true,
|
|
10860
|
-
"hasDynamicHelp": false,
|
|
10861
|
-
"multiple": false,
|
|
10862
|
-
"type": "option"
|
|
10863
|
-
},
|
|
10864
|
-
"remote": {
|
|
10865
|
-
"char": "r",
|
|
10866
|
-
"description": "git remote of app to use",
|
|
10867
|
-
"name": "remote",
|
|
10868
|
-
"hasDynamicHelp": false,
|
|
10869
|
-
"multiple": false,
|
|
10870
|
-
"type": "option"
|
|
10871
|
-
}
|
|
10872
|
-
},
|
|
10873
|
-
"hasDynamicHelp": false,
|
|
10874
|
-
"hiddenAliases": [],
|
|
10875
|
-
"id": "certs:auto:disable",
|
|
10876
|
-
"pluginAlias": "heroku",
|
|
10877
|
-
"pluginName": "heroku",
|
|
10878
|
-
"pluginType": "core",
|
|
10879
|
-
"strict": true,
|
|
10880
|
-
"topic": "certs",
|
|
10881
|
-
"isESM": false,
|
|
10882
|
-
"relativePath": [
|
|
10883
|
-
"lib",
|
|
10884
|
-
"commands",
|
|
10885
|
-
"certs",
|
|
10886
|
-
"auto",
|
|
10887
|
-
"disable.js"
|
|
10888
|
-
]
|
|
10889
|
-
},
|
|
10890
|
-
"certs:auto:enable": {
|
|
10891
|
-
"aliases": [],
|
|
10892
|
-
"args": {},
|
|
10893
|
-
"description": "enable ACM status for an app",
|
|
10894
|
-
"flags": {
|
|
10895
|
-
"wait": {
|
|
10896
|
-
"description": "watch ACM status and exit when complete",
|
|
10897
|
-
"name": "wait",
|
|
10898
|
-
"allowNo": false,
|
|
10899
|
-
"type": "boolean"
|
|
10900
|
-
},
|
|
10901
|
-
"app": {
|
|
10902
|
-
"char": "a",
|
|
10903
|
-
"description": "app to run command against",
|
|
10904
|
-
"name": "app",
|
|
10905
|
-
"required": true,
|
|
10906
|
-
"hasDynamicHelp": false,
|
|
10907
|
-
"multiple": false,
|
|
10908
|
-
"type": "option"
|
|
10909
|
-
},
|
|
10910
|
-
"remote": {
|
|
10911
|
-
"char": "r",
|
|
10912
|
-
"description": "git remote of app to use",
|
|
10913
|
-
"name": "remote",
|
|
10914
|
-
"hasDynamicHelp": false,
|
|
10915
|
-
"multiple": false,
|
|
10916
|
-
"type": "option"
|
|
10917
|
-
}
|
|
10918
|
-
},
|
|
10919
|
-
"hasDynamicHelp": false,
|
|
10920
|
-
"hiddenAliases": [],
|
|
10921
|
-
"id": "certs:auto:enable",
|
|
10922
|
-
"pluginAlias": "heroku",
|
|
10923
|
-
"pluginName": "heroku",
|
|
10924
|
-
"pluginType": "core",
|
|
10925
|
-
"strict": true,
|
|
10926
|
-
"topic": "certs",
|
|
10927
|
-
"isESM": false,
|
|
10928
|
-
"relativePath": [
|
|
10929
|
-
"lib",
|
|
10930
|
-
"commands",
|
|
10931
|
-
"certs",
|
|
10932
|
-
"auto",
|
|
10933
|
-
"enable.js"
|
|
10934
|
-
]
|
|
10935
|
-
},
|
|
10936
|
-
"certs:auto": {
|
|
10937
|
-
"aliases": [],
|
|
10938
|
-
"args": {},
|
|
10939
|
-
"description": "show ACM status for an app",
|
|
10940
|
-
"flags": {
|
|
10941
|
-
"wait": {
|
|
10942
|
-
"description": "watch ACM status and display the status when complete",
|
|
10943
|
-
"name": "wait",
|
|
10944
|
-
"allowNo": false,
|
|
10945
|
-
"type": "boolean"
|
|
10946
|
-
},
|
|
10947
|
-
"app": {
|
|
10948
|
-
"char": "a",
|
|
10949
|
-
"description": "app to run command against",
|
|
10950
|
-
"name": "app",
|
|
10951
|
-
"required": true,
|
|
10952
|
-
"hasDynamicHelp": false,
|
|
10953
|
-
"multiple": false,
|
|
10954
|
-
"type": "option"
|
|
10955
|
-
},
|
|
10956
|
-
"remote": {
|
|
10957
|
-
"char": "r",
|
|
10958
|
-
"description": "git remote of app to use",
|
|
10959
|
-
"name": "remote",
|
|
10960
|
-
"hasDynamicHelp": false,
|
|
10961
|
-
"multiple": false,
|
|
10962
|
-
"type": "option"
|
|
10963
|
-
}
|
|
10964
|
-
},
|
|
10965
|
-
"hasDynamicHelp": false,
|
|
10966
|
-
"hiddenAliases": [],
|
|
10967
|
-
"id": "certs:auto",
|
|
10968
|
-
"pluginAlias": "heroku",
|
|
10969
|
-
"pluginName": "heroku",
|
|
10970
|
-
"pluginType": "core",
|
|
10971
|
-
"strict": true,
|
|
10972
|
-
"topic": "certs",
|
|
10973
|
-
"isESM": false,
|
|
10974
|
-
"relativePath": [
|
|
10975
|
-
"lib",
|
|
10976
|
-
"commands",
|
|
10977
|
-
"certs",
|
|
10978
|
-
"auto",
|
|
10979
|
-
"index.js"
|
|
10980
|
-
]
|
|
10981
|
-
},
|
|
10982
|
-
"certs:auto:refresh": {
|
|
10983
|
-
"aliases": [],
|
|
10984
|
-
"args": {},
|
|
10985
|
-
"description": "refresh ACM for an app",
|
|
10744
|
+
"aliases": [],
|
|
10745
|
+
"args": {
|
|
10746
|
+
"stack": {
|
|
10747
|
+
"description": "unique name or identifier of the stack",
|
|
10748
|
+
"name": "stack",
|
|
10749
|
+
"required": true
|
|
10750
|
+
}
|
|
10751
|
+
},
|
|
10752
|
+
"description": "set the stack of an app",
|
|
10753
|
+
"examples": "$ heroku stack:set heroku-24 -a myapp\nSetting stack to heroku-24... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp.",
|
|
10986
10754
|
"flags": {
|
|
10987
10755
|
"app": {
|
|
10988
10756
|
"char": "a",
|
|
@@ -11003,39 +10771,61 @@
|
|
|
11003
10771
|
}
|
|
11004
10772
|
},
|
|
11005
10773
|
"hasDynamicHelp": false,
|
|
10774
|
+
"hiddenAliases": [
|
|
10775
|
+
"stack:set"
|
|
10776
|
+
],
|
|
10777
|
+
"id": "apps:stacks:set",
|
|
10778
|
+
"pluginAlias": "heroku",
|
|
10779
|
+
"pluginName": "heroku",
|
|
10780
|
+
"pluginType": "core",
|
|
10781
|
+
"strict": true,
|
|
10782
|
+
"example": "$ heroku stack:set heroku-24 -a myapp\nSetting stack to heroku-24... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp.",
|
|
10783
|
+
"isESM": false,
|
|
10784
|
+
"relativePath": [
|
|
10785
|
+
"lib",
|
|
10786
|
+
"commands",
|
|
10787
|
+
"apps",
|
|
10788
|
+
"stacks",
|
|
10789
|
+
"set.js"
|
|
10790
|
+
]
|
|
10791
|
+
},
|
|
10792
|
+
"auth:2fa:disable": {
|
|
10793
|
+
"aliases": [
|
|
10794
|
+
"twofactor:disable",
|
|
10795
|
+
"2fa:disable"
|
|
10796
|
+
],
|
|
10797
|
+
"args": {},
|
|
10798
|
+
"description": "disables 2fa on account",
|
|
10799
|
+
"examples": "$ heroku auth:2fa:disable",
|
|
10800
|
+
"flags": {},
|
|
10801
|
+
"hasDynamicHelp": false,
|
|
11006
10802
|
"hiddenAliases": [],
|
|
11007
|
-
"id": "
|
|
10803
|
+
"id": "auth:2fa:disable",
|
|
11008
10804
|
"pluginAlias": "heroku",
|
|
11009
10805
|
"pluginName": "heroku",
|
|
11010
10806
|
"pluginType": "core",
|
|
11011
10807
|
"strict": true,
|
|
11012
|
-
"
|
|
10808
|
+
"example": "$ heroku auth:2fa:disable",
|
|
11013
10809
|
"isESM": false,
|
|
11014
10810
|
"relativePath": [
|
|
11015
10811
|
"lib",
|
|
11016
10812
|
"commands",
|
|
11017
|
-
"
|
|
11018
|
-
"
|
|
11019
|
-
"
|
|
10813
|
+
"auth",
|
|
10814
|
+
"2fa",
|
|
10815
|
+
"disable.js"
|
|
11020
10816
|
]
|
|
11021
10817
|
},
|
|
11022
|
-
"
|
|
11023
|
-
"aliases": [
|
|
10818
|
+
"auth:2fa": {
|
|
10819
|
+
"aliases": [
|
|
10820
|
+
"2fa",
|
|
10821
|
+
"twofactor"
|
|
10822
|
+
],
|
|
11024
10823
|
"args": {},
|
|
11025
|
-
"description": "
|
|
11026
|
-
"flags": {
|
|
11027
|
-
"help": {
|
|
11028
|
-
"char": "h",
|
|
11029
|
-
"description": "Show CLI help.",
|
|
11030
|
-
"name": "help",
|
|
11031
|
-
"allowNo": false,
|
|
11032
|
-
"type": "boolean"
|
|
11033
|
-
}
|
|
11034
|
-
},
|
|
10824
|
+
"description": "check 2fa status",
|
|
10825
|
+
"flags": {},
|
|
11035
10826
|
"hasDynamicHelp": false,
|
|
11036
|
-
"hidden": true,
|
|
11037
10827
|
"hiddenAliases": [],
|
|
11038
|
-
"id": "
|
|
10828
|
+
"id": "auth:2fa",
|
|
11039
10829
|
"pluginAlias": "heroku",
|
|
11040
10830
|
"pluginName": "heroku",
|
|
11041
10831
|
"pluginType": "core",
|
|
@@ -11044,9 +10834,9 @@
|
|
|
11044
10834
|
"relativePath": [
|
|
11045
10835
|
"lib",
|
|
11046
10836
|
"commands",
|
|
11047
|
-
"
|
|
11048
|
-
"
|
|
11049
|
-
"
|
|
10837
|
+
"auth",
|
|
10838
|
+
"2fa",
|
|
10839
|
+
"index.js"
|
|
11050
10840
|
]
|
|
11051
10841
|
},
|
|
11052
10842
|
"ci:config:get": {
|
|
@@ -11266,19 +11056,229 @@
|
|
|
11266
11056
|
},
|
|
11267
11057
|
"hasDynamicHelp": false,
|
|
11268
11058
|
"hiddenAliases": [],
|
|
11269
|
-
"id": "ci:config:unset",
|
|
11059
|
+
"id": "ci:config:unset",
|
|
11060
|
+
"pluginAlias": "heroku",
|
|
11061
|
+
"pluginName": "heroku",
|
|
11062
|
+
"pluginType": "core",
|
|
11063
|
+
"strict": false,
|
|
11064
|
+
"topic": "ci",
|
|
11065
|
+
"isESM": false,
|
|
11066
|
+
"relativePath": [
|
|
11067
|
+
"lib",
|
|
11068
|
+
"commands",
|
|
11069
|
+
"ci",
|
|
11070
|
+
"config",
|
|
11071
|
+
"unset.js"
|
|
11072
|
+
]
|
|
11073
|
+
},
|
|
11074
|
+
"certs:auto:disable": {
|
|
11075
|
+
"aliases": [],
|
|
11076
|
+
"args": {},
|
|
11077
|
+
"description": "disable ACM for an app",
|
|
11078
|
+
"flags": {
|
|
11079
|
+
"confirm": {
|
|
11080
|
+
"char": "c",
|
|
11081
|
+
"hidden": true,
|
|
11082
|
+
"name": "confirm",
|
|
11083
|
+
"hasDynamicHelp": false,
|
|
11084
|
+
"multiple": false,
|
|
11085
|
+
"type": "option"
|
|
11086
|
+
},
|
|
11087
|
+
"app": {
|
|
11088
|
+
"char": "a",
|
|
11089
|
+
"description": "app to run command against",
|
|
11090
|
+
"name": "app",
|
|
11091
|
+
"required": true,
|
|
11092
|
+
"hasDynamicHelp": false,
|
|
11093
|
+
"multiple": false,
|
|
11094
|
+
"type": "option"
|
|
11095
|
+
},
|
|
11096
|
+
"remote": {
|
|
11097
|
+
"char": "r",
|
|
11098
|
+
"description": "git remote of app to use",
|
|
11099
|
+
"name": "remote",
|
|
11100
|
+
"hasDynamicHelp": false,
|
|
11101
|
+
"multiple": false,
|
|
11102
|
+
"type": "option"
|
|
11103
|
+
}
|
|
11104
|
+
},
|
|
11105
|
+
"hasDynamicHelp": false,
|
|
11106
|
+
"hiddenAliases": [],
|
|
11107
|
+
"id": "certs:auto:disable",
|
|
11108
|
+
"pluginAlias": "heroku",
|
|
11109
|
+
"pluginName": "heroku",
|
|
11110
|
+
"pluginType": "core",
|
|
11111
|
+
"strict": true,
|
|
11112
|
+
"topic": "certs",
|
|
11113
|
+
"isESM": false,
|
|
11114
|
+
"relativePath": [
|
|
11115
|
+
"lib",
|
|
11116
|
+
"commands",
|
|
11117
|
+
"certs",
|
|
11118
|
+
"auto",
|
|
11119
|
+
"disable.js"
|
|
11120
|
+
]
|
|
11121
|
+
},
|
|
11122
|
+
"certs:auto:enable": {
|
|
11123
|
+
"aliases": [],
|
|
11124
|
+
"args": {},
|
|
11125
|
+
"description": "enable ACM status for an app",
|
|
11126
|
+
"flags": {
|
|
11127
|
+
"wait": {
|
|
11128
|
+
"description": "watch ACM status and exit when complete",
|
|
11129
|
+
"name": "wait",
|
|
11130
|
+
"allowNo": false,
|
|
11131
|
+
"type": "boolean"
|
|
11132
|
+
},
|
|
11133
|
+
"app": {
|
|
11134
|
+
"char": "a",
|
|
11135
|
+
"description": "app to run command against",
|
|
11136
|
+
"name": "app",
|
|
11137
|
+
"required": true,
|
|
11138
|
+
"hasDynamicHelp": false,
|
|
11139
|
+
"multiple": false,
|
|
11140
|
+
"type": "option"
|
|
11141
|
+
},
|
|
11142
|
+
"remote": {
|
|
11143
|
+
"char": "r",
|
|
11144
|
+
"description": "git remote of app to use",
|
|
11145
|
+
"name": "remote",
|
|
11146
|
+
"hasDynamicHelp": false,
|
|
11147
|
+
"multiple": false,
|
|
11148
|
+
"type": "option"
|
|
11149
|
+
}
|
|
11150
|
+
},
|
|
11151
|
+
"hasDynamicHelp": false,
|
|
11152
|
+
"hiddenAliases": [],
|
|
11153
|
+
"id": "certs:auto:enable",
|
|
11154
|
+
"pluginAlias": "heroku",
|
|
11155
|
+
"pluginName": "heroku",
|
|
11156
|
+
"pluginType": "core",
|
|
11157
|
+
"strict": true,
|
|
11158
|
+
"topic": "certs",
|
|
11159
|
+
"isESM": false,
|
|
11160
|
+
"relativePath": [
|
|
11161
|
+
"lib",
|
|
11162
|
+
"commands",
|
|
11163
|
+
"certs",
|
|
11164
|
+
"auto",
|
|
11165
|
+
"enable.js"
|
|
11166
|
+
]
|
|
11167
|
+
},
|
|
11168
|
+
"certs:auto": {
|
|
11169
|
+
"aliases": [],
|
|
11170
|
+
"args": {},
|
|
11171
|
+
"description": "show ACM status for an app",
|
|
11172
|
+
"flags": {
|
|
11173
|
+
"wait": {
|
|
11174
|
+
"description": "watch ACM status and display the status when complete",
|
|
11175
|
+
"name": "wait",
|
|
11176
|
+
"allowNo": false,
|
|
11177
|
+
"type": "boolean"
|
|
11178
|
+
},
|
|
11179
|
+
"app": {
|
|
11180
|
+
"char": "a",
|
|
11181
|
+
"description": "app to run command against",
|
|
11182
|
+
"name": "app",
|
|
11183
|
+
"required": true,
|
|
11184
|
+
"hasDynamicHelp": false,
|
|
11185
|
+
"multiple": false,
|
|
11186
|
+
"type": "option"
|
|
11187
|
+
},
|
|
11188
|
+
"remote": {
|
|
11189
|
+
"char": "r",
|
|
11190
|
+
"description": "git remote of app to use",
|
|
11191
|
+
"name": "remote",
|
|
11192
|
+
"hasDynamicHelp": false,
|
|
11193
|
+
"multiple": false,
|
|
11194
|
+
"type": "option"
|
|
11195
|
+
}
|
|
11196
|
+
},
|
|
11197
|
+
"hasDynamicHelp": false,
|
|
11198
|
+
"hiddenAliases": [],
|
|
11199
|
+
"id": "certs:auto",
|
|
11200
|
+
"pluginAlias": "heroku",
|
|
11201
|
+
"pluginName": "heroku",
|
|
11202
|
+
"pluginType": "core",
|
|
11203
|
+
"strict": true,
|
|
11204
|
+
"topic": "certs",
|
|
11205
|
+
"isESM": false,
|
|
11206
|
+
"relativePath": [
|
|
11207
|
+
"lib",
|
|
11208
|
+
"commands",
|
|
11209
|
+
"certs",
|
|
11210
|
+
"auto",
|
|
11211
|
+
"index.js"
|
|
11212
|
+
]
|
|
11213
|
+
},
|
|
11214
|
+
"certs:auto:refresh": {
|
|
11215
|
+
"aliases": [],
|
|
11216
|
+
"args": {},
|
|
11217
|
+
"description": "refresh ACM for an app",
|
|
11218
|
+
"flags": {
|
|
11219
|
+
"app": {
|
|
11220
|
+
"char": "a",
|
|
11221
|
+
"description": "app to run command against",
|
|
11222
|
+
"name": "app",
|
|
11223
|
+
"required": true,
|
|
11224
|
+
"hasDynamicHelp": false,
|
|
11225
|
+
"multiple": false,
|
|
11226
|
+
"type": "option"
|
|
11227
|
+
},
|
|
11228
|
+
"remote": {
|
|
11229
|
+
"char": "r",
|
|
11230
|
+
"description": "git remote of app to use",
|
|
11231
|
+
"name": "remote",
|
|
11232
|
+
"hasDynamicHelp": false,
|
|
11233
|
+
"multiple": false,
|
|
11234
|
+
"type": "option"
|
|
11235
|
+
}
|
|
11236
|
+
},
|
|
11237
|
+
"hasDynamicHelp": false,
|
|
11238
|
+
"hiddenAliases": [],
|
|
11239
|
+
"id": "certs:auto:refresh",
|
|
11270
11240
|
"pluginAlias": "heroku",
|
|
11271
11241
|
"pluginName": "heroku",
|
|
11272
11242
|
"pluginType": "core",
|
|
11273
|
-
"strict":
|
|
11274
|
-
"topic": "
|
|
11243
|
+
"strict": true,
|
|
11244
|
+
"topic": "certs",
|
|
11275
11245
|
"isESM": false,
|
|
11276
11246
|
"relativePath": [
|
|
11277
11247
|
"lib",
|
|
11278
11248
|
"commands",
|
|
11279
|
-
"
|
|
11280
|
-
"
|
|
11281
|
-
"
|
|
11249
|
+
"certs",
|
|
11250
|
+
"auto",
|
|
11251
|
+
"refresh.js"
|
|
11252
|
+
]
|
|
11253
|
+
},
|
|
11254
|
+
"certs:auto:wait": {
|
|
11255
|
+
"aliases": [],
|
|
11256
|
+
"args": {},
|
|
11257
|
+
"description": "waits for the certificate to be activated",
|
|
11258
|
+
"flags": {
|
|
11259
|
+
"help": {
|
|
11260
|
+
"char": "h",
|
|
11261
|
+
"description": "Show CLI help.",
|
|
11262
|
+
"name": "help",
|
|
11263
|
+
"allowNo": false,
|
|
11264
|
+
"type": "boolean"
|
|
11265
|
+
}
|
|
11266
|
+
},
|
|
11267
|
+
"hasDynamicHelp": false,
|
|
11268
|
+
"hidden": true,
|
|
11269
|
+
"hiddenAliases": [],
|
|
11270
|
+
"id": "certs:auto:wait",
|
|
11271
|
+
"pluginAlias": "heroku",
|
|
11272
|
+
"pluginName": "heroku",
|
|
11273
|
+
"pluginType": "core",
|
|
11274
|
+
"strict": true,
|
|
11275
|
+
"isESM": false,
|
|
11276
|
+
"relativePath": [
|
|
11277
|
+
"lib",
|
|
11278
|
+
"commands",
|
|
11279
|
+
"certs",
|
|
11280
|
+
"auto",
|
|
11281
|
+
"wait.js"
|
|
11282
11282
|
]
|
|
11283
11283
|
},
|
|
11284
11284
|
"pg:backups:cancel": {
|
|
@@ -11652,7 +11652,7 @@
|
|
|
11652
11652
|
},
|
|
11653
11653
|
"extensions": {
|
|
11654
11654
|
"char": "e",
|
|
11655
|
-
"description": "comma-separated list of extensions to pre-install in the
|
|
11655
|
+
"description": "comma-separated list of extensions to pre-install in the default \npublic schema or an optional custom schema \n(for example: hstore or myschema.hstore)\n",
|
|
11656
11656
|
"name": "extensions",
|
|
11657
11657
|
"hasDynamicHelp": false,
|
|
11658
11658
|
"multiple": false,
|
|
@@ -12407,19 +12407,15 @@
|
|
|
12407
12407
|
"index.js"
|
|
12408
12408
|
]
|
|
12409
12409
|
},
|
|
12410
|
-
"pg:
|
|
12410
|
+
"pg:maintenance": {
|
|
12411
12411
|
"aliases": [],
|
|
12412
12412
|
"args": {
|
|
12413
12413
|
"database": {
|
|
12414
12414
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12415
12415
|
"name": "database"
|
|
12416
|
-
},
|
|
12417
|
-
"value": {
|
|
12418
|
-
"description": "boolean indicating if execution plans of queries will be logged for future connections",
|
|
12419
|
-
"name": "value"
|
|
12420
12416
|
}
|
|
12421
12417
|
},
|
|
12422
|
-
"description": "
|
|
12418
|
+
"description": "show current maintenance information",
|
|
12423
12419
|
"flags": {
|
|
12424
12420
|
"app": {
|
|
12425
12421
|
"char": "a",
|
|
@@ -12441,35 +12437,37 @@
|
|
|
12441
12437
|
},
|
|
12442
12438
|
"hasDynamicHelp": false,
|
|
12443
12439
|
"hiddenAliases": [],
|
|
12444
|
-
"id": "pg:
|
|
12440
|
+
"id": "pg:maintenance",
|
|
12445
12441
|
"pluginAlias": "heroku",
|
|
12446
12442
|
"pluginName": "heroku",
|
|
12447
12443
|
"pluginType": "core",
|
|
12448
|
-
"strict":
|
|
12444
|
+
"strict": true,
|
|
12449
12445
|
"topic": "pg",
|
|
12450
12446
|
"isESM": false,
|
|
12451
12447
|
"relativePath": [
|
|
12452
12448
|
"lib",
|
|
12453
12449
|
"commands",
|
|
12454
12450
|
"pg",
|
|
12455
|
-
"
|
|
12456
|
-
"
|
|
12451
|
+
"maintenance",
|
|
12452
|
+
"index.js"
|
|
12457
12453
|
]
|
|
12458
12454
|
},
|
|
12459
|
-
"pg:
|
|
12455
|
+
"pg:maintenance:run": {
|
|
12460
12456
|
"aliases": [],
|
|
12461
12457
|
"args": {
|
|
12462
12458
|
"database": {
|
|
12463
12459
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12464
12460
|
"name": "database"
|
|
12465
|
-
},
|
|
12466
|
-
"value": {
|
|
12467
|
-
"description": "boolean indicating if data replication slot details get logged",
|
|
12468
|
-
"name": "value"
|
|
12469
12461
|
}
|
|
12470
12462
|
},
|
|
12471
|
-
"description": "
|
|
12463
|
+
"description": "start maintenance",
|
|
12472
12464
|
"flags": {
|
|
12465
|
+
"force": {
|
|
12466
|
+
"char": "f",
|
|
12467
|
+
"name": "force",
|
|
12468
|
+
"allowNo": false,
|
|
12469
|
+
"type": "boolean"
|
|
12470
|
+
},
|
|
12473
12471
|
"app": {
|
|
12474
12472
|
"char": "a",
|
|
12475
12473
|
"description": "app to run command against",
|
|
@@ -12490,29 +12488,36 @@
|
|
|
12490
12488
|
},
|
|
12491
12489
|
"hasDynamicHelp": false,
|
|
12492
12490
|
"hiddenAliases": [],
|
|
12493
|
-
"id": "pg:
|
|
12491
|
+
"id": "pg:maintenance:run",
|
|
12494
12492
|
"pluginAlias": "heroku",
|
|
12495
12493
|
"pluginName": "heroku",
|
|
12496
12494
|
"pluginType": "core",
|
|
12495
|
+
"strict": true,
|
|
12497
12496
|
"topic": "pg",
|
|
12498
12497
|
"isESM": false,
|
|
12499
12498
|
"relativePath": [
|
|
12500
12499
|
"lib",
|
|
12501
12500
|
"commands",
|
|
12502
12501
|
"pg",
|
|
12503
|
-
"
|
|
12504
|
-
"
|
|
12502
|
+
"maintenance",
|
|
12503
|
+
"run.js"
|
|
12505
12504
|
]
|
|
12506
12505
|
},
|
|
12507
|
-
"pg:
|
|
12506
|
+
"pg:maintenance:window": {
|
|
12508
12507
|
"aliases": [],
|
|
12509
12508
|
"args": {
|
|
12509
|
+
"window": {
|
|
12510
|
+
"description": "timestamp of the maintenance window",
|
|
12511
|
+
"name": "window",
|
|
12512
|
+
"required": true
|
|
12513
|
+
},
|
|
12510
12514
|
"database": {
|
|
12511
12515
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12512
12516
|
"name": "database"
|
|
12513
12517
|
}
|
|
12514
12518
|
},
|
|
12515
|
-
"description": "
|
|
12519
|
+
"description": "Set weekly maintenance window.\nAll times are in UTC.\n",
|
|
12520
|
+
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12516
12521
|
"flags": {
|
|
12517
12522
|
"app": {
|
|
12518
12523
|
"char": "a",
|
|
@@ -12534,22 +12539,23 @@
|
|
|
12534
12539
|
},
|
|
12535
12540
|
"hasDynamicHelp": false,
|
|
12536
12541
|
"hiddenAliases": [],
|
|
12537
|
-
"id": "pg:
|
|
12542
|
+
"id": "pg:maintenance:window",
|
|
12538
12543
|
"pluginAlias": "heroku",
|
|
12539
12544
|
"pluginName": "heroku",
|
|
12540
12545
|
"pluginType": "core",
|
|
12541
12546
|
"strict": true,
|
|
12542
12547
|
"topic": "pg",
|
|
12548
|
+
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12543
12549
|
"isESM": false,
|
|
12544
12550
|
"relativePath": [
|
|
12545
12551
|
"lib",
|
|
12546
12552
|
"commands",
|
|
12547
12553
|
"pg",
|
|
12548
|
-
"
|
|
12549
|
-
"
|
|
12554
|
+
"maintenance",
|
|
12555
|
+
"window.js"
|
|
12550
12556
|
]
|
|
12551
12557
|
},
|
|
12552
|
-
"pg:settings:
|
|
12558
|
+
"pg:settings:auto-explain": {
|
|
12553
12559
|
"aliases": [],
|
|
12554
12560
|
"args": {
|
|
12555
12561
|
"database": {
|
|
@@ -12557,11 +12563,11 @@
|
|
|
12557
12563
|
"name": "database"
|
|
12558
12564
|
},
|
|
12559
12565
|
"value": {
|
|
12560
|
-
"description": "boolean indicating if
|
|
12566
|
+
"description": "boolean indicating if execution plans of queries will be logged for future connections",
|
|
12561
12567
|
"name": "value"
|
|
12562
12568
|
}
|
|
12563
12569
|
},
|
|
12564
|
-
"description": "
|
|
12570
|
+
"description": "Automatically log execution plans of queries without running EXPLAIN by hand.\nThe auto_explain module is loaded at session-time so existing connections will not be logged.\nRestart your Heroku app and/or restart existing connections for logging to start taking place.\n",
|
|
12565
12571
|
"flags": {
|
|
12566
12572
|
"app": {
|
|
12567
12573
|
"char": "a",
|
|
@@ -12583,10 +12589,11 @@
|
|
|
12583
12589
|
},
|
|
12584
12590
|
"hasDynamicHelp": false,
|
|
12585
12591
|
"hiddenAliases": [],
|
|
12586
|
-
"id": "pg:settings:
|
|
12592
|
+
"id": "pg:settings:auto-explain",
|
|
12587
12593
|
"pluginAlias": "heroku",
|
|
12588
12594
|
"pluginName": "heroku",
|
|
12589
12595
|
"pluginType": "core",
|
|
12596
|
+
"strict": false,
|
|
12590
12597
|
"topic": "pg",
|
|
12591
12598
|
"isESM": false,
|
|
12592
12599
|
"relativePath": [
|
|
@@ -12594,10 +12601,10 @@
|
|
|
12594
12601
|
"commands",
|
|
12595
12602
|
"pg",
|
|
12596
12603
|
"settings",
|
|
12597
|
-
"
|
|
12604
|
+
"auto-explain.js"
|
|
12598
12605
|
]
|
|
12599
12606
|
},
|
|
12600
|
-
"pg:settings:
|
|
12607
|
+
"pg:settings:explain-data-connector-details": {
|
|
12601
12608
|
"aliases": [],
|
|
12602
12609
|
"args": {
|
|
12603
12610
|
"database": {
|
|
@@ -12605,11 +12612,11 @@
|
|
|
12605
12612
|
"name": "database"
|
|
12606
12613
|
},
|
|
12607
12614
|
"value": {
|
|
12608
|
-
"description": "boolean indicating if
|
|
12615
|
+
"description": "boolean indicating if data replication slot details get logged",
|
|
12609
12616
|
"name": "value"
|
|
12610
12617
|
}
|
|
12611
12618
|
},
|
|
12612
|
-
"description": "
|
|
12619
|
+
"description": "displays stats on replication slots on your database, the default value is \"off\"\n",
|
|
12613
12620
|
"flags": {
|
|
12614
12621
|
"app": {
|
|
12615
12622
|
"char": "a",
|
|
@@ -12631,7 +12638,7 @@
|
|
|
12631
12638
|
},
|
|
12632
12639
|
"hasDynamicHelp": false,
|
|
12633
12640
|
"hiddenAliases": [],
|
|
12634
|
-
"id": "pg:settings:
|
|
12641
|
+
"id": "pg:settings:explain-data-connector-details",
|
|
12635
12642
|
"pluginAlias": "heroku",
|
|
12636
12643
|
"pluginName": "heroku",
|
|
12637
12644
|
"pluginType": "core",
|
|
@@ -12642,22 +12649,18 @@
|
|
|
12642
12649
|
"commands",
|
|
12643
12650
|
"pg",
|
|
12644
12651
|
"settings",
|
|
12645
|
-
"
|
|
12652
|
+
"explain-data-connector-details.js"
|
|
12646
12653
|
]
|
|
12647
12654
|
},
|
|
12648
|
-
"pg:settings
|
|
12655
|
+
"pg:settings": {
|
|
12649
12656
|
"aliases": [],
|
|
12650
12657
|
"args": {
|
|
12651
12658
|
"database": {
|
|
12652
12659
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12653
12660
|
"name": "database"
|
|
12654
|
-
},
|
|
12655
|
-
"value": {
|
|
12656
|
-
"description": "milliseconds to wait for a statement to complete before logging it",
|
|
12657
|
-
"name": "value"
|
|
12658
12661
|
}
|
|
12659
12662
|
},
|
|
12660
|
-
"description": "
|
|
12663
|
+
"description": "show your current database settings",
|
|
12661
12664
|
"flags": {
|
|
12662
12665
|
"app": {
|
|
12663
12666
|
"char": "a",
|
|
@@ -12679,10 +12682,11 @@
|
|
|
12679
12682
|
},
|
|
12680
12683
|
"hasDynamicHelp": false,
|
|
12681
12684
|
"hiddenAliases": [],
|
|
12682
|
-
"id": "pg:settings
|
|
12685
|
+
"id": "pg:settings",
|
|
12683
12686
|
"pluginAlias": "heroku",
|
|
12684
12687
|
"pluginName": "heroku",
|
|
12685
12688
|
"pluginType": "core",
|
|
12689
|
+
"strict": true,
|
|
12686
12690
|
"topic": "pg",
|
|
12687
12691
|
"isESM": false,
|
|
12688
12692
|
"relativePath": [
|
|
@@ -12690,10 +12694,10 @@
|
|
|
12690
12694
|
"commands",
|
|
12691
12695
|
"pg",
|
|
12692
12696
|
"settings",
|
|
12693
|
-
"
|
|
12697
|
+
"index.js"
|
|
12694
12698
|
]
|
|
12695
12699
|
},
|
|
12696
|
-
"pg:settings:log-
|
|
12700
|
+
"pg:settings:log-connections": {
|
|
12697
12701
|
"aliases": [],
|
|
12698
12702
|
"args": {
|
|
12699
12703
|
"database": {
|
|
@@ -12701,16 +12705,11 @@
|
|
|
12701
12705
|
"name": "database"
|
|
12702
12706
|
},
|
|
12703
12707
|
"value": {
|
|
12704
|
-
"
|
|
12705
|
-
"
|
|
12706
|
-
"error",
|
|
12707
|
-
"log",
|
|
12708
|
-
"fatal",
|
|
12709
|
-
"panic"
|
|
12710
|
-
]
|
|
12708
|
+
"description": "boolean indicating if database login attempts get logged",
|
|
12709
|
+
"name": "value"
|
|
12711
12710
|
}
|
|
12712
12711
|
},
|
|
12713
|
-
"description": "
|
|
12712
|
+
"description": "Controls whether a log message is produced when a login attempt is made. Default is true.\nSetting log_connections to false stops emitting log messages for all attempts to login to the database.",
|
|
12714
12713
|
"flags": {
|
|
12715
12714
|
"app": {
|
|
12716
12715
|
"char": "a",
|
|
@@ -12732,7 +12731,7 @@
|
|
|
12732
12731
|
},
|
|
12733
12732
|
"hasDynamicHelp": false,
|
|
12734
12733
|
"hiddenAliases": [],
|
|
12735
|
-
"id": "pg:settings:log-
|
|
12734
|
+
"id": "pg:settings:log-connections",
|
|
12736
12735
|
"pluginAlias": "heroku",
|
|
12737
12736
|
"pluginName": "heroku",
|
|
12738
12737
|
"pluginType": "core",
|
|
@@ -12743,10 +12742,10 @@
|
|
|
12743
12742
|
"commands",
|
|
12744
12743
|
"pg",
|
|
12745
12744
|
"settings",
|
|
12746
|
-
"log-
|
|
12745
|
+
"log-connections.js"
|
|
12747
12746
|
]
|
|
12748
12747
|
},
|
|
12749
|
-
"pg:settings:log-
|
|
12748
|
+
"pg:settings:log-lock-waits": {
|
|
12750
12749
|
"aliases": [],
|
|
12751
12750
|
"args": {
|
|
12752
12751
|
"database": {
|
|
@@ -12754,17 +12753,11 @@
|
|
|
12754
12753
|
"name": "database"
|
|
12755
12754
|
},
|
|
12756
12755
|
"value": {
|
|
12757
|
-
"description": "
|
|
12758
|
-
"name": "value"
|
|
12759
|
-
"options": [
|
|
12760
|
-
"none",
|
|
12761
|
-
"ddl",
|
|
12762
|
-
"mod",
|
|
12763
|
-
"all"
|
|
12764
|
-
]
|
|
12756
|
+
"description": "boolean indicating if a message gets logged when a session waits longer than the deadlock_timeout to acquire a lock",
|
|
12757
|
+
"name": "value"
|
|
12765
12758
|
}
|
|
12766
12759
|
},
|
|
12767
|
-
"description": "
|
|
12760
|
+
"description": "Controls whether a log message is produced when a session waits longer than the deadlock_timeout to acquire a lock. deadlock_timeout is set to 1 second\nDelays due to lock contention occur when multiple transactions are trying to access the same resource at the same time.\nApplications and their query patterns should try to avoid changes to many different tables within the same transaction.\n",
|
|
12768
12761
|
"flags": {
|
|
12769
12762
|
"app": {
|
|
12770
12763
|
"char": "a",
|
|
@@ -12786,7 +12779,7 @@
|
|
|
12786
12779
|
},
|
|
12787
12780
|
"hasDynamicHelp": false,
|
|
12788
12781
|
"hiddenAliases": [],
|
|
12789
|
-
"id": "pg:settings:log-
|
|
12782
|
+
"id": "pg:settings:log-lock-waits",
|
|
12790
12783
|
"pluginAlias": "heroku",
|
|
12791
12784
|
"pluginName": "heroku",
|
|
12792
12785
|
"pluginType": "core",
|
|
@@ -12797,10 +12790,10 @@
|
|
|
12797
12790
|
"commands",
|
|
12798
12791
|
"pg",
|
|
12799
12792
|
"settings",
|
|
12800
|
-
"log-
|
|
12793
|
+
"log-lock-waits.js"
|
|
12801
12794
|
]
|
|
12802
12795
|
},
|
|
12803
|
-
"pg:settings:
|
|
12796
|
+
"pg:settings:log-min-duration-statement": {
|
|
12804
12797
|
"aliases": [],
|
|
12805
12798
|
"args": {
|
|
12806
12799
|
"database": {
|
|
@@ -12808,16 +12801,11 @@
|
|
|
12808
12801
|
"name": "database"
|
|
12809
12802
|
},
|
|
12810
12803
|
"value": {
|
|
12811
|
-
"description": "
|
|
12812
|
-
"name": "value"
|
|
12813
|
-
"options": [
|
|
12814
|
-
"none",
|
|
12815
|
-
"pl",
|
|
12816
|
-
"all"
|
|
12817
|
-
]
|
|
12804
|
+
"description": "milliseconds to wait for a statement to complete before logging it",
|
|
12805
|
+
"name": "value"
|
|
12818
12806
|
}
|
|
12819
12807
|
},
|
|
12820
|
-
"description": "
|
|
12808
|
+
"description": "The duration of each completed statement will be logged if the statement completes after the time specified by VALUE.\nVALUE needs to specified as a whole number, in milliseconds.\nSetting log_min_duration_statement to zero prints all statement durations and -1 will disable logging statement durations.\n",
|
|
12821
12809
|
"flags": {
|
|
12822
12810
|
"app": {
|
|
12823
12811
|
"char": "a",
|
|
@@ -12839,7 +12827,7 @@
|
|
|
12839
12827
|
},
|
|
12840
12828
|
"hasDynamicHelp": false,
|
|
12841
12829
|
"hiddenAliases": [],
|
|
12842
|
-
"id": "pg:settings:
|
|
12830
|
+
"id": "pg:settings:log-min-duration-statement",
|
|
12843
12831
|
"pluginAlias": "heroku",
|
|
12844
12832
|
"pluginName": "heroku",
|
|
12845
12833
|
"pluginType": "core",
|
|
@@ -12850,18 +12838,27 @@
|
|
|
12850
12838
|
"commands",
|
|
12851
12839
|
"pg",
|
|
12852
12840
|
"settings",
|
|
12853
|
-
"
|
|
12841
|
+
"log-min-duration-statement.js"
|
|
12854
12842
|
]
|
|
12855
12843
|
},
|
|
12856
|
-
"pg:
|
|
12844
|
+
"pg:settings:log-min-error-statement": {
|
|
12857
12845
|
"aliases": [],
|
|
12858
12846
|
"args": {
|
|
12859
12847
|
"database": {
|
|
12860
12848
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12861
12849
|
"name": "database"
|
|
12850
|
+
},
|
|
12851
|
+
"value": {
|
|
12852
|
+
"name": "value",
|
|
12853
|
+
"options": [
|
|
12854
|
+
"error",
|
|
12855
|
+
"log",
|
|
12856
|
+
"fatal",
|
|
12857
|
+
"panic"
|
|
12858
|
+
]
|
|
12862
12859
|
}
|
|
12863
12860
|
},
|
|
12864
|
-
"description": "
|
|
12861
|
+
"description": "log-min-error-statement controls the logging of SQL statements that cause an error at a specified severity level.\nThis setting is useful to prevent logging SQL queries that might contain sensitive information.\nUse this setting to prevent logging SQL queries that contain sensitive information. Default is \"error\".\n",
|
|
12865
12862
|
"flags": {
|
|
12866
12863
|
"app": {
|
|
12867
12864
|
"char": "a",
|
|
@@ -12883,37 +12880,40 @@
|
|
|
12883
12880
|
},
|
|
12884
12881
|
"hasDynamicHelp": false,
|
|
12885
12882
|
"hiddenAliases": [],
|
|
12886
|
-
"id": "pg:
|
|
12883
|
+
"id": "pg:settings:log-min-error-statement",
|
|
12887
12884
|
"pluginAlias": "heroku",
|
|
12888
12885
|
"pluginName": "heroku",
|
|
12889
12886
|
"pluginType": "core",
|
|
12890
|
-
"strict": true,
|
|
12891
12887
|
"topic": "pg",
|
|
12892
12888
|
"isESM": false,
|
|
12893
12889
|
"relativePath": [
|
|
12894
12890
|
"lib",
|
|
12895
12891
|
"commands",
|
|
12896
12892
|
"pg",
|
|
12897
|
-
"
|
|
12898
|
-
"
|
|
12893
|
+
"settings",
|
|
12894
|
+
"log-min-error-statement.js"
|
|
12899
12895
|
]
|
|
12900
12896
|
},
|
|
12901
|
-
"pg:
|
|
12897
|
+
"pg:settings:log-statement": {
|
|
12902
12898
|
"aliases": [],
|
|
12903
12899
|
"args": {
|
|
12904
12900
|
"database": {
|
|
12905
12901
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12906
12902
|
"name": "database"
|
|
12903
|
+
},
|
|
12904
|
+
"value": {
|
|
12905
|
+
"description": "type of SQL statements to log\n<options: none|ddl|mod|all>",
|
|
12906
|
+
"name": "value",
|
|
12907
|
+
"options": [
|
|
12908
|
+
"none",
|
|
12909
|
+
"ddl",
|
|
12910
|
+
"mod",
|
|
12911
|
+
"all"
|
|
12912
|
+
]
|
|
12907
12913
|
}
|
|
12908
12914
|
},
|
|
12909
|
-
"description": "
|
|
12915
|
+
"description": "log_statement controls which SQL statements are logged.\nValid values for VALUE:\nnone - No statements are logged\nddl - All data definition statements, such as CREATE, ALTER and DROP will be logged\nmod - Includes all statements from ddl as well as data-modifying statements such as INSERT, UPDATE, DELETE, TRUNCATE, COPY\nall - All statements are logged\n",
|
|
12910
12916
|
"flags": {
|
|
12911
|
-
"force": {
|
|
12912
|
-
"char": "f",
|
|
12913
|
-
"name": "force",
|
|
12914
|
-
"allowNo": false,
|
|
12915
|
-
"type": "boolean"
|
|
12916
|
-
},
|
|
12917
12917
|
"app": {
|
|
12918
12918
|
"char": "a",
|
|
12919
12919
|
"description": "app to run command against",
|
|
@@ -12934,36 +12934,38 @@
|
|
|
12934
12934
|
},
|
|
12935
12935
|
"hasDynamicHelp": false,
|
|
12936
12936
|
"hiddenAliases": [],
|
|
12937
|
-
"id": "pg:
|
|
12937
|
+
"id": "pg:settings:log-statement",
|
|
12938
12938
|
"pluginAlias": "heroku",
|
|
12939
12939
|
"pluginName": "heroku",
|
|
12940
12940
|
"pluginType": "core",
|
|
12941
|
-
"strict": true,
|
|
12942
12941
|
"topic": "pg",
|
|
12943
12942
|
"isESM": false,
|
|
12944
12943
|
"relativePath": [
|
|
12945
12944
|
"lib",
|
|
12946
12945
|
"commands",
|
|
12947
12946
|
"pg",
|
|
12948
|
-
"
|
|
12949
|
-
"
|
|
12947
|
+
"settings",
|
|
12948
|
+
"log-statement.js"
|
|
12950
12949
|
]
|
|
12951
12950
|
},
|
|
12952
|
-
"pg:
|
|
12951
|
+
"pg:settings:track-functions": {
|
|
12953
12952
|
"aliases": [],
|
|
12954
12953
|
"args": {
|
|
12955
|
-
"window": {
|
|
12956
|
-
"description": "timestamp of the maintenance window",
|
|
12957
|
-
"name": "window",
|
|
12958
|
-
"required": true
|
|
12959
|
-
},
|
|
12960
12954
|
"database": {
|
|
12961
12955
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
12962
12956
|
"name": "database"
|
|
12957
|
+
},
|
|
12958
|
+
"value": {
|
|
12959
|
+
"description": "function type to track\n<options: none|pl|all>",
|
|
12960
|
+
"name": "value",
|
|
12961
|
+
"options": [
|
|
12962
|
+
"none",
|
|
12963
|
+
"pl",
|
|
12964
|
+
"all"
|
|
12965
|
+
]
|
|
12963
12966
|
}
|
|
12964
12967
|
},
|
|
12965
|
-
"description": "
|
|
12966
|
-
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12968
|
+
"description": "track_functions controls tracking of function call counts and time used. Default is none.\nValid values for VALUE:\nnone - No functions are tracked (default)\npl - Only procedural language functions are tracked\nall - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are not tracked",
|
|
12967
12969
|
"flags": {
|
|
12968
12970
|
"app": {
|
|
12969
12971
|
"char": "a",
|
|
@@ -12985,20 +12987,18 @@
|
|
|
12985
12987
|
},
|
|
12986
12988
|
"hasDynamicHelp": false,
|
|
12987
12989
|
"hiddenAliases": [],
|
|
12988
|
-
"id": "pg:
|
|
12990
|
+
"id": "pg:settings:track-functions",
|
|
12989
12991
|
"pluginAlias": "heroku",
|
|
12990
12992
|
"pluginName": "heroku",
|
|
12991
12993
|
"pluginType": "core",
|
|
12992
|
-
"strict": true,
|
|
12993
12994
|
"topic": "pg",
|
|
12994
|
-
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12995
12995
|
"isESM": false,
|
|
12996
12996
|
"relativePath": [
|
|
12997
12997
|
"lib",
|
|
12998
12998
|
"commands",
|
|
12999
12999
|
"pg",
|
|
13000
|
-
"
|
|
13001
|
-
"
|
|
13000
|
+
"settings",
|
|
13001
|
+
"track-functions.js"
|
|
13002
13002
|
]
|
|
13003
13003
|
},
|
|
13004
13004
|
"ps:autoscale:disable": {
|
|
@@ -14450,5 +14450,5 @@
|
|
|
14450
14450
|
]
|
|
14451
14451
|
}
|
|
14452
14452
|
},
|
|
14453
|
-
"version": "10.
|
|
14453
|
+
"version": "10.2.0"
|
|
14454
14454
|
}
|