heroku 10.5.0-beta.0 → 10.5.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/lib/commands/accounts/add.d.ts +9 -0
- package/lib/commands/accounts/add.js +31 -0
- package/lib/commands/accounts/current.d.ts +6 -0
- package/lib/commands/accounts/current.js +20 -0
- package/lib/commands/accounts/index.d.ts +6 -0
- package/lib/commands/accounts/index.js +24 -0
- package/lib/commands/accounts/remove.d.ts +9 -0
- package/lib/commands/accounts/remove.js +24 -0
- package/lib/commands/accounts/set.d.ts +9 -0
- package/lib/commands/accounts/set.js +21 -0
- package/lib/commands/ps/type.js +29 -0
- package/lib/commands/usage/addons.js +4 -4
- package/lib/lib/accounts/accounts.d.ts +6 -0
- package/lib/lib/accounts/accounts.js +70 -0
- package/oclif.manifest.json +822 -690
- package/package.json +4 -3
package/oclif.manifest.json
CHANGED
|
@@ -533,205 +533,239 @@
|
|
|
533
533
|
"update.js"
|
|
534
534
|
]
|
|
535
535
|
},
|
|
536
|
-
"
|
|
536
|
+
"accounts:add": {
|
|
537
537
|
"aliases": [],
|
|
538
538
|
"args": {
|
|
539
|
-
"
|
|
540
|
-
"description": "name of
|
|
541
|
-
"name": "
|
|
542
|
-
"required":
|
|
539
|
+
"name": {
|
|
540
|
+
"description": "name of Heroku account to add",
|
|
541
|
+
"name": "name",
|
|
542
|
+
"required": true
|
|
543
543
|
}
|
|
544
544
|
},
|
|
545
|
-
"description": "
|
|
546
|
-
"examples":
|
|
547
|
-
|
|
548
|
-
|
|
545
|
+
"description": "add a Heroku account to your cache",
|
|
546
|
+
"examples": "heroku accounts:add my-account",
|
|
547
|
+
"flags": {},
|
|
548
|
+
"hasDynamicHelp": false,
|
|
549
|
+
"hiddenAliases": [],
|
|
550
|
+
"id": "accounts:add",
|
|
551
|
+
"pluginAlias": "heroku",
|
|
552
|
+
"pluginName": "heroku",
|
|
553
|
+
"pluginType": "core",
|
|
554
|
+
"strict": true,
|
|
555
|
+
"example": "heroku accounts:add my-account",
|
|
556
|
+
"isESM": false,
|
|
557
|
+
"relativePath": [
|
|
558
|
+
"lib",
|
|
559
|
+
"commands",
|
|
560
|
+
"accounts",
|
|
561
|
+
"add.js"
|
|
562
|
+
]
|
|
563
|
+
},
|
|
564
|
+
"accounts:current": {
|
|
565
|
+
"aliases": [],
|
|
566
|
+
"args": {},
|
|
567
|
+
"description": "display the current Heroku account",
|
|
568
|
+
"examples": "heroku accounts:current",
|
|
569
|
+
"flags": {},
|
|
570
|
+
"hasDynamicHelp": false,
|
|
571
|
+
"hiddenAliases": [],
|
|
572
|
+
"id": "accounts:current",
|
|
573
|
+
"pluginAlias": "heroku",
|
|
574
|
+
"pluginName": "heroku",
|
|
575
|
+
"pluginType": "core",
|
|
576
|
+
"strict": true,
|
|
577
|
+
"example": "heroku accounts:current",
|
|
578
|
+
"isESM": false,
|
|
579
|
+
"relativePath": [
|
|
580
|
+
"lib",
|
|
581
|
+
"commands",
|
|
582
|
+
"accounts",
|
|
583
|
+
"current.js"
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
"accounts": {
|
|
587
|
+
"aliases": [],
|
|
588
|
+
"args": {},
|
|
589
|
+
"description": "list the Heroku accounts in your cache",
|
|
590
|
+
"examples": "heroku accounts",
|
|
591
|
+
"flags": {},
|
|
592
|
+
"hasDynamicHelp": false,
|
|
593
|
+
"hiddenAliases": [],
|
|
594
|
+
"id": "accounts",
|
|
595
|
+
"pluginAlias": "heroku",
|
|
596
|
+
"pluginName": "heroku",
|
|
597
|
+
"pluginType": "core",
|
|
598
|
+
"strict": true,
|
|
599
|
+
"example": "heroku accounts",
|
|
600
|
+
"isESM": false,
|
|
601
|
+
"relativePath": [
|
|
602
|
+
"lib",
|
|
603
|
+
"commands",
|
|
604
|
+
"accounts",
|
|
605
|
+
"index.js"
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
"accounts:remove": {
|
|
609
|
+
"aliases": [],
|
|
610
|
+
"args": {
|
|
611
|
+
"name": {
|
|
612
|
+
"description": "name of Heroku account to remove",
|
|
613
|
+
"name": "name",
|
|
614
|
+
"required": true
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"description": "remove a Heroku account from your cache",
|
|
618
|
+
"examples": "heroku accounts:remove my-account",
|
|
619
|
+
"flags": {},
|
|
620
|
+
"hasDynamicHelp": false,
|
|
621
|
+
"hiddenAliases": [],
|
|
622
|
+
"id": "accounts:remove",
|
|
623
|
+
"pluginAlias": "heroku",
|
|
624
|
+
"pluginName": "heroku",
|
|
625
|
+
"pluginType": "core",
|
|
626
|
+
"strict": true,
|
|
627
|
+
"example": "heroku accounts:remove my-account",
|
|
628
|
+
"isESM": false,
|
|
629
|
+
"relativePath": [
|
|
630
|
+
"lib",
|
|
631
|
+
"commands",
|
|
632
|
+
"accounts",
|
|
633
|
+
"remove.js"
|
|
634
|
+
]
|
|
635
|
+
},
|
|
636
|
+
"accounts:set": {
|
|
637
|
+
"aliases": [],
|
|
638
|
+
"args": {
|
|
639
|
+
"name": {
|
|
640
|
+
"description": "name of account to set",
|
|
641
|
+
"name": "name",
|
|
642
|
+
"required": true
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"description": "set the current Heroku account from your cache",
|
|
646
|
+
"examples": "heroku accounts:set my-account",
|
|
647
|
+
"flags": {},
|
|
648
|
+
"hasDynamicHelp": false,
|
|
649
|
+
"hiddenAliases": [],
|
|
650
|
+
"id": "accounts:set",
|
|
651
|
+
"pluginAlias": "heroku",
|
|
652
|
+
"pluginName": "heroku",
|
|
653
|
+
"pluginType": "core",
|
|
654
|
+
"strict": true,
|
|
655
|
+
"example": "heroku accounts:set my-account",
|
|
656
|
+
"isESM": false,
|
|
657
|
+
"relativePath": [
|
|
658
|
+
"lib",
|
|
659
|
+
"commands",
|
|
660
|
+
"accounts",
|
|
661
|
+
"set.js"
|
|
662
|
+
]
|
|
663
|
+
},
|
|
664
|
+
"addons:attach": {
|
|
665
|
+
"aliases": [],
|
|
666
|
+
"args": {
|
|
667
|
+
"addon_name": {
|
|
668
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
669
|
+
"name": "addon_name",
|
|
670
|
+
"required": true
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
"description": "attach an existing add-on resource to an app",
|
|
549
674
|
"flags": {
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"name": "
|
|
553
|
-
"hasDynamicHelp": false,
|
|
554
|
-
"multiple": false,
|
|
555
|
-
"type": "option"
|
|
556
|
-
},
|
|
557
|
-
"addons": {
|
|
558
|
-
"description": "comma-delimited list of addons to install",
|
|
559
|
-
"name": "addons",
|
|
560
|
-
"hasDynamicHelp": false,
|
|
561
|
-
"multiple": false,
|
|
562
|
-
"type": "option"
|
|
563
|
-
},
|
|
564
|
-
"buildpack": {
|
|
565
|
-
"char": "b",
|
|
566
|
-
"description": "buildpack url to use for this app",
|
|
567
|
-
"name": "buildpack",
|
|
568
|
-
"hasDynamicHelp": false,
|
|
569
|
-
"multiple": false,
|
|
570
|
-
"type": "option"
|
|
571
|
-
},
|
|
572
|
-
"manifest": {
|
|
573
|
-
"char": "m",
|
|
574
|
-
"description": "use heroku.yml settings for this app",
|
|
575
|
-
"hidden": true,
|
|
576
|
-
"name": "manifest",
|
|
577
|
-
"allowNo": false,
|
|
578
|
-
"type": "boolean"
|
|
579
|
-
},
|
|
580
|
-
"no-remote": {
|
|
581
|
-
"char": "n",
|
|
582
|
-
"description": "do not create a git remote",
|
|
583
|
-
"name": "no-remote",
|
|
584
|
-
"allowNo": false,
|
|
585
|
-
"type": "boolean"
|
|
586
|
-
},
|
|
587
|
-
"remote": {
|
|
588
|
-
"char": "r",
|
|
589
|
-
"description": "the git remote to create, default \"heroku\"",
|
|
590
|
-
"name": "remote",
|
|
591
|
-
"default": "heroku",
|
|
592
|
-
"hasDynamicHelp": false,
|
|
593
|
-
"multiple": false,
|
|
594
|
-
"type": "option"
|
|
595
|
-
},
|
|
596
|
-
"stack": {
|
|
597
|
-
"char": "s",
|
|
598
|
-
"description": "the stack to create the app on",
|
|
599
|
-
"name": "stack",
|
|
600
|
-
"hasDynamicHelp": false,
|
|
601
|
-
"multiple": false,
|
|
602
|
-
"type": "option"
|
|
603
|
-
},
|
|
604
|
-
"space": {
|
|
605
|
-
"description": "the private space to create the app in",
|
|
606
|
-
"name": "space",
|
|
675
|
+
"as": {
|
|
676
|
+
"description": "name for add-on attachment",
|
|
677
|
+
"name": "as",
|
|
607
678
|
"hasDynamicHelp": false,
|
|
608
679
|
"multiple": false,
|
|
609
680
|
"type": "option"
|
|
610
681
|
},
|
|
611
|
-
"
|
|
612
|
-
"description": "
|
|
613
|
-
"name": "
|
|
682
|
+
"credential": {
|
|
683
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
684
|
+
"name": "credential",
|
|
614
685
|
"hasDynamicHelp": false,
|
|
615
686
|
"multiple": false,
|
|
616
687
|
"type": "option"
|
|
617
688
|
},
|
|
618
|
-
"
|
|
619
|
-
"description": "
|
|
620
|
-
"
|
|
621
|
-
"name": "internal-routing",
|
|
622
|
-
"allowNo": false,
|
|
623
|
-
"type": "boolean"
|
|
624
|
-
},
|
|
625
|
-
"features": {
|
|
626
|
-
"hidden": true,
|
|
627
|
-
"name": "features",
|
|
689
|
+
"confirm": {
|
|
690
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
691
|
+
"name": "confirm",
|
|
628
692
|
"hasDynamicHelp": false,
|
|
629
693
|
"multiple": false,
|
|
630
694
|
"type": "option"
|
|
631
695
|
},
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"
|
|
696
|
+
"app": {
|
|
697
|
+
"char": "a",
|
|
698
|
+
"description": "app to run command against",
|
|
699
|
+
"name": "app",
|
|
700
|
+
"required": true,
|
|
635
701
|
"hasDynamicHelp": false,
|
|
636
702
|
"multiple": false,
|
|
637
703
|
"type": "option"
|
|
638
704
|
},
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"type": "boolean"
|
|
644
|
-
},
|
|
645
|
-
"json": {
|
|
646
|
-
"description": "output in json format",
|
|
647
|
-
"name": "json",
|
|
648
|
-
"allowNo": false,
|
|
649
|
-
"type": "boolean"
|
|
650
|
-
},
|
|
651
|
-
"team": {
|
|
652
|
-
"char": "t",
|
|
653
|
-
"description": "team to use",
|
|
654
|
-
"name": "team",
|
|
705
|
+
"remote": {
|
|
706
|
+
"char": "r",
|
|
707
|
+
"description": "git remote of app to use",
|
|
708
|
+
"name": "remote",
|
|
655
709
|
"hasDynamicHelp": false,
|
|
656
710
|
"multiple": false,
|
|
657
711
|
"type": "option"
|
|
658
712
|
}
|
|
659
713
|
},
|
|
660
714
|
"hasDynamicHelp": false,
|
|
661
|
-
"hiddenAliases": [
|
|
662
|
-
|
|
663
|
-
],
|
|
664
|
-
"id": "apps:create",
|
|
715
|
+
"hiddenAliases": [],
|
|
716
|
+
"id": "addons:attach",
|
|
665
717
|
"pluginAlias": "heroku",
|
|
666
718
|
"pluginName": "heroku",
|
|
667
719
|
"pluginType": "core",
|
|
668
720
|
"strict": true,
|
|
721
|
+
"topic": "addons",
|
|
669
722
|
"isESM": false,
|
|
670
723
|
"relativePath": [
|
|
671
724
|
"lib",
|
|
672
725
|
"commands",
|
|
673
|
-
"
|
|
674
|
-
"
|
|
726
|
+
"addons",
|
|
727
|
+
"attach.js"
|
|
675
728
|
]
|
|
676
729
|
},
|
|
677
|
-
"
|
|
730
|
+
"addons:create": {
|
|
678
731
|
"aliases": [],
|
|
679
732
|
"args": {
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"name": "
|
|
733
|
+
"service:plan": {
|
|
734
|
+
"description": "unique identifier or unique name of the add-on service plan",
|
|
735
|
+
"name": "service:plan",
|
|
736
|
+
"required": true
|
|
683
737
|
}
|
|
684
738
|
},
|
|
685
|
-
"description": "
|
|
739
|
+
"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",
|
|
740
|
+
"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",
|
|
686
741
|
"flags": {
|
|
687
|
-
"
|
|
688
|
-
"
|
|
689
|
-
"
|
|
690
|
-
"name": "app",
|
|
742
|
+
"name": {
|
|
743
|
+
"description": "name for the add-on resource",
|
|
744
|
+
"name": "name",
|
|
691
745
|
"hasDynamicHelp": false,
|
|
692
746
|
"multiple": false,
|
|
693
747
|
"type": "option"
|
|
694
748
|
},
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"
|
|
698
|
-
"name": "remote",
|
|
749
|
+
"as": {
|
|
750
|
+
"description": "name for the initial add-on attachment",
|
|
751
|
+
"name": "as",
|
|
699
752
|
"hasDynamicHelp": false,
|
|
700
753
|
"multiple": false,
|
|
701
754
|
"type": "option"
|
|
702
755
|
},
|
|
703
756
|
"confirm": {
|
|
704
|
-
"
|
|
757
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
705
758
|
"name": "confirm",
|
|
706
759
|
"hasDynamicHelp": false,
|
|
707
760
|
"multiple": false,
|
|
708
761
|
"type": "option"
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
"id": "apps:destroy",
|
|
717
|
-
"pluginAlias": "heroku",
|
|
718
|
-
"pluginName": "heroku",
|
|
719
|
-
"pluginType": "core",
|
|
720
|
-
"strict": true,
|
|
721
|
-
"help": "This will also destroy all add-ons on the app.",
|
|
722
|
-
"isESM": false,
|
|
723
|
-
"relativePath": [
|
|
724
|
-
"lib",
|
|
725
|
-
"commands",
|
|
726
|
-
"apps",
|
|
727
|
-
"destroy.js"
|
|
728
|
-
]
|
|
729
|
-
},
|
|
730
|
-
"apps:errors": {
|
|
731
|
-
"aliases": [],
|
|
732
|
-
"args": {},
|
|
733
|
-
"description": "view app errors",
|
|
734
|
-
"flags": {
|
|
762
|
+
},
|
|
763
|
+
"wait": {
|
|
764
|
+
"description": "watch add-on creation status and exit when complete",
|
|
765
|
+
"name": "wait",
|
|
766
|
+
"allowNo": false,
|
|
767
|
+
"type": "boolean"
|
|
768
|
+
},
|
|
735
769
|
"app": {
|
|
736
770
|
"char": "a",
|
|
737
771
|
"description": "app to run command against",
|
|
@@ -748,98 +782,73 @@
|
|
|
748
782
|
"hasDynamicHelp": false,
|
|
749
783
|
"multiple": false,
|
|
750
784
|
"type": "option"
|
|
751
|
-
},
|
|
752
|
-
"json": {
|
|
753
|
-
"description": "output in json format",
|
|
754
|
-
"name": "json",
|
|
755
|
-
"allowNo": false,
|
|
756
|
-
"type": "boolean"
|
|
757
|
-
},
|
|
758
|
-
"hours": {
|
|
759
|
-
"description": "number of hours to look back (default 24)",
|
|
760
|
-
"name": "hours",
|
|
761
|
-
"default": "24",
|
|
762
|
-
"hasDynamicHelp": false,
|
|
763
|
-
"multiple": false,
|
|
764
|
-
"type": "option"
|
|
765
|
-
},
|
|
766
|
-
"router": {
|
|
767
|
-
"description": "show only router errors",
|
|
768
|
-
"name": "router",
|
|
769
|
-
"allowNo": false,
|
|
770
|
-
"type": "boolean"
|
|
771
|
-
},
|
|
772
|
-
"dyno": {
|
|
773
|
-
"description": "show only dyno errors",
|
|
774
|
-
"name": "dyno",
|
|
775
|
-
"allowNo": false,
|
|
776
|
-
"type": "boolean"
|
|
777
785
|
}
|
|
778
786
|
},
|
|
779
787
|
"hasDynamicHelp": false,
|
|
780
|
-
"hiddenAliases": [
|
|
781
|
-
|
|
788
|
+
"hiddenAliases": [
|
|
789
|
+
"addons:add"
|
|
790
|
+
],
|
|
791
|
+
"id": "addons:create",
|
|
782
792
|
"pluginAlias": "heroku",
|
|
783
793
|
"pluginName": "heroku",
|
|
784
794
|
"pluginType": "core",
|
|
785
|
-
"strict":
|
|
795
|
+
"strict": false,
|
|
796
|
+
"topic": "addons",
|
|
797
|
+
"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",
|
|
786
798
|
"isESM": false,
|
|
787
799
|
"relativePath": [
|
|
788
800
|
"lib",
|
|
789
801
|
"commands",
|
|
790
|
-
"
|
|
791
|
-
"
|
|
802
|
+
"addons",
|
|
803
|
+
"create.js"
|
|
792
804
|
]
|
|
793
805
|
},
|
|
794
|
-
"
|
|
806
|
+
"addons:destroy": {
|
|
795
807
|
"aliases": [],
|
|
796
|
-
"args": {
|
|
797
|
-
|
|
808
|
+
"args": {
|
|
809
|
+
"addonName": {
|
|
810
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
811
|
+
"name": "addonName",
|
|
812
|
+
"required": true
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"description": "permanently destroy an add-on resource",
|
|
798
816
|
"examples": [
|
|
799
|
-
"
|
|
817
|
+
"addons:destroy [ADDON]... [flags]"
|
|
800
818
|
],
|
|
801
819
|
"flags": {
|
|
802
|
-
"
|
|
803
|
-
"char": "
|
|
804
|
-
"description": "
|
|
805
|
-
"name": "
|
|
806
|
-
"allowNo": false,
|
|
807
|
-
"type": "boolean"
|
|
808
|
-
},
|
|
809
|
-
"json": {
|
|
810
|
-
"char": "j",
|
|
811
|
-
"description": "output in json format",
|
|
812
|
-
"name": "json",
|
|
820
|
+
"force": {
|
|
821
|
+
"char": "f",
|
|
822
|
+
"description": "allow destruction even if connected to other apps",
|
|
823
|
+
"name": "force",
|
|
813
824
|
"allowNo": false,
|
|
814
825
|
"type": "boolean"
|
|
815
826
|
},
|
|
816
|
-
"
|
|
817
|
-
"char": "
|
|
818
|
-
"
|
|
819
|
-
"name": "space",
|
|
827
|
+
"confirm": {
|
|
828
|
+
"char": "c",
|
|
829
|
+
"name": "confirm",
|
|
820
830
|
"hasDynamicHelp": false,
|
|
821
831
|
"multiple": false,
|
|
822
832
|
"type": "option"
|
|
823
833
|
},
|
|
824
|
-
"
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
"name": "personal",
|
|
834
|
+
"wait": {
|
|
835
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
836
|
+
"name": "wait",
|
|
828
837
|
"allowNo": false,
|
|
829
838
|
"type": "boolean"
|
|
830
839
|
},
|
|
831
|
-
"
|
|
832
|
-
"char": "
|
|
833
|
-
"description": "
|
|
834
|
-
"
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"type": "
|
|
840
|
+
"app": {
|
|
841
|
+
"char": "a",
|
|
842
|
+
"description": "app to run command against",
|
|
843
|
+
"name": "app",
|
|
844
|
+
"hasDynamicHelp": false,
|
|
845
|
+
"multiple": false,
|
|
846
|
+
"type": "option"
|
|
838
847
|
},
|
|
839
|
-
"
|
|
840
|
-
"char": "
|
|
841
|
-
"description": "
|
|
842
|
-
"name": "
|
|
848
|
+
"remote": {
|
|
849
|
+
"char": "r",
|
|
850
|
+
"description": "git remote of app to use",
|
|
851
|
+
"name": "remote",
|
|
843
852
|
"hasDynamicHelp": false,
|
|
844
853
|
"multiple": false,
|
|
845
854
|
"type": "option"
|
|
@@ -847,106 +856,88 @@
|
|
|
847
856
|
},
|
|
848
857
|
"hasDynamicHelp": false,
|
|
849
858
|
"hiddenAliases": [
|
|
850
|
-
"
|
|
851
|
-
"apps:list"
|
|
859
|
+
"addons:remove"
|
|
852
860
|
],
|
|
853
|
-
"id": "
|
|
861
|
+
"id": "addons:destroy",
|
|
854
862
|
"pluginAlias": "heroku",
|
|
855
863
|
"pluginName": "heroku",
|
|
856
864
|
"pluginType": "core",
|
|
857
|
-
"strict":
|
|
858
|
-
"topic": "
|
|
865
|
+
"strict": false,
|
|
866
|
+
"topic": "addons",
|
|
859
867
|
"isESM": false,
|
|
860
868
|
"relativePath": [
|
|
861
869
|
"lib",
|
|
862
870
|
"commands",
|
|
863
|
-
"
|
|
864
|
-
"
|
|
871
|
+
"addons",
|
|
872
|
+
"destroy.js"
|
|
865
873
|
]
|
|
866
874
|
},
|
|
867
|
-
"
|
|
875
|
+
"addons:detach": {
|
|
868
876
|
"aliases": [],
|
|
869
877
|
"args": {
|
|
870
|
-
"
|
|
871
|
-
"
|
|
872
|
-
"name": "
|
|
878
|
+
"attachment_name": {
|
|
879
|
+
"description": "unique identifier of the add-on attachment",
|
|
880
|
+
"name": "attachment_name",
|
|
881
|
+
"required": true
|
|
873
882
|
}
|
|
874
883
|
},
|
|
875
|
-
"description": "
|
|
876
|
-
"examples": [
|
|
877
|
-
"$ heroku apps:info",
|
|
878
|
-
"$ heroku apps:info --shell"
|
|
879
|
-
],
|
|
884
|
+
"description": "detach an existing add-on resource from an app",
|
|
880
885
|
"flags": {
|
|
881
886
|
"app": {
|
|
882
887
|
"char": "a",
|
|
883
888
|
"description": "app to run command against",
|
|
884
889
|
"name": "app",
|
|
890
|
+
"required": true,
|
|
885
891
|
"hasDynamicHelp": false,
|
|
886
892
|
"multiple": false,
|
|
887
893
|
"type": "option"
|
|
888
894
|
},
|
|
889
895
|
"remote": {
|
|
890
896
|
"char": "r",
|
|
891
|
-
"description": "git remote of app to use",
|
|
892
|
-
"name": "remote",
|
|
893
|
-
"hasDynamicHelp": false,
|
|
894
|
-
"multiple": false,
|
|
895
|
-
"type": "option"
|
|
896
|
-
},
|
|
897
|
-
"shell": {
|
|
898
|
-
"char": "s",
|
|
899
|
-
"description": "output more shell friendly key/value pairs",
|
|
900
|
-
"name": "shell",
|
|
901
|
-
"allowNo": false,
|
|
902
|
-
"type": "boolean"
|
|
903
|
-
},
|
|
904
|
-
"extended": {
|
|
905
|
-
"char": "x",
|
|
906
|
-
"hidden": true,
|
|
907
|
-
"name": "extended",
|
|
908
|
-
"allowNo": false,
|
|
909
|
-
"type": "boolean"
|
|
910
|
-
},
|
|
911
|
-
"json": {
|
|
912
|
-
"char": "j",
|
|
913
|
-
"description": "output in json format",
|
|
914
|
-
"name": "json",
|
|
915
|
-
"allowNo": false,
|
|
916
|
-
"type": "boolean"
|
|
897
|
+
"description": "git remote of app to use",
|
|
898
|
+
"name": "remote",
|
|
899
|
+
"hasDynamicHelp": false,
|
|
900
|
+
"multiple": false,
|
|
901
|
+
"type": "option"
|
|
917
902
|
}
|
|
918
903
|
},
|
|
919
904
|
"hasDynamicHelp": false,
|
|
920
|
-
"hiddenAliases": [
|
|
921
|
-
|
|
922
|
-
],
|
|
923
|
-
"id": "apps:info",
|
|
905
|
+
"hiddenAliases": [],
|
|
906
|
+
"id": "addons:detach",
|
|
924
907
|
"pluginAlias": "heroku",
|
|
925
908
|
"pluginName": "heroku",
|
|
926
909
|
"pluginType": "core",
|
|
927
910
|
"strict": true,
|
|
928
|
-
"topic": "
|
|
929
|
-
"help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
|
|
911
|
+
"topic": "addons",
|
|
930
912
|
"isESM": false,
|
|
931
913
|
"relativePath": [
|
|
932
914
|
"lib",
|
|
933
915
|
"commands",
|
|
934
|
-
"
|
|
935
|
-
"
|
|
916
|
+
"addons",
|
|
917
|
+
"detach.js"
|
|
936
918
|
]
|
|
937
919
|
},
|
|
938
|
-
"
|
|
939
|
-
"aliases": [
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
920
|
+
"addons:docs": {
|
|
921
|
+
"aliases": [],
|
|
922
|
+
"args": {
|
|
923
|
+
"addon": {
|
|
924
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
925
|
+
"name": "addon",
|
|
926
|
+
"required": true
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"description": "open an add-on's Dev Center documentation in your browser",
|
|
944
930
|
"flags": {
|
|
931
|
+
"show-url": {
|
|
932
|
+
"description": "show URL, do not open browser",
|
|
933
|
+
"name": "show-url",
|
|
934
|
+
"allowNo": false,
|
|
935
|
+
"type": "boolean"
|
|
936
|
+
},
|
|
945
937
|
"app": {
|
|
946
938
|
"char": "a",
|
|
947
939
|
"description": "app to run command against",
|
|
948
940
|
"name": "app",
|
|
949
|
-
"required": true,
|
|
950
941
|
"hasDynamicHelp": false,
|
|
951
942
|
"multiple": false,
|
|
952
943
|
"type": "option"
|
|
@@ -962,33 +953,46 @@
|
|
|
962
953
|
},
|
|
963
954
|
"hasDynamicHelp": false,
|
|
964
955
|
"hiddenAliases": [],
|
|
965
|
-
"id": "
|
|
956
|
+
"id": "addons:docs",
|
|
966
957
|
"pluginAlias": "heroku",
|
|
967
958
|
"pluginName": "heroku",
|
|
968
959
|
"pluginType": "core",
|
|
969
960
|
"strict": true,
|
|
970
|
-
"topic": "
|
|
961
|
+
"topic": "addons",
|
|
971
962
|
"isESM": false,
|
|
972
963
|
"relativePath": [
|
|
973
964
|
"lib",
|
|
974
965
|
"commands",
|
|
975
|
-
"
|
|
976
|
-
"
|
|
966
|
+
"addons",
|
|
967
|
+
"docs.js"
|
|
977
968
|
]
|
|
978
969
|
},
|
|
979
|
-
"
|
|
980
|
-
"aliases": [
|
|
981
|
-
"leave"
|
|
982
|
-
],
|
|
970
|
+
"addons": {
|
|
971
|
+
"aliases": [],
|
|
983
972
|
"args": {},
|
|
984
|
-
"description": "
|
|
985
|
-
"examples":
|
|
973
|
+
"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 ",
|
|
974
|
+
"examples": [
|
|
975
|
+
"$ heroku addons --all",
|
|
976
|
+
"$ heroku addons --app acme-inc-www"
|
|
977
|
+
],
|
|
986
978
|
"flags": {
|
|
979
|
+
"all": {
|
|
980
|
+
"char": "A",
|
|
981
|
+
"description": "show add-ons and attachments for all accessible apps",
|
|
982
|
+
"name": "all",
|
|
983
|
+
"allowNo": false,
|
|
984
|
+
"type": "boolean"
|
|
985
|
+
},
|
|
986
|
+
"json": {
|
|
987
|
+
"description": "return add-ons in json format",
|
|
988
|
+
"name": "json",
|
|
989
|
+
"allowNo": false,
|
|
990
|
+
"type": "boolean"
|
|
991
|
+
},
|
|
987
992
|
"app": {
|
|
988
993
|
"char": "a",
|
|
989
994
|
"description": "app to run command against",
|
|
990
995
|
"name": "app",
|
|
991
|
-
"required": true,
|
|
992
996
|
"hasDynamicHelp": false,
|
|
993
997
|
"multiple": false,
|
|
994
998
|
"type": "option"
|
|
@@ -1004,33 +1008,36 @@
|
|
|
1004
1008
|
},
|
|
1005
1009
|
"hasDynamicHelp": false,
|
|
1006
1010
|
"hiddenAliases": [],
|
|
1007
|
-
"id": "
|
|
1011
|
+
"id": "addons",
|
|
1008
1012
|
"pluginAlias": "heroku",
|
|
1009
1013
|
"pluginName": "heroku",
|
|
1010
1014
|
"pluginType": "core",
|
|
1011
1015
|
"strict": true,
|
|
1012
|
-
"
|
|
1013
|
-
"
|
|
1016
|
+
"usage": "addons [--all|--app APP]",
|
|
1017
|
+
"topic": "addons",
|
|
1014
1018
|
"isESM": false,
|
|
1015
1019
|
"relativePath": [
|
|
1016
1020
|
"lib",
|
|
1017
1021
|
"commands",
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
1022
|
+
"addons",
|
|
1023
|
+
"index.js"
|
|
1020
1024
|
]
|
|
1021
1025
|
},
|
|
1022
|
-
"
|
|
1023
|
-
"aliases": [
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1026
|
+
"addons:info": {
|
|
1027
|
+
"aliases": [],
|
|
1028
|
+
"args": {
|
|
1029
|
+
"addon": {
|
|
1030
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1031
|
+
"name": "addon",
|
|
1032
|
+
"required": true
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"description": "show detailed add-on resource and attachment information",
|
|
1028
1036
|
"flags": {
|
|
1029
1037
|
"app": {
|
|
1030
1038
|
"char": "a",
|
|
1031
1039
|
"description": "app to run command against",
|
|
1032
1040
|
"name": "app",
|
|
1033
|
-
"required": true,
|
|
1034
1041
|
"hasDynamicHelp": false,
|
|
1035
1042
|
"multiple": false,
|
|
1036
1043
|
"type": "option"
|
|
@@ -1046,40 +1053,42 @@
|
|
|
1046
1053
|
},
|
|
1047
1054
|
"hasDynamicHelp": false,
|
|
1048
1055
|
"hiddenAliases": [],
|
|
1049
|
-
"id": "
|
|
1056
|
+
"id": "addons:info",
|
|
1050
1057
|
"pluginAlias": "heroku",
|
|
1051
1058
|
"pluginName": "heroku",
|
|
1052
1059
|
"pluginType": "core",
|
|
1053
1060
|
"strict": true,
|
|
1054
|
-
"
|
|
1061
|
+
"usage": "addons:info ADDON",
|
|
1062
|
+
"topic": "addons",
|
|
1055
1063
|
"isESM": false,
|
|
1056
1064
|
"relativePath": [
|
|
1057
1065
|
"lib",
|
|
1058
1066
|
"commands",
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1067
|
+
"addons",
|
|
1068
|
+
"info.js"
|
|
1061
1069
|
]
|
|
1062
1070
|
},
|
|
1063
|
-
"
|
|
1071
|
+
"addons:open": {
|
|
1064
1072
|
"aliases": [],
|
|
1065
1073
|
"args": {
|
|
1066
|
-
"
|
|
1067
|
-
"description": "
|
|
1068
|
-
"name": "
|
|
1069
|
-
"required":
|
|
1074
|
+
"addon": {
|
|
1075
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1076
|
+
"name": "addon",
|
|
1077
|
+
"required": true
|
|
1070
1078
|
}
|
|
1071
1079
|
},
|
|
1072
|
-
"description": "open
|
|
1073
|
-
"examples": [
|
|
1074
|
-
"$ heroku open -a myapp",
|
|
1075
|
-
"$ heroku open -a myapp /foo"
|
|
1076
|
-
],
|
|
1080
|
+
"description": "open an add-on's dashboard in your browser",
|
|
1077
1081
|
"flags": {
|
|
1082
|
+
"show-url": {
|
|
1083
|
+
"description": "show URL, do not open browser",
|
|
1084
|
+
"name": "show-url",
|
|
1085
|
+
"allowNo": false,
|
|
1086
|
+
"type": "boolean"
|
|
1087
|
+
},
|
|
1078
1088
|
"app": {
|
|
1079
1089
|
"char": "a",
|
|
1080
1090
|
"description": "app to run command against",
|
|
1081
1091
|
"name": "app",
|
|
1082
|
-
"required": true,
|
|
1083
1092
|
"hasDynamicHelp": false,
|
|
1084
1093
|
"multiple": false,
|
|
1085
1094
|
"type": "option"
|
|
@@ -1094,42 +1103,139 @@
|
|
|
1094
1103
|
}
|
|
1095
1104
|
},
|
|
1096
1105
|
"hasDynamicHelp": false,
|
|
1097
|
-
"hiddenAliases": [
|
|
1098
|
-
|
|
1099
|
-
],
|
|
1100
|
-
"id": "apps:open",
|
|
1106
|
+
"hiddenAliases": [],
|
|
1107
|
+
"id": "addons:open",
|
|
1101
1108
|
"pluginAlias": "heroku",
|
|
1102
1109
|
"pluginName": "heroku",
|
|
1103
1110
|
"pluginType": "core",
|
|
1104
1111
|
"strict": true,
|
|
1105
|
-
"topic": "
|
|
1112
|
+
"topic": "addons",
|
|
1106
1113
|
"isESM": false,
|
|
1107
1114
|
"relativePath": [
|
|
1108
1115
|
"lib",
|
|
1109
1116
|
"commands",
|
|
1110
|
-
"
|
|
1117
|
+
"addons",
|
|
1111
1118
|
"open.js"
|
|
1112
1119
|
]
|
|
1113
1120
|
},
|
|
1114
|
-
"
|
|
1121
|
+
"addons:plans": {
|
|
1115
1122
|
"aliases": [],
|
|
1116
1123
|
"args": {
|
|
1117
|
-
"
|
|
1118
|
-
"description": "
|
|
1119
|
-
"name": "
|
|
1124
|
+
"service": {
|
|
1125
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1126
|
+
"name": "service",
|
|
1120
1127
|
"required": true
|
|
1121
1128
|
}
|
|
1122
1129
|
},
|
|
1123
|
-
"description": "
|
|
1130
|
+
"description": "list all available plans for an add-on service",
|
|
1131
|
+
"flags": {
|
|
1132
|
+
"json": {
|
|
1133
|
+
"description": "output in json format",
|
|
1134
|
+
"name": "json",
|
|
1135
|
+
"allowNo": false,
|
|
1136
|
+
"type": "boolean"
|
|
1137
|
+
}
|
|
1138
|
+
},
|
|
1139
|
+
"hasDynamicHelp": false,
|
|
1140
|
+
"hiddenAliases": [],
|
|
1141
|
+
"id": "addons:plans",
|
|
1142
|
+
"pluginAlias": "heroku",
|
|
1143
|
+
"pluginName": "heroku",
|
|
1144
|
+
"pluginType": "core",
|
|
1145
|
+
"strict": true,
|
|
1146
|
+
"topic": "addons",
|
|
1147
|
+
"isESM": false,
|
|
1148
|
+
"relativePath": [
|
|
1149
|
+
"lib",
|
|
1150
|
+
"commands",
|
|
1151
|
+
"addons",
|
|
1152
|
+
"plans.js"
|
|
1153
|
+
]
|
|
1154
|
+
},
|
|
1155
|
+
"addons:rename": {
|
|
1156
|
+
"aliases": [],
|
|
1157
|
+
"args": {
|
|
1158
|
+
"addon_name": {
|
|
1159
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1160
|
+
"name": "addon_name",
|
|
1161
|
+
"required": true
|
|
1162
|
+
},
|
|
1163
|
+
"new_name": {
|
|
1164
|
+
"description": "new globally unique name of the add-on",
|
|
1165
|
+
"name": "new_name",
|
|
1166
|
+
"required": true
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"description": "rename an add-on",
|
|
1170
|
+
"flags": {},
|
|
1171
|
+
"hasDynamicHelp": false,
|
|
1172
|
+
"hiddenAliases": [],
|
|
1173
|
+
"id": "addons:rename",
|
|
1174
|
+
"pluginAlias": "heroku",
|
|
1175
|
+
"pluginName": "heroku",
|
|
1176
|
+
"pluginType": "core",
|
|
1177
|
+
"strict": true,
|
|
1178
|
+
"topic": "addons",
|
|
1179
|
+
"isESM": false,
|
|
1180
|
+
"relativePath": [
|
|
1181
|
+
"lib",
|
|
1182
|
+
"commands",
|
|
1183
|
+
"addons",
|
|
1184
|
+
"rename.js"
|
|
1185
|
+
]
|
|
1186
|
+
},
|
|
1187
|
+
"addons:services": {
|
|
1188
|
+
"aliases": [],
|
|
1189
|
+
"args": {},
|
|
1190
|
+
"description": "list all available add-on services",
|
|
1191
|
+
"flags": {
|
|
1192
|
+
"json": {
|
|
1193
|
+
"description": "output in json format",
|
|
1194
|
+
"name": "json",
|
|
1195
|
+
"allowNo": false,
|
|
1196
|
+
"type": "boolean"
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"hasDynamicHelp": false,
|
|
1200
|
+
"hiddenAliases": [],
|
|
1201
|
+
"id": "addons:services",
|
|
1202
|
+
"pluginAlias": "heroku",
|
|
1203
|
+
"pluginName": "heroku",
|
|
1204
|
+
"pluginType": "core",
|
|
1205
|
+
"strict": true,
|
|
1206
|
+
"topic": "addons",
|
|
1207
|
+
"isESM": false,
|
|
1208
|
+
"relativePath": [
|
|
1209
|
+
"lib",
|
|
1210
|
+
"commands",
|
|
1211
|
+
"addons",
|
|
1212
|
+
"services.js"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
"addons:upgrade": {
|
|
1216
|
+
"aliases": [
|
|
1217
|
+
"addons:downgrade"
|
|
1218
|
+
],
|
|
1219
|
+
"args": {
|
|
1220
|
+
"addon": {
|
|
1221
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1222
|
+
"name": "addon",
|
|
1223
|
+
"required": true
|
|
1224
|
+
},
|
|
1225
|
+
"plan": {
|
|
1226
|
+
"description": "unique identifier or name of the plan",
|
|
1227
|
+
"name": "plan"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"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 ",
|
|
1124
1231
|
"examples": [
|
|
1125
|
-
"$ heroku
|
|
1232
|
+
"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"
|
|
1126
1233
|
],
|
|
1127
1234
|
"flags": {
|
|
1128
1235
|
"app": {
|
|
1129
1236
|
"char": "a",
|
|
1130
1237
|
"description": "app to run command against",
|
|
1131
1238
|
"name": "app",
|
|
1132
|
-
"required": true,
|
|
1133
1239
|
"hasDynamicHelp": false,
|
|
1134
1240
|
"multiple": false,
|
|
1135
1241
|
"type": "option"
|
|
@@ -1144,52 +1250,37 @@
|
|
|
1144
1250
|
}
|
|
1145
1251
|
},
|
|
1146
1252
|
"hasDynamicHelp": false,
|
|
1147
|
-
"hiddenAliases": [
|
|
1148
|
-
|
|
1149
|
-
],
|
|
1150
|
-
"id": "apps:rename",
|
|
1253
|
+
"hiddenAliases": [],
|
|
1254
|
+
"id": "addons:upgrade",
|
|
1151
1255
|
"pluginAlias": "heroku",
|
|
1152
1256
|
"pluginName": "heroku",
|
|
1153
1257
|
"pluginType": "core",
|
|
1154
1258
|
"strict": true,
|
|
1155
|
-
"
|
|
1156
|
-
"topic": "apps",
|
|
1259
|
+
"topic": "addons",
|
|
1157
1260
|
"isESM": false,
|
|
1158
1261
|
"relativePath": [
|
|
1159
1262
|
"lib",
|
|
1160
1263
|
"commands",
|
|
1161
|
-
"
|
|
1162
|
-
"
|
|
1264
|
+
"addons",
|
|
1265
|
+
"upgrade.js"
|
|
1163
1266
|
]
|
|
1164
1267
|
},
|
|
1165
|
-
"
|
|
1268
|
+
"addons:wait": {
|
|
1166
1269
|
"aliases": [],
|
|
1167
1270
|
"args": {
|
|
1168
|
-
"
|
|
1169
|
-
"description": "
|
|
1170
|
-
"name": "
|
|
1171
|
-
"required": true
|
|
1271
|
+
"addon": {
|
|
1272
|
+
"description": "unique identifier or globally unique name of the add-on",
|
|
1273
|
+
"name": "addon"
|
|
1172
1274
|
}
|
|
1173
1275
|
},
|
|
1174
|
-
"description": "
|
|
1175
|
-
"examples": [
|
|
1176
|
-
"$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
|
|
1177
|
-
],
|
|
1276
|
+
"description": "show provisioning status of the add-ons on the app",
|
|
1178
1277
|
"flags": {
|
|
1179
|
-
"
|
|
1180
|
-
"
|
|
1181
|
-
"
|
|
1182
|
-
"
|
|
1183
|
-
"
|
|
1184
|
-
"
|
|
1185
|
-
"type": "boolean"
|
|
1186
|
-
},
|
|
1187
|
-
"bulk": {
|
|
1188
|
-
"description": "transfer applications in bulk",
|
|
1189
|
-
"name": "bulk",
|
|
1190
|
-
"required": false,
|
|
1191
|
-
"allowNo": false,
|
|
1192
|
-
"type": "boolean"
|
|
1278
|
+
"wait-interval": {
|
|
1279
|
+
"description": "how frequently to poll in seconds",
|
|
1280
|
+
"name": "wait-interval",
|
|
1281
|
+
"hasDynamicHelp": false,
|
|
1282
|
+
"multiple": false,
|
|
1283
|
+
"type": "option"
|
|
1193
1284
|
},
|
|
1194
1285
|
"app": {
|
|
1195
1286
|
"char": "a",
|
|
@@ -1206,110 +1297,179 @@
|
|
|
1206
1297
|
"hasDynamicHelp": false,
|
|
1207
1298
|
"multiple": false,
|
|
1208
1299
|
"type": "option"
|
|
1209
|
-
},
|
|
1210
|
-
"confirm": {
|
|
1211
|
-
"char": "c",
|
|
1212
|
-
"hidden": true,
|
|
1213
|
-
"name": "confirm",
|
|
1214
|
-
"hasDynamicHelp": false,
|
|
1215
|
-
"multiple": false,
|
|
1216
|
-
"type": "option"
|
|
1217
1300
|
}
|
|
1218
1301
|
},
|
|
1219
1302
|
"hasDynamicHelp": false,
|
|
1220
1303
|
"hiddenAliases": [],
|
|
1221
|
-
"id": "
|
|
1304
|
+
"id": "addons:wait",
|
|
1222
1305
|
"pluginAlias": "heroku",
|
|
1223
1306
|
"pluginName": "heroku",
|
|
1224
1307
|
"pluginType": "core",
|
|
1225
1308
|
"strict": true,
|
|
1226
|
-
"topic": "
|
|
1309
|
+
"topic": "addons",
|
|
1227
1310
|
"isESM": false,
|
|
1228
1311
|
"relativePath": [
|
|
1229
1312
|
"lib",
|
|
1230
1313
|
"commands",
|
|
1231
|
-
"
|
|
1232
|
-
"
|
|
1314
|
+
"addons",
|
|
1315
|
+
"wait.js"
|
|
1233
1316
|
]
|
|
1234
1317
|
},
|
|
1235
|
-
"apps:
|
|
1236
|
-
"aliases": [
|
|
1237
|
-
|
|
1318
|
+
"apps:create": {
|
|
1319
|
+
"aliases": [],
|
|
1320
|
+
"args": {
|
|
1321
|
+
"app": {
|
|
1322
|
+
"description": "name of app to create",
|
|
1323
|
+
"name": "app",
|
|
1324
|
+
"required": false
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"description": "creates a new app",
|
|
1328
|
+
"examples": [
|
|
1329
|
+
"$ 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"
|
|
1238
1330
|
],
|
|
1239
|
-
"args": {},
|
|
1240
|
-
"description": "unlock an app so any team member can join",
|
|
1241
1331
|
"flags": {
|
|
1242
1332
|
"app": {
|
|
1243
|
-
"
|
|
1244
|
-
"description": "app to run command against",
|
|
1333
|
+
"hidden": true,
|
|
1245
1334
|
"name": "app",
|
|
1246
|
-
"required": true,
|
|
1247
1335
|
"hasDynamicHelp": false,
|
|
1248
1336
|
"multiple": false,
|
|
1249
1337
|
"type": "option"
|
|
1250
1338
|
},
|
|
1339
|
+
"addons": {
|
|
1340
|
+
"description": "comma-delimited list of addons to install",
|
|
1341
|
+
"name": "addons",
|
|
1342
|
+
"hasDynamicHelp": false,
|
|
1343
|
+
"multiple": false,
|
|
1344
|
+
"type": "option"
|
|
1345
|
+
},
|
|
1346
|
+
"buildpack": {
|
|
1347
|
+
"char": "b",
|
|
1348
|
+
"description": "buildpack url to use for this app",
|
|
1349
|
+
"name": "buildpack",
|
|
1350
|
+
"hasDynamicHelp": false,
|
|
1351
|
+
"multiple": false,
|
|
1352
|
+
"type": "option"
|
|
1353
|
+
},
|
|
1354
|
+
"manifest": {
|
|
1355
|
+
"char": "m",
|
|
1356
|
+
"description": "use heroku.yml settings for this app",
|
|
1357
|
+
"hidden": true,
|
|
1358
|
+
"name": "manifest",
|
|
1359
|
+
"allowNo": false,
|
|
1360
|
+
"type": "boolean"
|
|
1361
|
+
},
|
|
1362
|
+
"no-remote": {
|
|
1363
|
+
"char": "n",
|
|
1364
|
+
"description": "do not create a git remote",
|
|
1365
|
+
"name": "no-remote",
|
|
1366
|
+
"allowNo": false,
|
|
1367
|
+
"type": "boolean"
|
|
1368
|
+
},
|
|
1251
1369
|
"remote": {
|
|
1252
1370
|
"char": "r",
|
|
1253
|
-
"description": "git remote
|
|
1371
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
1254
1372
|
"name": "remote",
|
|
1373
|
+
"default": "heroku",
|
|
1374
|
+
"hasDynamicHelp": false,
|
|
1375
|
+
"multiple": false,
|
|
1376
|
+
"type": "option"
|
|
1377
|
+
},
|
|
1378
|
+
"stack": {
|
|
1379
|
+
"char": "s",
|
|
1380
|
+
"description": "the stack to create the app on",
|
|
1381
|
+
"name": "stack",
|
|
1382
|
+
"hasDynamicHelp": false,
|
|
1383
|
+
"multiple": false,
|
|
1384
|
+
"type": "option"
|
|
1385
|
+
},
|
|
1386
|
+
"space": {
|
|
1387
|
+
"description": "the private space to create the app in",
|
|
1388
|
+
"name": "space",
|
|
1389
|
+
"hasDynamicHelp": false,
|
|
1390
|
+
"multiple": false,
|
|
1391
|
+
"type": "option"
|
|
1392
|
+
},
|
|
1393
|
+
"region": {
|
|
1394
|
+
"description": "specify region for the app to run in",
|
|
1395
|
+
"name": "region",
|
|
1396
|
+
"hasDynamicHelp": false,
|
|
1397
|
+
"multiple": false,
|
|
1398
|
+
"type": "option"
|
|
1399
|
+
},
|
|
1400
|
+
"internal-routing": {
|
|
1401
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
1402
|
+
"hidden": true,
|
|
1403
|
+
"name": "internal-routing",
|
|
1404
|
+
"allowNo": false,
|
|
1405
|
+
"type": "boolean"
|
|
1406
|
+
},
|
|
1407
|
+
"features": {
|
|
1408
|
+
"hidden": true,
|
|
1409
|
+
"name": "features",
|
|
1410
|
+
"hasDynamicHelp": false,
|
|
1411
|
+
"multiple": false,
|
|
1412
|
+
"type": "option"
|
|
1413
|
+
},
|
|
1414
|
+
"kernel": {
|
|
1415
|
+
"hidden": true,
|
|
1416
|
+
"name": "kernel",
|
|
1417
|
+
"hasDynamicHelp": false,
|
|
1418
|
+
"multiple": false,
|
|
1419
|
+
"type": "option"
|
|
1420
|
+
},
|
|
1421
|
+
"locked": {
|
|
1422
|
+
"hidden": true,
|
|
1423
|
+
"name": "locked",
|
|
1424
|
+
"allowNo": false,
|
|
1425
|
+
"type": "boolean"
|
|
1426
|
+
},
|
|
1427
|
+
"json": {
|
|
1428
|
+
"description": "output in json format",
|
|
1429
|
+
"name": "json",
|
|
1430
|
+
"allowNo": false,
|
|
1431
|
+
"type": "boolean"
|
|
1432
|
+
},
|
|
1433
|
+
"team": {
|
|
1434
|
+
"char": "t",
|
|
1435
|
+
"description": "team to use",
|
|
1436
|
+
"name": "team",
|
|
1255
1437
|
"hasDynamicHelp": false,
|
|
1256
1438
|
"multiple": false,
|
|
1257
1439
|
"type": "option"
|
|
1258
1440
|
}
|
|
1259
1441
|
},
|
|
1260
1442
|
"hasDynamicHelp": false,
|
|
1261
|
-
"hiddenAliases": [
|
|
1262
|
-
|
|
1443
|
+
"hiddenAliases": [
|
|
1444
|
+
"create"
|
|
1445
|
+
],
|
|
1446
|
+
"id": "apps:create",
|
|
1263
1447
|
"pluginAlias": "heroku",
|
|
1264
1448
|
"pluginName": "heroku",
|
|
1265
1449
|
"pluginType": "core",
|
|
1266
1450
|
"strict": true,
|
|
1267
|
-
"topic": "apps",
|
|
1268
1451
|
"isESM": false,
|
|
1269
1452
|
"relativePath": [
|
|
1270
1453
|
"lib",
|
|
1271
1454
|
"commands",
|
|
1272
1455
|
"apps",
|
|
1273
|
-
"
|
|
1456
|
+
"create.js"
|
|
1274
1457
|
]
|
|
1275
1458
|
},
|
|
1276
|
-
"
|
|
1459
|
+
"apps:destroy": {
|
|
1277
1460
|
"aliases": [],
|
|
1278
1461
|
"args": {
|
|
1279
|
-
"
|
|
1280
|
-
"
|
|
1281
|
-
"name": "
|
|
1282
|
-
"required": true
|
|
1462
|
+
"app": {
|
|
1463
|
+
"hidden": true,
|
|
1464
|
+
"name": "app"
|
|
1283
1465
|
}
|
|
1284
1466
|
},
|
|
1285
|
-
"description": "
|
|
1467
|
+
"description": "permanently destroy an app",
|
|
1286
1468
|
"flags": {
|
|
1287
|
-
"as": {
|
|
1288
|
-
"description": "name for add-on attachment",
|
|
1289
|
-
"name": "as",
|
|
1290
|
-
"hasDynamicHelp": false,
|
|
1291
|
-
"multiple": false,
|
|
1292
|
-
"type": "option"
|
|
1293
|
-
},
|
|
1294
|
-
"credential": {
|
|
1295
|
-
"description": "credential name for scoped access to Heroku Postgres",
|
|
1296
|
-
"name": "credential",
|
|
1297
|
-
"hasDynamicHelp": false,
|
|
1298
|
-
"multiple": false,
|
|
1299
|
-
"type": "option"
|
|
1300
|
-
},
|
|
1301
|
-
"confirm": {
|
|
1302
|
-
"description": "overwrite existing add-on attachment with same name",
|
|
1303
|
-
"name": "confirm",
|
|
1304
|
-
"hasDynamicHelp": false,
|
|
1305
|
-
"multiple": false,
|
|
1306
|
-
"type": "option"
|
|
1307
|
-
},
|
|
1308
1469
|
"app": {
|
|
1309
1470
|
"char": "a",
|
|
1310
1471
|
"description": "app to run command against",
|
|
1311
1472
|
"name": "app",
|
|
1312
|
-
"required": true,
|
|
1313
1473
|
"hasDynamicHelp": false,
|
|
1314
1474
|
"multiple": false,
|
|
1315
1475
|
"type": "option"
|
|
@@ -1321,63 +1481,39 @@
|
|
|
1321
1481
|
"hasDynamicHelp": false,
|
|
1322
1482
|
"multiple": false,
|
|
1323
1483
|
"type": "option"
|
|
1484
|
+
},
|
|
1485
|
+
"confirm": {
|
|
1486
|
+
"char": "c",
|
|
1487
|
+
"name": "confirm",
|
|
1488
|
+
"hasDynamicHelp": false,
|
|
1489
|
+
"multiple": false,
|
|
1490
|
+
"type": "option"
|
|
1324
1491
|
}
|
|
1325
1492
|
},
|
|
1326
1493
|
"hasDynamicHelp": false,
|
|
1327
|
-
"hiddenAliases": [
|
|
1328
|
-
|
|
1494
|
+
"hiddenAliases": [
|
|
1495
|
+
"destroy",
|
|
1496
|
+
"apps:delete"
|
|
1497
|
+
],
|
|
1498
|
+
"id": "apps:destroy",
|
|
1329
1499
|
"pluginAlias": "heroku",
|
|
1330
1500
|
"pluginName": "heroku",
|
|
1331
1501
|
"pluginType": "core",
|
|
1332
1502
|
"strict": true,
|
|
1333
|
-
"
|
|
1503
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
1334
1504
|
"isESM": false,
|
|
1335
1505
|
"relativePath": [
|
|
1336
1506
|
"lib",
|
|
1337
1507
|
"commands",
|
|
1338
|
-
"
|
|
1339
|
-
"
|
|
1508
|
+
"apps",
|
|
1509
|
+
"destroy.js"
|
|
1340
1510
|
]
|
|
1341
1511
|
},
|
|
1342
|
-
"
|
|
1343
|
-
"aliases": [],
|
|
1344
|
-
"args": {
|
|
1345
|
-
|
|
1346
|
-
"description": "unique identifier or unique name of the add-on service plan",
|
|
1347
|
-
"name": "service:plan",
|
|
1348
|
-
"required": true
|
|
1349
|
-
}
|
|
1350
|
-
},
|
|
1351
|
-
"description": "Create a new add-on resource.\n\nIn order to add additional config items, please place them at the end of the command after a double-dash (--).\n",
|
|
1352
|
-
"examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
1512
|
+
"apps:errors": {
|
|
1513
|
+
"aliases": [],
|
|
1514
|
+
"args": {},
|
|
1515
|
+
"description": "view app errors",
|
|
1353
1516
|
"flags": {
|
|
1354
|
-
"name": {
|
|
1355
|
-
"description": "name for the add-on resource",
|
|
1356
|
-
"name": "name",
|
|
1357
|
-
"hasDynamicHelp": false,
|
|
1358
|
-
"multiple": false,
|
|
1359
|
-
"type": "option"
|
|
1360
|
-
},
|
|
1361
|
-
"as": {
|
|
1362
|
-
"description": "name for the initial add-on attachment",
|
|
1363
|
-
"name": "as",
|
|
1364
|
-
"hasDynamicHelp": false,
|
|
1365
|
-
"multiple": false,
|
|
1366
|
-
"type": "option"
|
|
1367
|
-
},
|
|
1368
|
-
"confirm": {
|
|
1369
|
-
"description": "overwrite existing config vars or existing add-on attachments",
|
|
1370
|
-
"name": "confirm",
|
|
1371
|
-
"hasDynamicHelp": false,
|
|
1372
|
-
"multiple": false,
|
|
1373
|
-
"type": "option"
|
|
1374
|
-
},
|
|
1375
|
-
"wait": {
|
|
1376
|
-
"description": "watch add-on creation status and exit when complete",
|
|
1377
|
-
"name": "wait",
|
|
1378
|
-
"allowNo": false,
|
|
1379
|
-
"type": "boolean"
|
|
1380
|
-
},
|
|
1381
1517
|
"app": {
|
|
1382
1518
|
"char": "a",
|
|
1383
1519
|
"description": "app to run command against",
|
|
@@ -1394,73 +1530,98 @@
|
|
|
1394
1530
|
"hasDynamicHelp": false,
|
|
1395
1531
|
"multiple": false,
|
|
1396
1532
|
"type": "option"
|
|
1533
|
+
},
|
|
1534
|
+
"json": {
|
|
1535
|
+
"description": "output in json format",
|
|
1536
|
+
"name": "json",
|
|
1537
|
+
"allowNo": false,
|
|
1538
|
+
"type": "boolean"
|
|
1539
|
+
},
|
|
1540
|
+
"hours": {
|
|
1541
|
+
"description": "number of hours to look back (default 24)",
|
|
1542
|
+
"name": "hours",
|
|
1543
|
+
"default": "24",
|
|
1544
|
+
"hasDynamicHelp": false,
|
|
1545
|
+
"multiple": false,
|
|
1546
|
+
"type": "option"
|
|
1547
|
+
},
|
|
1548
|
+
"router": {
|
|
1549
|
+
"description": "show only router errors",
|
|
1550
|
+
"name": "router",
|
|
1551
|
+
"allowNo": false,
|
|
1552
|
+
"type": "boolean"
|
|
1553
|
+
},
|
|
1554
|
+
"dyno": {
|
|
1555
|
+
"description": "show only dyno errors",
|
|
1556
|
+
"name": "dyno",
|
|
1557
|
+
"allowNo": false,
|
|
1558
|
+
"type": "boolean"
|
|
1397
1559
|
}
|
|
1398
1560
|
},
|
|
1399
1561
|
"hasDynamicHelp": false,
|
|
1400
|
-
"hiddenAliases": [
|
|
1401
|
-
|
|
1402
|
-
],
|
|
1403
|
-
"id": "addons:create",
|
|
1562
|
+
"hiddenAliases": [],
|
|
1563
|
+
"id": "apps:errors",
|
|
1404
1564
|
"pluginAlias": "heroku",
|
|
1405
1565
|
"pluginName": "heroku",
|
|
1406
1566
|
"pluginType": "core",
|
|
1407
|
-
"strict":
|
|
1408
|
-
"topic": "addons",
|
|
1409
|
-
"example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
|
|
1567
|
+
"strict": true,
|
|
1410
1568
|
"isESM": false,
|
|
1411
1569
|
"relativePath": [
|
|
1412
1570
|
"lib",
|
|
1413
1571
|
"commands",
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1572
|
+
"apps",
|
|
1573
|
+
"errors.js"
|
|
1416
1574
|
]
|
|
1417
1575
|
},
|
|
1418
|
-
"
|
|
1576
|
+
"apps": {
|
|
1419
1577
|
"aliases": [],
|
|
1420
|
-
"args": {
|
|
1421
|
-
|
|
1422
|
-
"description": "unique identifier or globally unique name of the add-on",
|
|
1423
|
-
"name": "addonName",
|
|
1424
|
-
"required": true
|
|
1425
|
-
}
|
|
1426
|
-
},
|
|
1427
|
-
"description": "permanently destroy an add-on resource",
|
|
1578
|
+
"args": {},
|
|
1579
|
+
"description": "list your apps",
|
|
1428
1580
|
"examples": [
|
|
1429
|
-
"
|
|
1581
|
+
"$ heroku apps"
|
|
1430
1582
|
],
|
|
1431
1583
|
"flags": {
|
|
1432
|
-
"
|
|
1433
|
-
"char": "
|
|
1434
|
-
"description": "
|
|
1435
|
-
"name": "
|
|
1584
|
+
"all": {
|
|
1585
|
+
"char": "A",
|
|
1586
|
+
"description": "include apps in all teams",
|
|
1587
|
+
"name": "all",
|
|
1436
1588
|
"allowNo": false,
|
|
1437
1589
|
"type": "boolean"
|
|
1438
1590
|
},
|
|
1439
|
-
"
|
|
1440
|
-
"char": "
|
|
1441
|
-
"
|
|
1591
|
+
"json": {
|
|
1592
|
+
"char": "j",
|
|
1593
|
+
"description": "output in json format",
|
|
1594
|
+
"name": "json",
|
|
1595
|
+
"allowNo": false,
|
|
1596
|
+
"type": "boolean"
|
|
1597
|
+
},
|
|
1598
|
+
"space": {
|
|
1599
|
+
"char": "s",
|
|
1600
|
+
"description": "filter by space",
|
|
1601
|
+
"name": "space",
|
|
1442
1602
|
"hasDynamicHelp": false,
|
|
1443
1603
|
"multiple": false,
|
|
1444
1604
|
"type": "option"
|
|
1445
1605
|
},
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1448
|
-
"
|
|
1606
|
+
"personal": {
|
|
1607
|
+
"char": "p",
|
|
1608
|
+
"description": "list apps in personal account when a default team is set",
|
|
1609
|
+
"name": "personal",
|
|
1449
1610
|
"allowNo": false,
|
|
1450
1611
|
"type": "boolean"
|
|
1451
1612
|
},
|
|
1452
|
-
"
|
|
1453
|
-
"char": "
|
|
1454
|
-
"description": "
|
|
1455
|
-
"
|
|
1456
|
-
"
|
|
1457
|
-
"
|
|
1458
|
-
"type": "
|
|
1613
|
+
"internal-routing": {
|
|
1614
|
+
"char": "i",
|
|
1615
|
+
"description": "filter to Internal Web Apps",
|
|
1616
|
+
"hidden": true,
|
|
1617
|
+
"name": "internal-routing",
|
|
1618
|
+
"allowNo": false,
|
|
1619
|
+
"type": "boolean"
|
|
1459
1620
|
},
|
|
1460
|
-
"
|
|
1461
|
-
"char": "
|
|
1462
|
-
"description": "
|
|
1463
|
-
"name": "
|
|
1621
|
+
"team": {
|
|
1622
|
+
"char": "t",
|
|
1623
|
+
"description": "team to use",
|
|
1624
|
+
"name": "team",
|
|
1464
1625
|
"hasDynamicHelp": false,
|
|
1465
1626
|
"multiple": false,
|
|
1466
1627
|
"type": "option"
|
|
@@ -1468,38 +1629,41 @@
|
|
|
1468
1629
|
},
|
|
1469
1630
|
"hasDynamicHelp": false,
|
|
1470
1631
|
"hiddenAliases": [
|
|
1471
|
-
"
|
|
1632
|
+
"list",
|
|
1633
|
+
"apps:list"
|
|
1472
1634
|
],
|
|
1473
|
-
"id": "
|
|
1635
|
+
"id": "apps",
|
|
1474
1636
|
"pluginAlias": "heroku",
|
|
1475
1637
|
"pluginName": "heroku",
|
|
1476
1638
|
"pluginType": "core",
|
|
1477
|
-
"strict":
|
|
1478
|
-
"topic": "
|
|
1639
|
+
"strict": true,
|
|
1640
|
+
"topic": "apps",
|
|
1479
1641
|
"isESM": false,
|
|
1480
1642
|
"relativePath": [
|
|
1481
1643
|
"lib",
|
|
1482
1644
|
"commands",
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1645
|
+
"apps",
|
|
1646
|
+
"index.js"
|
|
1485
1647
|
]
|
|
1486
1648
|
},
|
|
1487
|
-
"
|
|
1649
|
+
"apps:info": {
|
|
1488
1650
|
"aliases": [],
|
|
1489
1651
|
"args": {
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1492
|
-
"name": "
|
|
1493
|
-
"required": true
|
|
1652
|
+
"app": {
|
|
1653
|
+
"hidden": true,
|
|
1654
|
+
"name": "app"
|
|
1494
1655
|
}
|
|
1495
1656
|
},
|
|
1496
|
-
"description": "
|
|
1657
|
+
"description": "show detailed app information",
|
|
1658
|
+
"examples": [
|
|
1659
|
+
"$ heroku apps:info",
|
|
1660
|
+
"$ heroku apps:info --shell"
|
|
1661
|
+
],
|
|
1497
1662
|
"flags": {
|
|
1498
1663
|
"app": {
|
|
1499
1664
|
"char": "a",
|
|
1500
1665
|
"description": "app to run command against",
|
|
1501
1666
|
"name": "app",
|
|
1502
|
-
"required": true,
|
|
1503
1667
|
"hasDynamicHelp": false,
|
|
1504
1668
|
"multiple": false,
|
|
1505
1669
|
"type": "option"
|
|
@@ -1511,45 +1675,60 @@
|
|
|
1511
1675
|
"hasDynamicHelp": false,
|
|
1512
1676
|
"multiple": false,
|
|
1513
1677
|
"type": "option"
|
|
1678
|
+
},
|
|
1679
|
+
"shell": {
|
|
1680
|
+
"char": "s",
|
|
1681
|
+
"description": "output more shell friendly key/value pairs",
|
|
1682
|
+
"name": "shell",
|
|
1683
|
+
"allowNo": false,
|
|
1684
|
+
"type": "boolean"
|
|
1685
|
+
},
|
|
1686
|
+
"extended": {
|
|
1687
|
+
"char": "x",
|
|
1688
|
+
"hidden": true,
|
|
1689
|
+
"name": "extended",
|
|
1690
|
+
"allowNo": false,
|
|
1691
|
+
"type": "boolean"
|
|
1692
|
+
},
|
|
1693
|
+
"json": {
|
|
1694
|
+
"char": "j",
|
|
1695
|
+
"description": "output in json format",
|
|
1696
|
+
"name": "json",
|
|
1697
|
+
"allowNo": false,
|
|
1698
|
+
"type": "boolean"
|
|
1514
1699
|
}
|
|
1515
1700
|
},
|
|
1516
1701
|
"hasDynamicHelp": false,
|
|
1517
|
-
"hiddenAliases": [
|
|
1518
|
-
|
|
1702
|
+
"hiddenAliases": [
|
|
1703
|
+
"info"
|
|
1704
|
+
],
|
|
1705
|
+
"id": "apps:info",
|
|
1519
1706
|
"pluginAlias": "heroku",
|
|
1520
1707
|
"pluginName": "heroku",
|
|
1521
1708
|
"pluginType": "core",
|
|
1522
1709
|
"strict": true,
|
|
1523
|
-
"topic": "
|
|
1710
|
+
"topic": "apps",
|
|
1711
|
+
"help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
|
|
1524
1712
|
"isESM": false,
|
|
1525
1713
|
"relativePath": [
|
|
1526
1714
|
"lib",
|
|
1527
1715
|
"commands",
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1716
|
+
"apps",
|
|
1717
|
+
"info.js"
|
|
1530
1718
|
]
|
|
1531
1719
|
},
|
|
1532
|
-
"
|
|
1533
|
-
"aliases": [
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
"required": true
|
|
1539
|
-
}
|
|
1540
|
-
},
|
|
1541
|
-
"description": "open an add-on's Dev Center documentation in your browser",
|
|
1720
|
+
"apps:join": {
|
|
1721
|
+
"aliases": [
|
|
1722
|
+
"join"
|
|
1723
|
+
],
|
|
1724
|
+
"args": {},
|
|
1725
|
+
"description": "add yourself to a team app",
|
|
1542
1726
|
"flags": {
|
|
1543
|
-
"show-url": {
|
|
1544
|
-
"description": "show URL, do not open browser",
|
|
1545
|
-
"name": "show-url",
|
|
1546
|
-
"allowNo": false,
|
|
1547
|
-
"type": "boolean"
|
|
1548
|
-
},
|
|
1549
1727
|
"app": {
|
|
1550
1728
|
"char": "a",
|
|
1551
1729
|
"description": "app to run command against",
|
|
1552
1730
|
"name": "app",
|
|
1731
|
+
"required": true,
|
|
1553
1732
|
"hasDynamicHelp": false,
|
|
1554
1733
|
"multiple": false,
|
|
1555
1734
|
"type": "option"
|
|
@@ -1565,46 +1744,33 @@
|
|
|
1565
1744
|
},
|
|
1566
1745
|
"hasDynamicHelp": false,
|
|
1567
1746
|
"hiddenAliases": [],
|
|
1568
|
-
"id": "
|
|
1747
|
+
"id": "apps:join",
|
|
1569
1748
|
"pluginAlias": "heroku",
|
|
1570
1749
|
"pluginName": "heroku",
|
|
1571
1750
|
"pluginType": "core",
|
|
1572
1751
|
"strict": true,
|
|
1573
|
-
"topic": "
|
|
1752
|
+
"topic": "apps",
|
|
1574
1753
|
"isESM": false,
|
|
1575
1754
|
"relativePath": [
|
|
1576
1755
|
"lib",
|
|
1577
1756
|
"commands",
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1757
|
+
"apps",
|
|
1758
|
+
"join.js"
|
|
1580
1759
|
]
|
|
1581
1760
|
},
|
|
1582
|
-
"
|
|
1583
|
-
"aliases": [
|
|
1584
|
-
|
|
1585
|
-
"description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
|
|
1586
|
-
"examples": [
|
|
1587
|
-
"$ heroku addons --all",
|
|
1588
|
-
"$ heroku addons --app acme-inc-www"
|
|
1761
|
+
"apps:leave": {
|
|
1762
|
+
"aliases": [
|
|
1763
|
+
"leave"
|
|
1589
1764
|
],
|
|
1590
|
-
"
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
"name": "all",
|
|
1595
|
-
"allowNo": false,
|
|
1596
|
-
"type": "boolean"
|
|
1597
|
-
},
|
|
1598
|
-
"json": {
|
|
1599
|
-
"description": "return add-ons in json format",
|
|
1600
|
-
"name": "json",
|
|
1601
|
-
"allowNo": false,
|
|
1602
|
-
"type": "boolean"
|
|
1603
|
-
},
|
|
1765
|
+
"args": {},
|
|
1766
|
+
"description": "remove yourself from a team app",
|
|
1767
|
+
"examples": "heroku apps:leave -a APP",
|
|
1768
|
+
"flags": {
|
|
1604
1769
|
"app": {
|
|
1605
1770
|
"char": "a",
|
|
1606
1771
|
"description": "app to run command against",
|
|
1607
1772
|
"name": "app",
|
|
1773
|
+
"required": true,
|
|
1608
1774
|
"hasDynamicHelp": false,
|
|
1609
1775
|
"multiple": false,
|
|
1610
1776
|
"type": "option"
|
|
@@ -1620,36 +1786,33 @@
|
|
|
1620
1786
|
},
|
|
1621
1787
|
"hasDynamicHelp": false,
|
|
1622
1788
|
"hiddenAliases": [],
|
|
1623
|
-
"id": "
|
|
1789
|
+
"id": "apps:leave",
|
|
1624
1790
|
"pluginAlias": "heroku",
|
|
1625
1791
|
"pluginName": "heroku",
|
|
1626
1792
|
"pluginType": "core",
|
|
1627
1793
|
"strict": true,
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1794
|
+
"topic": "apps",
|
|
1795
|
+
"example": "heroku apps:leave -a APP",
|
|
1630
1796
|
"isESM": false,
|
|
1631
1797
|
"relativePath": [
|
|
1632
1798
|
"lib",
|
|
1633
1799
|
"commands",
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1800
|
+
"apps",
|
|
1801
|
+
"leave.js"
|
|
1636
1802
|
]
|
|
1637
1803
|
},
|
|
1638
|
-
"
|
|
1639
|
-
"aliases": [
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
"required": true
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
"description": "show detailed add-on resource and attachment information",
|
|
1804
|
+
"apps:lock": {
|
|
1805
|
+
"aliases": [
|
|
1806
|
+
"lock"
|
|
1807
|
+
],
|
|
1808
|
+
"args": {},
|
|
1809
|
+
"description": "prevent team members from joining an app",
|
|
1648
1810
|
"flags": {
|
|
1649
1811
|
"app": {
|
|
1650
1812
|
"char": "a",
|
|
1651
1813
|
"description": "app to run command against",
|
|
1652
1814
|
"name": "app",
|
|
1815
|
+
"required": true,
|
|
1653
1816
|
"hasDynamicHelp": false,
|
|
1654
1817
|
"multiple": false,
|
|
1655
1818
|
"type": "option"
|
|
@@ -1665,42 +1828,40 @@
|
|
|
1665
1828
|
},
|
|
1666
1829
|
"hasDynamicHelp": false,
|
|
1667
1830
|
"hiddenAliases": [],
|
|
1668
|
-
"id": "
|
|
1831
|
+
"id": "apps:lock",
|
|
1669
1832
|
"pluginAlias": "heroku",
|
|
1670
1833
|
"pluginName": "heroku",
|
|
1671
1834
|
"pluginType": "core",
|
|
1672
1835
|
"strict": true,
|
|
1673
|
-
"
|
|
1674
|
-
"topic": "addons",
|
|
1836
|
+
"topic": "apps",
|
|
1675
1837
|
"isESM": false,
|
|
1676
1838
|
"relativePath": [
|
|
1677
1839
|
"lib",
|
|
1678
1840
|
"commands",
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1841
|
+
"apps",
|
|
1842
|
+
"lock.js"
|
|
1681
1843
|
]
|
|
1682
1844
|
},
|
|
1683
|
-
"
|
|
1845
|
+
"apps:open": {
|
|
1684
1846
|
"aliases": [],
|
|
1685
1847
|
"args": {
|
|
1686
|
-
"
|
|
1687
|
-
"description": "
|
|
1688
|
-
"name": "
|
|
1689
|
-
"required":
|
|
1848
|
+
"path": {
|
|
1849
|
+
"description": "base URL path of app",
|
|
1850
|
+
"name": "path",
|
|
1851
|
+
"required": false
|
|
1690
1852
|
}
|
|
1691
1853
|
},
|
|
1692
|
-
"description": "open
|
|
1854
|
+
"description": "open the app in a web browser",
|
|
1855
|
+
"examples": [
|
|
1856
|
+
"$ heroku open -a myapp",
|
|
1857
|
+
"$ heroku open -a myapp /foo"
|
|
1858
|
+
],
|
|
1693
1859
|
"flags": {
|
|
1694
|
-
"show-url": {
|
|
1695
|
-
"description": "show URL, do not open browser",
|
|
1696
|
-
"name": "show-url",
|
|
1697
|
-
"allowNo": false,
|
|
1698
|
-
"type": "boolean"
|
|
1699
|
-
},
|
|
1700
1860
|
"app": {
|
|
1701
1861
|
"char": "a",
|
|
1702
1862
|
"description": "app to run command against",
|
|
1703
1863
|
"name": "app",
|
|
1864
|
+
"required": true,
|
|
1704
1865
|
"hasDynamicHelp": false,
|
|
1705
1866
|
"multiple": false,
|
|
1706
1867
|
"type": "option"
|
|
@@ -1715,135 +1876,103 @@
|
|
|
1715
1876
|
}
|
|
1716
1877
|
},
|
|
1717
1878
|
"hasDynamicHelp": false,
|
|
1718
|
-
"hiddenAliases": [
|
|
1719
|
-
|
|
1879
|
+
"hiddenAliases": [
|
|
1880
|
+
"open"
|
|
1881
|
+
],
|
|
1882
|
+
"id": "apps:open",
|
|
1720
1883
|
"pluginAlias": "heroku",
|
|
1721
1884
|
"pluginName": "heroku",
|
|
1722
1885
|
"pluginType": "core",
|
|
1723
1886
|
"strict": true,
|
|
1724
|
-
"topic": "
|
|
1887
|
+
"topic": "apps",
|
|
1725
1888
|
"isESM": false,
|
|
1726
1889
|
"relativePath": [
|
|
1727
1890
|
"lib",
|
|
1728
1891
|
"commands",
|
|
1729
|
-
"
|
|
1892
|
+
"apps",
|
|
1730
1893
|
"open.js"
|
|
1731
1894
|
]
|
|
1732
1895
|
},
|
|
1733
|
-
"
|
|
1896
|
+
"apps:rename": {
|
|
1734
1897
|
"aliases": [],
|
|
1735
1898
|
"args": {
|
|
1736
|
-
"
|
|
1737
|
-
"description": "
|
|
1738
|
-
"name": "
|
|
1899
|
+
"newname": {
|
|
1900
|
+
"description": "new unique name of the app",
|
|
1901
|
+
"name": "newname",
|
|
1739
1902
|
"required": true
|
|
1740
1903
|
}
|
|
1741
1904
|
},
|
|
1742
|
-
"description": "
|
|
1905
|
+
"description": "rename an app",
|
|
1906
|
+
"examples": [
|
|
1907
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1908
|
+
],
|
|
1743
1909
|
"flags": {
|
|
1744
|
-
"
|
|
1745
|
-
"
|
|
1746
|
-
"
|
|
1747
|
-
"
|
|
1748
|
-
"
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
"hiddenAliases": [],
|
|
1753
|
-
"id": "addons:plans",
|
|
1754
|
-
"pluginAlias": "heroku",
|
|
1755
|
-
"pluginName": "heroku",
|
|
1756
|
-
"pluginType": "core",
|
|
1757
|
-
"strict": true,
|
|
1758
|
-
"topic": "addons",
|
|
1759
|
-
"isESM": false,
|
|
1760
|
-
"relativePath": [
|
|
1761
|
-
"lib",
|
|
1762
|
-
"commands",
|
|
1763
|
-
"addons",
|
|
1764
|
-
"plans.js"
|
|
1765
|
-
]
|
|
1766
|
-
},
|
|
1767
|
-
"addons:rename": {
|
|
1768
|
-
"aliases": [],
|
|
1769
|
-
"args": {
|
|
1770
|
-
"addon_name": {
|
|
1771
|
-
"description": "unique identifier or globally unique name of the add-on",
|
|
1772
|
-
"name": "addon_name",
|
|
1773
|
-
"required": true
|
|
1910
|
+
"app": {
|
|
1911
|
+
"char": "a",
|
|
1912
|
+
"description": "app to run command against",
|
|
1913
|
+
"name": "app",
|
|
1914
|
+
"required": true,
|
|
1915
|
+
"hasDynamicHelp": false,
|
|
1916
|
+
"multiple": false,
|
|
1917
|
+
"type": "option"
|
|
1774
1918
|
},
|
|
1775
|
-
"
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1919
|
+
"remote": {
|
|
1920
|
+
"char": "r",
|
|
1921
|
+
"description": "git remote of app to use",
|
|
1922
|
+
"name": "remote",
|
|
1923
|
+
"hasDynamicHelp": false,
|
|
1924
|
+
"multiple": false,
|
|
1925
|
+
"type": "option"
|
|
1779
1926
|
}
|
|
1780
1927
|
},
|
|
1781
|
-
"description": "rename an add-on",
|
|
1782
|
-
"flags": {},
|
|
1783
1928
|
"hasDynamicHelp": false,
|
|
1784
|
-
"hiddenAliases": [
|
|
1785
|
-
|
|
1929
|
+
"hiddenAliases": [
|
|
1930
|
+
"rename"
|
|
1931
|
+
],
|
|
1932
|
+
"id": "apps:rename",
|
|
1786
1933
|
"pluginAlias": "heroku",
|
|
1787
1934
|
"pluginName": "heroku",
|
|
1788
1935
|
"pluginType": "core",
|
|
1789
1936
|
"strict": true,
|
|
1790
|
-
"
|
|
1937
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1938
|
+
"topic": "apps",
|
|
1791
1939
|
"isESM": false,
|
|
1792
1940
|
"relativePath": [
|
|
1793
1941
|
"lib",
|
|
1794
1942
|
"commands",
|
|
1795
|
-
"
|
|
1943
|
+
"apps",
|
|
1796
1944
|
"rename.js"
|
|
1797
1945
|
]
|
|
1798
1946
|
},
|
|
1799
|
-
"
|
|
1947
|
+
"apps:transfer": {
|
|
1800
1948
|
"aliases": [],
|
|
1801
|
-
"args": {},
|
|
1802
|
-
"description": "list all available add-on services",
|
|
1803
|
-
"flags": {
|
|
1804
|
-
"json": {
|
|
1805
|
-
"description": "output in json format",
|
|
1806
|
-
"name": "json",
|
|
1807
|
-
"allowNo": false,
|
|
1808
|
-
"type": "boolean"
|
|
1809
|
-
}
|
|
1810
|
-
},
|
|
1811
|
-
"hasDynamicHelp": false,
|
|
1812
|
-
"hiddenAliases": [],
|
|
1813
|
-
"id": "addons:services",
|
|
1814
|
-
"pluginAlias": "heroku",
|
|
1815
|
-
"pluginName": "heroku",
|
|
1816
|
-
"pluginType": "core",
|
|
1817
|
-
"strict": true,
|
|
1818
|
-
"topic": "addons",
|
|
1819
|
-
"isESM": false,
|
|
1820
|
-
"relativePath": [
|
|
1821
|
-
"lib",
|
|
1822
|
-
"commands",
|
|
1823
|
-
"addons",
|
|
1824
|
-
"services.js"
|
|
1825
|
-
]
|
|
1826
|
-
},
|
|
1827
|
-
"addons:upgrade": {
|
|
1828
|
-
"aliases": [
|
|
1829
|
-
"addons:downgrade"
|
|
1830
|
-
],
|
|
1831
1949
|
"args": {
|
|
1832
|
-
"
|
|
1833
|
-
"description": "
|
|
1834
|
-
"name": "
|
|
1950
|
+
"recipient": {
|
|
1951
|
+
"description": "user or team to transfer applications to",
|
|
1952
|
+
"name": "recipient",
|
|
1835
1953
|
"required": true
|
|
1836
|
-
},
|
|
1837
|
-
"plan": {
|
|
1838
|
-
"description": "unique identifier or name of the plan",
|
|
1839
|
-
"name": "plan"
|
|
1840
1954
|
}
|
|
1841
1955
|
},
|
|
1842
|
-
"description": "
|
|
1956
|
+
"description": "transfer applications to another user or team",
|
|
1843
1957
|
"examples": [
|
|
1844
|
-
"
|
|
1958
|
+
"$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
|
|
1845
1959
|
],
|
|
1846
1960
|
"flags": {
|
|
1961
|
+
"locked": {
|
|
1962
|
+
"char": "l",
|
|
1963
|
+
"description": "lock the app upon transfer",
|
|
1964
|
+
"name": "locked",
|
|
1965
|
+
"required": false,
|
|
1966
|
+
"allowNo": false,
|
|
1967
|
+
"type": "boolean"
|
|
1968
|
+
},
|
|
1969
|
+
"bulk": {
|
|
1970
|
+
"description": "transfer applications in bulk",
|
|
1971
|
+
"name": "bulk",
|
|
1972
|
+
"required": false,
|
|
1973
|
+
"allowNo": false,
|
|
1974
|
+
"type": "boolean"
|
|
1975
|
+
},
|
|
1847
1976
|
"app": {
|
|
1848
1977
|
"char": "a",
|
|
1849
1978
|
"description": "app to run command against",
|
|
@@ -1859,45 +1988,44 @@
|
|
|
1859
1988
|
"hasDynamicHelp": false,
|
|
1860
1989
|
"multiple": false,
|
|
1861
1990
|
"type": "option"
|
|
1991
|
+
},
|
|
1992
|
+
"confirm": {
|
|
1993
|
+
"char": "c",
|
|
1994
|
+
"hidden": true,
|
|
1995
|
+
"name": "confirm",
|
|
1996
|
+
"hasDynamicHelp": false,
|
|
1997
|
+
"multiple": false,
|
|
1998
|
+
"type": "option"
|
|
1862
1999
|
}
|
|
1863
2000
|
},
|
|
1864
2001
|
"hasDynamicHelp": false,
|
|
1865
2002
|
"hiddenAliases": [],
|
|
1866
|
-
"id": "
|
|
2003
|
+
"id": "apps:transfer",
|
|
1867
2004
|
"pluginAlias": "heroku",
|
|
1868
2005
|
"pluginName": "heroku",
|
|
1869
2006
|
"pluginType": "core",
|
|
1870
2007
|
"strict": true,
|
|
1871
|
-
"topic": "
|
|
2008
|
+
"topic": "apps",
|
|
1872
2009
|
"isESM": false,
|
|
1873
2010
|
"relativePath": [
|
|
1874
2011
|
"lib",
|
|
1875
2012
|
"commands",
|
|
1876
|
-
"
|
|
1877
|
-
"
|
|
2013
|
+
"apps",
|
|
2014
|
+
"transfer.js"
|
|
1878
2015
|
]
|
|
1879
2016
|
},
|
|
1880
|
-
"
|
|
1881
|
-
"aliases": [
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
}
|
|
1887
|
-
},
|
|
1888
|
-
"description": "show provisioning status of the add-ons on the app",
|
|
2017
|
+
"apps:unlock": {
|
|
2018
|
+
"aliases": [
|
|
2019
|
+
"unlock"
|
|
2020
|
+
],
|
|
2021
|
+
"args": {},
|
|
2022
|
+
"description": "unlock an app so any team member can join",
|
|
1889
2023
|
"flags": {
|
|
1890
|
-
"wait-interval": {
|
|
1891
|
-
"description": "how frequently to poll in seconds",
|
|
1892
|
-
"name": "wait-interval",
|
|
1893
|
-
"hasDynamicHelp": false,
|
|
1894
|
-
"multiple": false,
|
|
1895
|
-
"type": "option"
|
|
1896
|
-
},
|
|
1897
2024
|
"app": {
|
|
1898
2025
|
"char": "a",
|
|
1899
2026
|
"description": "app to run command against",
|
|
1900
2027
|
"name": "app",
|
|
2028
|
+
"required": true,
|
|
1901
2029
|
"hasDynamicHelp": false,
|
|
1902
2030
|
"multiple": false,
|
|
1903
2031
|
"type": "option"
|
|
@@ -1913,18 +2041,18 @@
|
|
|
1913
2041
|
},
|
|
1914
2042
|
"hasDynamicHelp": false,
|
|
1915
2043
|
"hiddenAliases": [],
|
|
1916
|
-
"id": "
|
|
2044
|
+
"id": "apps:unlock",
|
|
1917
2045
|
"pluginAlias": "heroku",
|
|
1918
2046
|
"pluginName": "heroku",
|
|
1919
2047
|
"pluginType": "core",
|
|
1920
2048
|
"strict": true,
|
|
1921
|
-
"topic": "
|
|
2049
|
+
"topic": "apps",
|
|
1922
2050
|
"isESM": false,
|
|
1923
2051
|
"relativePath": [
|
|
1924
2052
|
"lib",
|
|
1925
2053
|
"commands",
|
|
1926
|
-
"
|
|
1927
|
-
"
|
|
2054
|
+
"apps",
|
|
2055
|
+
"unlock.js"
|
|
1928
2056
|
]
|
|
1929
2057
|
},
|
|
1930
2058
|
"auth:login": {
|
|
@@ -10275,15 +10403,19 @@
|
|
|
10275
10403
|
"usage:addons": {
|
|
10276
10404
|
"aliases": [],
|
|
10277
10405
|
"args": {},
|
|
10278
|
-
"description": "list usage
|
|
10406
|
+
"description": "list usage for metered add-ons attached to an app or apps within a team",
|
|
10279
10407
|
"flags": {
|
|
10280
10408
|
"app": {
|
|
10409
|
+
"char": "a",
|
|
10410
|
+
"description": "app to list metered add-ons usage for",
|
|
10281
10411
|
"name": "app",
|
|
10282
10412
|
"hasDynamicHelp": false,
|
|
10283
10413
|
"multiple": false,
|
|
10284
10414
|
"type": "option"
|
|
10285
10415
|
},
|
|
10286
10416
|
"team": {
|
|
10417
|
+
"char": "t",
|
|
10418
|
+
"description": "team to list metered add-ons usage for",
|
|
10287
10419
|
"name": "team",
|
|
10288
10420
|
"hasDynamicHelp": false,
|
|
10289
10421
|
"multiple": false,
|
|
@@ -14520,5 +14652,5 @@
|
|
|
14520
14652
|
]
|
|
14521
14653
|
}
|
|
14522
14654
|
},
|
|
14523
|
-
"version": "10.5.
|
|
14655
|
+
"version": "10.5.1-beta.0"
|
|
14524
14656
|
}
|