heroku 9.1.0 → 9.2.0-beta.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/addons/create.js +5 -0
- package/lib/commands/authorizations/create.js +1 -5
- package/lib/commands/authorizations/info.js +1 -5
- package/lib/commands/authorizations/revoke.js +1 -5
- package/lib/commands/authorizations/rotate.js +1 -5
- package/lib/commands/authorizations/update.js +1 -5
- package/lib/commands/ci/index.js +1 -1
- package/lib/commands/ci/info.js +1 -1
- package/lib/commands/ci/last.js +1 -1
- package/lib/commands/ci/rerun.js +1 -1
- package/lib/commands/ci/run.d.ts +1 -0
- package/lib/commands/ci/run.js +2 -1
- package/lib/commands/local/run.js +4 -2
- package/lib/commands/pg/backups/schedule.js +6 -12
- package/lib/commands/pg/credentials/rotate.d.ts +1 -0
- package/lib/commands/pg/credentials/rotate.js +1 -0
- package/lib/commands/pg/settings/auto-explain/log-min-duration.d.ts +1 -4
- package/lib/commands/pg/settings/auto-explain/log-min-duration.js +1 -1
- package/lib/commands/pg/settings/log-min-duration-statement.d.ts +1 -4
- package/lib/commands/pg/settings/log-min-duration-statement.js +1 -1
- package/lib/commands/ps/scale.js +0 -22
- package/lib/commands/ps/type.js +0 -22
- package/lib/commands/redis/cli.js +1 -2
- package/lib/commands/run/index.js +2 -1
- package/lib/lib/run/helpers.d.ts +1 -0
- package/lib/lib/run/helpers.js +13 -1
- package/oclif.manifest.json +695 -679
- package/package.json +5 -6
package/oclif.manifest.json
CHANGED
|
@@ -488,122 +488,125 @@
|
|
|
488
488
|
"update.js"
|
|
489
489
|
]
|
|
490
490
|
},
|
|
491
|
-
"
|
|
491
|
+
"apps:create": {
|
|
492
492
|
"aliases": [],
|
|
493
493
|
"args": {
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
494
|
+
"app": {
|
|
495
|
+
"description": "name of app to create",
|
|
496
|
+
"name": "app",
|
|
497
|
+
"required": false
|
|
497
498
|
}
|
|
498
499
|
},
|
|
499
|
-
"description": "
|
|
500
|
+
"description": "creates a new app",
|
|
501
|
+
"examples": [
|
|
502
|
+
"$ heroku apps:create\nCreating app... done, stack is heroku-22\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"
|
|
503
|
+
],
|
|
500
504
|
"flags": {
|
|
501
|
-
"
|
|
502
|
-
"
|
|
503
|
-
"name": "
|
|
505
|
+
"app": {
|
|
506
|
+
"hidden": true,
|
|
507
|
+
"name": "app",
|
|
504
508
|
"hasDynamicHelp": false,
|
|
505
509
|
"multiple": false,
|
|
506
510
|
"type": "option"
|
|
507
511
|
},
|
|
508
|
-
"
|
|
509
|
-
"description": "
|
|
510
|
-
"name": "
|
|
512
|
+
"addons": {
|
|
513
|
+
"description": "comma-delimited list of addons to install",
|
|
514
|
+
"name": "addons",
|
|
511
515
|
"hasDynamicHelp": false,
|
|
512
516
|
"multiple": false,
|
|
513
517
|
"type": "option"
|
|
514
518
|
},
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
519
|
+
"buildpack": {
|
|
520
|
+
"char": "b",
|
|
521
|
+
"description": "buildpack url to use for this app",
|
|
522
|
+
"name": "buildpack",
|
|
518
523
|
"hasDynamicHelp": false,
|
|
519
524
|
"multiple": false,
|
|
520
525
|
"type": "option"
|
|
521
526
|
},
|
|
522
|
-
"
|
|
523
|
-
"char": "
|
|
524
|
-
"description": "
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
|
|
527
|
+
"manifest": {
|
|
528
|
+
"char": "m",
|
|
529
|
+
"description": "use heroku.yml settings for this app",
|
|
530
|
+
"hidden": true,
|
|
531
|
+
"name": "manifest",
|
|
532
|
+
"allowNo": false,
|
|
533
|
+
"type": "boolean"
|
|
534
|
+
},
|
|
535
|
+
"no-remote": {
|
|
536
|
+
"char": "n",
|
|
537
|
+
"description": "do not create a git remote",
|
|
538
|
+
"name": "no-remote",
|
|
539
|
+
"allowNo": false,
|
|
540
|
+
"type": "boolean"
|
|
530
541
|
},
|
|
531
542
|
"remote": {
|
|
532
543
|
"char": "r",
|
|
533
|
-
"description": "git remote
|
|
544
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
534
545
|
"name": "remote",
|
|
546
|
+
"default": "heroku",
|
|
535
547
|
"hasDynamicHelp": false,
|
|
536
548
|
"multiple": false,
|
|
537
549
|
"type": "option"
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
"pluginAlias": "heroku",
|
|
544
|
-
"pluginName": "heroku",
|
|
545
|
-
"pluginType": "core",
|
|
546
|
-
"strict": true,
|
|
547
|
-
"topic": "addons",
|
|
548
|
-
"isESM": false,
|
|
549
|
-
"relativePath": [
|
|
550
|
-
"lib",
|
|
551
|
-
"commands",
|
|
552
|
-
"addons",
|
|
553
|
-
"attach.js"
|
|
554
|
-
]
|
|
555
|
-
},
|
|
556
|
-
"addons:create": {
|
|
557
|
-
"aliases": [],
|
|
558
|
-
"args": {
|
|
559
|
-
"service:plan": {
|
|
560
|
-
"name": "service:plan",
|
|
561
|
-
"required": true
|
|
562
|
-
}
|
|
563
|
-
},
|
|
564
|
-
"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",
|
|
565
|
-
"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",
|
|
566
|
-
"flags": {
|
|
567
|
-
"name": {
|
|
568
|
-
"description": "name for the add-on resource",
|
|
569
|
-
"name": "name",
|
|
550
|
+
},
|
|
551
|
+
"stack": {
|
|
552
|
+
"char": "s",
|
|
553
|
+
"description": "the stack to create the app on",
|
|
554
|
+
"name": "stack",
|
|
570
555
|
"hasDynamicHelp": false,
|
|
571
556
|
"multiple": false,
|
|
572
557
|
"type": "option"
|
|
573
558
|
},
|
|
574
|
-
"
|
|
575
|
-
"description": "
|
|
576
|
-
"name": "
|
|
559
|
+
"space": {
|
|
560
|
+
"description": "the private space to create the app in",
|
|
561
|
+
"name": "space",
|
|
577
562
|
"hasDynamicHelp": false,
|
|
578
563
|
"multiple": false,
|
|
579
564
|
"type": "option"
|
|
580
565
|
},
|
|
581
|
-
"
|
|
582
|
-
"description": "
|
|
583
|
-
"name": "
|
|
566
|
+
"region": {
|
|
567
|
+
"description": "specify region for the app to run in",
|
|
568
|
+
"name": "region",
|
|
584
569
|
"hasDynamicHelp": false,
|
|
585
570
|
"multiple": false,
|
|
586
571
|
"type": "option"
|
|
587
572
|
},
|
|
588
|
-
"
|
|
589
|
-
"description": "
|
|
590
|
-
"
|
|
573
|
+
"internal-routing": {
|
|
574
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
575
|
+
"hidden": true,
|
|
576
|
+
"name": "internal-routing",
|
|
591
577
|
"allowNo": false,
|
|
592
578
|
"type": "boolean"
|
|
593
579
|
},
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"
|
|
597
|
-
"name": "app",
|
|
598
|
-
"required": true,
|
|
580
|
+
"features": {
|
|
581
|
+
"hidden": true,
|
|
582
|
+
"name": "features",
|
|
599
583
|
"hasDynamicHelp": false,
|
|
600
584
|
"multiple": false,
|
|
601
585
|
"type": "option"
|
|
602
586
|
},
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
587
|
+
"kernel": {
|
|
588
|
+
"hidden": true,
|
|
589
|
+
"name": "kernel",
|
|
590
|
+
"hasDynamicHelp": false,
|
|
591
|
+
"multiple": false,
|
|
592
|
+
"type": "option"
|
|
593
|
+
},
|
|
594
|
+
"locked": {
|
|
595
|
+
"hidden": true,
|
|
596
|
+
"name": "locked",
|
|
597
|
+
"allowNo": false,
|
|
598
|
+
"type": "boolean"
|
|
599
|
+
},
|
|
600
|
+
"json": {
|
|
601
|
+
"description": "output in json format",
|
|
602
|
+
"name": "json",
|
|
603
|
+
"allowNo": false,
|
|
604
|
+
"type": "boolean"
|
|
605
|
+
},
|
|
606
|
+
"team": {
|
|
607
|
+
"char": "t",
|
|
608
|
+
"description": "team to use",
|
|
609
|
+
"name": "team",
|
|
607
610
|
"hasDynamicHelp": false,
|
|
608
611
|
"multiple": false,
|
|
609
612
|
"type": "option"
|
|
@@ -611,56 +614,31 @@
|
|
|
611
614
|
},
|
|
612
615
|
"hasDynamicHelp": false,
|
|
613
616
|
"hiddenAliases": [
|
|
614
|
-
"
|
|
617
|
+
"create"
|
|
615
618
|
],
|
|
616
|
-
"id": "
|
|
619
|
+
"id": "apps:create",
|
|
617
620
|
"pluginAlias": "heroku",
|
|
618
621
|
"pluginName": "heroku",
|
|
619
622
|
"pluginType": "core",
|
|
620
|
-
"strict":
|
|
621
|
-
"topic": "addons",
|
|
622
|
-
"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",
|
|
623
|
+
"strict": true,
|
|
623
624
|
"isESM": false,
|
|
624
625
|
"relativePath": [
|
|
625
626
|
"lib",
|
|
626
627
|
"commands",
|
|
627
|
-
"
|
|
628
|
+
"apps",
|
|
628
629
|
"create.js"
|
|
629
630
|
]
|
|
630
631
|
},
|
|
631
|
-
"
|
|
632
|
+
"apps:destroy": {
|
|
632
633
|
"aliases": [],
|
|
633
634
|
"args": {
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
"
|
|
635
|
+
"app": {
|
|
636
|
+
"hidden": true,
|
|
637
|
+
"name": "app"
|
|
637
638
|
}
|
|
638
639
|
},
|
|
639
|
-
"description": "permanently destroy an
|
|
640
|
-
"examples": [
|
|
641
|
-
"addons:destroy [ADDON]... [flags]"
|
|
642
|
-
],
|
|
640
|
+
"description": "permanently destroy an app",
|
|
643
641
|
"flags": {
|
|
644
|
-
"force": {
|
|
645
|
-
"char": "f",
|
|
646
|
-
"description": "allow destruction even if connected to other apps",
|
|
647
|
-
"name": "force",
|
|
648
|
-
"allowNo": false,
|
|
649
|
-
"type": "boolean"
|
|
650
|
-
},
|
|
651
|
-
"confirm": {
|
|
652
|
-
"char": "c",
|
|
653
|
-
"name": "confirm",
|
|
654
|
-
"hasDynamicHelp": false,
|
|
655
|
-
"multiple": false,
|
|
656
|
-
"type": "option"
|
|
657
|
-
},
|
|
658
|
-
"wait": {
|
|
659
|
-
"description": "watch add-on destruction status and exit when complete",
|
|
660
|
-
"name": "wait",
|
|
661
|
-
"allowNo": false,
|
|
662
|
-
"type": "boolean"
|
|
663
|
-
},
|
|
664
642
|
"app": {
|
|
665
643
|
"char": "a",
|
|
666
644
|
"description": "app to run command against",
|
|
@@ -676,35 +654,38 @@
|
|
|
676
654
|
"hasDynamicHelp": false,
|
|
677
655
|
"multiple": false,
|
|
678
656
|
"type": "option"
|
|
657
|
+
},
|
|
658
|
+
"confirm": {
|
|
659
|
+
"char": "c",
|
|
660
|
+
"name": "confirm",
|
|
661
|
+
"hasDynamicHelp": false,
|
|
662
|
+
"multiple": false,
|
|
663
|
+
"type": "option"
|
|
679
664
|
}
|
|
680
665
|
},
|
|
681
666
|
"hasDynamicHelp": false,
|
|
682
667
|
"hiddenAliases": [
|
|
683
|
-
"
|
|
668
|
+
"destroy",
|
|
669
|
+
"apps:delete"
|
|
684
670
|
],
|
|
685
|
-
"id": "
|
|
671
|
+
"id": "apps:destroy",
|
|
686
672
|
"pluginAlias": "heroku",
|
|
687
673
|
"pluginName": "heroku",
|
|
688
674
|
"pluginType": "core",
|
|
689
|
-
"strict":
|
|
690
|
-
"
|
|
675
|
+
"strict": true,
|
|
676
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
691
677
|
"isESM": false,
|
|
692
678
|
"relativePath": [
|
|
693
679
|
"lib",
|
|
694
680
|
"commands",
|
|
695
|
-
"
|
|
681
|
+
"apps",
|
|
696
682
|
"destroy.js"
|
|
697
683
|
]
|
|
698
684
|
},
|
|
699
|
-
"
|
|
685
|
+
"apps:errors": {
|
|
700
686
|
"aliases": [],
|
|
701
|
-
"args": {
|
|
702
|
-
|
|
703
|
-
"name": "attachment_name",
|
|
704
|
-
"required": true
|
|
705
|
-
}
|
|
706
|
-
},
|
|
707
|
-
"description": "detach an existing add-on resource from an app",
|
|
687
|
+
"args": {},
|
|
688
|
+
"description": "view app errors",
|
|
708
689
|
"flags": {
|
|
709
690
|
"app": {
|
|
710
691
|
"char": "a",
|
|
@@ -722,99 +703,205 @@
|
|
|
722
703
|
"hasDynamicHelp": false,
|
|
723
704
|
"multiple": false,
|
|
724
705
|
"type": "option"
|
|
706
|
+
},
|
|
707
|
+
"json": {
|
|
708
|
+
"description": "output in json format",
|
|
709
|
+
"name": "json",
|
|
710
|
+
"allowNo": false,
|
|
711
|
+
"type": "boolean"
|
|
712
|
+
},
|
|
713
|
+
"hours": {
|
|
714
|
+
"description": "number of hours to look back (default 24)",
|
|
715
|
+
"name": "hours",
|
|
716
|
+
"default": "24",
|
|
717
|
+
"hasDynamicHelp": false,
|
|
718
|
+
"multiple": false,
|
|
719
|
+
"type": "option"
|
|
720
|
+
},
|
|
721
|
+
"router": {
|
|
722
|
+
"description": "show only router errors",
|
|
723
|
+
"name": "router",
|
|
724
|
+
"allowNo": false,
|
|
725
|
+
"type": "boolean"
|
|
726
|
+
},
|
|
727
|
+
"dyno": {
|
|
728
|
+
"description": "show only dyno errors",
|
|
729
|
+
"name": "dyno",
|
|
730
|
+
"allowNo": false,
|
|
731
|
+
"type": "boolean"
|
|
725
732
|
}
|
|
726
733
|
},
|
|
727
734
|
"hasDynamicHelp": false,
|
|
728
735
|
"hiddenAliases": [],
|
|
729
|
-
"id": "
|
|
736
|
+
"id": "apps:errors",
|
|
730
737
|
"pluginAlias": "heroku",
|
|
731
738
|
"pluginName": "heroku",
|
|
732
739
|
"pluginType": "core",
|
|
733
740
|
"strict": true,
|
|
734
|
-
"topic": "addons",
|
|
735
741
|
"isESM": false,
|
|
736
742
|
"relativePath": [
|
|
737
743
|
"lib",
|
|
738
744
|
"commands",
|
|
739
|
-
"
|
|
740
|
-
"
|
|
745
|
+
"apps",
|
|
746
|
+
"errors.js"
|
|
741
747
|
]
|
|
742
748
|
},
|
|
743
|
-
"
|
|
749
|
+
"apps": {
|
|
744
750
|
"aliases": [],
|
|
745
|
-
"args": {
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
},
|
|
751
|
-
"description": "open an add-on's Dev Center documentation in your browser",
|
|
751
|
+
"args": {},
|
|
752
|
+
"description": "list your apps",
|
|
753
|
+
"examples": [
|
|
754
|
+
"$ heroku apps"
|
|
755
|
+
],
|
|
752
756
|
"flags": {
|
|
753
|
-
"
|
|
754
|
-
"
|
|
755
|
-
"
|
|
757
|
+
"all": {
|
|
758
|
+
"char": "A",
|
|
759
|
+
"description": "include apps in all teams",
|
|
760
|
+
"name": "all",
|
|
756
761
|
"allowNo": false,
|
|
757
762
|
"type": "boolean"
|
|
758
763
|
},
|
|
759
|
-
"
|
|
760
|
-
"char": "
|
|
761
|
-
"description": "
|
|
762
|
-
"name": "
|
|
764
|
+
"json": {
|
|
765
|
+
"char": "j",
|
|
766
|
+
"description": "output in json format",
|
|
767
|
+
"name": "json",
|
|
768
|
+
"allowNo": false,
|
|
769
|
+
"type": "boolean"
|
|
770
|
+
},
|
|
771
|
+
"space": {
|
|
772
|
+
"char": "s",
|
|
773
|
+
"description": "filter by space",
|
|
774
|
+
"name": "space",
|
|
763
775
|
"hasDynamicHelp": false,
|
|
764
776
|
"multiple": false,
|
|
765
777
|
"type": "option"
|
|
766
778
|
},
|
|
767
|
-
"
|
|
768
|
-
"char": "
|
|
769
|
-
"description": "
|
|
770
|
-
"name": "
|
|
779
|
+
"personal": {
|
|
780
|
+
"char": "p",
|
|
781
|
+
"description": "list apps in personal account when a default team is set",
|
|
782
|
+
"name": "personal",
|
|
783
|
+
"allowNo": false,
|
|
784
|
+
"type": "boolean"
|
|
785
|
+
},
|
|
786
|
+
"internal-routing": {
|
|
787
|
+
"char": "i",
|
|
788
|
+
"description": "filter to Internal Web Apps",
|
|
789
|
+
"hidden": true,
|
|
790
|
+
"name": "internal-routing",
|
|
791
|
+
"allowNo": false,
|
|
792
|
+
"type": "boolean"
|
|
793
|
+
},
|
|
794
|
+
"team": {
|
|
795
|
+
"char": "t",
|
|
796
|
+
"description": "team to use",
|
|
797
|
+
"name": "team",
|
|
771
798
|
"hasDynamicHelp": false,
|
|
772
799
|
"multiple": false,
|
|
773
800
|
"type": "option"
|
|
774
801
|
}
|
|
775
802
|
},
|
|
776
803
|
"hasDynamicHelp": false,
|
|
777
|
-
"hiddenAliases": [
|
|
778
|
-
|
|
804
|
+
"hiddenAliases": [
|
|
805
|
+
"list",
|
|
806
|
+
"apps:list"
|
|
807
|
+
],
|
|
808
|
+
"id": "apps",
|
|
779
809
|
"pluginAlias": "heroku",
|
|
780
810
|
"pluginName": "heroku",
|
|
781
811
|
"pluginType": "core",
|
|
782
812
|
"strict": true,
|
|
783
|
-
"topic": "
|
|
813
|
+
"topic": "apps",
|
|
784
814
|
"isESM": false,
|
|
785
815
|
"relativePath": [
|
|
786
816
|
"lib",
|
|
787
817
|
"commands",
|
|
788
|
-
"
|
|
789
|
-
"
|
|
818
|
+
"apps",
|
|
819
|
+
"index.js"
|
|
790
820
|
]
|
|
791
821
|
},
|
|
792
|
-
"
|
|
822
|
+
"apps:info": {
|
|
793
823
|
"aliases": [],
|
|
794
|
-
"args": {
|
|
795
|
-
|
|
824
|
+
"args": {
|
|
825
|
+
"app": {
|
|
826
|
+
"hidden": true,
|
|
827
|
+
"name": "app"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"description": "show detailed app information",
|
|
796
831
|
"examples": [
|
|
797
|
-
"$ heroku
|
|
798
|
-
"$ heroku
|
|
832
|
+
"$ heroku apps:info",
|
|
833
|
+
"$ heroku apps:info --shell"
|
|
799
834
|
],
|
|
800
835
|
"flags": {
|
|
801
|
-
"
|
|
802
|
-
"char": "
|
|
803
|
-
"description": "
|
|
804
|
-
"name": "
|
|
836
|
+
"app": {
|
|
837
|
+
"char": "a",
|
|
838
|
+
"description": "app to run command against",
|
|
839
|
+
"name": "app",
|
|
840
|
+
"hasDynamicHelp": false,
|
|
841
|
+
"multiple": false,
|
|
842
|
+
"type": "option"
|
|
843
|
+
},
|
|
844
|
+
"remote": {
|
|
845
|
+
"char": "r",
|
|
846
|
+
"description": "git remote of app to use",
|
|
847
|
+
"name": "remote",
|
|
848
|
+
"hasDynamicHelp": false,
|
|
849
|
+
"multiple": false,
|
|
850
|
+
"type": "option"
|
|
851
|
+
},
|
|
852
|
+
"shell": {
|
|
853
|
+
"char": "s",
|
|
854
|
+
"description": "output more shell friendly key/value pairs",
|
|
855
|
+
"name": "shell",
|
|
856
|
+
"allowNo": false,
|
|
857
|
+
"type": "boolean"
|
|
858
|
+
},
|
|
859
|
+
"extended": {
|
|
860
|
+
"char": "x",
|
|
861
|
+
"hidden": true,
|
|
862
|
+
"name": "extended",
|
|
805
863
|
"allowNo": false,
|
|
806
864
|
"type": "boolean"
|
|
807
865
|
},
|
|
808
866
|
"json": {
|
|
809
|
-
"
|
|
867
|
+
"char": "j",
|
|
868
|
+
"description": "output in json format",
|
|
810
869
|
"name": "json",
|
|
811
870
|
"allowNo": false,
|
|
812
871
|
"type": "boolean"
|
|
813
|
-
}
|
|
872
|
+
}
|
|
873
|
+
},
|
|
874
|
+
"hasDynamicHelp": false,
|
|
875
|
+
"hiddenAliases": [
|
|
876
|
+
"info"
|
|
877
|
+
],
|
|
878
|
+
"id": "apps:info",
|
|
879
|
+
"pluginAlias": "heroku",
|
|
880
|
+
"pluginName": "heroku",
|
|
881
|
+
"pluginType": "core",
|
|
882
|
+
"strict": true,
|
|
883
|
+
"topic": "apps",
|
|
884
|
+
"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...",
|
|
885
|
+
"isESM": false,
|
|
886
|
+
"relativePath": [
|
|
887
|
+
"lib",
|
|
888
|
+
"commands",
|
|
889
|
+
"apps",
|
|
890
|
+
"info.js"
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
"apps:join": {
|
|
894
|
+
"aliases": [
|
|
895
|
+
"join"
|
|
896
|
+
],
|
|
897
|
+
"args": {},
|
|
898
|
+
"description": "add yourself to a team app",
|
|
899
|
+
"flags": {
|
|
814
900
|
"app": {
|
|
815
901
|
"char": "a",
|
|
816
902
|
"description": "app to run command against",
|
|
817
903
|
"name": "app",
|
|
904
|
+
"required": true,
|
|
818
905
|
"hasDynamicHelp": false,
|
|
819
906
|
"multiple": false,
|
|
820
907
|
"type": "option"
|
|
@@ -830,35 +917,33 @@
|
|
|
830
917
|
},
|
|
831
918
|
"hasDynamicHelp": false,
|
|
832
919
|
"hiddenAliases": [],
|
|
833
|
-
"id": "
|
|
920
|
+
"id": "apps:join",
|
|
834
921
|
"pluginAlias": "heroku",
|
|
835
922
|
"pluginName": "heroku",
|
|
836
923
|
"pluginType": "core",
|
|
837
924
|
"strict": true,
|
|
838
|
-
"
|
|
839
|
-
"topic": "addons",
|
|
925
|
+
"topic": "apps",
|
|
840
926
|
"isESM": false,
|
|
841
927
|
"relativePath": [
|
|
842
928
|
"lib",
|
|
843
929
|
"commands",
|
|
844
|
-
"
|
|
845
|
-
"
|
|
930
|
+
"apps",
|
|
931
|
+
"join.js"
|
|
846
932
|
]
|
|
847
933
|
},
|
|
848
|
-
"
|
|
849
|
-
"aliases": [
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
},
|
|
856
|
-
"description": "show detailed add-on resource and attachment information",
|
|
934
|
+
"apps:leave": {
|
|
935
|
+
"aliases": [
|
|
936
|
+
"leave"
|
|
937
|
+
],
|
|
938
|
+
"args": {},
|
|
939
|
+
"description": "remove yourself from a team app",
|
|
940
|
+
"examples": "heroku apps:leave -a APP",
|
|
857
941
|
"flags": {
|
|
858
942
|
"app": {
|
|
859
943
|
"char": "a",
|
|
860
944
|
"description": "app to run command against",
|
|
861
945
|
"name": "app",
|
|
946
|
+
"required": true,
|
|
862
947
|
"hasDynamicHelp": false,
|
|
863
948
|
"multiple": false,
|
|
864
949
|
"type": "option"
|
|
@@ -874,41 +959,33 @@
|
|
|
874
959
|
},
|
|
875
960
|
"hasDynamicHelp": false,
|
|
876
961
|
"hiddenAliases": [],
|
|
877
|
-
"id": "
|
|
962
|
+
"id": "apps:leave",
|
|
878
963
|
"pluginAlias": "heroku",
|
|
879
964
|
"pluginName": "heroku",
|
|
880
965
|
"pluginType": "core",
|
|
881
966
|
"strict": true,
|
|
882
|
-
"
|
|
883
|
-
"
|
|
967
|
+
"topic": "apps",
|
|
968
|
+
"example": "heroku apps:leave -a APP",
|
|
884
969
|
"isESM": false,
|
|
885
970
|
"relativePath": [
|
|
886
971
|
"lib",
|
|
887
972
|
"commands",
|
|
888
|
-
"
|
|
889
|
-
"
|
|
973
|
+
"apps",
|
|
974
|
+
"leave.js"
|
|
890
975
|
]
|
|
891
976
|
},
|
|
892
|
-
"
|
|
893
|
-
"aliases": [
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
}
|
|
899
|
-
},
|
|
900
|
-
"description": "open an add-on's dashboard in your browser",
|
|
977
|
+
"apps:lock": {
|
|
978
|
+
"aliases": [
|
|
979
|
+
"lock"
|
|
980
|
+
],
|
|
981
|
+
"args": {},
|
|
982
|
+
"description": "prevent team members from joining an app",
|
|
901
983
|
"flags": {
|
|
902
|
-
"show-url": {
|
|
903
|
-
"description": "show URL, do not open browser",
|
|
904
|
-
"name": "show-url",
|
|
905
|
-
"allowNo": false,
|
|
906
|
-
"type": "boolean"
|
|
907
|
-
},
|
|
908
984
|
"app": {
|
|
909
985
|
"char": "a",
|
|
910
986
|
"description": "app to run command against",
|
|
911
987
|
"name": "app",
|
|
988
|
+
"required": true,
|
|
912
989
|
"hasDynamicHelp": false,
|
|
913
990
|
"multiple": false,
|
|
914
991
|
"type": "option"
|
|
@@ -924,133 +1001,88 @@
|
|
|
924
1001
|
},
|
|
925
1002
|
"hasDynamicHelp": false,
|
|
926
1003
|
"hiddenAliases": [],
|
|
927
|
-
"id": "
|
|
1004
|
+
"id": "apps:lock",
|
|
928
1005
|
"pluginAlias": "heroku",
|
|
929
1006
|
"pluginName": "heroku",
|
|
930
1007
|
"pluginType": "core",
|
|
931
1008
|
"strict": true,
|
|
932
|
-
"topic": "
|
|
1009
|
+
"topic": "apps",
|
|
933
1010
|
"isESM": false,
|
|
934
1011
|
"relativePath": [
|
|
935
1012
|
"lib",
|
|
936
1013
|
"commands",
|
|
937
|
-
"
|
|
938
|
-
"
|
|
1014
|
+
"apps",
|
|
1015
|
+
"lock.js"
|
|
939
1016
|
]
|
|
940
1017
|
},
|
|
941
|
-
"
|
|
1018
|
+
"apps:open": {
|
|
942
1019
|
"aliases": [],
|
|
943
1020
|
"args": {
|
|
944
|
-
"
|
|
945
|
-
"name": "
|
|
946
|
-
"required":
|
|
1021
|
+
"path": {
|
|
1022
|
+
"name": "path",
|
|
1023
|
+
"required": false
|
|
947
1024
|
}
|
|
948
1025
|
},
|
|
949
|
-
"description": "
|
|
1026
|
+
"description": "open the app in a web browser",
|
|
1027
|
+
"examples": [
|
|
1028
|
+
"$ heroku open -a myapp",
|
|
1029
|
+
"$ heroku open -a myapp /foo"
|
|
1030
|
+
],
|
|
950
1031
|
"flags": {
|
|
951
|
-
"
|
|
952
|
-
"
|
|
953
|
-
"
|
|
954
|
-
"
|
|
955
|
-
"
|
|
1032
|
+
"app": {
|
|
1033
|
+
"char": "a",
|
|
1034
|
+
"description": "app to run command against",
|
|
1035
|
+
"name": "app",
|
|
1036
|
+
"required": true,
|
|
1037
|
+
"hasDynamicHelp": false,
|
|
1038
|
+
"multiple": false,
|
|
1039
|
+
"type": "option"
|
|
1040
|
+
},
|
|
1041
|
+
"remote": {
|
|
1042
|
+
"char": "r",
|
|
1043
|
+
"description": "git remote of app to use",
|
|
1044
|
+
"name": "remote",
|
|
1045
|
+
"hasDynamicHelp": false,
|
|
1046
|
+
"multiple": false,
|
|
1047
|
+
"type": "option"
|
|
956
1048
|
}
|
|
957
1049
|
},
|
|
958
1050
|
"hasDynamicHelp": false,
|
|
959
|
-
"hiddenAliases": [
|
|
960
|
-
|
|
1051
|
+
"hiddenAliases": [
|
|
1052
|
+
"open"
|
|
1053
|
+
],
|
|
1054
|
+
"id": "apps:open",
|
|
961
1055
|
"pluginAlias": "heroku",
|
|
962
1056
|
"pluginName": "heroku",
|
|
963
1057
|
"pluginType": "core",
|
|
964
1058
|
"strict": true,
|
|
965
|
-
"topic": "
|
|
966
|
-
"isESM": false,
|
|
967
|
-
"relativePath": [
|
|
968
|
-
"lib",
|
|
969
|
-
"commands",
|
|
970
|
-
"addons",
|
|
971
|
-
"plans.js"
|
|
972
|
-
]
|
|
973
|
-
},
|
|
974
|
-
"addons:rename": {
|
|
975
|
-
"aliases": [],
|
|
976
|
-
"args": {
|
|
977
|
-
"addon_name": {
|
|
978
|
-
"name": "addon_name",
|
|
979
|
-
"required": true
|
|
980
|
-
},
|
|
981
|
-
"new_name": {
|
|
982
|
-
"name": "new_name",
|
|
983
|
-
"required": true
|
|
984
|
-
}
|
|
985
|
-
},
|
|
986
|
-
"description": "rename an add-on",
|
|
987
|
-
"flags": {},
|
|
988
|
-
"hasDynamicHelp": false,
|
|
989
|
-
"hiddenAliases": [],
|
|
990
|
-
"id": "addons:rename",
|
|
991
|
-
"pluginAlias": "heroku",
|
|
992
|
-
"pluginName": "heroku",
|
|
993
|
-
"pluginType": "core",
|
|
994
|
-
"strict": true,
|
|
995
|
-
"topic": "addons",
|
|
1059
|
+
"topic": "apps",
|
|
996
1060
|
"isESM": false,
|
|
997
1061
|
"relativePath": [
|
|
998
1062
|
"lib",
|
|
999
1063
|
"commands",
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1064
|
+
"apps",
|
|
1065
|
+
"open.js"
|
|
1002
1066
|
]
|
|
1003
1067
|
},
|
|
1004
|
-
"
|
|
1068
|
+
"apps:rename": {
|
|
1005
1069
|
"aliases": [],
|
|
1006
|
-
"args": {},
|
|
1007
|
-
"description": "list all available add-on services",
|
|
1008
|
-
"flags": {
|
|
1009
|
-
"json": {
|
|
1010
|
-
"description": "output in json format",
|
|
1011
|
-
"name": "json",
|
|
1012
|
-
"allowNo": false,
|
|
1013
|
-
"type": "boolean"
|
|
1014
|
-
}
|
|
1015
|
-
},
|
|
1016
|
-
"hasDynamicHelp": false,
|
|
1017
|
-
"hiddenAliases": [],
|
|
1018
|
-
"id": "addons:services",
|
|
1019
|
-
"pluginAlias": "heroku",
|
|
1020
|
-
"pluginName": "heroku",
|
|
1021
|
-
"pluginType": "core",
|
|
1022
|
-
"strict": true,
|
|
1023
|
-
"topic": "addons",
|
|
1024
|
-
"isESM": false,
|
|
1025
|
-
"relativePath": [
|
|
1026
|
-
"lib",
|
|
1027
|
-
"commands",
|
|
1028
|
-
"addons",
|
|
1029
|
-
"services.js"
|
|
1030
|
-
]
|
|
1031
|
-
},
|
|
1032
|
-
"addons:upgrade": {
|
|
1033
|
-
"aliases": [
|
|
1034
|
-
"addons:downgrade"
|
|
1035
|
-
],
|
|
1036
1070
|
"args": {
|
|
1037
|
-
"
|
|
1038
|
-
"name": "
|
|
1071
|
+
"newname": {
|
|
1072
|
+
"name": "newname",
|
|
1039
1073
|
"required": true
|
|
1040
|
-
},
|
|
1041
|
-
"plan": {
|
|
1042
|
-
"name": "plan"
|
|
1043
1074
|
}
|
|
1044
1075
|
},
|
|
1045
|
-
"description": "
|
|
1076
|
+
"description": "rename an app",
|
|
1046
1077
|
"examples": [
|
|
1047
|
-
"
|
|
1078
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1048
1079
|
],
|
|
1049
1080
|
"flags": {
|
|
1050
1081
|
"app": {
|
|
1051
1082
|
"char": "a",
|
|
1052
1083
|
"description": "app to run command against",
|
|
1053
1084
|
"name": "app",
|
|
1085
|
+
"required": true,
|
|
1054
1086
|
"hasDynamicHelp": false,
|
|
1055
1087
|
"multiple": false,
|
|
1056
1088
|
"type": "option"
|
|
@@ -1065,36 +1097,52 @@
|
|
|
1065
1097
|
}
|
|
1066
1098
|
},
|
|
1067
1099
|
"hasDynamicHelp": false,
|
|
1068
|
-
"hiddenAliases": [
|
|
1069
|
-
|
|
1100
|
+
"hiddenAliases": [
|
|
1101
|
+
"rename"
|
|
1102
|
+
],
|
|
1103
|
+
"id": "apps:rename",
|
|
1070
1104
|
"pluginAlias": "heroku",
|
|
1071
1105
|
"pluginName": "heroku",
|
|
1072
1106
|
"pluginType": "core",
|
|
1073
1107
|
"strict": true,
|
|
1074
|
-
"
|
|
1108
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1109
|
+
"topic": "apps",
|
|
1075
1110
|
"isESM": false,
|
|
1076
1111
|
"relativePath": [
|
|
1077
1112
|
"lib",
|
|
1078
1113
|
"commands",
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1114
|
+
"apps",
|
|
1115
|
+
"rename.js"
|
|
1081
1116
|
]
|
|
1082
1117
|
},
|
|
1083
|
-
"
|
|
1118
|
+
"apps:transfer": {
|
|
1084
1119
|
"aliases": [],
|
|
1085
1120
|
"args": {
|
|
1086
|
-
"
|
|
1087
|
-
"
|
|
1121
|
+
"recipient": {
|
|
1122
|
+
"description": "user or team to transfer applications to",
|
|
1123
|
+
"name": "recipient",
|
|
1124
|
+
"required": true
|
|
1088
1125
|
}
|
|
1089
1126
|
},
|
|
1090
|
-
"description": "
|
|
1127
|
+
"description": "transfer applications to another user or team",
|
|
1128
|
+
"examples": [
|
|
1129
|
+
"$ 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..."
|
|
1130
|
+
],
|
|
1091
1131
|
"flags": {
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1094
|
-
"
|
|
1095
|
-
"
|
|
1096
|
-
"
|
|
1097
|
-
"
|
|
1132
|
+
"locked": {
|
|
1133
|
+
"char": "l",
|
|
1134
|
+
"description": "lock the app upon transfer",
|
|
1135
|
+
"name": "locked",
|
|
1136
|
+
"required": false,
|
|
1137
|
+
"allowNo": false,
|
|
1138
|
+
"type": "boolean"
|
|
1139
|
+
},
|
|
1140
|
+
"bulk": {
|
|
1141
|
+
"description": "transfer applications in bulk",
|
|
1142
|
+
"name": "bulk",
|
|
1143
|
+
"required": false,
|
|
1144
|
+
"allowNo": false,
|
|
1145
|
+
"type": "boolean"
|
|
1098
1146
|
},
|
|
1099
1147
|
"app": {
|
|
1100
1148
|
"char": "a",
|
|
@@ -1111,223 +1159,104 @@
|
|
|
1111
1159
|
"hasDynamicHelp": false,
|
|
1112
1160
|
"multiple": false,
|
|
1113
1161
|
"type": "option"
|
|
1162
|
+
},
|
|
1163
|
+
"confirm": {
|
|
1164
|
+
"char": "c",
|
|
1165
|
+
"hidden": true,
|
|
1166
|
+
"name": "confirm",
|
|
1167
|
+
"hasDynamicHelp": false,
|
|
1168
|
+
"multiple": false,
|
|
1169
|
+
"type": "option"
|
|
1114
1170
|
}
|
|
1115
1171
|
},
|
|
1116
1172
|
"hasDynamicHelp": false,
|
|
1117
1173
|
"hiddenAliases": [],
|
|
1118
|
-
"id": "
|
|
1174
|
+
"id": "apps:transfer",
|
|
1119
1175
|
"pluginAlias": "heroku",
|
|
1120
1176
|
"pluginName": "heroku",
|
|
1121
1177
|
"pluginType": "core",
|
|
1122
1178
|
"strict": true,
|
|
1123
|
-
"topic": "
|
|
1179
|
+
"topic": "apps",
|
|
1124
1180
|
"isESM": false,
|
|
1125
1181
|
"relativePath": [
|
|
1126
1182
|
"lib",
|
|
1127
1183
|
"commands",
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1184
|
+
"apps",
|
|
1185
|
+
"transfer.js"
|
|
1130
1186
|
]
|
|
1131
1187
|
},
|
|
1132
|
-
"apps:
|
|
1133
|
-
"aliases": [
|
|
1134
|
-
|
|
1135
|
-
"app": {
|
|
1136
|
-
"description": "name of app to create",
|
|
1137
|
-
"name": "app",
|
|
1138
|
-
"required": false
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
"description": "creates a new app",
|
|
1142
|
-
"examples": [
|
|
1143
|
-
"$ heroku apps:create\nCreating app... done, stack is heroku-22\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"
|
|
1188
|
+
"apps:unlock": {
|
|
1189
|
+
"aliases": [
|
|
1190
|
+
"unlock"
|
|
1144
1191
|
],
|
|
1192
|
+
"args": {},
|
|
1193
|
+
"description": "unlock an app so any team member can join",
|
|
1145
1194
|
"flags": {
|
|
1146
1195
|
"app": {
|
|
1147
|
-
"
|
|
1196
|
+
"char": "a",
|
|
1197
|
+
"description": "app to run command against",
|
|
1148
1198
|
"name": "app",
|
|
1199
|
+
"required": true,
|
|
1149
1200
|
"hasDynamicHelp": false,
|
|
1150
1201
|
"multiple": false,
|
|
1151
1202
|
"type": "option"
|
|
1152
1203
|
},
|
|
1153
|
-
"addons": {
|
|
1154
|
-
"description": "comma-delimited list of addons to install",
|
|
1155
|
-
"name": "addons",
|
|
1156
|
-
"hasDynamicHelp": false,
|
|
1157
|
-
"multiple": false,
|
|
1158
|
-
"type": "option"
|
|
1159
|
-
},
|
|
1160
|
-
"buildpack": {
|
|
1161
|
-
"char": "b",
|
|
1162
|
-
"description": "buildpack url to use for this app",
|
|
1163
|
-
"name": "buildpack",
|
|
1164
|
-
"hasDynamicHelp": false,
|
|
1165
|
-
"multiple": false,
|
|
1166
|
-
"type": "option"
|
|
1167
|
-
},
|
|
1168
|
-
"manifest": {
|
|
1169
|
-
"char": "m",
|
|
1170
|
-
"description": "use heroku.yml settings for this app",
|
|
1171
|
-
"hidden": true,
|
|
1172
|
-
"name": "manifest",
|
|
1173
|
-
"allowNo": false,
|
|
1174
|
-
"type": "boolean"
|
|
1175
|
-
},
|
|
1176
|
-
"no-remote": {
|
|
1177
|
-
"char": "n",
|
|
1178
|
-
"description": "do not create a git remote",
|
|
1179
|
-
"name": "no-remote",
|
|
1180
|
-
"allowNo": false,
|
|
1181
|
-
"type": "boolean"
|
|
1182
|
-
},
|
|
1183
1204
|
"remote": {
|
|
1184
1205
|
"char": "r",
|
|
1185
|
-
"description": "
|
|
1206
|
+
"description": "git remote of app to use",
|
|
1186
1207
|
"name": "remote",
|
|
1187
|
-
"default": "heroku",
|
|
1188
|
-
"hasDynamicHelp": false,
|
|
1189
|
-
"multiple": false,
|
|
1190
|
-
"type": "option"
|
|
1191
|
-
},
|
|
1192
|
-
"stack": {
|
|
1193
|
-
"char": "s",
|
|
1194
|
-
"description": "the stack to create the app on",
|
|
1195
|
-
"name": "stack",
|
|
1196
|
-
"hasDynamicHelp": false,
|
|
1197
|
-
"multiple": false,
|
|
1198
|
-
"type": "option"
|
|
1199
|
-
},
|
|
1200
|
-
"space": {
|
|
1201
|
-
"description": "the private space to create the app in",
|
|
1202
|
-
"name": "space",
|
|
1203
|
-
"hasDynamicHelp": false,
|
|
1204
|
-
"multiple": false,
|
|
1205
|
-
"type": "option"
|
|
1206
|
-
},
|
|
1207
|
-
"region": {
|
|
1208
|
-
"description": "specify region for the app to run in",
|
|
1209
|
-
"name": "region",
|
|
1210
|
-
"hasDynamicHelp": false,
|
|
1211
|
-
"multiple": false,
|
|
1212
|
-
"type": "option"
|
|
1213
|
-
},
|
|
1214
|
-
"internal-routing": {
|
|
1215
|
-
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
1216
|
-
"hidden": true,
|
|
1217
|
-
"name": "internal-routing",
|
|
1218
|
-
"allowNo": false,
|
|
1219
|
-
"type": "boolean"
|
|
1220
|
-
},
|
|
1221
|
-
"features": {
|
|
1222
|
-
"hidden": true,
|
|
1223
|
-
"name": "features",
|
|
1224
|
-
"hasDynamicHelp": false,
|
|
1225
|
-
"multiple": false,
|
|
1226
|
-
"type": "option"
|
|
1227
|
-
},
|
|
1228
|
-
"kernel": {
|
|
1229
|
-
"hidden": true,
|
|
1230
|
-
"name": "kernel",
|
|
1231
|
-
"hasDynamicHelp": false,
|
|
1232
|
-
"multiple": false,
|
|
1233
|
-
"type": "option"
|
|
1234
|
-
},
|
|
1235
|
-
"locked": {
|
|
1236
|
-
"hidden": true,
|
|
1237
|
-
"name": "locked",
|
|
1238
|
-
"allowNo": false,
|
|
1239
|
-
"type": "boolean"
|
|
1240
|
-
},
|
|
1241
|
-
"json": {
|
|
1242
|
-
"description": "output in json format",
|
|
1243
|
-
"name": "json",
|
|
1244
|
-
"allowNo": false,
|
|
1245
|
-
"type": "boolean"
|
|
1246
|
-
},
|
|
1247
|
-
"team": {
|
|
1248
|
-
"char": "t",
|
|
1249
|
-
"description": "team to use",
|
|
1250
|
-
"name": "team",
|
|
1251
1208
|
"hasDynamicHelp": false,
|
|
1252
1209
|
"multiple": false,
|
|
1253
1210
|
"type": "option"
|
|
1254
1211
|
}
|
|
1255
1212
|
},
|
|
1256
1213
|
"hasDynamicHelp": false,
|
|
1257
|
-
"hiddenAliases": [
|
|
1258
|
-
|
|
1259
|
-
],
|
|
1260
|
-
"id": "apps:create",
|
|
1214
|
+
"hiddenAliases": [],
|
|
1215
|
+
"id": "apps:unlock",
|
|
1261
1216
|
"pluginAlias": "heroku",
|
|
1262
1217
|
"pluginName": "heroku",
|
|
1263
1218
|
"pluginType": "core",
|
|
1264
1219
|
"strict": true,
|
|
1220
|
+
"topic": "apps",
|
|
1265
1221
|
"isESM": false,
|
|
1266
1222
|
"relativePath": [
|
|
1267
1223
|
"lib",
|
|
1268
1224
|
"commands",
|
|
1269
1225
|
"apps",
|
|
1270
|
-
"
|
|
1226
|
+
"unlock.js"
|
|
1271
1227
|
]
|
|
1272
1228
|
},
|
|
1273
|
-
"
|
|
1229
|
+
"addons:attach": {
|
|
1274
1230
|
"aliases": [],
|
|
1275
1231
|
"args": {
|
|
1276
|
-
"
|
|
1277
|
-
"
|
|
1278
|
-
"
|
|
1232
|
+
"addon_name": {
|
|
1233
|
+
"name": "addon_name",
|
|
1234
|
+
"required": true
|
|
1279
1235
|
}
|
|
1280
1236
|
},
|
|
1281
|
-
"description": "
|
|
1237
|
+
"description": "attach an existing add-on resource to an app",
|
|
1282
1238
|
"flags": {
|
|
1283
|
-
"
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1286
|
-
"name": "app",
|
|
1239
|
+
"as": {
|
|
1240
|
+
"description": "name for add-on attachment",
|
|
1241
|
+
"name": "as",
|
|
1287
1242
|
"hasDynamicHelp": false,
|
|
1288
1243
|
"multiple": false,
|
|
1289
1244
|
"type": "option"
|
|
1290
1245
|
},
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1294
|
-
"name": "remote",
|
|
1246
|
+
"credential": {
|
|
1247
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
1248
|
+
"name": "credential",
|
|
1295
1249
|
"hasDynamicHelp": false,
|
|
1296
1250
|
"multiple": false,
|
|
1297
1251
|
"type": "option"
|
|
1298
1252
|
},
|
|
1299
1253
|
"confirm": {
|
|
1300
|
-
"
|
|
1254
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
1301
1255
|
"name": "confirm",
|
|
1302
1256
|
"hasDynamicHelp": false,
|
|
1303
1257
|
"multiple": false,
|
|
1304
1258
|
"type": "option"
|
|
1305
|
-
}
|
|
1306
|
-
},
|
|
1307
|
-
"hasDynamicHelp": false,
|
|
1308
|
-
"hiddenAliases": [
|
|
1309
|
-
"destroy",
|
|
1310
|
-
"apps:delete"
|
|
1311
|
-
],
|
|
1312
|
-
"id": "apps:destroy",
|
|
1313
|
-
"pluginAlias": "heroku",
|
|
1314
|
-
"pluginName": "heroku",
|
|
1315
|
-
"pluginType": "core",
|
|
1316
|
-
"strict": true,
|
|
1317
|
-
"help": "This will also destroy all add-ons on the app.",
|
|
1318
|
-
"isESM": false,
|
|
1319
|
-
"relativePath": [
|
|
1320
|
-
"lib",
|
|
1321
|
-
"commands",
|
|
1322
|
-
"apps",
|
|
1323
|
-
"destroy.js"
|
|
1324
|
-
]
|
|
1325
|
-
},
|
|
1326
|
-
"apps:errors": {
|
|
1327
|
-
"aliases": [],
|
|
1328
|
-
"args": {},
|
|
1329
|
-
"description": "view app errors",
|
|
1330
|
-
"flags": {
|
|
1259
|
+
},
|
|
1331
1260
|
"app": {
|
|
1332
1261
|
"char": "a",
|
|
1333
1262
|
"description": "app to run command against",
|
|
@@ -1337,105 +1266,82 @@
|
|
|
1337
1266
|
"multiple": false,
|
|
1338
1267
|
"type": "option"
|
|
1339
1268
|
},
|
|
1340
|
-
"remote": {
|
|
1341
|
-
"char": "r",
|
|
1342
|
-
"description": "git remote of app to use",
|
|
1343
|
-
"name": "remote",
|
|
1344
|
-
"hasDynamicHelp": false,
|
|
1345
|
-
"multiple": false,
|
|
1346
|
-
"type": "option"
|
|
1347
|
-
},
|
|
1348
|
-
"json": {
|
|
1349
|
-
"description": "output in json format",
|
|
1350
|
-
"name": "json",
|
|
1351
|
-
"allowNo": false,
|
|
1352
|
-
"type": "boolean"
|
|
1353
|
-
},
|
|
1354
|
-
"hours": {
|
|
1355
|
-
"description": "number of hours to look back (default 24)",
|
|
1356
|
-
"name": "hours",
|
|
1357
|
-
"default": "24",
|
|
1358
|
-
"hasDynamicHelp": false,
|
|
1359
|
-
"multiple": false,
|
|
1360
|
-
"type": "option"
|
|
1361
|
-
},
|
|
1362
|
-
"router": {
|
|
1363
|
-
"description": "show only router errors",
|
|
1364
|
-
"name": "router",
|
|
1365
|
-
"allowNo": false,
|
|
1366
|
-
"type": "boolean"
|
|
1367
|
-
},
|
|
1368
|
-
"dyno": {
|
|
1369
|
-
"description": "show only dyno errors",
|
|
1370
|
-
"name": "dyno",
|
|
1371
|
-
"allowNo": false,
|
|
1372
|
-
"type": "boolean"
|
|
1269
|
+
"remote": {
|
|
1270
|
+
"char": "r",
|
|
1271
|
+
"description": "git remote of app to use",
|
|
1272
|
+
"name": "remote",
|
|
1273
|
+
"hasDynamicHelp": false,
|
|
1274
|
+
"multiple": false,
|
|
1275
|
+
"type": "option"
|
|
1373
1276
|
}
|
|
1374
1277
|
},
|
|
1375
1278
|
"hasDynamicHelp": false,
|
|
1376
1279
|
"hiddenAliases": [],
|
|
1377
|
-
"id": "
|
|
1280
|
+
"id": "addons:attach",
|
|
1378
1281
|
"pluginAlias": "heroku",
|
|
1379
1282
|
"pluginName": "heroku",
|
|
1380
1283
|
"pluginType": "core",
|
|
1381
1284
|
"strict": true,
|
|
1285
|
+
"topic": "addons",
|
|
1382
1286
|
"isESM": false,
|
|
1383
1287
|
"relativePath": [
|
|
1384
1288
|
"lib",
|
|
1385
1289
|
"commands",
|
|
1386
|
-
"
|
|
1387
|
-
"
|
|
1290
|
+
"addons",
|
|
1291
|
+
"attach.js"
|
|
1388
1292
|
]
|
|
1389
1293
|
},
|
|
1390
|
-
"
|
|
1294
|
+
"addons:create": {
|
|
1391
1295
|
"aliases": [],
|
|
1392
|
-
"args": {
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1296
|
+
"args": {
|
|
1297
|
+
"service:plan": {
|
|
1298
|
+
"name": "service:plan",
|
|
1299
|
+
"required": true
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"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",
|
|
1303
|
+
"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",
|
|
1397
1304
|
"flags": {
|
|
1398
|
-
"
|
|
1399
|
-
"
|
|
1400
|
-
"
|
|
1401
|
-
"
|
|
1402
|
-
"
|
|
1403
|
-
"type": "
|
|
1305
|
+
"name": {
|
|
1306
|
+
"description": "name for the add-on resource",
|
|
1307
|
+
"name": "name",
|
|
1308
|
+
"hasDynamicHelp": false,
|
|
1309
|
+
"multiple": false,
|
|
1310
|
+
"type": "option"
|
|
1404
1311
|
},
|
|
1405
|
-
"
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"type": "
|
|
1312
|
+
"as": {
|
|
1313
|
+
"description": "name for the initial add-on attachment",
|
|
1314
|
+
"name": "as",
|
|
1315
|
+
"hasDynamicHelp": false,
|
|
1316
|
+
"multiple": false,
|
|
1317
|
+
"type": "option"
|
|
1411
1318
|
},
|
|
1412
|
-
"
|
|
1413
|
-
"
|
|
1414
|
-
"
|
|
1415
|
-
"name": "space",
|
|
1319
|
+
"confirm": {
|
|
1320
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
1321
|
+
"name": "confirm",
|
|
1416
1322
|
"hasDynamicHelp": false,
|
|
1417
1323
|
"multiple": false,
|
|
1418
1324
|
"type": "option"
|
|
1419
1325
|
},
|
|
1420
|
-
"
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
"name": "personal",
|
|
1326
|
+
"wait": {
|
|
1327
|
+
"description": "watch add-on creation status and exit when complete",
|
|
1328
|
+
"name": "wait",
|
|
1424
1329
|
"allowNo": false,
|
|
1425
1330
|
"type": "boolean"
|
|
1426
1331
|
},
|
|
1427
|
-
"
|
|
1428
|
-
"char": "
|
|
1429
|
-
"description": "
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1432
|
-
"
|
|
1433
|
-
"
|
|
1332
|
+
"app": {
|
|
1333
|
+
"char": "a",
|
|
1334
|
+
"description": "app to run command against",
|
|
1335
|
+
"name": "app",
|
|
1336
|
+
"required": true,
|
|
1337
|
+
"hasDynamicHelp": false,
|
|
1338
|
+
"multiple": false,
|
|
1339
|
+
"type": "option"
|
|
1434
1340
|
},
|
|
1435
|
-
"
|
|
1436
|
-
"char": "
|
|
1437
|
-
"description": "
|
|
1438
|
-
"name": "
|
|
1341
|
+
"remote": {
|
|
1342
|
+
"char": "r",
|
|
1343
|
+
"description": "git remote of app to use",
|
|
1344
|
+
"name": "remote",
|
|
1439
1345
|
"hasDynamicHelp": false,
|
|
1440
1346
|
"multiple": false,
|
|
1441
1347
|
"type": "option"
|
|
@@ -1443,37 +1349,56 @@
|
|
|
1443
1349
|
},
|
|
1444
1350
|
"hasDynamicHelp": false,
|
|
1445
1351
|
"hiddenAliases": [
|
|
1446
|
-
"
|
|
1447
|
-
"apps:list"
|
|
1352
|
+
"addons:add"
|
|
1448
1353
|
],
|
|
1449
|
-
"id": "
|
|
1354
|
+
"id": "addons:create",
|
|
1450
1355
|
"pluginAlias": "heroku",
|
|
1451
1356
|
"pluginName": "heroku",
|
|
1452
1357
|
"pluginType": "core",
|
|
1453
|
-
"strict":
|
|
1454
|
-
"topic": "
|
|
1358
|
+
"strict": false,
|
|
1359
|
+
"topic": "addons",
|
|
1360
|
+
"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",
|
|
1455
1361
|
"isESM": false,
|
|
1456
1362
|
"relativePath": [
|
|
1457
1363
|
"lib",
|
|
1458
1364
|
"commands",
|
|
1459
|
-
"
|
|
1460
|
-
"
|
|
1365
|
+
"addons",
|
|
1366
|
+
"create.js"
|
|
1461
1367
|
]
|
|
1462
1368
|
},
|
|
1463
|
-
"
|
|
1369
|
+
"addons:destroy": {
|
|
1464
1370
|
"aliases": [],
|
|
1465
1371
|
"args": {
|
|
1466
|
-
"
|
|
1467
|
-
"
|
|
1468
|
-
"
|
|
1372
|
+
"addonName": {
|
|
1373
|
+
"name": "addonName",
|
|
1374
|
+
"required": true
|
|
1469
1375
|
}
|
|
1470
1376
|
},
|
|
1471
|
-
"description": "
|
|
1377
|
+
"description": "permanently destroy an add-on resource",
|
|
1472
1378
|
"examples": [
|
|
1473
|
-
"
|
|
1474
|
-
"$ heroku apps:info --shell"
|
|
1379
|
+
"addons:destroy [ADDON]... [flags]"
|
|
1475
1380
|
],
|
|
1476
1381
|
"flags": {
|
|
1382
|
+
"force": {
|
|
1383
|
+
"char": "f",
|
|
1384
|
+
"description": "allow destruction even if connected to other apps",
|
|
1385
|
+
"name": "force",
|
|
1386
|
+
"allowNo": false,
|
|
1387
|
+
"type": "boolean"
|
|
1388
|
+
},
|
|
1389
|
+
"confirm": {
|
|
1390
|
+
"char": "c",
|
|
1391
|
+
"name": "confirm",
|
|
1392
|
+
"hasDynamicHelp": false,
|
|
1393
|
+
"multiple": false,
|
|
1394
|
+
"type": "option"
|
|
1395
|
+
},
|
|
1396
|
+
"wait": {
|
|
1397
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
1398
|
+
"name": "wait",
|
|
1399
|
+
"allowNo": false,
|
|
1400
|
+
"type": "boolean"
|
|
1401
|
+
},
|
|
1477
1402
|
"app": {
|
|
1478
1403
|
"char": "a",
|
|
1479
1404
|
"description": "app to run command against",
|
|
@@ -1489,54 +1414,35 @@
|
|
|
1489
1414
|
"hasDynamicHelp": false,
|
|
1490
1415
|
"multiple": false,
|
|
1491
1416
|
"type": "option"
|
|
1492
|
-
},
|
|
1493
|
-
"shell": {
|
|
1494
|
-
"char": "s",
|
|
1495
|
-
"description": "output more shell friendly key/value pairs",
|
|
1496
|
-
"name": "shell",
|
|
1497
|
-
"allowNo": false,
|
|
1498
|
-
"type": "boolean"
|
|
1499
|
-
},
|
|
1500
|
-
"extended": {
|
|
1501
|
-
"char": "x",
|
|
1502
|
-
"hidden": true,
|
|
1503
|
-
"name": "extended",
|
|
1504
|
-
"allowNo": false,
|
|
1505
|
-
"type": "boolean"
|
|
1506
|
-
},
|
|
1507
|
-
"json": {
|
|
1508
|
-
"char": "j",
|
|
1509
|
-
"description": "output in json format",
|
|
1510
|
-
"name": "json",
|
|
1511
|
-
"allowNo": false,
|
|
1512
|
-
"type": "boolean"
|
|
1513
1417
|
}
|
|
1514
1418
|
},
|
|
1515
1419
|
"hasDynamicHelp": false,
|
|
1516
1420
|
"hiddenAliases": [
|
|
1517
|
-
"
|
|
1421
|
+
"addons:remove"
|
|
1518
1422
|
],
|
|
1519
|
-
"id": "
|
|
1423
|
+
"id": "addons:destroy",
|
|
1520
1424
|
"pluginAlias": "heroku",
|
|
1521
1425
|
"pluginName": "heroku",
|
|
1522
1426
|
"pluginType": "core",
|
|
1523
|
-
"strict":
|
|
1524
|
-
"topic": "
|
|
1525
|
-
"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...",
|
|
1427
|
+
"strict": false,
|
|
1428
|
+
"topic": "addons",
|
|
1526
1429
|
"isESM": false,
|
|
1527
1430
|
"relativePath": [
|
|
1528
1431
|
"lib",
|
|
1529
1432
|
"commands",
|
|
1530
|
-
"
|
|
1531
|
-
"
|
|
1433
|
+
"addons",
|
|
1434
|
+
"destroy.js"
|
|
1532
1435
|
]
|
|
1533
1436
|
},
|
|
1534
|
-
"
|
|
1535
|
-
"aliases": [
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1437
|
+
"addons:detach": {
|
|
1438
|
+
"aliases": [],
|
|
1439
|
+
"args": {
|
|
1440
|
+
"attachment_name": {
|
|
1441
|
+
"name": "attachment_name",
|
|
1442
|
+
"required": true
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"description": "detach an existing add-on resource from an app",
|
|
1540
1446
|
"flags": {
|
|
1541
1447
|
"app": {
|
|
1542
1448
|
"char": "a",
|
|
@@ -1558,33 +1464,40 @@
|
|
|
1558
1464
|
},
|
|
1559
1465
|
"hasDynamicHelp": false,
|
|
1560
1466
|
"hiddenAliases": [],
|
|
1561
|
-
"id": "
|
|
1467
|
+
"id": "addons:detach",
|
|
1562
1468
|
"pluginAlias": "heroku",
|
|
1563
1469
|
"pluginName": "heroku",
|
|
1564
1470
|
"pluginType": "core",
|
|
1565
1471
|
"strict": true,
|
|
1566
|
-
"topic": "
|
|
1472
|
+
"topic": "addons",
|
|
1567
1473
|
"isESM": false,
|
|
1568
1474
|
"relativePath": [
|
|
1569
1475
|
"lib",
|
|
1570
1476
|
"commands",
|
|
1571
|
-
"
|
|
1572
|
-
"
|
|
1477
|
+
"addons",
|
|
1478
|
+
"detach.js"
|
|
1573
1479
|
]
|
|
1574
1480
|
},
|
|
1575
|
-
"
|
|
1576
|
-
"aliases": [
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1481
|
+
"addons:docs": {
|
|
1482
|
+
"aliases": [],
|
|
1483
|
+
"args": {
|
|
1484
|
+
"addon": {
|
|
1485
|
+
"name": "addon",
|
|
1486
|
+
"required": true
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
"description": "open an add-on's Dev Center documentation in your browser",
|
|
1582
1490
|
"flags": {
|
|
1491
|
+
"show-url": {
|
|
1492
|
+
"description": "show URL, do not open browser",
|
|
1493
|
+
"name": "show-url",
|
|
1494
|
+
"allowNo": false,
|
|
1495
|
+
"type": "boolean"
|
|
1496
|
+
},
|
|
1583
1497
|
"app": {
|
|
1584
1498
|
"char": "a",
|
|
1585
1499
|
"description": "app to run command against",
|
|
1586
1500
|
"name": "app",
|
|
1587
|
-
"required": true,
|
|
1588
1501
|
"hasDynamicHelp": false,
|
|
1589
1502
|
"multiple": false,
|
|
1590
1503
|
"type": "option"
|
|
@@ -1600,33 +1513,46 @@
|
|
|
1600
1513
|
},
|
|
1601
1514
|
"hasDynamicHelp": false,
|
|
1602
1515
|
"hiddenAliases": [],
|
|
1603
|
-
"id": "
|
|
1516
|
+
"id": "addons:docs",
|
|
1604
1517
|
"pluginAlias": "heroku",
|
|
1605
1518
|
"pluginName": "heroku",
|
|
1606
1519
|
"pluginType": "core",
|
|
1607
1520
|
"strict": true,
|
|
1608
|
-
"topic": "
|
|
1609
|
-
"example": "heroku apps:leave -a APP",
|
|
1521
|
+
"topic": "addons",
|
|
1610
1522
|
"isESM": false,
|
|
1611
1523
|
"relativePath": [
|
|
1612
1524
|
"lib",
|
|
1613
1525
|
"commands",
|
|
1614
|
-
"
|
|
1615
|
-
"
|
|
1526
|
+
"addons",
|
|
1527
|
+
"docs.js"
|
|
1616
1528
|
]
|
|
1617
1529
|
},
|
|
1618
|
-
"
|
|
1619
|
-
"aliases": [
|
|
1620
|
-
"lock"
|
|
1621
|
-
],
|
|
1530
|
+
"addons": {
|
|
1531
|
+
"aliases": [],
|
|
1622
1532
|
"args": {},
|
|
1623
|
-
"description": "
|
|
1533
|
+
"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 ",
|
|
1534
|
+
"examples": [
|
|
1535
|
+
"$ heroku addons --all",
|
|
1536
|
+
"$ heroku addons --app acme-inc-www"
|
|
1537
|
+
],
|
|
1624
1538
|
"flags": {
|
|
1539
|
+
"all": {
|
|
1540
|
+
"char": "A",
|
|
1541
|
+
"description": "show add-ons and attachments for all accessible apps",
|
|
1542
|
+
"name": "all",
|
|
1543
|
+
"allowNo": false,
|
|
1544
|
+
"type": "boolean"
|
|
1545
|
+
},
|
|
1546
|
+
"json": {
|
|
1547
|
+
"description": "return add-ons in json format",
|
|
1548
|
+
"name": "json",
|
|
1549
|
+
"allowNo": false,
|
|
1550
|
+
"type": "boolean"
|
|
1551
|
+
},
|
|
1625
1552
|
"app": {
|
|
1626
1553
|
"char": "a",
|
|
1627
1554
|
"description": "app to run command against",
|
|
1628
1555
|
"name": "app",
|
|
1629
|
-
"required": true,
|
|
1630
1556
|
"hasDynamicHelp": false,
|
|
1631
1557
|
"multiple": false,
|
|
1632
1558
|
"type": "option"
|
|
@@ -1642,39 +1568,35 @@
|
|
|
1642
1568
|
},
|
|
1643
1569
|
"hasDynamicHelp": false,
|
|
1644
1570
|
"hiddenAliases": [],
|
|
1645
|
-
"id": "
|
|
1571
|
+
"id": "addons",
|
|
1646
1572
|
"pluginAlias": "heroku",
|
|
1647
1573
|
"pluginName": "heroku",
|
|
1648
1574
|
"pluginType": "core",
|
|
1649
1575
|
"strict": true,
|
|
1650
|
-
"
|
|
1576
|
+
"usage": "addons [--all|--app APP]",
|
|
1577
|
+
"topic": "addons",
|
|
1651
1578
|
"isESM": false,
|
|
1652
1579
|
"relativePath": [
|
|
1653
1580
|
"lib",
|
|
1654
1581
|
"commands",
|
|
1655
|
-
"
|
|
1656
|
-
"
|
|
1582
|
+
"addons",
|
|
1583
|
+
"index.js"
|
|
1657
1584
|
]
|
|
1658
1585
|
},
|
|
1659
|
-
"
|
|
1586
|
+
"addons:info": {
|
|
1660
1587
|
"aliases": [],
|
|
1661
1588
|
"args": {
|
|
1662
|
-
"
|
|
1663
|
-
"name": "
|
|
1664
|
-
"required":
|
|
1589
|
+
"addon": {
|
|
1590
|
+
"name": "addon",
|
|
1591
|
+
"required": true
|
|
1665
1592
|
}
|
|
1666
1593
|
},
|
|
1667
|
-
"description": "
|
|
1668
|
-
"examples": [
|
|
1669
|
-
"$ heroku open -a myapp",
|
|
1670
|
-
"$ heroku open -a myapp /foo"
|
|
1671
|
-
],
|
|
1594
|
+
"description": "show detailed add-on resource and attachment information",
|
|
1672
1595
|
"flags": {
|
|
1673
1596
|
"app": {
|
|
1674
1597
|
"char": "a",
|
|
1675
1598
|
"description": "app to run command against",
|
|
1676
1599
|
"name": "app",
|
|
1677
|
-
"required": true,
|
|
1678
1600
|
"hasDynamicHelp": false,
|
|
1679
1601
|
"multiple": false,
|
|
1680
1602
|
"type": "option"
|
|
@@ -1689,41 +1611,42 @@
|
|
|
1689
1611
|
}
|
|
1690
1612
|
},
|
|
1691
1613
|
"hasDynamicHelp": false,
|
|
1692
|
-
"hiddenAliases": [
|
|
1693
|
-
|
|
1694
|
-
],
|
|
1695
|
-
"id": "apps:open",
|
|
1614
|
+
"hiddenAliases": [],
|
|
1615
|
+
"id": "addons:info",
|
|
1696
1616
|
"pluginAlias": "heroku",
|
|
1697
1617
|
"pluginName": "heroku",
|
|
1698
1618
|
"pluginType": "core",
|
|
1699
1619
|
"strict": true,
|
|
1700
|
-
"
|
|
1620
|
+
"usage": "addons:info ADDON",
|
|
1621
|
+
"topic": "addons",
|
|
1701
1622
|
"isESM": false,
|
|
1702
1623
|
"relativePath": [
|
|
1703
1624
|
"lib",
|
|
1704
1625
|
"commands",
|
|
1705
|
-
"
|
|
1706
|
-
"
|
|
1626
|
+
"addons",
|
|
1627
|
+
"info.js"
|
|
1707
1628
|
]
|
|
1708
1629
|
},
|
|
1709
|
-
"
|
|
1630
|
+
"addons:open": {
|
|
1710
1631
|
"aliases": [],
|
|
1711
1632
|
"args": {
|
|
1712
|
-
"
|
|
1713
|
-
"name": "
|
|
1633
|
+
"addon": {
|
|
1634
|
+
"name": "addon",
|
|
1714
1635
|
"required": true
|
|
1715
1636
|
}
|
|
1716
1637
|
},
|
|
1717
|
-
"description": "
|
|
1718
|
-
"examples": [
|
|
1719
|
-
"$ heroku apps:rename --app oldname newname"
|
|
1720
|
-
],
|
|
1638
|
+
"description": "open an add-on's dashboard in your browser",
|
|
1721
1639
|
"flags": {
|
|
1640
|
+
"show-url": {
|
|
1641
|
+
"description": "show URL, do not open browser",
|
|
1642
|
+
"name": "show-url",
|
|
1643
|
+
"allowNo": false,
|
|
1644
|
+
"type": "boolean"
|
|
1645
|
+
},
|
|
1722
1646
|
"app": {
|
|
1723
1647
|
"char": "a",
|
|
1724
1648
|
"description": "app to run command against",
|
|
1725
1649
|
"name": "app",
|
|
1726
|
-
"required": true,
|
|
1727
1650
|
"hasDynamicHelp": false,
|
|
1728
1651
|
"multiple": false,
|
|
1729
1652
|
"type": "option"
|
|
@@ -1738,53 +1661,130 @@
|
|
|
1738
1661
|
}
|
|
1739
1662
|
},
|
|
1740
1663
|
"hasDynamicHelp": false,
|
|
1741
|
-
"hiddenAliases": [
|
|
1742
|
-
|
|
1743
|
-
],
|
|
1744
|
-
"id": "apps:rename",
|
|
1664
|
+
"hiddenAliases": [],
|
|
1665
|
+
"id": "addons:open",
|
|
1745
1666
|
"pluginAlias": "heroku",
|
|
1746
1667
|
"pluginName": "heroku",
|
|
1747
1668
|
"pluginType": "core",
|
|
1748
1669
|
"strict": true,
|
|
1749
|
-
"
|
|
1750
|
-
"topic": "apps",
|
|
1670
|
+
"topic": "addons",
|
|
1751
1671
|
"isESM": false,
|
|
1752
1672
|
"relativePath": [
|
|
1753
1673
|
"lib",
|
|
1754
1674
|
"commands",
|
|
1755
|
-
"
|
|
1756
|
-
"
|
|
1675
|
+
"addons",
|
|
1676
|
+
"open.js"
|
|
1757
1677
|
]
|
|
1758
1678
|
},
|
|
1759
|
-
"
|
|
1679
|
+
"addons:plans": {
|
|
1760
1680
|
"aliases": [],
|
|
1761
1681
|
"args": {
|
|
1762
|
-
"
|
|
1763
|
-
"
|
|
1764
|
-
"name": "recipient",
|
|
1682
|
+
"service": {
|
|
1683
|
+
"name": "service",
|
|
1765
1684
|
"required": true
|
|
1766
1685
|
}
|
|
1767
1686
|
},
|
|
1768
|
-
"description": "
|
|
1769
|
-
"examples": [
|
|
1770
|
-
"$ 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..."
|
|
1771
|
-
],
|
|
1687
|
+
"description": "list all available plans for an add-on service",
|
|
1772
1688
|
"flags": {
|
|
1773
|
-
"
|
|
1774
|
-
"
|
|
1775
|
-
"
|
|
1776
|
-
"name": "locked",
|
|
1777
|
-
"required": false,
|
|
1689
|
+
"json": {
|
|
1690
|
+
"description": "output in json format",
|
|
1691
|
+
"name": "json",
|
|
1778
1692
|
"allowNo": false,
|
|
1779
1693
|
"type": "boolean"
|
|
1694
|
+
}
|
|
1695
|
+
},
|
|
1696
|
+
"hasDynamicHelp": false,
|
|
1697
|
+
"hiddenAliases": [],
|
|
1698
|
+
"id": "addons:plans",
|
|
1699
|
+
"pluginAlias": "heroku",
|
|
1700
|
+
"pluginName": "heroku",
|
|
1701
|
+
"pluginType": "core",
|
|
1702
|
+
"strict": true,
|
|
1703
|
+
"topic": "addons",
|
|
1704
|
+
"isESM": false,
|
|
1705
|
+
"relativePath": [
|
|
1706
|
+
"lib",
|
|
1707
|
+
"commands",
|
|
1708
|
+
"addons",
|
|
1709
|
+
"plans.js"
|
|
1710
|
+
]
|
|
1711
|
+
},
|
|
1712
|
+
"addons:rename": {
|
|
1713
|
+
"aliases": [],
|
|
1714
|
+
"args": {
|
|
1715
|
+
"addon_name": {
|
|
1716
|
+
"name": "addon_name",
|
|
1717
|
+
"required": true
|
|
1780
1718
|
},
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1784
|
-
|
|
1719
|
+
"new_name": {
|
|
1720
|
+
"name": "new_name",
|
|
1721
|
+
"required": true
|
|
1722
|
+
}
|
|
1723
|
+
},
|
|
1724
|
+
"description": "rename an add-on",
|
|
1725
|
+
"flags": {},
|
|
1726
|
+
"hasDynamicHelp": false,
|
|
1727
|
+
"hiddenAliases": [],
|
|
1728
|
+
"id": "addons:rename",
|
|
1729
|
+
"pluginAlias": "heroku",
|
|
1730
|
+
"pluginName": "heroku",
|
|
1731
|
+
"pluginType": "core",
|
|
1732
|
+
"strict": true,
|
|
1733
|
+
"topic": "addons",
|
|
1734
|
+
"isESM": false,
|
|
1735
|
+
"relativePath": [
|
|
1736
|
+
"lib",
|
|
1737
|
+
"commands",
|
|
1738
|
+
"addons",
|
|
1739
|
+
"rename.js"
|
|
1740
|
+
]
|
|
1741
|
+
},
|
|
1742
|
+
"addons:services": {
|
|
1743
|
+
"aliases": [],
|
|
1744
|
+
"args": {},
|
|
1745
|
+
"description": "list all available add-on services",
|
|
1746
|
+
"flags": {
|
|
1747
|
+
"json": {
|
|
1748
|
+
"description": "output in json format",
|
|
1749
|
+
"name": "json",
|
|
1785
1750
|
"allowNo": false,
|
|
1786
1751
|
"type": "boolean"
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
"hasDynamicHelp": false,
|
|
1755
|
+
"hiddenAliases": [],
|
|
1756
|
+
"id": "addons:services",
|
|
1757
|
+
"pluginAlias": "heroku",
|
|
1758
|
+
"pluginName": "heroku",
|
|
1759
|
+
"pluginType": "core",
|
|
1760
|
+
"strict": true,
|
|
1761
|
+
"topic": "addons",
|
|
1762
|
+
"isESM": false,
|
|
1763
|
+
"relativePath": [
|
|
1764
|
+
"lib",
|
|
1765
|
+
"commands",
|
|
1766
|
+
"addons",
|
|
1767
|
+
"services.js"
|
|
1768
|
+
]
|
|
1769
|
+
},
|
|
1770
|
+
"addons:upgrade": {
|
|
1771
|
+
"aliases": [
|
|
1772
|
+
"addons:downgrade"
|
|
1773
|
+
],
|
|
1774
|
+
"args": {
|
|
1775
|
+
"addon": {
|
|
1776
|
+
"name": "addon",
|
|
1777
|
+
"required": true
|
|
1787
1778
|
},
|
|
1779
|
+
"plan": {
|
|
1780
|
+
"name": "plan"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
"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 ",
|
|
1784
|
+
"examples": [
|
|
1785
|
+
"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"
|
|
1786
|
+
],
|
|
1787
|
+
"flags": {
|
|
1788
1788
|
"app": {
|
|
1789
1789
|
"char": "a",
|
|
1790
1790
|
"description": "app to run command against",
|
|
@@ -1800,44 +1800,44 @@
|
|
|
1800
1800
|
"hasDynamicHelp": false,
|
|
1801
1801
|
"multiple": false,
|
|
1802
1802
|
"type": "option"
|
|
1803
|
-
},
|
|
1804
|
-
"confirm": {
|
|
1805
|
-
"char": "c",
|
|
1806
|
-
"hidden": true,
|
|
1807
|
-
"name": "confirm",
|
|
1808
|
-
"hasDynamicHelp": false,
|
|
1809
|
-
"multiple": false,
|
|
1810
|
-
"type": "option"
|
|
1811
1803
|
}
|
|
1812
1804
|
},
|
|
1813
1805
|
"hasDynamicHelp": false,
|
|
1814
1806
|
"hiddenAliases": [],
|
|
1815
|
-
"id": "
|
|
1807
|
+
"id": "addons:upgrade",
|
|
1816
1808
|
"pluginAlias": "heroku",
|
|
1817
1809
|
"pluginName": "heroku",
|
|
1818
1810
|
"pluginType": "core",
|
|
1819
1811
|
"strict": true,
|
|
1820
|
-
"topic": "
|
|
1812
|
+
"topic": "addons",
|
|
1821
1813
|
"isESM": false,
|
|
1822
1814
|
"relativePath": [
|
|
1823
1815
|
"lib",
|
|
1824
1816
|
"commands",
|
|
1825
|
-
"
|
|
1826
|
-
"
|
|
1817
|
+
"addons",
|
|
1818
|
+
"upgrade.js"
|
|
1827
1819
|
]
|
|
1828
1820
|
},
|
|
1829
|
-
"
|
|
1830
|
-
"aliases": [
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1821
|
+
"addons:wait": {
|
|
1822
|
+
"aliases": [],
|
|
1823
|
+
"args": {
|
|
1824
|
+
"addon": {
|
|
1825
|
+
"name": "addon"
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
"description": "show provisioning status of the add-ons on the app",
|
|
1835
1829
|
"flags": {
|
|
1830
|
+
"wait-interval": {
|
|
1831
|
+
"description": "how frequently to poll in seconds",
|
|
1832
|
+
"name": "wait-interval",
|
|
1833
|
+
"hasDynamicHelp": false,
|
|
1834
|
+
"multiple": false,
|
|
1835
|
+
"type": "option"
|
|
1836
|
+
},
|
|
1836
1837
|
"app": {
|
|
1837
1838
|
"char": "a",
|
|
1838
1839
|
"description": "app to run command against",
|
|
1839
1840
|
"name": "app",
|
|
1840
|
-
"required": true,
|
|
1841
1841
|
"hasDynamicHelp": false,
|
|
1842
1842
|
"multiple": false,
|
|
1843
1843
|
"type": "option"
|
|
@@ -1853,18 +1853,18 @@
|
|
|
1853
1853
|
},
|
|
1854
1854
|
"hasDynamicHelp": false,
|
|
1855
1855
|
"hiddenAliases": [],
|
|
1856
|
-
"id": "
|
|
1856
|
+
"id": "addons:wait",
|
|
1857
1857
|
"pluginAlias": "heroku",
|
|
1858
1858
|
"pluginName": "heroku",
|
|
1859
1859
|
"pluginType": "core",
|
|
1860
1860
|
"strict": true,
|
|
1861
|
-
"topic": "
|
|
1861
|
+
"topic": "addons",
|
|
1862
1862
|
"isESM": false,
|
|
1863
1863
|
"relativePath": [
|
|
1864
1864
|
"lib",
|
|
1865
1865
|
"commands",
|
|
1866
|
-
"
|
|
1867
|
-
"
|
|
1866
|
+
"addons",
|
|
1867
|
+
"wait.js"
|
|
1868
1868
|
]
|
|
1869
1869
|
},
|
|
1870
1870
|
"auth:login": {
|
|
@@ -3158,7 +3158,7 @@
|
|
|
3158
3158
|
"flags": {
|
|
3159
3159
|
"app": {
|
|
3160
3160
|
"char": "a",
|
|
3161
|
-
"description": "app
|
|
3161
|
+
"description": "app to run command against",
|
|
3162
3162
|
"name": "app",
|
|
3163
3163
|
"hasDynamicHelp": false,
|
|
3164
3164
|
"multiple": false,
|
|
@@ -3226,7 +3226,7 @@
|
|
|
3226
3226
|
"flags": {
|
|
3227
3227
|
"app": {
|
|
3228
3228
|
"char": "a",
|
|
3229
|
-
"description": "app
|
|
3229
|
+
"description": "app to run command against",
|
|
3230
3230
|
"name": "app",
|
|
3231
3231
|
"hasDynamicHelp": false,
|
|
3232
3232
|
"multiple": false,
|
|
@@ -3283,7 +3283,7 @@
|
|
|
3283
3283
|
"flags": {
|
|
3284
3284
|
"app": {
|
|
3285
3285
|
"char": "a",
|
|
3286
|
-
"description": "app
|
|
3286
|
+
"description": "app to run command against",
|
|
3287
3287
|
"name": "app",
|
|
3288
3288
|
"hasDynamicHelp": false,
|
|
3289
3289
|
"multiple": false,
|
|
@@ -3427,7 +3427,7 @@
|
|
|
3427
3427
|
"flags": {
|
|
3428
3428
|
"app": {
|
|
3429
3429
|
"char": "a",
|
|
3430
|
-
"description": "app
|
|
3430
|
+
"description": "app to run command against",
|
|
3431
3431
|
"name": "app",
|
|
3432
3432
|
"hasDynamicHelp": false,
|
|
3433
3433
|
"multiple": false,
|
|
@@ -3476,12 +3476,20 @@
|
|
|
3476
3476
|
"flags": {
|
|
3477
3477
|
"app": {
|
|
3478
3478
|
"char": "a",
|
|
3479
|
-
"description": "app
|
|
3479
|
+
"description": "app to run command against",
|
|
3480
3480
|
"name": "app",
|
|
3481
3481
|
"hasDynamicHelp": false,
|
|
3482
3482
|
"multiple": false,
|
|
3483
3483
|
"type": "option"
|
|
3484
3484
|
},
|
|
3485
|
+
"remote": {
|
|
3486
|
+
"char": "r",
|
|
3487
|
+
"description": "git remote of app to use",
|
|
3488
|
+
"name": "remote",
|
|
3489
|
+
"hasDynamicHelp": false,
|
|
3490
|
+
"multiple": false,
|
|
3491
|
+
"type": "option"
|
|
3492
|
+
},
|
|
3485
3493
|
"pipeline": {
|
|
3486
3494
|
"char": "p",
|
|
3487
3495
|
"description": "name of pipeline",
|
|
@@ -11680,6 +11688,14 @@
|
|
|
11680
11688
|
"hasDynamicHelp": false,
|
|
11681
11689
|
"multiple": false,
|
|
11682
11690
|
"type": "option"
|
|
11691
|
+
},
|
|
11692
|
+
"remote": {
|
|
11693
|
+
"char": "r",
|
|
11694
|
+
"description": "git remote of app to use",
|
|
11695
|
+
"name": "remote",
|
|
11696
|
+
"hasDynamicHelp": false,
|
|
11697
|
+
"multiple": false,
|
|
11698
|
+
"type": "option"
|
|
11683
11699
|
}
|
|
11684
11700
|
},
|
|
11685
11701
|
"hasDynamicHelp": false,
|
|
@@ -13763,5 +13779,5 @@
|
|
|
13763
13779
|
]
|
|
13764
13780
|
}
|
|
13765
13781
|
},
|
|
13766
|
-
"version": "9.
|
|
13782
|
+
"version": "9.2.0-beta.1"
|
|
13767
13783
|
}
|