heroku 9.5.1-beta.0 → 9.5.1
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/access/index.js +1 -1
- package/lib/commands/addons/create.js +5 -13
- package/lib/commands/git/remote.js +1 -1
- package/lib/global_telemetry.js +1 -1
- package/oclif.manifest.json +1188 -1188
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -490,124 +490,125 @@
|
|
|
490
490
|
"update.js"
|
|
491
491
|
]
|
|
492
492
|
},
|
|
493
|
-
"
|
|
493
|
+
"apps:create": {
|
|
494
494
|
"aliases": [],
|
|
495
495
|
"args": {
|
|
496
|
-
"
|
|
497
|
-
"description": "
|
|
498
|
-
"name": "
|
|
499
|
-
"required":
|
|
496
|
+
"app": {
|
|
497
|
+
"description": "name of app to create",
|
|
498
|
+
"name": "app",
|
|
499
|
+
"required": false
|
|
500
500
|
}
|
|
501
501
|
},
|
|
502
|
-
"description": "
|
|
502
|
+
"description": "creates a new app",
|
|
503
|
+
"examples": [
|
|
504
|
+
"$ 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"
|
|
505
|
+
],
|
|
503
506
|
"flags": {
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"name": "
|
|
507
|
+
"app": {
|
|
508
|
+
"hidden": true,
|
|
509
|
+
"name": "app",
|
|
507
510
|
"hasDynamicHelp": false,
|
|
508
511
|
"multiple": false,
|
|
509
512
|
"type": "option"
|
|
510
513
|
},
|
|
511
|
-
"
|
|
512
|
-
"description": "
|
|
513
|
-
"name": "
|
|
514
|
+
"addons": {
|
|
515
|
+
"description": "comma-delimited list of addons to install",
|
|
516
|
+
"name": "addons",
|
|
514
517
|
"hasDynamicHelp": false,
|
|
515
518
|
"multiple": false,
|
|
516
519
|
"type": "option"
|
|
517
520
|
},
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"
|
|
521
|
+
"buildpack": {
|
|
522
|
+
"char": "b",
|
|
523
|
+
"description": "buildpack url to use for this app",
|
|
524
|
+
"name": "buildpack",
|
|
521
525
|
"hasDynamicHelp": false,
|
|
522
526
|
"multiple": false,
|
|
523
527
|
"type": "option"
|
|
524
528
|
},
|
|
525
|
-
"
|
|
526
|
-
"char": "
|
|
527
|
-
"description": "
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
"
|
|
531
|
-
"
|
|
532
|
-
|
|
529
|
+
"manifest": {
|
|
530
|
+
"char": "m",
|
|
531
|
+
"description": "use heroku.yml settings for this app",
|
|
532
|
+
"hidden": true,
|
|
533
|
+
"name": "manifest",
|
|
534
|
+
"allowNo": false,
|
|
535
|
+
"type": "boolean"
|
|
536
|
+
},
|
|
537
|
+
"no-remote": {
|
|
538
|
+
"char": "n",
|
|
539
|
+
"description": "do not create a git remote",
|
|
540
|
+
"name": "no-remote",
|
|
541
|
+
"allowNo": false,
|
|
542
|
+
"type": "boolean"
|
|
533
543
|
},
|
|
534
544
|
"remote": {
|
|
535
545
|
"char": "r",
|
|
536
|
-
"description": "git remote
|
|
546
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
537
547
|
"name": "remote",
|
|
548
|
+
"default": "heroku",
|
|
538
549
|
"hasDynamicHelp": false,
|
|
539
550
|
"multiple": false,
|
|
540
551
|
"type": "option"
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
"pluginAlias": "heroku",
|
|
547
|
-
"pluginName": "heroku",
|
|
548
|
-
"pluginType": "core",
|
|
549
|
-
"strict": true,
|
|
550
|
-
"topic": "addons",
|
|
551
|
-
"isESM": false,
|
|
552
|
-
"relativePath": [
|
|
553
|
-
"lib",
|
|
554
|
-
"commands",
|
|
555
|
-
"addons",
|
|
556
|
-
"attach.js"
|
|
557
|
-
]
|
|
558
|
-
},
|
|
559
|
-
"addons:create": {
|
|
560
|
-
"aliases": [],
|
|
561
|
-
"args": {
|
|
562
|
-
"service:plan": {
|
|
563
|
-
"description": "unique identifier or unique name of the add-on service plan",
|
|
564
|
-
"name": "service:plan",
|
|
565
|
-
"required": true
|
|
566
|
-
}
|
|
567
|
-
},
|
|
568
|
-
"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",
|
|
569
|
-
"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",
|
|
570
|
-
"flags": {
|
|
571
|
-
"name": {
|
|
572
|
-
"description": "name for the add-on resource",
|
|
573
|
-
"name": "name",
|
|
552
|
+
},
|
|
553
|
+
"stack": {
|
|
554
|
+
"char": "s",
|
|
555
|
+
"description": "the stack to create the app on",
|
|
556
|
+
"name": "stack",
|
|
574
557
|
"hasDynamicHelp": false,
|
|
575
558
|
"multiple": false,
|
|
576
559
|
"type": "option"
|
|
577
560
|
},
|
|
578
|
-
"
|
|
579
|
-
"description": "
|
|
580
|
-
"name": "
|
|
561
|
+
"space": {
|
|
562
|
+
"description": "the private space to create the app in",
|
|
563
|
+
"name": "space",
|
|
581
564
|
"hasDynamicHelp": false,
|
|
582
565
|
"multiple": false,
|
|
583
566
|
"type": "option"
|
|
584
567
|
},
|
|
585
|
-
"
|
|
586
|
-
"description": "
|
|
587
|
-
"name": "
|
|
568
|
+
"region": {
|
|
569
|
+
"description": "specify region for the app to run in",
|
|
570
|
+
"name": "region",
|
|
588
571
|
"hasDynamicHelp": false,
|
|
589
572
|
"multiple": false,
|
|
590
573
|
"type": "option"
|
|
591
574
|
},
|
|
592
|
-
"
|
|
593
|
-
"description": "
|
|
594
|
-
"
|
|
575
|
+
"internal-routing": {
|
|
576
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
577
|
+
"hidden": true,
|
|
578
|
+
"name": "internal-routing",
|
|
595
579
|
"allowNo": false,
|
|
596
580
|
"type": "boolean"
|
|
597
581
|
},
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"name": "app",
|
|
602
|
-
"required": true,
|
|
582
|
+
"features": {
|
|
583
|
+
"hidden": true,
|
|
584
|
+
"name": "features",
|
|
603
585
|
"hasDynamicHelp": false,
|
|
604
586
|
"multiple": false,
|
|
605
587
|
"type": "option"
|
|
606
588
|
},
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
589
|
+
"kernel": {
|
|
590
|
+
"hidden": true,
|
|
591
|
+
"name": "kernel",
|
|
592
|
+
"hasDynamicHelp": false,
|
|
593
|
+
"multiple": false,
|
|
594
|
+
"type": "option"
|
|
595
|
+
},
|
|
596
|
+
"locked": {
|
|
597
|
+
"hidden": true,
|
|
598
|
+
"name": "locked",
|
|
599
|
+
"allowNo": false,
|
|
600
|
+
"type": "boolean"
|
|
601
|
+
},
|
|
602
|
+
"json": {
|
|
603
|
+
"description": "output in json format",
|
|
604
|
+
"name": "json",
|
|
605
|
+
"allowNo": false,
|
|
606
|
+
"type": "boolean"
|
|
607
|
+
},
|
|
608
|
+
"team": {
|
|
609
|
+
"char": "t",
|
|
610
|
+
"description": "team to use",
|
|
611
|
+
"name": "team",
|
|
611
612
|
"hasDynamicHelp": false,
|
|
612
613
|
"multiple": false,
|
|
613
614
|
"type": "option"
|
|
@@ -615,57 +616,31 @@
|
|
|
615
616
|
},
|
|
616
617
|
"hasDynamicHelp": false,
|
|
617
618
|
"hiddenAliases": [
|
|
618
|
-
"
|
|
619
|
+
"create"
|
|
619
620
|
],
|
|
620
|
-
"id": "
|
|
621
|
+
"id": "apps:create",
|
|
621
622
|
"pluginAlias": "heroku",
|
|
622
623
|
"pluginName": "heroku",
|
|
623
624
|
"pluginType": "core",
|
|
624
|
-
"strict":
|
|
625
|
-
"topic": "addons",
|
|
626
|
-
"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",
|
|
625
|
+
"strict": true,
|
|
627
626
|
"isESM": false,
|
|
628
627
|
"relativePath": [
|
|
629
628
|
"lib",
|
|
630
629
|
"commands",
|
|
631
|
-
"
|
|
630
|
+
"apps",
|
|
632
631
|
"create.js"
|
|
633
632
|
]
|
|
634
633
|
},
|
|
635
|
-
"
|
|
634
|
+
"apps:destroy": {
|
|
636
635
|
"aliases": [],
|
|
637
636
|
"args": {
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"name": "
|
|
641
|
-
"required": true
|
|
637
|
+
"app": {
|
|
638
|
+
"hidden": true,
|
|
639
|
+
"name": "app"
|
|
642
640
|
}
|
|
643
641
|
},
|
|
644
|
-
"description": "permanently destroy an
|
|
645
|
-
"examples": [
|
|
646
|
-
"addons:destroy [ADDON]... [flags]"
|
|
647
|
-
],
|
|
642
|
+
"description": "permanently destroy an app",
|
|
648
643
|
"flags": {
|
|
649
|
-
"force": {
|
|
650
|
-
"char": "f",
|
|
651
|
-
"description": "allow destruction even if connected to other apps",
|
|
652
|
-
"name": "force",
|
|
653
|
-
"allowNo": false,
|
|
654
|
-
"type": "boolean"
|
|
655
|
-
},
|
|
656
|
-
"confirm": {
|
|
657
|
-
"char": "c",
|
|
658
|
-
"name": "confirm",
|
|
659
|
-
"hasDynamicHelp": false,
|
|
660
|
-
"multiple": false,
|
|
661
|
-
"type": "option"
|
|
662
|
-
},
|
|
663
|
-
"wait": {
|
|
664
|
-
"description": "watch add-on destruction status and exit when complete",
|
|
665
|
-
"name": "wait",
|
|
666
|
-
"allowNo": false,
|
|
667
|
-
"type": "boolean"
|
|
668
|
-
},
|
|
669
644
|
"app": {
|
|
670
645
|
"char": "a",
|
|
671
646
|
"description": "app to run command against",
|
|
@@ -681,36 +656,38 @@
|
|
|
681
656
|
"hasDynamicHelp": false,
|
|
682
657
|
"multiple": false,
|
|
683
658
|
"type": "option"
|
|
659
|
+
},
|
|
660
|
+
"confirm": {
|
|
661
|
+
"char": "c",
|
|
662
|
+
"name": "confirm",
|
|
663
|
+
"hasDynamicHelp": false,
|
|
664
|
+
"multiple": false,
|
|
665
|
+
"type": "option"
|
|
684
666
|
}
|
|
685
667
|
},
|
|
686
668
|
"hasDynamicHelp": false,
|
|
687
669
|
"hiddenAliases": [
|
|
688
|
-
"
|
|
670
|
+
"destroy",
|
|
671
|
+
"apps:delete"
|
|
689
672
|
],
|
|
690
|
-
"id": "
|
|
673
|
+
"id": "apps:destroy",
|
|
691
674
|
"pluginAlias": "heroku",
|
|
692
675
|
"pluginName": "heroku",
|
|
693
676
|
"pluginType": "core",
|
|
694
|
-
"strict":
|
|
695
|
-
"
|
|
677
|
+
"strict": true,
|
|
678
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
696
679
|
"isESM": false,
|
|
697
680
|
"relativePath": [
|
|
698
681
|
"lib",
|
|
699
682
|
"commands",
|
|
700
|
-
"
|
|
683
|
+
"apps",
|
|
701
684
|
"destroy.js"
|
|
702
685
|
]
|
|
703
686
|
},
|
|
704
|
-
"
|
|
687
|
+
"apps:errors": {
|
|
705
688
|
"aliases": [],
|
|
706
|
-
"args": {
|
|
707
|
-
|
|
708
|
-
"description": "unique identifier of the add-on attachment",
|
|
709
|
-
"name": "attachment_name",
|
|
710
|
-
"required": true
|
|
711
|
-
}
|
|
712
|
-
},
|
|
713
|
-
"description": "detach an existing add-on resource from an app",
|
|
689
|
+
"args": {},
|
|
690
|
+
"description": "view app errors",
|
|
714
691
|
"flags": {
|
|
715
692
|
"app": {
|
|
716
693
|
"char": "a",
|
|
@@ -728,96 +705,136 @@
|
|
|
728
705
|
"hasDynamicHelp": false,
|
|
729
706
|
"multiple": false,
|
|
730
707
|
"type": "option"
|
|
708
|
+
},
|
|
709
|
+
"json": {
|
|
710
|
+
"description": "output in json format",
|
|
711
|
+
"name": "json",
|
|
712
|
+
"allowNo": false,
|
|
713
|
+
"type": "boolean"
|
|
714
|
+
},
|
|
715
|
+
"hours": {
|
|
716
|
+
"description": "number of hours to look back (default 24)",
|
|
717
|
+
"name": "hours",
|
|
718
|
+
"default": "24",
|
|
719
|
+
"hasDynamicHelp": false,
|
|
720
|
+
"multiple": false,
|
|
721
|
+
"type": "option"
|
|
722
|
+
},
|
|
723
|
+
"router": {
|
|
724
|
+
"description": "show only router errors",
|
|
725
|
+
"name": "router",
|
|
726
|
+
"allowNo": false,
|
|
727
|
+
"type": "boolean"
|
|
728
|
+
},
|
|
729
|
+
"dyno": {
|
|
730
|
+
"description": "show only dyno errors",
|
|
731
|
+
"name": "dyno",
|
|
732
|
+
"allowNo": false,
|
|
733
|
+
"type": "boolean"
|
|
731
734
|
}
|
|
732
735
|
},
|
|
733
736
|
"hasDynamicHelp": false,
|
|
734
737
|
"hiddenAliases": [],
|
|
735
|
-
"id": "
|
|
738
|
+
"id": "apps:errors",
|
|
736
739
|
"pluginAlias": "heroku",
|
|
737
740
|
"pluginName": "heroku",
|
|
738
741
|
"pluginType": "core",
|
|
739
742
|
"strict": true,
|
|
740
|
-
"topic": "addons",
|
|
741
743
|
"isESM": false,
|
|
742
744
|
"relativePath": [
|
|
743
745
|
"lib",
|
|
744
746
|
"commands",
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
+
"apps",
|
|
748
|
+
"errors.js"
|
|
747
749
|
]
|
|
748
750
|
},
|
|
749
|
-
"
|
|
751
|
+
"apps": {
|
|
750
752
|
"aliases": [],
|
|
751
|
-
"args": {
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
}
|
|
757
|
-
},
|
|
758
|
-
"description": "open an add-on's Dev Center documentation in your browser",
|
|
753
|
+
"args": {},
|
|
754
|
+
"description": "list your apps",
|
|
755
|
+
"examples": [
|
|
756
|
+
"$ heroku apps"
|
|
757
|
+
],
|
|
759
758
|
"flags": {
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
759
|
+
"all": {
|
|
760
|
+
"char": "A",
|
|
761
|
+
"description": "include apps in all teams",
|
|
762
|
+
"name": "all",
|
|
763
763
|
"allowNo": false,
|
|
764
764
|
"type": "boolean"
|
|
765
765
|
},
|
|
766
|
-
"
|
|
767
|
-
"char": "
|
|
768
|
-
"description": "
|
|
769
|
-
"name": "
|
|
766
|
+
"json": {
|
|
767
|
+
"char": "j",
|
|
768
|
+
"description": "output in json format",
|
|
769
|
+
"name": "json",
|
|
770
|
+
"allowNo": false,
|
|
771
|
+
"type": "boolean"
|
|
772
|
+
},
|
|
773
|
+
"space": {
|
|
774
|
+
"char": "s",
|
|
775
|
+
"description": "filter by space",
|
|
776
|
+
"name": "space",
|
|
770
777
|
"hasDynamicHelp": false,
|
|
771
778
|
"multiple": false,
|
|
772
779
|
"type": "option"
|
|
773
780
|
},
|
|
774
|
-
"
|
|
775
|
-
"char": "
|
|
776
|
-
"description": "
|
|
777
|
-
"name": "
|
|
781
|
+
"personal": {
|
|
782
|
+
"char": "p",
|
|
783
|
+
"description": "list apps in personal account when a default team is set",
|
|
784
|
+
"name": "personal",
|
|
785
|
+
"allowNo": false,
|
|
786
|
+
"type": "boolean"
|
|
787
|
+
},
|
|
788
|
+
"internal-routing": {
|
|
789
|
+
"char": "i",
|
|
790
|
+
"description": "filter to Internal Web Apps",
|
|
791
|
+
"hidden": true,
|
|
792
|
+
"name": "internal-routing",
|
|
793
|
+
"allowNo": false,
|
|
794
|
+
"type": "boolean"
|
|
795
|
+
},
|
|
796
|
+
"team": {
|
|
797
|
+
"char": "t",
|
|
798
|
+
"description": "team to use",
|
|
799
|
+
"name": "team",
|
|
778
800
|
"hasDynamicHelp": false,
|
|
779
801
|
"multiple": false,
|
|
780
802
|
"type": "option"
|
|
781
803
|
}
|
|
782
804
|
},
|
|
783
805
|
"hasDynamicHelp": false,
|
|
784
|
-
"hiddenAliases": [
|
|
785
|
-
|
|
806
|
+
"hiddenAliases": [
|
|
807
|
+
"list",
|
|
808
|
+
"apps:list"
|
|
809
|
+
],
|
|
810
|
+
"id": "apps",
|
|
786
811
|
"pluginAlias": "heroku",
|
|
787
812
|
"pluginName": "heroku",
|
|
788
813
|
"pluginType": "core",
|
|
789
814
|
"strict": true,
|
|
790
|
-
"topic": "
|
|
815
|
+
"topic": "apps",
|
|
791
816
|
"isESM": false,
|
|
792
817
|
"relativePath": [
|
|
793
818
|
"lib",
|
|
794
819
|
"commands",
|
|
795
|
-
"
|
|
796
|
-
"
|
|
820
|
+
"apps",
|
|
821
|
+
"index.js"
|
|
797
822
|
]
|
|
798
823
|
},
|
|
799
|
-
"
|
|
824
|
+
"apps:info": {
|
|
800
825
|
"aliases": [],
|
|
801
|
-
"args": {
|
|
802
|
-
|
|
826
|
+
"args": {
|
|
827
|
+
"app": {
|
|
828
|
+
"hidden": true,
|
|
829
|
+
"name": "app"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
"description": "show detailed app information",
|
|
803
833
|
"examples": [
|
|
804
|
-
"$ heroku
|
|
805
|
-
"$ heroku
|
|
834
|
+
"$ heroku apps:info",
|
|
835
|
+
"$ heroku apps:info --shell"
|
|
806
836
|
],
|
|
807
837
|
"flags": {
|
|
808
|
-
"all": {
|
|
809
|
-
"char": "A",
|
|
810
|
-
"description": "show add-ons and attachments for all accessible apps",
|
|
811
|
-
"name": "all",
|
|
812
|
-
"allowNo": false,
|
|
813
|
-
"type": "boolean"
|
|
814
|
-
},
|
|
815
|
-
"json": {
|
|
816
|
-
"description": "return add-ons in json format",
|
|
817
|
-
"name": "json",
|
|
818
|
-
"allowNo": false,
|
|
819
|
-
"type": "boolean"
|
|
820
|
-
},
|
|
821
838
|
"app": {
|
|
822
839
|
"char": "a",
|
|
823
840
|
"description": "app to run command against",
|
|
@@ -833,40 +850,60 @@
|
|
|
833
850
|
"hasDynamicHelp": false,
|
|
834
851
|
"multiple": false,
|
|
835
852
|
"type": "option"
|
|
853
|
+
},
|
|
854
|
+
"shell": {
|
|
855
|
+
"char": "s",
|
|
856
|
+
"description": "output more shell friendly key/value pairs",
|
|
857
|
+
"name": "shell",
|
|
858
|
+
"allowNo": false,
|
|
859
|
+
"type": "boolean"
|
|
860
|
+
},
|
|
861
|
+
"extended": {
|
|
862
|
+
"char": "x",
|
|
863
|
+
"hidden": true,
|
|
864
|
+
"name": "extended",
|
|
865
|
+
"allowNo": false,
|
|
866
|
+
"type": "boolean"
|
|
867
|
+
},
|
|
868
|
+
"json": {
|
|
869
|
+
"char": "j",
|
|
870
|
+
"description": "output in json format",
|
|
871
|
+
"name": "json",
|
|
872
|
+
"allowNo": false,
|
|
873
|
+
"type": "boolean"
|
|
836
874
|
}
|
|
837
875
|
},
|
|
838
876
|
"hasDynamicHelp": false,
|
|
839
|
-
"hiddenAliases": [
|
|
840
|
-
|
|
877
|
+
"hiddenAliases": [
|
|
878
|
+
"info"
|
|
879
|
+
],
|
|
880
|
+
"id": "apps:info",
|
|
841
881
|
"pluginAlias": "heroku",
|
|
842
882
|
"pluginName": "heroku",
|
|
843
883
|
"pluginType": "core",
|
|
844
884
|
"strict": true,
|
|
845
|
-
"
|
|
846
|
-
"
|
|
885
|
+
"topic": "apps",
|
|
886
|
+
"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...",
|
|
847
887
|
"isESM": false,
|
|
848
888
|
"relativePath": [
|
|
849
889
|
"lib",
|
|
850
890
|
"commands",
|
|
851
|
-
"
|
|
852
|
-
"
|
|
891
|
+
"apps",
|
|
892
|
+
"info.js"
|
|
853
893
|
]
|
|
854
894
|
},
|
|
855
|
-
"
|
|
856
|
-
"aliases": [
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
"required": true
|
|
862
|
-
}
|
|
863
|
-
},
|
|
864
|
-
"description": "show detailed add-on resource and attachment information",
|
|
895
|
+
"apps:join": {
|
|
896
|
+
"aliases": [
|
|
897
|
+
"join"
|
|
898
|
+
],
|
|
899
|
+
"args": {},
|
|
900
|
+
"description": "add yourself to a team app",
|
|
865
901
|
"flags": {
|
|
866
902
|
"app": {
|
|
867
903
|
"char": "a",
|
|
868
904
|
"description": "app to run command against",
|
|
869
905
|
"name": "app",
|
|
906
|
+
"required": true,
|
|
870
907
|
"hasDynamicHelp": false,
|
|
871
908
|
"multiple": false,
|
|
872
909
|
"type": "option"
|
|
@@ -882,42 +919,33 @@
|
|
|
882
919
|
},
|
|
883
920
|
"hasDynamicHelp": false,
|
|
884
921
|
"hiddenAliases": [],
|
|
885
|
-
"id": "
|
|
922
|
+
"id": "apps:join",
|
|
886
923
|
"pluginAlias": "heroku",
|
|
887
924
|
"pluginName": "heroku",
|
|
888
925
|
"pluginType": "core",
|
|
889
926
|
"strict": true,
|
|
890
|
-
"
|
|
891
|
-
"topic": "addons",
|
|
927
|
+
"topic": "apps",
|
|
892
928
|
"isESM": false,
|
|
893
929
|
"relativePath": [
|
|
894
930
|
"lib",
|
|
895
931
|
"commands",
|
|
896
|
-
"
|
|
897
|
-
"
|
|
932
|
+
"apps",
|
|
933
|
+
"join.js"
|
|
898
934
|
]
|
|
899
935
|
},
|
|
900
|
-
"
|
|
901
|
-
"aliases": [
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
}
|
|
908
|
-
},
|
|
909
|
-
"description": "open an add-on's dashboard in your browser",
|
|
936
|
+
"apps:leave": {
|
|
937
|
+
"aliases": [
|
|
938
|
+
"leave"
|
|
939
|
+
],
|
|
940
|
+
"args": {},
|
|
941
|
+
"description": "remove yourself from a team app",
|
|
942
|
+
"examples": "heroku apps:leave -a APP",
|
|
910
943
|
"flags": {
|
|
911
|
-
"show-url": {
|
|
912
|
-
"description": "show URL, do not open browser",
|
|
913
|
-
"name": "show-url",
|
|
914
|
-
"allowNo": false,
|
|
915
|
-
"type": "boolean"
|
|
916
|
-
},
|
|
917
944
|
"app": {
|
|
918
945
|
"char": "a",
|
|
919
946
|
"description": "app to run command against",
|
|
920
947
|
"name": "app",
|
|
948
|
+
"required": true,
|
|
921
949
|
"hasDynamicHelp": false,
|
|
922
950
|
"multiple": false,
|
|
923
951
|
"type": "option"
|
|
@@ -933,138 +961,132 @@
|
|
|
933
961
|
},
|
|
934
962
|
"hasDynamicHelp": false,
|
|
935
963
|
"hiddenAliases": [],
|
|
936
|
-
"id": "
|
|
964
|
+
"id": "apps:leave",
|
|
937
965
|
"pluginAlias": "heroku",
|
|
938
966
|
"pluginName": "heroku",
|
|
939
967
|
"pluginType": "core",
|
|
940
968
|
"strict": true,
|
|
941
|
-
"topic": "
|
|
969
|
+
"topic": "apps",
|
|
970
|
+
"example": "heroku apps:leave -a APP",
|
|
942
971
|
"isESM": false,
|
|
943
972
|
"relativePath": [
|
|
944
973
|
"lib",
|
|
945
974
|
"commands",
|
|
946
|
-
"
|
|
947
|
-
"
|
|
975
|
+
"apps",
|
|
976
|
+
"leave.js"
|
|
948
977
|
]
|
|
949
978
|
},
|
|
950
|
-
"
|
|
951
|
-
"aliases": [
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
"required": true
|
|
957
|
-
}
|
|
958
|
-
},
|
|
959
|
-
"description": "list all available plans for an add-on service",
|
|
979
|
+
"apps:lock": {
|
|
980
|
+
"aliases": [
|
|
981
|
+
"lock"
|
|
982
|
+
],
|
|
983
|
+
"args": {},
|
|
984
|
+
"description": "prevent team members from joining an app",
|
|
960
985
|
"flags": {
|
|
961
|
-
"
|
|
962
|
-
"
|
|
963
|
-
"
|
|
964
|
-
"
|
|
965
|
-
"
|
|
986
|
+
"app": {
|
|
987
|
+
"char": "a",
|
|
988
|
+
"description": "app to run command against",
|
|
989
|
+
"name": "app",
|
|
990
|
+
"required": true,
|
|
991
|
+
"hasDynamicHelp": false,
|
|
992
|
+
"multiple": false,
|
|
993
|
+
"type": "option"
|
|
994
|
+
},
|
|
995
|
+
"remote": {
|
|
996
|
+
"char": "r",
|
|
997
|
+
"description": "git remote of app to use",
|
|
998
|
+
"name": "remote",
|
|
999
|
+
"hasDynamicHelp": false,
|
|
1000
|
+
"multiple": false,
|
|
1001
|
+
"type": "option"
|
|
966
1002
|
}
|
|
967
1003
|
},
|
|
968
1004
|
"hasDynamicHelp": false,
|
|
969
1005
|
"hiddenAliases": [],
|
|
970
|
-
"id": "
|
|
1006
|
+
"id": "apps:lock",
|
|
971
1007
|
"pluginAlias": "heroku",
|
|
972
1008
|
"pluginName": "heroku",
|
|
973
1009
|
"pluginType": "core",
|
|
974
1010
|
"strict": true,
|
|
975
|
-
"topic": "
|
|
1011
|
+
"topic": "apps",
|
|
976
1012
|
"isESM": false,
|
|
977
1013
|
"relativePath": [
|
|
978
1014
|
"lib",
|
|
979
1015
|
"commands",
|
|
980
|
-
"
|
|
981
|
-
"
|
|
1016
|
+
"apps",
|
|
1017
|
+
"lock.js"
|
|
982
1018
|
]
|
|
983
1019
|
},
|
|
984
|
-
"
|
|
1020
|
+
"apps:open": {
|
|
985
1021
|
"aliases": [],
|
|
986
1022
|
"args": {
|
|
987
|
-
"
|
|
988
|
-
"description": "
|
|
989
|
-
"name": "
|
|
990
|
-
"required":
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
"description": "rename an add-on",
|
|
999
|
-
"flags": {},
|
|
1000
|
-
"hasDynamicHelp": false,
|
|
1001
|
-
"hiddenAliases": [],
|
|
1002
|
-
"id": "addons:rename",
|
|
1003
|
-
"pluginAlias": "heroku",
|
|
1004
|
-
"pluginName": "heroku",
|
|
1005
|
-
"pluginType": "core",
|
|
1006
|
-
"strict": true,
|
|
1007
|
-
"topic": "addons",
|
|
1008
|
-
"isESM": false,
|
|
1009
|
-
"relativePath": [
|
|
1010
|
-
"lib",
|
|
1011
|
-
"commands",
|
|
1012
|
-
"addons",
|
|
1013
|
-
"rename.js"
|
|
1014
|
-
]
|
|
1015
|
-
},
|
|
1016
|
-
"addons:services": {
|
|
1017
|
-
"aliases": [],
|
|
1018
|
-
"args": {},
|
|
1019
|
-
"description": "list all available add-on services",
|
|
1023
|
+
"path": {
|
|
1024
|
+
"description": "base URL path of app",
|
|
1025
|
+
"name": "path",
|
|
1026
|
+
"required": false
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"description": "open the app in a web browser",
|
|
1030
|
+
"examples": [
|
|
1031
|
+
"$ heroku open -a myapp",
|
|
1032
|
+
"$ heroku open -a myapp /foo"
|
|
1033
|
+
],
|
|
1020
1034
|
"flags": {
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1025
|
-
"
|
|
1035
|
+
"app": {
|
|
1036
|
+
"char": "a",
|
|
1037
|
+
"description": "app to run command against",
|
|
1038
|
+
"name": "app",
|
|
1039
|
+
"required": true,
|
|
1040
|
+
"hasDynamicHelp": false,
|
|
1041
|
+
"multiple": false,
|
|
1042
|
+
"type": "option"
|
|
1043
|
+
},
|
|
1044
|
+
"remote": {
|
|
1045
|
+
"char": "r",
|
|
1046
|
+
"description": "git remote of app to use",
|
|
1047
|
+
"name": "remote",
|
|
1048
|
+
"hasDynamicHelp": false,
|
|
1049
|
+
"multiple": false,
|
|
1050
|
+
"type": "option"
|
|
1026
1051
|
}
|
|
1027
1052
|
},
|
|
1028
1053
|
"hasDynamicHelp": false,
|
|
1029
|
-
"hiddenAliases": [
|
|
1030
|
-
|
|
1054
|
+
"hiddenAliases": [
|
|
1055
|
+
"open"
|
|
1056
|
+
],
|
|
1057
|
+
"id": "apps:open",
|
|
1031
1058
|
"pluginAlias": "heroku",
|
|
1032
1059
|
"pluginName": "heroku",
|
|
1033
1060
|
"pluginType": "core",
|
|
1034
1061
|
"strict": true,
|
|
1035
|
-
"topic": "
|
|
1062
|
+
"topic": "apps",
|
|
1036
1063
|
"isESM": false,
|
|
1037
1064
|
"relativePath": [
|
|
1038
1065
|
"lib",
|
|
1039
1066
|
"commands",
|
|
1040
|
-
"
|
|
1041
|
-
"
|
|
1067
|
+
"apps",
|
|
1068
|
+
"open.js"
|
|
1042
1069
|
]
|
|
1043
1070
|
},
|
|
1044
|
-
"
|
|
1045
|
-
"aliases": [
|
|
1046
|
-
"addons:downgrade"
|
|
1047
|
-
],
|
|
1071
|
+
"apps:rename": {
|
|
1072
|
+
"aliases": [],
|
|
1048
1073
|
"args": {
|
|
1049
|
-
"
|
|
1050
|
-
"description": "
|
|
1051
|
-
"name": "
|
|
1074
|
+
"newname": {
|
|
1075
|
+
"description": "new unique name of the app",
|
|
1076
|
+
"name": "newname",
|
|
1052
1077
|
"required": true
|
|
1053
|
-
},
|
|
1054
|
-
"plan": {
|
|
1055
|
-
"description": "unique identifier or name of the plan",
|
|
1056
|
-
"name": "plan"
|
|
1057
1078
|
}
|
|
1058
1079
|
},
|
|
1059
|
-
"description": "
|
|
1080
|
+
"description": "rename an app",
|
|
1060
1081
|
"examples": [
|
|
1061
|
-
"
|
|
1082
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1062
1083
|
],
|
|
1063
1084
|
"flags": {
|
|
1064
1085
|
"app": {
|
|
1065
1086
|
"char": "a",
|
|
1066
1087
|
"description": "app to run command against",
|
|
1067
1088
|
"name": "app",
|
|
1089
|
+
"required": true,
|
|
1068
1090
|
"hasDynamicHelp": false,
|
|
1069
1091
|
"multiple": false,
|
|
1070
1092
|
"type": "option"
|
|
@@ -1079,37 +1101,52 @@
|
|
|
1079
1101
|
}
|
|
1080
1102
|
},
|
|
1081
1103
|
"hasDynamicHelp": false,
|
|
1082
|
-
"hiddenAliases": [
|
|
1083
|
-
|
|
1104
|
+
"hiddenAliases": [
|
|
1105
|
+
"rename"
|
|
1106
|
+
],
|
|
1107
|
+
"id": "apps:rename",
|
|
1084
1108
|
"pluginAlias": "heroku",
|
|
1085
1109
|
"pluginName": "heroku",
|
|
1086
1110
|
"pluginType": "core",
|
|
1087
1111
|
"strict": true,
|
|
1088
|
-
"
|
|
1112
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1113
|
+
"topic": "apps",
|
|
1089
1114
|
"isESM": false,
|
|
1090
1115
|
"relativePath": [
|
|
1091
1116
|
"lib",
|
|
1092
1117
|
"commands",
|
|
1093
|
-
"
|
|
1094
|
-
"
|
|
1118
|
+
"apps",
|
|
1119
|
+
"rename.js"
|
|
1095
1120
|
]
|
|
1096
1121
|
},
|
|
1097
|
-
"
|
|
1122
|
+
"apps:transfer": {
|
|
1098
1123
|
"aliases": [],
|
|
1099
1124
|
"args": {
|
|
1100
|
-
"
|
|
1101
|
-
"description": "
|
|
1102
|
-
"name": "
|
|
1125
|
+
"recipient": {
|
|
1126
|
+
"description": "user or team to transfer applications to",
|
|
1127
|
+
"name": "recipient",
|
|
1128
|
+
"required": true
|
|
1103
1129
|
}
|
|
1104
1130
|
},
|
|
1105
|
-
"description": "
|
|
1131
|
+
"description": "transfer applications to another user or team",
|
|
1132
|
+
"examples": [
|
|
1133
|
+
"$ 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..."
|
|
1134
|
+
],
|
|
1106
1135
|
"flags": {
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
-
"
|
|
1136
|
+
"locked": {
|
|
1137
|
+
"char": "l",
|
|
1138
|
+
"description": "lock the app upon transfer",
|
|
1139
|
+
"name": "locked",
|
|
1140
|
+
"required": false,
|
|
1141
|
+
"allowNo": false,
|
|
1142
|
+
"type": "boolean"
|
|
1143
|
+
},
|
|
1144
|
+
"bulk": {
|
|
1145
|
+
"description": "transfer applications in bulk",
|
|
1146
|
+
"name": "bulk",
|
|
1147
|
+
"required": false,
|
|
1148
|
+
"allowNo": false,
|
|
1149
|
+
"type": "boolean"
|
|
1113
1150
|
},
|
|
1114
1151
|
"app": {
|
|
1115
1152
|
"char": "a",
|
|
@@ -1126,223 +1163,178 @@
|
|
|
1126
1163
|
"hasDynamicHelp": false,
|
|
1127
1164
|
"multiple": false,
|
|
1128
1165
|
"type": "option"
|
|
1166
|
+
},
|
|
1167
|
+
"confirm": {
|
|
1168
|
+
"char": "c",
|
|
1169
|
+
"hidden": true,
|
|
1170
|
+
"name": "confirm",
|
|
1171
|
+
"hasDynamicHelp": false,
|
|
1172
|
+
"multiple": false,
|
|
1173
|
+
"type": "option"
|
|
1129
1174
|
}
|
|
1130
1175
|
},
|
|
1131
1176
|
"hasDynamicHelp": false,
|
|
1132
1177
|
"hiddenAliases": [],
|
|
1133
|
-
"id": "
|
|
1178
|
+
"id": "apps:transfer",
|
|
1134
1179
|
"pluginAlias": "heroku",
|
|
1135
1180
|
"pluginName": "heroku",
|
|
1136
1181
|
"pluginType": "core",
|
|
1137
1182
|
"strict": true,
|
|
1138
|
-
"topic": "
|
|
1183
|
+
"topic": "apps",
|
|
1139
1184
|
"isESM": false,
|
|
1140
1185
|
"relativePath": [
|
|
1141
1186
|
"lib",
|
|
1142
1187
|
"commands",
|
|
1143
|
-
"
|
|
1144
|
-
"
|
|
1188
|
+
"apps",
|
|
1189
|
+
"transfer.js"
|
|
1145
1190
|
]
|
|
1146
1191
|
},
|
|
1147
|
-
"apps:
|
|
1148
|
-
"aliases": [
|
|
1149
|
-
|
|
1150
|
-
"app": {
|
|
1151
|
-
"description": "name of app to create",
|
|
1152
|
-
"name": "app",
|
|
1153
|
-
"required": false
|
|
1154
|
-
}
|
|
1155
|
-
},
|
|
1156
|
-
"description": "creates a new app",
|
|
1157
|
-
"examples": [
|
|
1158
|
-
"$ 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"
|
|
1192
|
+
"apps:unlock": {
|
|
1193
|
+
"aliases": [
|
|
1194
|
+
"unlock"
|
|
1159
1195
|
],
|
|
1196
|
+
"args": {},
|
|
1197
|
+
"description": "unlock an app so any team member can join",
|
|
1160
1198
|
"flags": {
|
|
1161
1199
|
"app": {
|
|
1162
|
-
"
|
|
1200
|
+
"char": "a",
|
|
1201
|
+
"description": "app to run command against",
|
|
1163
1202
|
"name": "app",
|
|
1203
|
+
"required": true,
|
|
1164
1204
|
"hasDynamicHelp": false,
|
|
1165
1205
|
"multiple": false,
|
|
1166
1206
|
"type": "option"
|
|
1167
1207
|
},
|
|
1168
|
-
"addons": {
|
|
1169
|
-
"description": "comma-delimited list of addons to install",
|
|
1170
|
-
"name": "addons",
|
|
1171
|
-
"hasDynamicHelp": false,
|
|
1172
|
-
"multiple": false,
|
|
1173
|
-
"type": "option"
|
|
1174
|
-
},
|
|
1175
|
-
"buildpack": {
|
|
1176
|
-
"char": "b",
|
|
1177
|
-
"description": "buildpack url to use for this app",
|
|
1178
|
-
"name": "buildpack",
|
|
1179
|
-
"hasDynamicHelp": false,
|
|
1180
|
-
"multiple": false,
|
|
1181
|
-
"type": "option"
|
|
1182
|
-
},
|
|
1183
|
-
"manifest": {
|
|
1184
|
-
"char": "m",
|
|
1185
|
-
"description": "use heroku.yml settings for this app",
|
|
1186
|
-
"hidden": true,
|
|
1187
|
-
"name": "manifest",
|
|
1188
|
-
"allowNo": false,
|
|
1189
|
-
"type": "boolean"
|
|
1190
|
-
},
|
|
1191
|
-
"no-remote": {
|
|
1192
|
-
"char": "n",
|
|
1193
|
-
"description": "do not create a git remote",
|
|
1194
|
-
"name": "no-remote",
|
|
1195
|
-
"allowNo": false,
|
|
1196
|
-
"type": "boolean"
|
|
1197
|
-
},
|
|
1198
1208
|
"remote": {
|
|
1199
1209
|
"char": "r",
|
|
1200
|
-
"description": "
|
|
1210
|
+
"description": "git remote of app to use",
|
|
1201
1211
|
"name": "remote",
|
|
1202
|
-
"default": "heroku",
|
|
1203
|
-
"hasDynamicHelp": false,
|
|
1204
|
-
"multiple": false,
|
|
1205
|
-
"type": "option"
|
|
1206
|
-
},
|
|
1207
|
-
"stack": {
|
|
1208
|
-
"char": "s",
|
|
1209
|
-
"description": "the stack to create the app on",
|
|
1210
|
-
"name": "stack",
|
|
1211
1212
|
"hasDynamicHelp": false,
|
|
1212
1213
|
"multiple": false,
|
|
1213
1214
|
"type": "option"
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"hasDynamicHelp": false,
|
|
1218
|
+
"hiddenAliases": [],
|
|
1219
|
+
"id": "apps:unlock",
|
|
1220
|
+
"pluginAlias": "heroku",
|
|
1221
|
+
"pluginName": "heroku",
|
|
1222
|
+
"pluginType": "core",
|
|
1223
|
+
"strict": true,
|
|
1224
|
+
"topic": "apps",
|
|
1225
|
+
"isESM": false,
|
|
1226
|
+
"relativePath": [
|
|
1227
|
+
"lib",
|
|
1228
|
+
"commands",
|
|
1229
|
+
"apps",
|
|
1230
|
+
"unlock.js"
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
"addons:attach": {
|
|
1234
|
+
"aliases": [],
|
|
1235
|
+
"args": {
|
|
1236
|
+
"addon_name": {
|
|
1237
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1238
|
+
"name": "addon_name",
|
|
1239
|
+
"required": true
|
|
1240
|
+
}
|
|
1241
|
+
},
|
|
1242
|
+
"description": "attach an existing add-on resource to an app",
|
|
1243
|
+
"flags": {
|
|
1244
|
+
"as": {
|
|
1245
|
+
"description": "name for add-on attachment",
|
|
1246
|
+
"name": "as",
|
|
1218
1247
|
"hasDynamicHelp": false,
|
|
1219
1248
|
"multiple": false,
|
|
1220
1249
|
"type": "option"
|
|
1221
1250
|
},
|
|
1222
|
-
"
|
|
1223
|
-
"description": "
|
|
1224
|
-
"name": "
|
|
1251
|
+
"credential": {
|
|
1252
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
1253
|
+
"name": "credential",
|
|
1225
1254
|
"hasDynamicHelp": false,
|
|
1226
1255
|
"multiple": false,
|
|
1227
1256
|
"type": "option"
|
|
1228
1257
|
},
|
|
1229
|
-
"
|
|
1230
|
-
"description": "
|
|
1231
|
-
"
|
|
1232
|
-
"name": "internal-routing",
|
|
1233
|
-
"allowNo": false,
|
|
1234
|
-
"type": "boolean"
|
|
1235
|
-
},
|
|
1236
|
-
"features": {
|
|
1237
|
-
"hidden": true,
|
|
1238
|
-
"name": "features",
|
|
1258
|
+
"confirm": {
|
|
1259
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
1260
|
+
"name": "confirm",
|
|
1239
1261
|
"hasDynamicHelp": false,
|
|
1240
1262
|
"multiple": false,
|
|
1241
1263
|
"type": "option"
|
|
1242
1264
|
},
|
|
1243
|
-
"
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1265
|
+
"app": {
|
|
1266
|
+
"char": "a",
|
|
1267
|
+
"description": "app to run command against",
|
|
1268
|
+
"name": "app",
|
|
1269
|
+
"required": true,
|
|
1246
1270
|
"hasDynamicHelp": false,
|
|
1247
1271
|
"multiple": false,
|
|
1248
1272
|
"type": "option"
|
|
1249
1273
|
},
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1253
|
-
"
|
|
1254
|
-
"type": "boolean"
|
|
1255
|
-
},
|
|
1256
|
-
"json": {
|
|
1257
|
-
"description": "output in json format",
|
|
1258
|
-
"name": "json",
|
|
1259
|
-
"allowNo": false,
|
|
1260
|
-
"type": "boolean"
|
|
1261
|
-
},
|
|
1262
|
-
"team": {
|
|
1263
|
-
"char": "t",
|
|
1264
|
-
"description": "team to use",
|
|
1265
|
-
"name": "team",
|
|
1274
|
+
"remote": {
|
|
1275
|
+
"char": "r",
|
|
1276
|
+
"description": "git remote of app to use",
|
|
1277
|
+
"name": "remote",
|
|
1266
1278
|
"hasDynamicHelp": false,
|
|
1267
1279
|
"multiple": false,
|
|
1268
1280
|
"type": "option"
|
|
1269
1281
|
}
|
|
1270
1282
|
},
|
|
1271
1283
|
"hasDynamicHelp": false,
|
|
1272
|
-
"hiddenAliases": [
|
|
1273
|
-
|
|
1274
|
-
],
|
|
1275
|
-
"id": "apps:create",
|
|
1284
|
+
"hiddenAliases": [],
|
|
1285
|
+
"id": "addons:attach",
|
|
1276
1286
|
"pluginAlias": "heroku",
|
|
1277
1287
|
"pluginName": "heroku",
|
|
1278
1288
|
"pluginType": "core",
|
|
1279
1289
|
"strict": true,
|
|
1290
|
+
"topic": "addons",
|
|
1280
1291
|
"isESM": false,
|
|
1281
1292
|
"relativePath": [
|
|
1282
1293
|
"lib",
|
|
1283
1294
|
"commands",
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1295
|
+
"addons",
|
|
1296
|
+
"attach.js"
|
|
1286
1297
|
]
|
|
1287
1298
|
},
|
|
1288
|
-
"
|
|
1299
|
+
"addons:create": {
|
|
1289
1300
|
"aliases": [],
|
|
1290
1301
|
"args": {
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
1293
|
-
"name": "
|
|
1302
|
+
"service:plan": {
|
|
1303
|
+
"description": "unique identifier or unique name of the add-on service plan",
|
|
1304
|
+
"name": "service:plan",
|
|
1305
|
+
"required": true
|
|
1294
1306
|
}
|
|
1295
1307
|
},
|
|
1296
|
-
"description": "
|
|
1308
|
+
"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",
|
|
1309
|
+
"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",
|
|
1297
1310
|
"flags": {
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1301
|
-
"name": "app",
|
|
1311
|
+
"name": {
|
|
1312
|
+
"description": "name for the add-on resource",
|
|
1313
|
+
"name": "name",
|
|
1302
1314
|
"hasDynamicHelp": false,
|
|
1303
1315
|
"multiple": false,
|
|
1304
1316
|
"type": "option"
|
|
1305
1317
|
},
|
|
1306
|
-
"
|
|
1307
|
-
"
|
|
1308
|
-
"
|
|
1309
|
-
"name": "remote",
|
|
1318
|
+
"as": {
|
|
1319
|
+
"description": "name for the initial add-on attachment",
|
|
1320
|
+
"name": "as",
|
|
1310
1321
|
"hasDynamicHelp": false,
|
|
1311
1322
|
"multiple": false,
|
|
1312
1323
|
"type": "option"
|
|
1313
1324
|
},
|
|
1314
1325
|
"confirm": {
|
|
1315
|
-
"
|
|
1326
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
1316
1327
|
"name": "confirm",
|
|
1317
1328
|
"hasDynamicHelp": false,
|
|
1318
1329
|
"multiple": false,
|
|
1319
1330
|
"type": "option"
|
|
1320
|
-
}
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
"id": "apps:destroy",
|
|
1328
|
-
"pluginAlias": "heroku",
|
|
1329
|
-
"pluginName": "heroku",
|
|
1330
|
-
"pluginType": "core",
|
|
1331
|
-
"strict": true,
|
|
1332
|
-
"help": "This will also destroy all add-ons on the app.",
|
|
1333
|
-
"isESM": false,
|
|
1334
|
-
"relativePath": [
|
|
1335
|
-
"lib",
|
|
1336
|
-
"commands",
|
|
1337
|
-
"apps",
|
|
1338
|
-
"destroy.js"
|
|
1339
|
-
]
|
|
1340
|
-
},
|
|
1341
|
-
"apps:errors": {
|
|
1342
|
-
"aliases": [],
|
|
1343
|
-
"args": {},
|
|
1344
|
-
"description": "view app errors",
|
|
1345
|
-
"flags": {
|
|
1331
|
+
},
|
|
1332
|
+
"wait": {
|
|
1333
|
+
"description": "watch add-on creation status and exit when complete",
|
|
1334
|
+
"name": "wait",
|
|
1335
|
+
"allowNo": false,
|
|
1336
|
+
"type": "boolean"
|
|
1337
|
+
},
|
|
1346
1338
|
"app": {
|
|
1347
1339
|
"char": "a",
|
|
1348
1340
|
"description": "app to run command against",
|
|
@@ -1359,98 +1351,73 @@
|
|
|
1359
1351
|
"hasDynamicHelp": false,
|
|
1360
1352
|
"multiple": false,
|
|
1361
1353
|
"type": "option"
|
|
1362
|
-
},
|
|
1363
|
-
"json": {
|
|
1364
|
-
"description": "output in json format",
|
|
1365
|
-
"name": "json",
|
|
1366
|
-
"allowNo": false,
|
|
1367
|
-
"type": "boolean"
|
|
1368
|
-
},
|
|
1369
|
-
"hours": {
|
|
1370
|
-
"description": "number of hours to look back (default 24)",
|
|
1371
|
-
"name": "hours",
|
|
1372
|
-
"default": "24",
|
|
1373
|
-
"hasDynamicHelp": false,
|
|
1374
|
-
"multiple": false,
|
|
1375
|
-
"type": "option"
|
|
1376
|
-
},
|
|
1377
|
-
"router": {
|
|
1378
|
-
"description": "show only router errors",
|
|
1379
|
-
"name": "router",
|
|
1380
|
-
"allowNo": false,
|
|
1381
|
-
"type": "boolean"
|
|
1382
|
-
},
|
|
1383
|
-
"dyno": {
|
|
1384
|
-
"description": "show only dyno errors",
|
|
1385
|
-
"name": "dyno",
|
|
1386
|
-
"allowNo": false,
|
|
1387
|
-
"type": "boolean"
|
|
1388
1354
|
}
|
|
1389
1355
|
},
|
|
1390
1356
|
"hasDynamicHelp": false,
|
|
1391
|
-
"hiddenAliases": [
|
|
1392
|
-
|
|
1357
|
+
"hiddenAliases": [
|
|
1358
|
+
"addons:add"
|
|
1359
|
+
],
|
|
1360
|
+
"id": "addons:create",
|
|
1393
1361
|
"pluginAlias": "heroku",
|
|
1394
1362
|
"pluginName": "heroku",
|
|
1395
1363
|
"pluginType": "core",
|
|
1396
|
-
"strict":
|
|
1364
|
+
"strict": false,
|
|
1365
|
+
"topic": "addons",
|
|
1366
|
+
"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",
|
|
1397
1367
|
"isESM": false,
|
|
1398
1368
|
"relativePath": [
|
|
1399
1369
|
"lib",
|
|
1400
1370
|
"commands",
|
|
1401
|
-
"
|
|
1402
|
-
"
|
|
1371
|
+
"addons",
|
|
1372
|
+
"create.js"
|
|
1403
1373
|
]
|
|
1404
1374
|
},
|
|
1405
|
-
"
|
|
1375
|
+
"addons:destroy": {
|
|
1406
1376
|
"aliases": [],
|
|
1407
|
-
"args": {
|
|
1408
|
-
|
|
1377
|
+
"args": {
|
|
1378
|
+
"addonName": {
|
|
1379
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1380
|
+
"name": "addonName",
|
|
1381
|
+
"required": true
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"description": "permanently destroy an add-on resource",
|
|
1409
1385
|
"examples": [
|
|
1410
|
-
"
|
|
1386
|
+
"addons:destroy [ADDON]... [flags]"
|
|
1411
1387
|
],
|
|
1412
1388
|
"flags": {
|
|
1413
|
-
"
|
|
1414
|
-
"char": "
|
|
1415
|
-
"description": "
|
|
1416
|
-
"name": "
|
|
1417
|
-
"allowNo": false,
|
|
1418
|
-
"type": "boolean"
|
|
1419
|
-
},
|
|
1420
|
-
"json": {
|
|
1421
|
-
"char": "j",
|
|
1422
|
-
"description": "output in json format",
|
|
1423
|
-
"name": "json",
|
|
1389
|
+
"force": {
|
|
1390
|
+
"char": "f",
|
|
1391
|
+
"description": "allow destruction even if connected to other apps",
|
|
1392
|
+
"name": "force",
|
|
1424
1393
|
"allowNo": false,
|
|
1425
1394
|
"type": "boolean"
|
|
1426
1395
|
},
|
|
1427
|
-
"
|
|
1428
|
-
"char": "
|
|
1429
|
-
"
|
|
1430
|
-
"name": "space",
|
|
1396
|
+
"confirm": {
|
|
1397
|
+
"char": "c",
|
|
1398
|
+
"name": "confirm",
|
|
1431
1399
|
"hasDynamicHelp": false,
|
|
1432
1400
|
"multiple": false,
|
|
1433
1401
|
"type": "option"
|
|
1434
1402
|
},
|
|
1435
|
-
"
|
|
1436
|
-
"
|
|
1437
|
-
"
|
|
1438
|
-
"name": "personal",
|
|
1403
|
+
"wait": {
|
|
1404
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
1405
|
+
"name": "wait",
|
|
1439
1406
|
"allowNo": false,
|
|
1440
1407
|
"type": "boolean"
|
|
1441
1408
|
},
|
|
1442
|
-
"
|
|
1443
|
-
"char": "
|
|
1444
|
-
"description": "
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1448
|
-
"type": "
|
|
1409
|
+
"app": {
|
|
1410
|
+
"char": "a",
|
|
1411
|
+
"description": "app to run command against",
|
|
1412
|
+
"name": "app",
|
|
1413
|
+
"hasDynamicHelp": false,
|
|
1414
|
+
"multiple": false,
|
|
1415
|
+
"type": "option"
|
|
1449
1416
|
},
|
|
1450
|
-
"
|
|
1451
|
-
"char": "
|
|
1452
|
-
"description": "
|
|
1453
|
-
"name": "
|
|
1417
|
+
"remote": {
|
|
1418
|
+
"char": "r",
|
|
1419
|
+
"description": "git remote of app to use",
|
|
1420
|
+
"name": "remote",
|
|
1454
1421
|
"hasDynamicHelp": false,
|
|
1455
1422
|
"multiple": false,
|
|
1456
1423
|
"type": "option"
|
|
@@ -1458,41 +1425,38 @@
|
|
|
1458
1425
|
},
|
|
1459
1426
|
"hasDynamicHelp": false,
|
|
1460
1427
|
"hiddenAliases": [
|
|
1461
|
-
"
|
|
1462
|
-
"apps:list"
|
|
1428
|
+
"addons:remove"
|
|
1463
1429
|
],
|
|
1464
|
-
"id": "
|
|
1430
|
+
"id": "addons:destroy",
|
|
1465
1431
|
"pluginAlias": "heroku",
|
|
1466
1432
|
"pluginName": "heroku",
|
|
1467
1433
|
"pluginType": "core",
|
|
1468
|
-
"strict":
|
|
1469
|
-
"topic": "
|
|
1434
|
+
"strict": false,
|
|
1435
|
+
"topic": "addons",
|
|
1470
1436
|
"isESM": false,
|
|
1471
1437
|
"relativePath": [
|
|
1472
1438
|
"lib",
|
|
1473
1439
|
"commands",
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1440
|
+
"addons",
|
|
1441
|
+
"destroy.js"
|
|
1476
1442
|
]
|
|
1477
1443
|
},
|
|
1478
|
-
"
|
|
1444
|
+
"addons:detach": {
|
|
1479
1445
|
"aliases": [],
|
|
1480
1446
|
"args": {
|
|
1481
|
-
"
|
|
1482
|
-
"
|
|
1483
|
-
"name": "
|
|
1447
|
+
"attachment_name": {
|
|
1448
|
+
"description": "unique identifier of the add-on attachment",
|
|
1449
|
+
"name": "attachment_name",
|
|
1450
|
+
"required": true
|
|
1484
1451
|
}
|
|
1485
1452
|
},
|
|
1486
|
-
"description": "
|
|
1487
|
-
"examples": [
|
|
1488
|
-
"$ heroku apps:info",
|
|
1489
|
-
"$ heroku apps:info --shell"
|
|
1490
|
-
],
|
|
1453
|
+
"description": "detach an existing add-on resource from an app",
|
|
1491
1454
|
"flags": {
|
|
1492
1455
|
"app": {
|
|
1493
1456
|
"char": "a",
|
|
1494
1457
|
"description": "app to run command against",
|
|
1495
1458
|
"name": "app",
|
|
1459
|
+
"required": true,
|
|
1496
1460
|
"hasDynamicHelp": false,
|
|
1497
1461
|
"multiple": false,
|
|
1498
1462
|
"type": "option"
|
|
@@ -1504,60 +1468,45 @@
|
|
|
1504
1468
|
"hasDynamicHelp": false,
|
|
1505
1469
|
"multiple": false,
|
|
1506
1470
|
"type": "option"
|
|
1507
|
-
},
|
|
1508
|
-
"shell": {
|
|
1509
|
-
"char": "s",
|
|
1510
|
-
"description": "output more shell friendly key/value pairs",
|
|
1511
|
-
"name": "shell",
|
|
1512
|
-
"allowNo": false,
|
|
1513
|
-
"type": "boolean"
|
|
1514
|
-
},
|
|
1515
|
-
"extended": {
|
|
1516
|
-
"char": "x",
|
|
1517
|
-
"hidden": true,
|
|
1518
|
-
"name": "extended",
|
|
1519
|
-
"allowNo": false,
|
|
1520
|
-
"type": "boolean"
|
|
1521
|
-
},
|
|
1522
|
-
"json": {
|
|
1523
|
-
"char": "j",
|
|
1524
|
-
"description": "output in json format",
|
|
1525
|
-
"name": "json",
|
|
1526
|
-
"allowNo": false,
|
|
1527
|
-
"type": "boolean"
|
|
1528
1471
|
}
|
|
1529
1472
|
},
|
|
1530
1473
|
"hasDynamicHelp": false,
|
|
1531
|
-
"hiddenAliases": [
|
|
1532
|
-
|
|
1533
|
-
],
|
|
1534
|
-
"id": "apps:info",
|
|
1474
|
+
"hiddenAliases": [],
|
|
1475
|
+
"id": "addons:detach",
|
|
1535
1476
|
"pluginAlias": "heroku",
|
|
1536
1477
|
"pluginName": "heroku",
|
|
1537
1478
|
"pluginType": "core",
|
|
1538
1479
|
"strict": true,
|
|
1539
|
-
"topic": "
|
|
1540
|
-
"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...",
|
|
1480
|
+
"topic": "addons",
|
|
1541
1481
|
"isESM": false,
|
|
1542
1482
|
"relativePath": [
|
|
1543
1483
|
"lib",
|
|
1544
1484
|
"commands",
|
|
1545
|
-
"
|
|
1546
|
-
"
|
|
1485
|
+
"addons",
|
|
1486
|
+
"detach.js"
|
|
1547
1487
|
]
|
|
1548
1488
|
},
|
|
1549
|
-
"
|
|
1550
|
-
"aliases": [
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1489
|
+
"addons:docs": {
|
|
1490
|
+
"aliases": [],
|
|
1491
|
+
"args": {
|
|
1492
|
+
"addon": {
|
|
1493
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1494
|
+
"name": "addon",
|
|
1495
|
+
"required": true
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
"description": "open an add-on's Dev Center documentation in your browser",
|
|
1555
1499
|
"flags": {
|
|
1500
|
+
"show-url": {
|
|
1501
|
+
"description": "show URL, do not open browser",
|
|
1502
|
+
"name": "show-url",
|
|
1503
|
+
"allowNo": false,
|
|
1504
|
+
"type": "boolean"
|
|
1505
|
+
},
|
|
1556
1506
|
"app": {
|
|
1557
1507
|
"char": "a",
|
|
1558
1508
|
"description": "app to run command against",
|
|
1559
1509
|
"name": "app",
|
|
1560
|
-
"required": true,
|
|
1561
1510
|
"hasDynamicHelp": false,
|
|
1562
1511
|
"multiple": false,
|
|
1563
1512
|
"type": "option"
|
|
@@ -1573,33 +1522,46 @@
|
|
|
1573
1522
|
},
|
|
1574
1523
|
"hasDynamicHelp": false,
|
|
1575
1524
|
"hiddenAliases": [],
|
|
1576
|
-
"id": "
|
|
1525
|
+
"id": "addons:docs",
|
|
1577
1526
|
"pluginAlias": "heroku",
|
|
1578
1527
|
"pluginName": "heroku",
|
|
1579
1528
|
"pluginType": "core",
|
|
1580
1529
|
"strict": true,
|
|
1581
|
-
"topic": "
|
|
1530
|
+
"topic": "addons",
|
|
1582
1531
|
"isESM": false,
|
|
1583
1532
|
"relativePath": [
|
|
1584
1533
|
"lib",
|
|
1585
1534
|
"commands",
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1535
|
+
"addons",
|
|
1536
|
+
"docs.js"
|
|
1588
1537
|
]
|
|
1589
1538
|
},
|
|
1590
|
-
"
|
|
1591
|
-
"aliases": [
|
|
1592
|
-
"leave"
|
|
1593
|
-
],
|
|
1539
|
+
"addons": {
|
|
1540
|
+
"aliases": [],
|
|
1594
1541
|
"args": {},
|
|
1595
|
-
"description": "
|
|
1596
|
-
"examples":
|
|
1542
|
+
"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 ",
|
|
1543
|
+
"examples": [
|
|
1544
|
+
"$ heroku addons --all",
|
|
1545
|
+
"$ heroku addons --app acme-inc-www"
|
|
1546
|
+
],
|
|
1597
1547
|
"flags": {
|
|
1548
|
+
"all": {
|
|
1549
|
+
"char": "A",
|
|
1550
|
+
"description": "show add-ons and attachments for all accessible apps",
|
|
1551
|
+
"name": "all",
|
|
1552
|
+
"allowNo": false,
|
|
1553
|
+
"type": "boolean"
|
|
1554
|
+
},
|
|
1555
|
+
"json": {
|
|
1556
|
+
"description": "return add-ons in json format",
|
|
1557
|
+
"name": "json",
|
|
1558
|
+
"allowNo": false,
|
|
1559
|
+
"type": "boolean"
|
|
1560
|
+
},
|
|
1598
1561
|
"app": {
|
|
1599
1562
|
"char": "a",
|
|
1600
1563
|
"description": "app to run command against",
|
|
1601
1564
|
"name": "app",
|
|
1602
|
-
"required": true,
|
|
1603
1565
|
"hasDynamicHelp": false,
|
|
1604
1566
|
"multiple": false,
|
|
1605
1567
|
"type": "option"
|
|
@@ -1615,33 +1577,36 @@
|
|
|
1615
1577
|
},
|
|
1616
1578
|
"hasDynamicHelp": false,
|
|
1617
1579
|
"hiddenAliases": [],
|
|
1618
|
-
"id": "
|
|
1580
|
+
"id": "addons",
|
|
1619
1581
|
"pluginAlias": "heroku",
|
|
1620
1582
|
"pluginName": "heroku",
|
|
1621
1583
|
"pluginType": "core",
|
|
1622
1584
|
"strict": true,
|
|
1623
|
-
"
|
|
1624
|
-
"
|
|
1585
|
+
"usage": "addons [--all|--app APP]",
|
|
1586
|
+
"topic": "addons",
|
|
1625
1587
|
"isESM": false,
|
|
1626
1588
|
"relativePath": [
|
|
1627
1589
|
"lib",
|
|
1628
1590
|
"commands",
|
|
1629
|
-
"
|
|
1630
|
-
"
|
|
1591
|
+
"addons",
|
|
1592
|
+
"index.js"
|
|
1631
1593
|
]
|
|
1632
1594
|
},
|
|
1633
|
-
"
|
|
1634
|
-
"aliases": [
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1595
|
+
"addons:info": {
|
|
1596
|
+
"aliases": [],
|
|
1597
|
+
"args": {
|
|
1598
|
+
"addon": {
|
|
1599
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1600
|
+
"name": "addon",
|
|
1601
|
+
"required": true
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"description": "show detailed add-on resource and attachment information",
|
|
1639
1605
|
"flags": {
|
|
1640
1606
|
"app": {
|
|
1641
1607
|
"char": "a",
|
|
1642
1608
|
"description": "app to run command against",
|
|
1643
1609
|
"name": "app",
|
|
1644
|
-
"required": true,
|
|
1645
1610
|
"hasDynamicHelp": false,
|
|
1646
1611
|
"multiple": false,
|
|
1647
1612
|
"type": "option"
|
|
@@ -1657,40 +1622,42 @@
|
|
|
1657
1622
|
},
|
|
1658
1623
|
"hasDynamicHelp": false,
|
|
1659
1624
|
"hiddenAliases": [],
|
|
1660
|
-
"id": "
|
|
1625
|
+
"id": "addons:info",
|
|
1661
1626
|
"pluginAlias": "heroku",
|
|
1662
1627
|
"pluginName": "heroku",
|
|
1663
1628
|
"pluginType": "core",
|
|
1664
1629
|
"strict": true,
|
|
1665
|
-
"
|
|
1630
|
+
"usage": "addons:info ADDON",
|
|
1631
|
+
"topic": "addons",
|
|
1666
1632
|
"isESM": false,
|
|
1667
1633
|
"relativePath": [
|
|
1668
1634
|
"lib",
|
|
1669
1635
|
"commands",
|
|
1670
|
-
"
|
|
1671
|
-
"
|
|
1636
|
+
"addons",
|
|
1637
|
+
"info.js"
|
|
1672
1638
|
]
|
|
1673
1639
|
},
|
|
1674
|
-
"
|
|
1640
|
+
"addons:open": {
|
|
1675
1641
|
"aliases": [],
|
|
1676
1642
|
"args": {
|
|
1677
|
-
"
|
|
1678
|
-
"description": "
|
|
1679
|
-
"name": "
|
|
1680
|
-
"required":
|
|
1643
|
+
"addon": {
|
|
1644
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1645
|
+
"name": "addon",
|
|
1646
|
+
"required": true
|
|
1681
1647
|
}
|
|
1682
1648
|
},
|
|
1683
|
-
"description": "open
|
|
1684
|
-
"examples": [
|
|
1685
|
-
"$ heroku open -a myapp",
|
|
1686
|
-
"$ heroku open -a myapp /foo"
|
|
1687
|
-
],
|
|
1649
|
+
"description": "open an add-on's dashboard in your browser",
|
|
1688
1650
|
"flags": {
|
|
1651
|
+
"show-url": {
|
|
1652
|
+
"description": "show URL, do not open browser",
|
|
1653
|
+
"name": "show-url",
|
|
1654
|
+
"allowNo": false,
|
|
1655
|
+
"type": "boolean"
|
|
1656
|
+
},
|
|
1689
1657
|
"app": {
|
|
1690
1658
|
"char": "a",
|
|
1691
1659
|
"description": "app to run command against",
|
|
1692
1660
|
"name": "app",
|
|
1693
|
-
"required": true,
|
|
1694
1661
|
"hasDynamicHelp": false,
|
|
1695
1662
|
"multiple": false,
|
|
1696
1663
|
"type": "option"
|
|
@@ -1705,103 +1672,135 @@
|
|
|
1705
1672
|
}
|
|
1706
1673
|
},
|
|
1707
1674
|
"hasDynamicHelp": false,
|
|
1708
|
-
"hiddenAliases": [
|
|
1709
|
-
|
|
1710
|
-
],
|
|
1711
|
-
"id": "apps:open",
|
|
1675
|
+
"hiddenAliases": [],
|
|
1676
|
+
"id": "addons:open",
|
|
1712
1677
|
"pluginAlias": "heroku",
|
|
1713
1678
|
"pluginName": "heroku",
|
|
1714
1679
|
"pluginType": "core",
|
|
1715
1680
|
"strict": true,
|
|
1716
|
-
"topic": "
|
|
1681
|
+
"topic": "addons",
|
|
1717
1682
|
"isESM": false,
|
|
1718
1683
|
"relativePath": [
|
|
1719
1684
|
"lib",
|
|
1720
1685
|
"commands",
|
|
1721
|
-
"
|
|
1686
|
+
"addons",
|
|
1722
1687
|
"open.js"
|
|
1723
1688
|
]
|
|
1724
1689
|
},
|
|
1725
|
-
"
|
|
1690
|
+
"addons:plans": {
|
|
1726
1691
|
"aliases": [],
|
|
1727
1692
|
"args": {
|
|
1728
|
-
"
|
|
1729
|
-
"description": "
|
|
1730
|
-
"name": "
|
|
1693
|
+
"service": {
|
|
1694
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1695
|
+
"name": "service",
|
|
1731
1696
|
"required": true
|
|
1732
1697
|
}
|
|
1733
1698
|
},
|
|
1734
|
-
"description": "
|
|
1735
|
-
"examples": [
|
|
1736
|
-
"$ heroku apps:rename --app oldname newname"
|
|
1737
|
-
],
|
|
1699
|
+
"description": "list all available plans for an add-on service",
|
|
1738
1700
|
"flags": {
|
|
1739
|
-
"
|
|
1740
|
-
"
|
|
1741
|
-
"
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1701
|
+
"json": {
|
|
1702
|
+
"description": "output in json format",
|
|
1703
|
+
"name": "json",
|
|
1704
|
+
"allowNo": false,
|
|
1705
|
+
"type": "boolean"
|
|
1706
|
+
}
|
|
1707
|
+
},
|
|
1708
|
+
"hasDynamicHelp": false,
|
|
1709
|
+
"hiddenAliases": [],
|
|
1710
|
+
"id": "addons:plans",
|
|
1711
|
+
"pluginAlias": "heroku",
|
|
1712
|
+
"pluginName": "heroku",
|
|
1713
|
+
"pluginType": "core",
|
|
1714
|
+
"strict": true,
|
|
1715
|
+
"topic": "addons",
|
|
1716
|
+
"isESM": false,
|
|
1717
|
+
"relativePath": [
|
|
1718
|
+
"lib",
|
|
1719
|
+
"commands",
|
|
1720
|
+
"addons",
|
|
1721
|
+
"plans.js"
|
|
1722
|
+
]
|
|
1723
|
+
},
|
|
1724
|
+
"addons:rename": {
|
|
1725
|
+
"aliases": [],
|
|
1726
|
+
"args": {
|
|
1727
|
+
"addon_name": {
|
|
1728
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1729
|
+
"name": "addon_name",
|
|
1730
|
+
"required": true
|
|
1747
1731
|
},
|
|
1748
|
-
"
|
|
1749
|
-
"
|
|
1750
|
-
"
|
|
1751
|
-
"
|
|
1752
|
-
"hasDynamicHelp": false,
|
|
1753
|
-
"multiple": false,
|
|
1754
|
-
"type": "option"
|
|
1732
|
+
"new_name": {
|
|
1733
|
+
"description": "new globally unique name of the add-on",
|
|
1734
|
+
"name": "new_name",
|
|
1735
|
+
"required": true
|
|
1755
1736
|
}
|
|
1756
1737
|
},
|
|
1738
|
+
"description": "rename an add-on",
|
|
1739
|
+
"flags": {},
|
|
1757
1740
|
"hasDynamicHelp": false,
|
|
1758
|
-
"hiddenAliases": [
|
|
1759
|
-
|
|
1760
|
-
],
|
|
1761
|
-
"id": "apps:rename",
|
|
1741
|
+
"hiddenAliases": [],
|
|
1742
|
+
"id": "addons:rename",
|
|
1762
1743
|
"pluginAlias": "heroku",
|
|
1763
1744
|
"pluginName": "heroku",
|
|
1764
1745
|
"pluginType": "core",
|
|
1765
1746
|
"strict": true,
|
|
1766
|
-
"
|
|
1767
|
-
"topic": "apps",
|
|
1747
|
+
"topic": "addons",
|
|
1768
1748
|
"isESM": false,
|
|
1769
1749
|
"relativePath": [
|
|
1770
1750
|
"lib",
|
|
1771
1751
|
"commands",
|
|
1772
|
-
"
|
|
1752
|
+
"addons",
|
|
1773
1753
|
"rename.js"
|
|
1774
1754
|
]
|
|
1775
1755
|
},
|
|
1776
|
-
"
|
|
1756
|
+
"addons:services": {
|
|
1777
1757
|
"aliases": [],
|
|
1758
|
+
"args": {},
|
|
1759
|
+
"description": "list all available add-on services",
|
|
1760
|
+
"flags": {
|
|
1761
|
+
"json": {
|
|
1762
|
+
"description": "output in json format",
|
|
1763
|
+
"name": "json",
|
|
1764
|
+
"allowNo": false,
|
|
1765
|
+
"type": "boolean"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"hasDynamicHelp": false,
|
|
1769
|
+
"hiddenAliases": [],
|
|
1770
|
+
"id": "addons:services",
|
|
1771
|
+
"pluginAlias": "heroku",
|
|
1772
|
+
"pluginName": "heroku",
|
|
1773
|
+
"pluginType": "core",
|
|
1774
|
+
"strict": true,
|
|
1775
|
+
"topic": "addons",
|
|
1776
|
+
"isESM": false,
|
|
1777
|
+
"relativePath": [
|
|
1778
|
+
"lib",
|
|
1779
|
+
"commands",
|
|
1780
|
+
"addons",
|
|
1781
|
+
"services.js"
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
"addons:upgrade": {
|
|
1785
|
+
"aliases": [
|
|
1786
|
+
"addons:downgrade"
|
|
1787
|
+
],
|
|
1778
1788
|
"args": {
|
|
1779
|
-
"
|
|
1780
|
-
"description": "
|
|
1781
|
-
"name": "
|
|
1789
|
+
"addon": {
|
|
1790
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1791
|
+
"name": "addon",
|
|
1782
1792
|
"required": true
|
|
1793
|
+
},
|
|
1794
|
+
"plan": {
|
|
1795
|
+
"description": "unique identifier or name of the plan",
|
|
1796
|
+
"name": "plan"
|
|
1783
1797
|
}
|
|
1784
1798
|
},
|
|
1785
|
-
"description": "
|
|
1799
|
+
"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 ",
|
|
1786
1800
|
"examples": [
|
|
1787
|
-
"
|
|
1801
|
+
"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"
|
|
1788
1802
|
],
|
|
1789
1803
|
"flags": {
|
|
1790
|
-
"locked": {
|
|
1791
|
-
"char": "l",
|
|
1792
|
-
"description": "lock the app upon transfer",
|
|
1793
|
-
"name": "locked",
|
|
1794
|
-
"required": false,
|
|
1795
|
-
"allowNo": false,
|
|
1796
|
-
"type": "boolean"
|
|
1797
|
-
},
|
|
1798
|
-
"bulk": {
|
|
1799
|
-
"description": "transfer applications in bulk",
|
|
1800
|
-
"name": "bulk",
|
|
1801
|
-
"required": false,
|
|
1802
|
-
"allowNo": false,
|
|
1803
|
-
"type": "boolean"
|
|
1804
|
-
},
|
|
1805
1804
|
"app": {
|
|
1806
1805
|
"char": "a",
|
|
1807
1806
|
"description": "app to run command against",
|
|
@@ -1817,44 +1816,45 @@
|
|
|
1817
1816
|
"hasDynamicHelp": false,
|
|
1818
1817
|
"multiple": false,
|
|
1819
1818
|
"type": "option"
|
|
1820
|
-
},
|
|
1821
|
-
"confirm": {
|
|
1822
|
-
"char": "c",
|
|
1823
|
-
"hidden": true,
|
|
1824
|
-
"name": "confirm",
|
|
1825
|
-
"hasDynamicHelp": false,
|
|
1826
|
-
"multiple": false,
|
|
1827
|
-
"type": "option"
|
|
1828
1819
|
}
|
|
1829
1820
|
},
|
|
1830
1821
|
"hasDynamicHelp": false,
|
|
1831
1822
|
"hiddenAliases": [],
|
|
1832
|
-
"id": "
|
|
1823
|
+
"id": "addons:upgrade",
|
|
1833
1824
|
"pluginAlias": "heroku",
|
|
1834
1825
|
"pluginName": "heroku",
|
|
1835
1826
|
"pluginType": "core",
|
|
1836
1827
|
"strict": true,
|
|
1837
|
-
"topic": "
|
|
1828
|
+
"topic": "addons",
|
|
1838
1829
|
"isESM": false,
|
|
1839
1830
|
"relativePath": [
|
|
1840
1831
|
"lib",
|
|
1841
1832
|
"commands",
|
|
1842
|
-
"
|
|
1843
|
-
"
|
|
1833
|
+
"addons",
|
|
1834
|
+
"upgrade.js"
|
|
1844
1835
|
]
|
|
1845
1836
|
},
|
|
1846
|
-
"
|
|
1847
|
-
"aliases": [
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1837
|
+
"addons:wait": {
|
|
1838
|
+
"aliases": [],
|
|
1839
|
+
"args": {
|
|
1840
|
+
"addon": {
|
|
1841
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1842
|
+
"name": "addon"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
"description": "show provisioning status of the add-ons on the app",
|
|
1852
1846
|
"flags": {
|
|
1847
|
+
"wait-interval": {
|
|
1848
|
+
"description": "how frequently to poll in seconds",
|
|
1849
|
+
"name": "wait-interval",
|
|
1850
|
+
"hasDynamicHelp": false,
|
|
1851
|
+
"multiple": false,
|
|
1852
|
+
"type": "option"
|
|
1853
|
+
},
|
|
1853
1854
|
"app": {
|
|
1854
1855
|
"char": "a",
|
|
1855
1856
|
"description": "app to run command against",
|
|
1856
1857
|
"name": "app",
|
|
1857
|
-
"required": true,
|
|
1858
1858
|
"hasDynamicHelp": false,
|
|
1859
1859
|
"multiple": false,
|
|
1860
1860
|
"type": "option"
|
|
@@ -1870,18 +1870,18 @@
|
|
|
1870
1870
|
},
|
|
1871
1871
|
"hasDynamicHelp": false,
|
|
1872
1872
|
"hiddenAliases": [],
|
|
1873
|
-
"id": "
|
|
1873
|
+
"id": "addons:wait",
|
|
1874
1874
|
"pluginAlias": "heroku",
|
|
1875
1875
|
"pluginName": "heroku",
|
|
1876
1876
|
"pluginType": "core",
|
|
1877
1877
|
"strict": true,
|
|
1878
|
-
"topic": "
|
|
1878
|
+
"topic": "addons",
|
|
1879
1879
|
"isESM": false,
|
|
1880
1880
|
"relativePath": [
|
|
1881
1881
|
"lib",
|
|
1882
1882
|
"commands",
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1883
|
+
"addons",
|
|
1884
|
+
"wait.js"
|
|
1885
1885
|
]
|
|
1886
1886
|
},
|
|
1887
1887
|
"auth:login": {
|
|
@@ -5230,7 +5230,7 @@
|
|
|
5230
5230
|
"aliases": [],
|
|
5231
5231
|
"args": {},
|
|
5232
5232
|
"description": "adds a git remote to an app repo\nextra arguments will be passed to git remote add\n",
|
|
5233
|
-
"examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
|
|
5233
|
+
"examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example-staging",
|
|
5234
5234
|
"flags": {
|
|
5235
5235
|
"app": {
|
|
5236
5236
|
"char": "a",
|
|
@@ -5256,7 +5256,7 @@
|
|
|
5256
5256
|
"pluginName": "heroku",
|
|
5257
5257
|
"pluginType": "core",
|
|
5258
5258
|
"strict": false,
|
|
5259
|
-
"example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
|
|
5259
|
+
"example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example-staging",
|
|
5260
5260
|
"isESM": false,
|
|
5261
5261
|
"relativePath": [
|
|
5262
5262
|
"lib",
|
|
@@ -11305,252 +11305,14 @@
|
|
|
11305
11305
|
"type": "option"
|
|
11306
11306
|
},
|
|
11307
11307
|
"verbose": {
|
|
11308
|
-
"char": "v",
|
|
11309
|
-
"name": "verbose",
|
|
11310
|
-
"allowNo": false,
|
|
11311
|
-
"type": "boolean"
|
|
11312
|
-
},
|
|
11313
|
-
"confirm": {
|
|
11314
|
-
"char": "c",
|
|
11315
|
-
"name": "confirm",
|
|
11316
|
-
"hasDynamicHelp": false,
|
|
11317
|
-
"multiple": false,
|
|
11318
|
-
"type": "option"
|
|
11319
|
-
},
|
|
11320
|
-
"app": {
|
|
11321
|
-
"char": "a",
|
|
11322
|
-
"description": "app to run command against",
|
|
11323
|
-
"name": "app",
|
|
11324
|
-
"required": true,
|
|
11325
|
-
"hasDynamicHelp": false,
|
|
11326
|
-
"multiple": false,
|
|
11327
|
-
"type": "option"
|
|
11328
|
-
},
|
|
11329
|
-
"remote": {
|
|
11330
|
-
"char": "r",
|
|
11331
|
-
"description": "git remote of app to use",
|
|
11332
|
-
"name": "remote",
|
|
11333
|
-
"hasDynamicHelp": false,
|
|
11334
|
-
"multiple": false,
|
|
11335
|
-
"type": "option"
|
|
11336
|
-
}
|
|
11337
|
-
},
|
|
11338
|
-
"hasDynamicHelp": false,
|
|
11339
|
-
"hiddenAliases": [],
|
|
11340
|
-
"id": "pg:backups:restore",
|
|
11341
|
-
"pluginAlias": "heroku",
|
|
11342
|
-
"pluginName": "heroku",
|
|
11343
|
-
"pluginType": "core",
|
|
11344
|
-
"strict": true,
|
|
11345
|
-
"topic": "pg",
|
|
11346
|
-
"isESM": false,
|
|
11347
|
-
"relativePath": [
|
|
11348
|
-
"lib",
|
|
11349
|
-
"commands",
|
|
11350
|
-
"pg",
|
|
11351
|
-
"backups",
|
|
11352
|
-
"restore.js"
|
|
11353
|
-
]
|
|
11354
|
-
},
|
|
11355
|
-
"pg:backups:schedule": {
|
|
11356
|
-
"aliases": [],
|
|
11357
|
-
"args": {
|
|
11358
|
-
"database": {
|
|
11359
|
-
"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.",
|
|
11360
|
-
"name": "database"
|
|
11361
|
-
}
|
|
11362
|
-
},
|
|
11363
|
-
"description": "schedule daily backups for given database",
|
|
11364
|
-
"flags": {
|
|
11365
|
-
"at": {
|
|
11366
|
-
"description": "at a specific (24h) hour in the given timezone. Defaults to UTC. --at '[HOUR]:00 [TIMEZONE]'",
|
|
11367
|
-
"name": "at",
|
|
11368
|
-
"required": true,
|
|
11369
|
-
"hasDynamicHelp": false,
|
|
11370
|
-
"multiple": false,
|
|
11371
|
-
"type": "option"
|
|
11372
|
-
},
|
|
11373
|
-
"app": {
|
|
11374
|
-
"char": "a",
|
|
11375
|
-
"description": "app to run command against",
|
|
11376
|
-
"name": "app",
|
|
11377
|
-
"required": true,
|
|
11378
|
-
"hasDynamicHelp": false,
|
|
11379
|
-
"multiple": false,
|
|
11380
|
-
"type": "option"
|
|
11381
|
-
},
|
|
11382
|
-
"remote": {
|
|
11383
|
-
"char": "r",
|
|
11384
|
-
"description": "git remote of app to use",
|
|
11385
|
-
"name": "remote",
|
|
11386
|
-
"hasDynamicHelp": false,
|
|
11387
|
-
"multiple": false,
|
|
11388
|
-
"type": "option"
|
|
11389
|
-
}
|
|
11390
|
-
},
|
|
11391
|
-
"hasDynamicHelp": false,
|
|
11392
|
-
"hiddenAliases": [],
|
|
11393
|
-
"id": "pg:backups:schedule",
|
|
11394
|
-
"pluginAlias": "heroku",
|
|
11395
|
-
"pluginName": "heroku",
|
|
11396
|
-
"pluginType": "core",
|
|
11397
|
-
"strict": true,
|
|
11398
|
-
"topic": "pg",
|
|
11399
|
-
"isESM": false,
|
|
11400
|
-
"relativePath": [
|
|
11401
|
-
"lib",
|
|
11402
|
-
"commands",
|
|
11403
|
-
"pg",
|
|
11404
|
-
"backups",
|
|
11405
|
-
"schedule.js"
|
|
11406
|
-
]
|
|
11407
|
-
},
|
|
11408
|
-
"pg:backups:schedules": {
|
|
11409
|
-
"aliases": [],
|
|
11410
|
-
"args": {},
|
|
11411
|
-
"description": "list backup schedule",
|
|
11412
|
-
"flags": {
|
|
11413
|
-
"app": {
|
|
11414
|
-
"char": "a",
|
|
11415
|
-
"description": "app to run command against",
|
|
11416
|
-
"name": "app",
|
|
11417
|
-
"required": true,
|
|
11418
|
-
"hasDynamicHelp": false,
|
|
11419
|
-
"multiple": false,
|
|
11420
|
-
"type": "option"
|
|
11421
|
-
},
|
|
11422
|
-
"remote": {
|
|
11423
|
-
"char": "r",
|
|
11424
|
-
"description": "git remote of app to use",
|
|
11425
|
-
"name": "remote",
|
|
11426
|
-
"hasDynamicHelp": false,
|
|
11427
|
-
"multiple": false,
|
|
11428
|
-
"type": "option"
|
|
11429
|
-
}
|
|
11430
|
-
},
|
|
11431
|
-
"hasDynamicHelp": false,
|
|
11432
|
-
"hiddenAliases": [],
|
|
11433
|
-
"id": "pg:backups:schedules",
|
|
11434
|
-
"pluginAlias": "heroku",
|
|
11435
|
-
"pluginName": "heroku",
|
|
11436
|
-
"pluginType": "core",
|
|
11437
|
-
"strict": true,
|
|
11438
|
-
"topic": "pg",
|
|
11439
|
-
"isESM": false,
|
|
11440
|
-
"relativePath": [
|
|
11441
|
-
"lib",
|
|
11442
|
-
"commands",
|
|
11443
|
-
"pg",
|
|
11444
|
-
"backups",
|
|
11445
|
-
"schedules.js"
|
|
11446
|
-
]
|
|
11447
|
-
},
|
|
11448
|
-
"pg:backups:unschedule": {
|
|
11449
|
-
"aliases": [],
|
|
11450
|
-
"args": {
|
|
11451
|
-
"database": {
|
|
11452
|
-
"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 a random database attached to the app.",
|
|
11453
|
-
"name": "database"
|
|
11454
|
-
}
|
|
11455
|
-
},
|
|
11456
|
-
"description": "stop daily backups",
|
|
11457
|
-
"flags": {
|
|
11458
|
-
"app": {
|
|
11459
|
-
"char": "a",
|
|
11460
|
-
"description": "app to run command against",
|
|
11461
|
-
"name": "app",
|
|
11462
|
-
"required": true,
|
|
11463
|
-
"hasDynamicHelp": false,
|
|
11464
|
-
"multiple": false,
|
|
11465
|
-
"type": "option"
|
|
11466
|
-
},
|
|
11467
|
-
"remote": {
|
|
11468
|
-
"char": "r",
|
|
11469
|
-
"description": "git remote of app to use",
|
|
11470
|
-
"name": "remote",
|
|
11471
|
-
"hasDynamicHelp": false,
|
|
11472
|
-
"multiple": false,
|
|
11473
|
-
"type": "option"
|
|
11474
|
-
}
|
|
11475
|
-
},
|
|
11476
|
-
"hasDynamicHelp": false,
|
|
11477
|
-
"hiddenAliases": [],
|
|
11478
|
-
"id": "pg:backups:unschedule",
|
|
11479
|
-
"pluginAlias": "heroku",
|
|
11480
|
-
"pluginName": "heroku",
|
|
11481
|
-
"pluginType": "core",
|
|
11482
|
-
"strict": true,
|
|
11483
|
-
"topic": "pg",
|
|
11484
|
-
"isESM": false,
|
|
11485
|
-
"relativePath": [
|
|
11486
|
-
"lib",
|
|
11487
|
-
"commands",
|
|
11488
|
-
"pg",
|
|
11489
|
-
"backups",
|
|
11490
|
-
"unschedule.js"
|
|
11491
|
-
]
|
|
11492
|
-
},
|
|
11493
|
-
"pg:backups:url": {
|
|
11494
|
-
"aliases": [],
|
|
11495
|
-
"args": {
|
|
11496
|
-
"backup_id": {
|
|
11497
|
-
"description": "ID of the backup. If omitted, we use the last backup ID.",
|
|
11498
|
-
"name": "backup_id"
|
|
11499
|
-
}
|
|
11500
|
-
},
|
|
11501
|
-
"description": "get secret but publicly accessible URL of a backup",
|
|
11502
|
-
"flags": {
|
|
11503
|
-
"app": {
|
|
11504
|
-
"char": "a",
|
|
11505
|
-
"description": "app to run command against",
|
|
11506
|
-
"name": "app",
|
|
11507
|
-
"required": true,
|
|
11508
|
-
"hasDynamicHelp": false,
|
|
11509
|
-
"multiple": false,
|
|
11510
|
-
"type": "option"
|
|
11511
|
-
},
|
|
11512
|
-
"remote": {
|
|
11513
|
-
"char": "r",
|
|
11514
|
-
"description": "git remote of app to use",
|
|
11515
|
-
"name": "remote",
|
|
11516
|
-
"hasDynamicHelp": false,
|
|
11517
|
-
"multiple": false,
|
|
11518
|
-
"type": "option"
|
|
11519
|
-
}
|
|
11520
|
-
},
|
|
11521
|
-
"hasDynamicHelp": false,
|
|
11522
|
-
"hiddenAliases": [],
|
|
11523
|
-
"id": "pg:backups:url",
|
|
11524
|
-
"pluginAlias": "heroku",
|
|
11525
|
-
"pluginName": "heroku",
|
|
11526
|
-
"pluginType": "core",
|
|
11527
|
-
"strict": true,
|
|
11528
|
-
"topic": "pg",
|
|
11529
|
-
"isESM": false,
|
|
11530
|
-
"relativePath": [
|
|
11531
|
-
"lib",
|
|
11532
|
-
"commands",
|
|
11533
|
-
"pg",
|
|
11534
|
-
"backups",
|
|
11535
|
-
"url.js"
|
|
11536
|
-
]
|
|
11537
|
-
},
|
|
11538
|
-
"pg:connection-pooling:attach": {
|
|
11539
|
-
"aliases": [],
|
|
11540
|
-
"args": {
|
|
11541
|
-
"database": {
|
|
11542
|
-
"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.",
|
|
11543
|
-
"name": "database"
|
|
11544
|
-
}
|
|
11545
|
-
},
|
|
11546
|
-
"description": "add an attachment to a database using connection pooling",
|
|
11547
|
-
"examples": [
|
|
11548
|
-
"$ heroku pg:connection-pooling:attach postgresql-something-12345\n"
|
|
11549
|
-
],
|
|
11550
|
-
"flags": {
|
|
11551
|
-
"as": {
|
|
11552
|
-
"description": "name for add-on attachment",
|
|
11553
|
-
"name": "as",
|
|
11308
|
+
"char": "v",
|
|
11309
|
+
"name": "verbose",
|
|
11310
|
+
"allowNo": false,
|
|
11311
|
+
"type": "boolean"
|
|
11312
|
+
},
|
|
11313
|
+
"confirm": {
|
|
11314
|
+
"char": "c",
|
|
11315
|
+
"name": "confirm",
|
|
11554
11316
|
"hasDynamicHelp": false,
|
|
11555
11317
|
"multiple": false,
|
|
11556
11318
|
"type": "option"
|
|
@@ -11575,7 +11337,7 @@
|
|
|
11575
11337
|
},
|
|
11576
11338
|
"hasDynamicHelp": false,
|
|
11577
11339
|
"hiddenAliases": [],
|
|
11578
|
-
"id": "pg:
|
|
11340
|
+
"id": "pg:backups:restore",
|
|
11579
11341
|
"pluginAlias": "heroku",
|
|
11580
11342
|
"pluginName": "heroku",
|
|
11581
11343
|
"pluginType": "core",
|
|
@@ -11586,11 +11348,11 @@
|
|
|
11586
11348
|
"lib",
|
|
11587
11349
|
"commands",
|
|
11588
11350
|
"pg",
|
|
11589
|
-
"
|
|
11590
|
-
"
|
|
11351
|
+
"backups",
|
|
11352
|
+
"restore.js"
|
|
11591
11353
|
]
|
|
11592
11354
|
},
|
|
11593
|
-
"pg:
|
|
11355
|
+
"pg:backups:schedule": {
|
|
11594
11356
|
"aliases": [],
|
|
11595
11357
|
"args": {
|
|
11596
11358
|
"database": {
|
|
@@ -11598,12 +11360,11 @@
|
|
|
11598
11360
|
"name": "database"
|
|
11599
11361
|
}
|
|
11600
11362
|
},
|
|
11601
|
-
"description": "
|
|
11363
|
+
"description": "schedule daily backups for given database",
|
|
11602
11364
|
"flags": {
|
|
11603
|
-
"
|
|
11604
|
-
"
|
|
11605
|
-
"
|
|
11606
|
-
"name": "name",
|
|
11365
|
+
"at": {
|
|
11366
|
+
"description": "at a specific (24h) hour in the given timezone. Defaults to UTC. --at '[HOUR]:00 [TIMEZONE]'",
|
|
11367
|
+
"name": "at",
|
|
11607
11368
|
"required": true,
|
|
11608
11369
|
"hasDynamicHelp": false,
|
|
11609
11370
|
"multiple": false,
|
|
@@ -11629,7 +11390,7 @@
|
|
|
11629
11390
|
},
|
|
11630
11391
|
"hasDynamicHelp": false,
|
|
11631
11392
|
"hiddenAliases": [],
|
|
11632
|
-
"id": "pg:
|
|
11393
|
+
"id": "pg:backups:schedule",
|
|
11633
11394
|
"pluginAlias": "heroku",
|
|
11634
11395
|
"pluginName": "heroku",
|
|
11635
11396
|
"pluginType": "core",
|
|
@@ -11640,37 +11401,15 @@
|
|
|
11640
11401
|
"lib",
|
|
11641
11402
|
"commands",
|
|
11642
11403
|
"pg",
|
|
11643
|
-
"
|
|
11644
|
-
"
|
|
11404
|
+
"backups",
|
|
11405
|
+
"schedule.js"
|
|
11645
11406
|
]
|
|
11646
11407
|
},
|
|
11647
|
-
"pg:
|
|
11408
|
+
"pg:backups:schedules": {
|
|
11648
11409
|
"aliases": [],
|
|
11649
|
-
"args": {
|
|
11650
|
-
|
|
11651
|
-
"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.",
|
|
11652
|
-
"name": "database"
|
|
11653
|
-
}
|
|
11654
|
-
},
|
|
11655
|
-
"description": "destroy credential within database",
|
|
11656
|
-
"examples": "$ heroku pg:credentials:destroy postgresql-transparent-56874 --name cred-name -a woodstock-production",
|
|
11410
|
+
"args": {},
|
|
11411
|
+
"description": "list backup schedule",
|
|
11657
11412
|
"flags": {
|
|
11658
|
-
"name": {
|
|
11659
|
-
"char": "n",
|
|
11660
|
-
"description": "unique identifier for the credential",
|
|
11661
|
-
"name": "name",
|
|
11662
|
-
"required": true,
|
|
11663
|
-
"hasDynamicHelp": false,
|
|
11664
|
-
"multiple": false,
|
|
11665
|
-
"type": "option"
|
|
11666
|
-
},
|
|
11667
|
-
"confirm": {
|
|
11668
|
-
"char": "c",
|
|
11669
|
-
"name": "confirm",
|
|
11670
|
-
"hasDynamicHelp": false,
|
|
11671
|
-
"multiple": false,
|
|
11672
|
-
"type": "option"
|
|
11673
|
-
},
|
|
11674
11413
|
"app": {
|
|
11675
11414
|
"char": "a",
|
|
11676
11415
|
"description": "app to run command against",
|
|
@@ -11691,40 +11430,31 @@
|
|
|
11691
11430
|
},
|
|
11692
11431
|
"hasDynamicHelp": false,
|
|
11693
11432
|
"hiddenAliases": [],
|
|
11694
|
-
"id": "pg:
|
|
11433
|
+
"id": "pg:backups:schedules",
|
|
11695
11434
|
"pluginAlias": "heroku",
|
|
11696
11435
|
"pluginName": "heroku",
|
|
11697
11436
|
"pluginType": "core",
|
|
11698
11437
|
"strict": true,
|
|
11699
11438
|
"topic": "pg",
|
|
11700
|
-
"example": "$ heroku pg:credentials:destroy postgresql-transparent-56874 --name cred-name -a woodstock-production",
|
|
11701
11439
|
"isESM": false,
|
|
11702
11440
|
"relativePath": [
|
|
11703
11441
|
"lib",
|
|
11704
11442
|
"commands",
|
|
11705
11443
|
"pg",
|
|
11706
|
-
"
|
|
11707
|
-
"
|
|
11444
|
+
"backups",
|
|
11445
|
+
"schedules.js"
|
|
11708
11446
|
]
|
|
11709
11447
|
},
|
|
11710
|
-
"pg:
|
|
11448
|
+
"pg:backups:unschedule": {
|
|
11711
11449
|
"aliases": [],
|
|
11712
11450
|
"args": {
|
|
11713
11451
|
"database": {
|
|
11714
|
-
"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
|
|
11452
|
+
"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 a random database attached to the app.",
|
|
11715
11453
|
"name": "database"
|
|
11716
11454
|
}
|
|
11717
11455
|
},
|
|
11718
|
-
"description": "
|
|
11719
|
-
"examples": "$ heroku pg:credentials:repair-default postgresql-something-12345",
|
|
11456
|
+
"description": "stop daily backups",
|
|
11720
11457
|
"flags": {
|
|
11721
|
-
"confirm": {
|
|
11722
|
-
"char": "c",
|
|
11723
|
-
"name": "confirm",
|
|
11724
|
-
"hasDynamicHelp": false,
|
|
11725
|
-
"multiple": false,
|
|
11726
|
-
"type": "option"
|
|
11727
|
-
},
|
|
11728
11458
|
"app": {
|
|
11729
11459
|
"char": "a",
|
|
11730
11460
|
"description": "app to run command against",
|
|
@@ -11745,62 +11475,31 @@
|
|
|
11745
11475
|
},
|
|
11746
11476
|
"hasDynamicHelp": false,
|
|
11747
11477
|
"hiddenAliases": [],
|
|
11748
|
-
"id": "pg:
|
|
11478
|
+
"id": "pg:backups:unschedule",
|
|
11749
11479
|
"pluginAlias": "heroku",
|
|
11750
11480
|
"pluginName": "heroku",
|
|
11751
11481
|
"pluginType": "core",
|
|
11752
11482
|
"strict": true,
|
|
11753
11483
|
"topic": "pg",
|
|
11754
|
-
"example": "$ heroku pg:credentials:repair-default postgresql-something-12345",
|
|
11755
11484
|
"isESM": false,
|
|
11756
11485
|
"relativePath": [
|
|
11757
11486
|
"lib",
|
|
11758
11487
|
"commands",
|
|
11759
11488
|
"pg",
|
|
11760
|
-
"
|
|
11761
|
-
"
|
|
11489
|
+
"backups",
|
|
11490
|
+
"unschedule.js"
|
|
11762
11491
|
]
|
|
11763
11492
|
},
|
|
11764
|
-
"pg:
|
|
11493
|
+
"pg:backups:url": {
|
|
11765
11494
|
"aliases": [],
|
|
11766
11495
|
"args": {
|
|
11767
|
-
"
|
|
11768
|
-
"description": "
|
|
11769
|
-
"name": "
|
|
11496
|
+
"backup_id": {
|
|
11497
|
+
"description": "ID of the backup. If omitted, we use the last backup ID.",
|
|
11498
|
+
"name": "backup_id"
|
|
11770
11499
|
}
|
|
11771
11500
|
},
|
|
11772
|
-
"description": "
|
|
11501
|
+
"description": "get secret but publicly accessible URL of a backup",
|
|
11773
11502
|
"flags": {
|
|
11774
|
-
"name": {
|
|
11775
|
-
"char": "n",
|
|
11776
|
-
"description": "which credential to rotate (default credentials if not specified and --all is not used)",
|
|
11777
|
-
"name": "name",
|
|
11778
|
-
"hasDynamicHelp": false,
|
|
11779
|
-
"multiple": false,
|
|
11780
|
-
"type": "option"
|
|
11781
|
-
},
|
|
11782
|
-
"all": {
|
|
11783
|
-
"description": "rotate all credentials",
|
|
11784
|
-
"exclusive": [
|
|
11785
|
-
"name"
|
|
11786
|
-
],
|
|
11787
|
-
"name": "all",
|
|
11788
|
-
"allowNo": false,
|
|
11789
|
-
"type": "boolean"
|
|
11790
|
-
},
|
|
11791
|
-
"confirm": {
|
|
11792
|
-
"char": "c",
|
|
11793
|
-
"name": "confirm",
|
|
11794
|
-
"hasDynamicHelp": false,
|
|
11795
|
-
"multiple": false,
|
|
11796
|
-
"type": "option"
|
|
11797
|
-
},
|
|
11798
|
-
"force": {
|
|
11799
|
-
"description": "forces rotating the targeted credentials",
|
|
11800
|
-
"name": "force",
|
|
11801
|
-
"allowNo": false,
|
|
11802
|
-
"type": "boolean"
|
|
11803
|
-
},
|
|
11804
11503
|
"app": {
|
|
11805
11504
|
"char": "a",
|
|
11806
11505
|
"description": "app to run command against",
|
|
@@ -11821,7 +11520,7 @@
|
|
|
11821
11520
|
},
|
|
11822
11521
|
"hasDynamicHelp": false,
|
|
11823
11522
|
"hiddenAliases": [],
|
|
11824
|
-
"id": "pg:
|
|
11523
|
+
"id": "pg:backups:url",
|
|
11825
11524
|
"pluginAlias": "heroku",
|
|
11826
11525
|
"pluginName": "heroku",
|
|
11827
11526
|
"pluginType": "core",
|
|
@@ -11832,11 +11531,11 @@
|
|
|
11832
11531
|
"lib",
|
|
11833
11532
|
"commands",
|
|
11834
11533
|
"pg",
|
|
11835
|
-
"
|
|
11836
|
-
"
|
|
11534
|
+
"backups",
|
|
11535
|
+
"url.js"
|
|
11837
11536
|
]
|
|
11838
11537
|
},
|
|
11839
|
-
"pg:
|
|
11538
|
+
"pg:connection-pooling:attach": {
|
|
11840
11539
|
"aliases": [],
|
|
11841
11540
|
"args": {
|
|
11842
11541
|
"database": {
|
|
@@ -11844,13 +11543,14 @@
|
|
|
11844
11543
|
"name": "database"
|
|
11845
11544
|
}
|
|
11846
11545
|
},
|
|
11847
|
-
"description": "
|
|
11546
|
+
"description": "add an attachment to a database using connection pooling",
|
|
11547
|
+
"examples": [
|
|
11548
|
+
"$ heroku pg:connection-pooling:attach postgresql-something-12345\n"
|
|
11549
|
+
],
|
|
11848
11550
|
"flags": {
|
|
11849
|
-
"
|
|
11850
|
-
"
|
|
11851
|
-
"
|
|
11852
|
-
"name": "name",
|
|
11853
|
-
"default": "default",
|
|
11551
|
+
"as": {
|
|
11552
|
+
"description": "name for add-on attachment",
|
|
11553
|
+
"name": "as",
|
|
11854
11554
|
"hasDynamicHelp": false,
|
|
11855
11555
|
"multiple": false,
|
|
11856
11556
|
"type": "option"
|
|
@@ -11875,7 +11575,7 @@
|
|
|
11875
11575
|
},
|
|
11876
11576
|
"hasDynamicHelp": false,
|
|
11877
11577
|
"hiddenAliases": [],
|
|
11878
|
-
"id": "pg:
|
|
11578
|
+
"id": "pg:connection-pooling:attach",
|
|
11879
11579
|
"pluginAlias": "heroku",
|
|
11880
11580
|
"pluginName": "heroku",
|
|
11881
11581
|
"pluginType": "core",
|
|
@@ -11886,8 +11586,8 @@
|
|
|
11886
11586
|
"lib",
|
|
11887
11587
|
"commands",
|
|
11888
11588
|
"pg",
|
|
11889
|
-
"
|
|
11890
|
-
"
|
|
11589
|
+
"connection-pooling",
|
|
11590
|
+
"attach.js"
|
|
11891
11591
|
]
|
|
11892
11592
|
},
|
|
11893
11593
|
"pg:links:create": {
|
|
@@ -12100,20 +11800,112 @@
|
|
|
12100
11800
|
},
|
|
12101
11801
|
"pg:maintenance:run": {
|
|
12102
11802
|
"aliases": [],
|
|
12103
|
-
"args": {
|
|
12104
|
-
"database": {
|
|
12105
|
-
"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.",
|
|
12106
|
-
"name": "database"
|
|
12107
|
-
}
|
|
12108
|
-
},
|
|
12109
|
-
"description": "start maintenance",
|
|
11803
|
+
"args": {
|
|
11804
|
+
"database": {
|
|
11805
|
+
"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.",
|
|
11806
|
+
"name": "database"
|
|
11807
|
+
}
|
|
11808
|
+
},
|
|
11809
|
+
"description": "start maintenance",
|
|
11810
|
+
"flags": {
|
|
11811
|
+
"force": {
|
|
11812
|
+
"char": "f",
|
|
11813
|
+
"name": "force",
|
|
11814
|
+
"allowNo": false,
|
|
11815
|
+
"type": "boolean"
|
|
11816
|
+
},
|
|
11817
|
+
"app": {
|
|
11818
|
+
"char": "a",
|
|
11819
|
+
"description": "app to run command against",
|
|
11820
|
+
"name": "app",
|
|
11821
|
+
"required": true,
|
|
11822
|
+
"hasDynamicHelp": false,
|
|
11823
|
+
"multiple": false,
|
|
11824
|
+
"type": "option"
|
|
11825
|
+
},
|
|
11826
|
+
"remote": {
|
|
11827
|
+
"char": "r",
|
|
11828
|
+
"description": "git remote of app to use",
|
|
11829
|
+
"name": "remote",
|
|
11830
|
+
"hasDynamicHelp": false,
|
|
11831
|
+
"multiple": false,
|
|
11832
|
+
"type": "option"
|
|
11833
|
+
}
|
|
11834
|
+
},
|
|
11835
|
+
"hasDynamicHelp": false,
|
|
11836
|
+
"hiddenAliases": [],
|
|
11837
|
+
"id": "pg:maintenance:run",
|
|
11838
|
+
"pluginAlias": "heroku",
|
|
11839
|
+
"pluginName": "heroku",
|
|
11840
|
+
"pluginType": "core",
|
|
11841
|
+
"strict": true,
|
|
11842
|
+
"topic": "pg",
|
|
11843
|
+
"isESM": false,
|
|
11844
|
+
"relativePath": [
|
|
11845
|
+
"lib",
|
|
11846
|
+
"commands",
|
|
11847
|
+
"pg",
|
|
11848
|
+
"maintenance",
|
|
11849
|
+
"run.js"
|
|
11850
|
+
]
|
|
11851
|
+
},
|
|
11852
|
+
"pg:maintenance:window": {
|
|
11853
|
+
"aliases": [],
|
|
11854
|
+
"args": {
|
|
11855
|
+
"window": {
|
|
11856
|
+
"description": "timestamp of the maintenance window",
|
|
11857
|
+
"name": "window",
|
|
11858
|
+
"required": true
|
|
11859
|
+
},
|
|
11860
|
+
"database": {
|
|
11861
|
+
"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.",
|
|
11862
|
+
"name": "database"
|
|
11863
|
+
}
|
|
11864
|
+
},
|
|
11865
|
+
"description": "Set weekly maintenance window.\nAll times are in UTC.\n",
|
|
11866
|
+
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
11867
|
+
"flags": {
|
|
11868
|
+
"app": {
|
|
11869
|
+
"char": "a",
|
|
11870
|
+
"description": "app to run command against",
|
|
11871
|
+
"name": "app",
|
|
11872
|
+
"required": true,
|
|
11873
|
+
"hasDynamicHelp": false,
|
|
11874
|
+
"multiple": false,
|
|
11875
|
+
"type": "option"
|
|
11876
|
+
},
|
|
11877
|
+
"remote": {
|
|
11878
|
+
"char": "r",
|
|
11879
|
+
"description": "git remote of app to use",
|
|
11880
|
+
"name": "remote",
|
|
11881
|
+
"hasDynamicHelp": false,
|
|
11882
|
+
"multiple": false,
|
|
11883
|
+
"type": "option"
|
|
11884
|
+
}
|
|
11885
|
+
},
|
|
11886
|
+
"hasDynamicHelp": false,
|
|
11887
|
+
"hiddenAliases": [],
|
|
11888
|
+
"id": "pg:maintenance:window",
|
|
11889
|
+
"pluginAlias": "heroku",
|
|
11890
|
+
"pluginName": "heroku",
|
|
11891
|
+
"pluginType": "core",
|
|
11892
|
+
"strict": true,
|
|
11893
|
+
"topic": "pg",
|
|
11894
|
+
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
11895
|
+
"isESM": false,
|
|
11896
|
+
"relativePath": [
|
|
11897
|
+
"lib",
|
|
11898
|
+
"commands",
|
|
11899
|
+
"pg",
|
|
11900
|
+
"maintenance",
|
|
11901
|
+
"window.js"
|
|
11902
|
+
]
|
|
11903
|
+
},
|
|
11904
|
+
"ps:autoscale:disable": {
|
|
11905
|
+
"aliases": [],
|
|
11906
|
+
"args": {},
|
|
11907
|
+
"description": "disable web dyno autoscaling",
|
|
12110
11908
|
"flags": {
|
|
12111
|
-
"force": {
|
|
12112
|
-
"char": "f",
|
|
12113
|
-
"name": "force",
|
|
12114
|
-
"allowNo": false,
|
|
12115
|
-
"type": "boolean"
|
|
12116
|
-
},
|
|
12117
11909
|
"app": {
|
|
12118
11910
|
"char": "a",
|
|
12119
11911
|
"description": "app to run command against",
|
|
@@ -12134,36 +11926,24 @@
|
|
|
12134
11926
|
},
|
|
12135
11927
|
"hasDynamicHelp": false,
|
|
12136
11928
|
"hiddenAliases": [],
|
|
12137
|
-
"id": "
|
|
11929
|
+
"id": "ps:autoscale:disable",
|
|
12138
11930
|
"pluginAlias": "heroku",
|
|
12139
11931
|
"pluginName": "heroku",
|
|
12140
11932
|
"pluginType": "core",
|
|
12141
11933
|
"strict": true,
|
|
12142
|
-
"topic": "pg",
|
|
12143
11934
|
"isESM": false,
|
|
12144
11935
|
"relativePath": [
|
|
12145
11936
|
"lib",
|
|
12146
11937
|
"commands",
|
|
12147
|
-
"
|
|
12148
|
-
"
|
|
12149
|
-
"
|
|
11938
|
+
"ps",
|
|
11939
|
+
"autoscale",
|
|
11940
|
+
"disable.js"
|
|
12150
11941
|
]
|
|
12151
11942
|
},
|
|
12152
|
-
"
|
|
11943
|
+
"ps:autoscale:enable": {
|
|
12153
11944
|
"aliases": [],
|
|
12154
|
-
"args": {
|
|
12155
|
-
|
|
12156
|
-
"description": "timestamp of the maintenance window",
|
|
12157
|
-
"name": "window",
|
|
12158
|
-
"required": true
|
|
12159
|
-
},
|
|
12160
|
-
"database": {
|
|
12161
|
-
"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.",
|
|
12162
|
-
"name": "database"
|
|
12163
|
-
}
|
|
12164
|
-
},
|
|
12165
|
-
"description": "Set weekly maintenance window.\nAll times are in UTC.\n",
|
|
12166
|
-
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
11945
|
+
"args": {},
|
|
11946
|
+
"description": "enable web dyno autoscaling",
|
|
12167
11947
|
"flags": {
|
|
12168
11948
|
"app": {
|
|
12169
11949
|
"char": "a",
|
|
@@ -12181,24 +11961,51 @@
|
|
|
12181
11961
|
"hasDynamicHelp": false,
|
|
12182
11962
|
"multiple": false,
|
|
12183
11963
|
"type": "option"
|
|
11964
|
+
},
|
|
11965
|
+
"min": {
|
|
11966
|
+
"description": "minimum number of dynos",
|
|
11967
|
+
"name": "min",
|
|
11968
|
+
"required": true,
|
|
11969
|
+
"hasDynamicHelp": false,
|
|
11970
|
+
"multiple": false,
|
|
11971
|
+
"type": "option"
|
|
11972
|
+
},
|
|
11973
|
+
"max": {
|
|
11974
|
+
"description": "maximum number of dynos",
|
|
11975
|
+
"name": "max",
|
|
11976
|
+
"required": true,
|
|
11977
|
+
"hasDynamicHelp": false,
|
|
11978
|
+
"multiple": false,
|
|
11979
|
+
"type": "option"
|
|
11980
|
+
},
|
|
11981
|
+
"p95": {
|
|
11982
|
+
"description": "desired p95 response time",
|
|
11983
|
+
"name": "p95",
|
|
11984
|
+
"hasDynamicHelp": false,
|
|
11985
|
+
"multiple": false,
|
|
11986
|
+
"type": "option"
|
|
11987
|
+
},
|
|
11988
|
+
"notifications": {
|
|
11989
|
+
"description": "receive email notifications when the max dyno limit is reached",
|
|
11990
|
+
"name": "notifications",
|
|
11991
|
+
"allowNo": false,
|
|
11992
|
+
"type": "boolean"
|
|
12184
11993
|
}
|
|
12185
11994
|
},
|
|
12186
11995
|
"hasDynamicHelp": false,
|
|
12187
11996
|
"hiddenAliases": [],
|
|
12188
|
-
"id": "
|
|
11997
|
+
"id": "ps:autoscale:enable",
|
|
12189
11998
|
"pluginAlias": "heroku",
|
|
12190
11999
|
"pluginName": "heroku",
|
|
12191
12000
|
"pluginType": "core",
|
|
12192
12001
|
"strict": true,
|
|
12193
|
-
"topic": "pg",
|
|
12194
|
-
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12195
12002
|
"isESM": false,
|
|
12196
12003
|
"relativePath": [
|
|
12197
12004
|
"lib",
|
|
12198
12005
|
"commands",
|
|
12199
|
-
"
|
|
12200
|
-
"
|
|
12201
|
-
"
|
|
12006
|
+
"ps",
|
|
12007
|
+
"autoscale",
|
|
12008
|
+
"enable.js"
|
|
12202
12009
|
]
|
|
12203
12010
|
},
|
|
12204
12011
|
"pg:settings:auto-explain": {
|
|
@@ -12558,8 +12365,196 @@
|
|
|
12558
12365
|
]
|
|
12559
12366
|
}
|
|
12560
12367
|
},
|
|
12561
|
-
"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",
|
|
12368
|
+
"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",
|
|
12369
|
+
"flags": {
|
|
12370
|
+
"app": {
|
|
12371
|
+
"char": "a",
|
|
12372
|
+
"description": "app to run command against",
|
|
12373
|
+
"name": "app",
|
|
12374
|
+
"required": true,
|
|
12375
|
+
"hasDynamicHelp": false,
|
|
12376
|
+
"multiple": false,
|
|
12377
|
+
"type": "option"
|
|
12378
|
+
},
|
|
12379
|
+
"remote": {
|
|
12380
|
+
"char": "r",
|
|
12381
|
+
"description": "git remote of app to use",
|
|
12382
|
+
"name": "remote",
|
|
12383
|
+
"hasDynamicHelp": false,
|
|
12384
|
+
"multiple": false,
|
|
12385
|
+
"type": "option"
|
|
12386
|
+
}
|
|
12387
|
+
},
|
|
12388
|
+
"hasDynamicHelp": false,
|
|
12389
|
+
"hiddenAliases": [],
|
|
12390
|
+
"id": "pg:settings:log-statement",
|
|
12391
|
+
"pluginAlias": "heroku",
|
|
12392
|
+
"pluginName": "heroku",
|
|
12393
|
+
"pluginType": "core",
|
|
12394
|
+
"topic": "pg",
|
|
12395
|
+
"isESM": false,
|
|
12396
|
+
"relativePath": [
|
|
12397
|
+
"lib",
|
|
12398
|
+
"commands",
|
|
12399
|
+
"pg",
|
|
12400
|
+
"settings",
|
|
12401
|
+
"log-statement.js"
|
|
12402
|
+
]
|
|
12403
|
+
},
|
|
12404
|
+
"pg:settings:track-functions": {
|
|
12405
|
+
"aliases": [],
|
|
12406
|
+
"args": {
|
|
12407
|
+
"database": {
|
|
12408
|
+
"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.",
|
|
12409
|
+
"name": "database"
|
|
12410
|
+
},
|
|
12411
|
+
"value": {
|
|
12412
|
+
"description": "function type to track\n<options: none|pl|all>",
|
|
12413
|
+
"name": "value",
|
|
12414
|
+
"options": [
|
|
12415
|
+
"none",
|
|
12416
|
+
"pl",
|
|
12417
|
+
"all"
|
|
12418
|
+
]
|
|
12419
|
+
}
|
|
12420
|
+
},
|
|
12421
|
+
"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",
|
|
12422
|
+
"flags": {
|
|
12423
|
+
"app": {
|
|
12424
|
+
"char": "a",
|
|
12425
|
+
"description": "app to run command against",
|
|
12426
|
+
"name": "app",
|
|
12427
|
+
"required": true,
|
|
12428
|
+
"hasDynamicHelp": false,
|
|
12429
|
+
"multiple": false,
|
|
12430
|
+
"type": "option"
|
|
12431
|
+
},
|
|
12432
|
+
"remote": {
|
|
12433
|
+
"char": "r",
|
|
12434
|
+
"description": "git remote of app to use",
|
|
12435
|
+
"name": "remote",
|
|
12436
|
+
"hasDynamicHelp": false,
|
|
12437
|
+
"multiple": false,
|
|
12438
|
+
"type": "option"
|
|
12439
|
+
}
|
|
12440
|
+
},
|
|
12441
|
+
"hasDynamicHelp": false,
|
|
12442
|
+
"hiddenAliases": [],
|
|
12443
|
+
"id": "pg:settings:track-functions",
|
|
12444
|
+
"pluginAlias": "heroku",
|
|
12445
|
+
"pluginName": "heroku",
|
|
12446
|
+
"pluginType": "core",
|
|
12447
|
+
"topic": "pg",
|
|
12448
|
+
"isESM": false,
|
|
12449
|
+
"relativePath": [
|
|
12450
|
+
"lib",
|
|
12451
|
+
"commands",
|
|
12452
|
+
"pg",
|
|
12453
|
+
"settings",
|
|
12454
|
+
"track-functions.js"
|
|
12455
|
+
]
|
|
12456
|
+
},
|
|
12457
|
+
"spaces:drains:get": {
|
|
12458
|
+
"aliases": [
|
|
12459
|
+
"drains:get"
|
|
12460
|
+
],
|
|
12461
|
+
"args": {},
|
|
12462
|
+
"description": "display the log drain for a space",
|
|
12463
|
+
"flags": {
|
|
12464
|
+
"space": {
|
|
12465
|
+
"char": "s",
|
|
12466
|
+
"description": "space for which to get log drain",
|
|
12467
|
+
"name": "space",
|
|
12468
|
+
"required": true,
|
|
12469
|
+
"hasDynamicHelp": false,
|
|
12470
|
+
"multiple": false,
|
|
12471
|
+
"type": "option"
|
|
12472
|
+
},
|
|
12473
|
+
"json": {
|
|
12474
|
+
"description": "output in json format",
|
|
12475
|
+
"name": "json",
|
|
12476
|
+
"allowNo": false,
|
|
12477
|
+
"type": "boolean"
|
|
12478
|
+
}
|
|
12479
|
+
},
|
|
12480
|
+
"hasDynamicHelp": false,
|
|
12481
|
+
"hidden": true,
|
|
12482
|
+
"hiddenAliases": [],
|
|
12483
|
+
"id": "spaces:drains:get",
|
|
12484
|
+
"pluginAlias": "heroku",
|
|
12485
|
+
"pluginName": "heroku",
|
|
12486
|
+
"pluginType": "core",
|
|
12487
|
+
"strict": true,
|
|
12488
|
+
"topic": "spaces",
|
|
12489
|
+
"isESM": false,
|
|
12490
|
+
"relativePath": [
|
|
12491
|
+
"lib",
|
|
12492
|
+
"commands",
|
|
12493
|
+
"spaces",
|
|
12494
|
+
"drains",
|
|
12495
|
+
"get.js"
|
|
12496
|
+
]
|
|
12497
|
+
},
|
|
12498
|
+
"spaces:drains:set": {
|
|
12499
|
+
"aliases": [
|
|
12500
|
+
"drains:set"
|
|
12501
|
+
],
|
|
12502
|
+
"args": {
|
|
12503
|
+
"url": {
|
|
12504
|
+
"description": "URL to replace the log drain with",
|
|
12505
|
+
"name": "url",
|
|
12506
|
+
"required": true
|
|
12507
|
+
}
|
|
12508
|
+
},
|
|
12509
|
+
"description": "replaces the log drain for a space",
|
|
12510
|
+
"flags": {
|
|
12511
|
+
"space": {
|
|
12512
|
+
"char": "s",
|
|
12513
|
+
"description": "space for which to set log drain",
|
|
12514
|
+
"name": "space",
|
|
12515
|
+
"required": true,
|
|
12516
|
+
"hasDynamicHelp": false,
|
|
12517
|
+
"multiple": false,
|
|
12518
|
+
"type": "option"
|
|
12519
|
+
}
|
|
12520
|
+
},
|
|
12521
|
+
"hasDynamicHelp": false,
|
|
12522
|
+
"hidden": true,
|
|
12523
|
+
"hiddenAliases": [],
|
|
12524
|
+
"id": "spaces:drains:set",
|
|
12525
|
+
"pluginAlias": "heroku",
|
|
12526
|
+
"pluginName": "heroku",
|
|
12527
|
+
"pluginType": "core",
|
|
12528
|
+
"strict": true,
|
|
12529
|
+
"topic": "spaces",
|
|
12530
|
+
"isESM": false,
|
|
12531
|
+
"relativePath": [
|
|
12532
|
+
"lib",
|
|
12533
|
+
"commands",
|
|
12534
|
+
"spaces",
|
|
12535
|
+
"drains",
|
|
12536
|
+
"set.js"
|
|
12537
|
+
]
|
|
12538
|
+
},
|
|
12539
|
+
"pg:credentials:create": {
|
|
12540
|
+
"aliases": [],
|
|
12541
|
+
"args": {
|
|
12542
|
+
"database": {
|
|
12543
|
+
"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.",
|
|
12544
|
+
"name": "database"
|
|
12545
|
+
}
|
|
12546
|
+
},
|
|
12547
|
+
"description": "create credential within database\nExample:\n\n heroku pg:credentials:create postgresql-something-12345 --name new-cred-name\n",
|
|
12562
12548
|
"flags": {
|
|
12549
|
+
"name": {
|
|
12550
|
+
"char": "n",
|
|
12551
|
+
"description": "name of the new credential within the database",
|
|
12552
|
+
"name": "name",
|
|
12553
|
+
"required": true,
|
|
12554
|
+
"hasDynamicHelp": false,
|
|
12555
|
+
"multiple": false,
|
|
12556
|
+
"type": "option"
|
|
12557
|
+
},
|
|
12563
12558
|
"app": {
|
|
12564
12559
|
"char": "a",
|
|
12565
12560
|
"description": "app to run command against",
|
|
@@ -12580,39 +12575,48 @@
|
|
|
12580
12575
|
},
|
|
12581
12576
|
"hasDynamicHelp": false,
|
|
12582
12577
|
"hiddenAliases": [],
|
|
12583
|
-
"id": "pg:
|
|
12578
|
+
"id": "pg:credentials:create",
|
|
12584
12579
|
"pluginAlias": "heroku",
|
|
12585
12580
|
"pluginName": "heroku",
|
|
12586
12581
|
"pluginType": "core",
|
|
12582
|
+
"strict": true,
|
|
12587
12583
|
"topic": "pg",
|
|
12588
12584
|
"isESM": false,
|
|
12589
12585
|
"relativePath": [
|
|
12590
12586
|
"lib",
|
|
12591
12587
|
"commands",
|
|
12592
12588
|
"pg",
|
|
12593
|
-
"
|
|
12594
|
-
"
|
|
12589
|
+
"credentials",
|
|
12590
|
+
"create.js"
|
|
12595
12591
|
]
|
|
12596
12592
|
},
|
|
12597
|
-
"pg:
|
|
12593
|
+
"pg:credentials:destroy": {
|
|
12598
12594
|
"aliases": [],
|
|
12599
12595
|
"args": {
|
|
12600
12596
|
"database": {
|
|
12601
12597
|
"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.",
|
|
12602
12598
|
"name": "database"
|
|
12603
|
-
},
|
|
12604
|
-
"value": {
|
|
12605
|
-
"description": "function type to track\n<options: none|pl|all>",
|
|
12606
|
-
"name": "value",
|
|
12607
|
-
"options": [
|
|
12608
|
-
"none",
|
|
12609
|
-
"pl",
|
|
12610
|
-
"all"
|
|
12611
|
-
]
|
|
12612
12599
|
}
|
|
12613
12600
|
},
|
|
12614
|
-
"description": "
|
|
12601
|
+
"description": "destroy credential within database",
|
|
12602
|
+
"examples": "$ heroku pg:credentials:destroy postgresql-transparent-56874 --name cred-name -a woodstock-production",
|
|
12615
12603
|
"flags": {
|
|
12604
|
+
"name": {
|
|
12605
|
+
"char": "n",
|
|
12606
|
+
"description": "unique identifier for the credential",
|
|
12607
|
+
"name": "name",
|
|
12608
|
+
"required": true,
|
|
12609
|
+
"hasDynamicHelp": false,
|
|
12610
|
+
"multiple": false,
|
|
12611
|
+
"type": "option"
|
|
12612
|
+
},
|
|
12613
|
+
"confirm": {
|
|
12614
|
+
"char": "c",
|
|
12615
|
+
"name": "confirm",
|
|
12616
|
+
"hasDynamicHelp": false,
|
|
12617
|
+
"multiple": false,
|
|
12618
|
+
"type": "option"
|
|
12619
|
+
},
|
|
12616
12620
|
"app": {
|
|
12617
12621
|
"char": "a",
|
|
12618
12622
|
"description": "app to run command against",
|
|
@@ -12633,25 +12637,40 @@
|
|
|
12633
12637
|
},
|
|
12634
12638
|
"hasDynamicHelp": false,
|
|
12635
12639
|
"hiddenAliases": [],
|
|
12636
|
-
"id": "pg:
|
|
12640
|
+
"id": "pg:credentials:destroy",
|
|
12637
12641
|
"pluginAlias": "heroku",
|
|
12638
12642
|
"pluginName": "heroku",
|
|
12639
12643
|
"pluginType": "core",
|
|
12644
|
+
"strict": true,
|
|
12640
12645
|
"topic": "pg",
|
|
12646
|
+
"example": "$ heroku pg:credentials:destroy postgresql-transparent-56874 --name cred-name -a woodstock-production",
|
|
12641
12647
|
"isESM": false,
|
|
12642
12648
|
"relativePath": [
|
|
12643
12649
|
"lib",
|
|
12644
12650
|
"commands",
|
|
12645
12651
|
"pg",
|
|
12646
|
-
"
|
|
12647
|
-
"
|
|
12652
|
+
"credentials",
|
|
12653
|
+
"destroy.js"
|
|
12648
12654
|
]
|
|
12649
12655
|
},
|
|
12650
|
-
"
|
|
12656
|
+
"pg:credentials:repair-default": {
|
|
12651
12657
|
"aliases": [],
|
|
12652
|
-
"args": {
|
|
12653
|
-
|
|
12658
|
+
"args": {
|
|
12659
|
+
"database": {
|
|
12660
|
+
"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.",
|
|
12661
|
+
"name": "database"
|
|
12662
|
+
}
|
|
12663
|
+
},
|
|
12664
|
+
"description": "repair the permissions of the default credential within database",
|
|
12665
|
+
"examples": "$ heroku pg:credentials:repair-default postgresql-something-12345",
|
|
12654
12666
|
"flags": {
|
|
12667
|
+
"confirm": {
|
|
12668
|
+
"char": "c",
|
|
12669
|
+
"name": "confirm",
|
|
12670
|
+
"hasDynamicHelp": false,
|
|
12671
|
+
"multiple": false,
|
|
12672
|
+
"type": "option"
|
|
12673
|
+
},
|
|
12655
12674
|
"app": {
|
|
12656
12675
|
"char": "a",
|
|
12657
12676
|
"description": "app to run command against",
|
|
@@ -12672,168 +12691,149 @@
|
|
|
12672
12691
|
},
|
|
12673
12692
|
"hasDynamicHelp": false,
|
|
12674
12693
|
"hiddenAliases": [],
|
|
12675
|
-
"id": "
|
|
12694
|
+
"id": "pg:credentials:repair-default",
|
|
12676
12695
|
"pluginAlias": "heroku",
|
|
12677
12696
|
"pluginName": "heroku",
|
|
12678
12697
|
"pluginType": "core",
|
|
12679
12698
|
"strict": true,
|
|
12699
|
+
"topic": "pg",
|
|
12700
|
+
"example": "$ heroku pg:credentials:repair-default postgresql-something-12345",
|
|
12680
12701
|
"isESM": false,
|
|
12681
12702
|
"relativePath": [
|
|
12682
12703
|
"lib",
|
|
12683
12704
|
"commands",
|
|
12684
|
-
"
|
|
12685
|
-
"
|
|
12686
|
-
"
|
|
12705
|
+
"pg",
|
|
12706
|
+
"credentials",
|
|
12707
|
+
"repair-default.js"
|
|
12687
12708
|
]
|
|
12688
12709
|
},
|
|
12689
|
-
"
|
|
12710
|
+
"pg:credentials:rotate": {
|
|
12690
12711
|
"aliases": [],
|
|
12691
|
-
"args": {
|
|
12692
|
-
|
|
12712
|
+
"args": {
|
|
12713
|
+
"database": {
|
|
12714
|
+
"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.",
|
|
12715
|
+
"name": "database"
|
|
12716
|
+
}
|
|
12717
|
+
},
|
|
12718
|
+
"description": "rotate the database credentials",
|
|
12693
12719
|
"flags": {
|
|
12694
|
-
"
|
|
12695
|
-
"char": "
|
|
12696
|
-
"description": "
|
|
12697
|
-
"name": "
|
|
12698
|
-
"required": true,
|
|
12720
|
+
"name": {
|
|
12721
|
+
"char": "n",
|
|
12722
|
+
"description": "which credential to rotate (default credentials if not specified and --all is not used)",
|
|
12723
|
+
"name": "name",
|
|
12699
12724
|
"hasDynamicHelp": false,
|
|
12700
12725
|
"multiple": false,
|
|
12701
12726
|
"type": "option"
|
|
12702
12727
|
},
|
|
12703
|
-
"
|
|
12704
|
-
"
|
|
12705
|
-
"
|
|
12706
|
-
|
|
12707
|
-
|
|
12708
|
-
"
|
|
12709
|
-
"
|
|
12728
|
+
"all": {
|
|
12729
|
+
"description": "rotate all credentials",
|
|
12730
|
+
"exclusive": [
|
|
12731
|
+
"name"
|
|
12732
|
+
],
|
|
12733
|
+
"name": "all",
|
|
12734
|
+
"allowNo": false,
|
|
12735
|
+
"type": "boolean"
|
|
12710
12736
|
},
|
|
12711
|
-
"
|
|
12712
|
-
"
|
|
12713
|
-
"name": "
|
|
12714
|
-
"required": true,
|
|
12737
|
+
"confirm": {
|
|
12738
|
+
"char": "c",
|
|
12739
|
+
"name": "confirm",
|
|
12715
12740
|
"hasDynamicHelp": false,
|
|
12716
12741
|
"multiple": false,
|
|
12717
12742
|
"type": "option"
|
|
12718
12743
|
},
|
|
12719
|
-
"
|
|
12720
|
-
"description": "
|
|
12721
|
-
"name": "
|
|
12744
|
+
"force": {
|
|
12745
|
+
"description": "forces rotating the targeted credentials",
|
|
12746
|
+
"name": "force",
|
|
12747
|
+
"allowNo": false,
|
|
12748
|
+
"type": "boolean"
|
|
12749
|
+
},
|
|
12750
|
+
"app": {
|
|
12751
|
+
"char": "a",
|
|
12752
|
+
"description": "app to run command against",
|
|
12753
|
+
"name": "app",
|
|
12722
12754
|
"required": true,
|
|
12723
12755
|
"hasDynamicHelp": false,
|
|
12724
12756
|
"multiple": false,
|
|
12725
12757
|
"type": "option"
|
|
12726
12758
|
},
|
|
12727
|
-
"
|
|
12728
|
-
"
|
|
12729
|
-
"
|
|
12759
|
+
"remote": {
|
|
12760
|
+
"char": "r",
|
|
12761
|
+
"description": "git remote of app to use",
|
|
12762
|
+
"name": "remote",
|
|
12730
12763
|
"hasDynamicHelp": false,
|
|
12731
12764
|
"multiple": false,
|
|
12732
12765
|
"type": "option"
|
|
12733
|
-
},
|
|
12734
|
-
"notifications": {
|
|
12735
|
-
"description": "receive email notifications when the max dyno limit is reached",
|
|
12736
|
-
"name": "notifications",
|
|
12737
|
-
"allowNo": false,
|
|
12738
|
-
"type": "boolean"
|
|
12739
12766
|
}
|
|
12740
12767
|
},
|
|
12741
12768
|
"hasDynamicHelp": false,
|
|
12742
12769
|
"hiddenAliases": [],
|
|
12743
|
-
"id": "
|
|
12770
|
+
"id": "pg:credentials:rotate",
|
|
12744
12771
|
"pluginAlias": "heroku",
|
|
12745
12772
|
"pluginName": "heroku",
|
|
12746
12773
|
"pluginType": "core",
|
|
12747
12774
|
"strict": true,
|
|
12775
|
+
"topic": "pg",
|
|
12748
12776
|
"isESM": false,
|
|
12749
12777
|
"relativePath": [
|
|
12750
12778
|
"lib",
|
|
12751
12779
|
"commands",
|
|
12752
|
-
"
|
|
12753
|
-
"
|
|
12754
|
-
"
|
|
12780
|
+
"pg",
|
|
12781
|
+
"credentials",
|
|
12782
|
+
"rotate.js"
|
|
12755
12783
|
]
|
|
12756
12784
|
},
|
|
12757
|
-
"
|
|
12758
|
-
"aliases": [
|
|
12759
|
-
|
|
12760
|
-
|
|
12761
|
-
|
|
12762
|
-
|
|
12785
|
+
"pg:credentials:url": {
|
|
12786
|
+
"aliases": [],
|
|
12787
|
+
"args": {
|
|
12788
|
+
"database": {
|
|
12789
|
+
"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.",
|
|
12790
|
+
"name": "database"
|
|
12791
|
+
}
|
|
12792
|
+
},
|
|
12793
|
+
"description": "show information on a database credential",
|
|
12763
12794
|
"flags": {
|
|
12764
|
-
"
|
|
12765
|
-
"char": "
|
|
12766
|
-
"description": "
|
|
12767
|
-
"name": "
|
|
12768
|
-
"
|
|
12795
|
+
"name": {
|
|
12796
|
+
"char": "n",
|
|
12797
|
+
"description": "which credential to show (default credentials if not specified)",
|
|
12798
|
+
"name": "name",
|
|
12799
|
+
"default": "default",
|
|
12769
12800
|
"hasDynamicHelp": false,
|
|
12770
12801
|
"multiple": false,
|
|
12771
12802
|
"type": "option"
|
|
12772
12803
|
},
|
|
12773
|
-
"
|
|
12774
|
-
"
|
|
12775
|
-
"
|
|
12776
|
-
"
|
|
12777
|
-
"type": "boolean"
|
|
12778
|
-
}
|
|
12779
|
-
},
|
|
12780
|
-
"hasDynamicHelp": false,
|
|
12781
|
-
"hidden": true,
|
|
12782
|
-
"hiddenAliases": [],
|
|
12783
|
-
"id": "spaces:drains:get",
|
|
12784
|
-
"pluginAlias": "heroku",
|
|
12785
|
-
"pluginName": "heroku",
|
|
12786
|
-
"pluginType": "core",
|
|
12787
|
-
"strict": true,
|
|
12788
|
-
"topic": "spaces",
|
|
12789
|
-
"isESM": false,
|
|
12790
|
-
"relativePath": [
|
|
12791
|
-
"lib",
|
|
12792
|
-
"commands",
|
|
12793
|
-
"spaces",
|
|
12794
|
-
"drains",
|
|
12795
|
-
"get.js"
|
|
12796
|
-
]
|
|
12797
|
-
},
|
|
12798
|
-
"spaces:drains:set": {
|
|
12799
|
-
"aliases": [
|
|
12800
|
-
"drains:set"
|
|
12801
|
-
],
|
|
12802
|
-
"args": {
|
|
12803
|
-
"url": {
|
|
12804
|
-
"description": "URL to replace the log drain with",
|
|
12805
|
-
"name": "url",
|
|
12806
|
-
"required": true
|
|
12807
|
-
}
|
|
12808
|
-
},
|
|
12809
|
-
"description": "replaces the log drain for a space",
|
|
12810
|
-
"flags": {
|
|
12811
|
-
"space": {
|
|
12812
|
-
"char": "s",
|
|
12813
|
-
"description": "space for which to set log drain",
|
|
12814
|
-
"name": "space",
|
|
12804
|
+
"app": {
|
|
12805
|
+
"char": "a",
|
|
12806
|
+
"description": "app to run command against",
|
|
12807
|
+
"name": "app",
|
|
12815
12808
|
"required": true,
|
|
12816
12809
|
"hasDynamicHelp": false,
|
|
12817
12810
|
"multiple": false,
|
|
12818
12811
|
"type": "option"
|
|
12812
|
+
},
|
|
12813
|
+
"remote": {
|
|
12814
|
+
"char": "r",
|
|
12815
|
+
"description": "git remote of app to use",
|
|
12816
|
+
"name": "remote",
|
|
12817
|
+
"hasDynamicHelp": false,
|
|
12818
|
+
"multiple": false,
|
|
12819
|
+
"type": "option"
|
|
12819
12820
|
}
|
|
12820
12821
|
},
|
|
12821
12822
|
"hasDynamicHelp": false,
|
|
12822
|
-
"hidden": true,
|
|
12823
12823
|
"hiddenAliases": [],
|
|
12824
|
-
"id": "
|
|
12824
|
+
"id": "pg:credentials:url",
|
|
12825
12825
|
"pluginAlias": "heroku",
|
|
12826
12826
|
"pluginName": "heroku",
|
|
12827
12827
|
"pluginType": "core",
|
|
12828
12828
|
"strict": true,
|
|
12829
|
-
"topic": "
|
|
12829
|
+
"topic": "pg",
|
|
12830
12830
|
"isESM": false,
|
|
12831
12831
|
"relativePath": [
|
|
12832
12832
|
"lib",
|
|
12833
12833
|
"commands",
|
|
12834
|
-
"
|
|
12835
|
-
"
|
|
12836
|
-
"
|
|
12834
|
+
"pg",
|
|
12835
|
+
"credentials",
|
|
12836
|
+
"url.js"
|
|
12837
12837
|
]
|
|
12838
12838
|
},
|
|
12839
12839
|
"spaces:peerings:accept": {
|
|
@@ -14096,5 +14096,5 @@
|
|
|
14096
14096
|
]
|
|
14097
14097
|
}
|
|
14098
14098
|
},
|
|
14099
|
-
"version": "9.5.1
|
|
14099
|
+
"version": "9.5.1"
|
|
14100
14100
|
}
|