heroku 9.0.0-alpha.3 → 9.0.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.d.ts +1 -0
- package/lib/commands/addons/create.js +13 -1
- package/lib/commands/apps/info.js +7 -7
- package/lib/commands/ci/config/get.js +2 -2
- package/lib/commands/ci/config/index.d.ts +1 -0
- package/lib/commands/ci/config/index.js +3 -2
- package/lib/commands/ci/config/set.d.ts +1 -1
- package/lib/commands/ci/config/set.js +1 -1
- package/lib/commands/ci/config/unset.d.ts +0 -1
- package/lib/commands/ci/config/unset.js +2 -3
- package/lib/commands/container/pull.js +3 -0
- package/lib/commands/container/push.js +3 -1
- package/lib/commands/container/release.js +3 -1
- package/lib/commands/container/rm.js +3 -0
- package/lib/commands/container/run.js +3 -0
- package/lib/commands/spaces/transfer.js +2 -2
- package/lib/commands/spaces/trusted-ips/remove.d.ts +1 -1
- package/lib/commands/spaces/trusted-ips/remove.js +1 -1
- package/lib/commands/spaces/vpn/config.js +1 -1
- package/lib/commands/spaces/vpn/connect.js +5 -2
- package/lib/commands/spaces/vpn/destroy.js +4 -1
- package/lib/commands/spaces/vpn/info.js +1 -1
- package/lib/commands/spaces/vpn/update.js +5 -2
- package/lib/commands/spaces/vpn/wait.d.ts +4 -1
- package/lib/commands/spaces/vpn/wait.js +20 -3
- package/lib/lib/container/helpers.d.ts +8 -0
- package/lib/lib/container/helpers.js +26 -0
- package/lib/lib/git/git.js +3 -3
- package/oclif.manifest.json +699 -858
- package/package.json +6 -9
- package/lib/commands/spaces/outbound-rules/add.d.ts +0 -15
- package/lib/commands/spaces/outbound-rules/add.js +0 -81
- package/lib/commands/spaces/outbound-rules/index.d.ts +0 -15
- package/lib/commands/spaces/outbound-rules/index.js +0 -49
- package/lib/commands/spaces/outbound-rules/remove.d.ts +0 -17
- package/lib/commands/spaces/outbound-rules/remove.js +0 -53
package/oclif.manifest.json
CHANGED
|
@@ -488,121 +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",
|
|
565
|
-
"flags": {
|
|
566
|
-
"name": {
|
|
567
|
-
"description": "name for the add-on resource",
|
|
568
|
-
"name": "name",
|
|
550
|
+
},
|
|
551
|
+
"stack": {
|
|
552
|
+
"char": "s",
|
|
553
|
+
"description": "the stack to create the app on",
|
|
554
|
+
"name": "stack",
|
|
569
555
|
"hasDynamicHelp": false,
|
|
570
556
|
"multiple": false,
|
|
571
557
|
"type": "option"
|
|
572
558
|
},
|
|
573
|
-
"
|
|
574
|
-
"description": "
|
|
575
|
-
"name": "
|
|
559
|
+
"space": {
|
|
560
|
+
"description": "the private space to create the app in",
|
|
561
|
+
"name": "space",
|
|
576
562
|
"hasDynamicHelp": false,
|
|
577
563
|
"multiple": false,
|
|
578
564
|
"type": "option"
|
|
579
565
|
},
|
|
580
|
-
"
|
|
581
|
-
"description": "
|
|
582
|
-
"name": "
|
|
566
|
+
"region": {
|
|
567
|
+
"description": "specify region for the app to run in",
|
|
568
|
+
"name": "region",
|
|
583
569
|
"hasDynamicHelp": false,
|
|
584
570
|
"multiple": false,
|
|
585
571
|
"type": "option"
|
|
586
572
|
},
|
|
587
|
-
"
|
|
588
|
-
"description": "
|
|
589
|
-
"
|
|
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",
|
|
590
577
|
"allowNo": false,
|
|
591
578
|
"type": "boolean"
|
|
592
579
|
},
|
|
593
|
-
"
|
|
594
|
-
"
|
|
595
|
-
"
|
|
596
|
-
"name": "app",
|
|
597
|
-
"required": true,
|
|
580
|
+
"features": {
|
|
581
|
+
"hidden": true,
|
|
582
|
+
"name": "features",
|
|
598
583
|
"hasDynamicHelp": false,
|
|
599
584
|
"multiple": false,
|
|
600
585
|
"type": "option"
|
|
601
586
|
},
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
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",
|
|
606
610
|
"hasDynamicHelp": false,
|
|
607
611
|
"multiple": false,
|
|
608
612
|
"type": "option"
|
|
@@ -610,55 +614,31 @@
|
|
|
610
614
|
},
|
|
611
615
|
"hasDynamicHelp": false,
|
|
612
616
|
"hiddenAliases": [
|
|
613
|
-
"
|
|
617
|
+
"create"
|
|
614
618
|
],
|
|
615
|
-
"id": "
|
|
619
|
+
"id": "apps:create",
|
|
616
620
|
"pluginAlias": "heroku",
|
|
617
621
|
"pluginName": "heroku",
|
|
618
622
|
"pluginType": "core",
|
|
619
|
-
"strict":
|
|
620
|
-
"topic": "addons",
|
|
623
|
+
"strict": true,
|
|
621
624
|
"isESM": false,
|
|
622
625
|
"relativePath": [
|
|
623
626
|
"lib",
|
|
624
627
|
"commands",
|
|
625
|
-
"
|
|
628
|
+
"apps",
|
|
626
629
|
"create.js"
|
|
627
630
|
]
|
|
628
631
|
},
|
|
629
|
-
"
|
|
632
|
+
"apps:destroy": {
|
|
630
633
|
"aliases": [],
|
|
631
634
|
"args": {
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
+
"app": {
|
|
636
|
+
"hidden": true,
|
|
637
|
+
"name": "app"
|
|
635
638
|
}
|
|
636
639
|
},
|
|
637
|
-
"description": "permanently destroy an
|
|
638
|
-
"examples": [
|
|
639
|
-
"addons:destroy [ADDON]... [flags]"
|
|
640
|
-
],
|
|
640
|
+
"description": "permanently destroy an app",
|
|
641
641
|
"flags": {
|
|
642
|
-
"force": {
|
|
643
|
-
"char": "f",
|
|
644
|
-
"description": "allow destruction even if connected to other apps",
|
|
645
|
-
"name": "force",
|
|
646
|
-
"allowNo": false,
|
|
647
|
-
"type": "boolean"
|
|
648
|
-
},
|
|
649
|
-
"confirm": {
|
|
650
|
-
"char": "c",
|
|
651
|
-
"name": "confirm",
|
|
652
|
-
"hasDynamicHelp": false,
|
|
653
|
-
"multiple": false,
|
|
654
|
-
"type": "option"
|
|
655
|
-
},
|
|
656
|
-
"wait": {
|
|
657
|
-
"description": "watch add-on destruction status and exit when complete",
|
|
658
|
-
"name": "wait",
|
|
659
|
-
"allowNo": false,
|
|
660
|
-
"type": "boolean"
|
|
661
|
-
},
|
|
662
642
|
"app": {
|
|
663
643
|
"char": "a",
|
|
664
644
|
"description": "app to run command against",
|
|
@@ -674,35 +654,38 @@
|
|
|
674
654
|
"hasDynamicHelp": false,
|
|
675
655
|
"multiple": false,
|
|
676
656
|
"type": "option"
|
|
657
|
+
},
|
|
658
|
+
"confirm": {
|
|
659
|
+
"char": "c",
|
|
660
|
+
"name": "confirm",
|
|
661
|
+
"hasDynamicHelp": false,
|
|
662
|
+
"multiple": false,
|
|
663
|
+
"type": "option"
|
|
677
664
|
}
|
|
678
665
|
},
|
|
679
666
|
"hasDynamicHelp": false,
|
|
680
667
|
"hiddenAliases": [
|
|
681
|
-
"
|
|
668
|
+
"destroy",
|
|
669
|
+
"apps:delete"
|
|
682
670
|
],
|
|
683
|
-
"id": "
|
|
671
|
+
"id": "apps:destroy",
|
|
684
672
|
"pluginAlias": "heroku",
|
|
685
673
|
"pluginName": "heroku",
|
|
686
674
|
"pluginType": "core",
|
|
687
|
-
"strict":
|
|
688
|
-
"
|
|
675
|
+
"strict": true,
|
|
676
|
+
"help": "This will also destroy all add-ons on the app.",
|
|
689
677
|
"isESM": false,
|
|
690
678
|
"relativePath": [
|
|
691
679
|
"lib",
|
|
692
680
|
"commands",
|
|
693
|
-
"
|
|
681
|
+
"apps",
|
|
694
682
|
"destroy.js"
|
|
695
683
|
]
|
|
696
684
|
},
|
|
697
|
-
"
|
|
685
|
+
"apps:errors": {
|
|
698
686
|
"aliases": [],
|
|
699
|
-
"args": {
|
|
700
|
-
|
|
701
|
-
"name": "attachment_name",
|
|
702
|
-
"required": true
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
"description": "detach an existing add-on resource from an app",
|
|
687
|
+
"args": {},
|
|
688
|
+
"description": "view app errors",
|
|
706
689
|
"flags": {
|
|
707
690
|
"app": {
|
|
708
691
|
"char": "a",
|
|
@@ -720,99 +703,205 @@
|
|
|
720
703
|
"hasDynamicHelp": false,
|
|
721
704
|
"multiple": false,
|
|
722
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"
|
|
723
732
|
}
|
|
724
733
|
},
|
|
725
734
|
"hasDynamicHelp": false,
|
|
726
735
|
"hiddenAliases": [],
|
|
727
|
-
"id": "
|
|
736
|
+
"id": "apps:errors",
|
|
728
737
|
"pluginAlias": "heroku",
|
|
729
738
|
"pluginName": "heroku",
|
|
730
739
|
"pluginType": "core",
|
|
731
740
|
"strict": true,
|
|
732
|
-
"topic": "addons",
|
|
733
741
|
"isESM": false,
|
|
734
742
|
"relativePath": [
|
|
735
743
|
"lib",
|
|
736
744
|
"commands",
|
|
737
|
-
"
|
|
738
|
-
"
|
|
745
|
+
"apps",
|
|
746
|
+
"errors.js"
|
|
739
747
|
]
|
|
740
748
|
},
|
|
741
|
-
"
|
|
749
|
+
"apps": {
|
|
742
750
|
"aliases": [],
|
|
743
|
-
"args": {
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
},
|
|
749
|
-
"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
|
+
],
|
|
750
756
|
"flags": {
|
|
751
|
-
"
|
|
752
|
-
"
|
|
753
|
-
"
|
|
757
|
+
"all": {
|
|
758
|
+
"char": "A",
|
|
759
|
+
"description": "include apps in all teams",
|
|
760
|
+
"name": "all",
|
|
754
761
|
"allowNo": false,
|
|
755
762
|
"type": "boolean"
|
|
756
763
|
},
|
|
757
|
-
"
|
|
758
|
-
"char": "
|
|
759
|
-
"description": "
|
|
760
|
-
"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",
|
|
761
775
|
"hasDynamicHelp": false,
|
|
762
776
|
"multiple": false,
|
|
763
777
|
"type": "option"
|
|
764
778
|
},
|
|
765
|
-
"
|
|
766
|
-
"char": "
|
|
767
|
-
"description": "
|
|
768
|
-
"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",
|
|
769
798
|
"hasDynamicHelp": false,
|
|
770
799
|
"multiple": false,
|
|
771
800
|
"type": "option"
|
|
772
801
|
}
|
|
773
802
|
},
|
|
774
803
|
"hasDynamicHelp": false,
|
|
775
|
-
"hiddenAliases": [
|
|
776
|
-
|
|
804
|
+
"hiddenAliases": [
|
|
805
|
+
"list",
|
|
806
|
+
"apps:list"
|
|
807
|
+
],
|
|
808
|
+
"id": "apps",
|
|
777
809
|
"pluginAlias": "heroku",
|
|
778
810
|
"pluginName": "heroku",
|
|
779
811
|
"pluginType": "core",
|
|
780
812
|
"strict": true,
|
|
781
|
-
"topic": "
|
|
813
|
+
"topic": "apps",
|
|
782
814
|
"isESM": false,
|
|
783
815
|
"relativePath": [
|
|
784
816
|
"lib",
|
|
785
817
|
"commands",
|
|
786
|
-
"
|
|
787
|
-
"
|
|
818
|
+
"apps",
|
|
819
|
+
"index.js"
|
|
788
820
|
]
|
|
789
821
|
},
|
|
790
|
-
"
|
|
822
|
+
"apps:info": {
|
|
791
823
|
"aliases": [],
|
|
792
|
-
"args": {
|
|
793
|
-
|
|
824
|
+
"args": {
|
|
825
|
+
"app": {
|
|
826
|
+
"hidden": true,
|
|
827
|
+
"name": "app"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"description": "show detailed app information",
|
|
794
831
|
"examples": [
|
|
795
|
-
"$ heroku
|
|
796
|
-
"$ heroku
|
|
832
|
+
"$ heroku apps:info",
|
|
833
|
+
"$ heroku apps:info --shell"
|
|
797
834
|
],
|
|
798
835
|
"flags": {
|
|
799
|
-
"
|
|
800
|
-
"char": "
|
|
801
|
-
"description": "
|
|
802
|
-
"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",
|
|
803
863
|
"allowNo": false,
|
|
804
864
|
"type": "boolean"
|
|
805
865
|
},
|
|
806
866
|
"json": {
|
|
807
|
-
"
|
|
867
|
+
"char": "j",
|
|
868
|
+
"description": "output in json format",
|
|
808
869
|
"name": "json",
|
|
809
870
|
"allowNo": false,
|
|
810
871
|
"type": "boolean"
|
|
811
|
-
}
|
|
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": {
|
|
812
900
|
"app": {
|
|
813
901
|
"char": "a",
|
|
814
902
|
"description": "app to run command against",
|
|
815
903
|
"name": "app",
|
|
904
|
+
"required": true,
|
|
816
905
|
"hasDynamicHelp": false,
|
|
817
906
|
"multiple": false,
|
|
818
907
|
"type": "option"
|
|
@@ -828,35 +917,33 @@
|
|
|
828
917
|
},
|
|
829
918
|
"hasDynamicHelp": false,
|
|
830
919
|
"hiddenAliases": [],
|
|
831
|
-
"id": "
|
|
920
|
+
"id": "apps:join",
|
|
832
921
|
"pluginAlias": "heroku",
|
|
833
922
|
"pluginName": "heroku",
|
|
834
923
|
"pluginType": "core",
|
|
835
924
|
"strict": true,
|
|
836
|
-
"
|
|
837
|
-
"topic": "addons",
|
|
925
|
+
"topic": "apps",
|
|
838
926
|
"isESM": false,
|
|
839
927
|
"relativePath": [
|
|
840
928
|
"lib",
|
|
841
929
|
"commands",
|
|
842
|
-
"
|
|
843
|
-
"
|
|
930
|
+
"apps",
|
|
931
|
+
"join.js"
|
|
844
932
|
]
|
|
845
933
|
},
|
|
846
|
-
"
|
|
847
|
-
"aliases": [
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
},
|
|
854
|
-
"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",
|
|
855
941
|
"flags": {
|
|
856
942
|
"app": {
|
|
857
943
|
"char": "a",
|
|
858
944
|
"description": "app to run command against",
|
|
859
945
|
"name": "app",
|
|
946
|
+
"required": true,
|
|
860
947
|
"hasDynamicHelp": false,
|
|
861
948
|
"multiple": false,
|
|
862
949
|
"type": "option"
|
|
@@ -872,41 +959,33 @@
|
|
|
872
959
|
},
|
|
873
960
|
"hasDynamicHelp": false,
|
|
874
961
|
"hiddenAliases": [],
|
|
875
|
-
"id": "
|
|
962
|
+
"id": "apps:leave",
|
|
876
963
|
"pluginAlias": "heroku",
|
|
877
964
|
"pluginName": "heroku",
|
|
878
965
|
"pluginType": "core",
|
|
879
966
|
"strict": true,
|
|
880
|
-
"
|
|
881
|
-
"
|
|
967
|
+
"topic": "apps",
|
|
968
|
+
"example": "heroku apps:leave -a APP",
|
|
882
969
|
"isESM": false,
|
|
883
970
|
"relativePath": [
|
|
884
971
|
"lib",
|
|
885
972
|
"commands",
|
|
886
|
-
"
|
|
887
|
-
"
|
|
973
|
+
"apps",
|
|
974
|
+
"leave.js"
|
|
888
975
|
]
|
|
889
976
|
},
|
|
890
|
-
"
|
|
891
|
-
"aliases": [
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
}
|
|
897
|
-
},
|
|
898
|
-
"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",
|
|
899
983
|
"flags": {
|
|
900
|
-
"show-url": {
|
|
901
|
-
"description": "show URL, do not open browser",
|
|
902
|
-
"name": "show-url",
|
|
903
|
-
"allowNo": false,
|
|
904
|
-
"type": "boolean"
|
|
905
|
-
},
|
|
906
984
|
"app": {
|
|
907
985
|
"char": "a",
|
|
908
986
|
"description": "app to run command against",
|
|
909
987
|
"name": "app",
|
|
988
|
+
"required": true,
|
|
910
989
|
"hasDynamicHelp": false,
|
|
911
990
|
"multiple": false,
|
|
912
991
|
"type": "option"
|
|
@@ -922,129 +1001,149 @@
|
|
|
922
1001
|
},
|
|
923
1002
|
"hasDynamicHelp": false,
|
|
924
1003
|
"hiddenAliases": [],
|
|
925
|
-
"id": "
|
|
1004
|
+
"id": "apps:lock",
|
|
926
1005
|
"pluginAlias": "heroku",
|
|
927
1006
|
"pluginName": "heroku",
|
|
928
1007
|
"pluginType": "core",
|
|
929
1008
|
"strict": true,
|
|
930
|
-
"topic": "
|
|
1009
|
+
"topic": "apps",
|
|
931
1010
|
"isESM": false,
|
|
932
1011
|
"relativePath": [
|
|
933
1012
|
"lib",
|
|
934
1013
|
"commands",
|
|
935
|
-
"
|
|
936
|
-
"
|
|
1014
|
+
"apps",
|
|
1015
|
+
"lock.js"
|
|
937
1016
|
]
|
|
938
1017
|
},
|
|
939
|
-
"
|
|
1018
|
+
"apps:open": {
|
|
940
1019
|
"aliases": [],
|
|
941
1020
|
"args": {
|
|
942
|
-
"
|
|
943
|
-
"name": "
|
|
944
|
-
"required":
|
|
1021
|
+
"path": {
|
|
1022
|
+
"name": "path",
|
|
1023
|
+
"required": false
|
|
945
1024
|
}
|
|
946
1025
|
},
|
|
947
|
-
"description": "
|
|
1026
|
+
"description": "open the app in a web browser",
|
|
1027
|
+
"examples": [
|
|
1028
|
+
"$ heroku open -a myapp",
|
|
1029
|
+
"$ heroku open -a myapp /foo"
|
|
1030
|
+
],
|
|
948
1031
|
"flags": {
|
|
949
|
-
"
|
|
950
|
-
"
|
|
951
|
-
"
|
|
952
|
-
"
|
|
953
|
-
"
|
|
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"
|
|
954
1048
|
}
|
|
955
1049
|
},
|
|
956
1050
|
"hasDynamicHelp": false,
|
|
957
|
-
"hiddenAliases": [
|
|
958
|
-
|
|
1051
|
+
"hiddenAliases": [
|
|
1052
|
+
"open"
|
|
1053
|
+
],
|
|
1054
|
+
"id": "apps:open",
|
|
959
1055
|
"pluginAlias": "heroku",
|
|
960
1056
|
"pluginName": "heroku",
|
|
961
1057
|
"pluginType": "core",
|
|
962
1058
|
"strict": true,
|
|
963
|
-
"topic": "
|
|
1059
|
+
"topic": "apps",
|
|
964
1060
|
"isESM": false,
|
|
965
1061
|
"relativePath": [
|
|
966
1062
|
"lib",
|
|
967
1063
|
"commands",
|
|
968
|
-
"
|
|
969
|
-
"
|
|
1064
|
+
"apps",
|
|
1065
|
+
"open.js"
|
|
970
1066
|
]
|
|
971
1067
|
},
|
|
972
|
-
"
|
|
1068
|
+
"apps:rename": {
|
|
973
1069
|
"aliases": [],
|
|
974
1070
|
"args": {
|
|
975
|
-
"
|
|
976
|
-
"name": "
|
|
977
|
-
"required": true
|
|
978
|
-
},
|
|
979
|
-
"new_name": {
|
|
980
|
-
"name": "new_name",
|
|
1071
|
+
"newname": {
|
|
1072
|
+
"name": "newname",
|
|
981
1073
|
"required": true
|
|
982
1074
|
}
|
|
983
1075
|
},
|
|
984
|
-
"description": "rename an
|
|
985
|
-
"
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
"id": "addons:rename",
|
|
989
|
-
"pluginAlias": "heroku",
|
|
990
|
-
"pluginName": "heroku",
|
|
991
|
-
"pluginType": "core",
|
|
992
|
-
"strict": true,
|
|
993
|
-
"topic": "addons",
|
|
994
|
-
"isESM": false,
|
|
995
|
-
"relativePath": [
|
|
996
|
-
"lib",
|
|
997
|
-
"commands",
|
|
998
|
-
"addons",
|
|
999
|
-
"rename.js"
|
|
1000
|
-
]
|
|
1001
|
-
},
|
|
1002
|
-
"addons:services": {
|
|
1003
|
-
"aliases": [],
|
|
1004
|
-
"args": {},
|
|
1005
|
-
"description": "list all available add-on services",
|
|
1076
|
+
"description": "rename an app",
|
|
1077
|
+
"examples": [
|
|
1078
|
+
"$ heroku apps:rename --app oldname newname"
|
|
1079
|
+
],
|
|
1006
1080
|
"flags": {
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1081
|
+
"app": {
|
|
1082
|
+
"char": "a",
|
|
1083
|
+
"description": "app to run command against",
|
|
1084
|
+
"name": "app",
|
|
1085
|
+
"required": true,
|
|
1086
|
+
"hasDynamicHelp": false,
|
|
1087
|
+
"multiple": false,
|
|
1088
|
+
"type": "option"
|
|
1089
|
+
},
|
|
1090
|
+
"remote": {
|
|
1091
|
+
"char": "r",
|
|
1092
|
+
"description": "git remote of app to use",
|
|
1093
|
+
"name": "remote",
|
|
1094
|
+
"hasDynamicHelp": false,
|
|
1095
|
+
"multiple": false,
|
|
1096
|
+
"type": "option"
|
|
1012
1097
|
}
|
|
1013
1098
|
},
|
|
1014
1099
|
"hasDynamicHelp": false,
|
|
1015
|
-
"hiddenAliases": [
|
|
1016
|
-
|
|
1100
|
+
"hiddenAliases": [
|
|
1101
|
+
"rename"
|
|
1102
|
+
],
|
|
1103
|
+
"id": "apps:rename",
|
|
1017
1104
|
"pluginAlias": "heroku",
|
|
1018
1105
|
"pluginName": "heroku",
|
|
1019
1106
|
"pluginType": "core",
|
|
1020
1107
|
"strict": true,
|
|
1021
|
-
"
|
|
1108
|
+
"help": "This will locally update the git remote if it is set to the old app.",
|
|
1109
|
+
"topic": "apps",
|
|
1022
1110
|
"isESM": false,
|
|
1023
1111
|
"relativePath": [
|
|
1024
1112
|
"lib",
|
|
1025
1113
|
"commands",
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1114
|
+
"apps",
|
|
1115
|
+
"rename.js"
|
|
1028
1116
|
]
|
|
1029
1117
|
},
|
|
1030
|
-
"
|
|
1031
|
-
"aliases": [
|
|
1032
|
-
"addons:downgrade"
|
|
1033
|
-
],
|
|
1118
|
+
"apps:transfer": {
|
|
1119
|
+
"aliases": [],
|
|
1034
1120
|
"args": {
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1121
|
+
"recipient": {
|
|
1122
|
+
"description": "user or team to transfer applications to",
|
|
1123
|
+
"name": "recipient",
|
|
1037
1124
|
"required": true
|
|
1038
|
-
},
|
|
1039
|
-
"plan": {
|
|
1040
|
-
"name": "plan"
|
|
1041
1125
|
}
|
|
1042
1126
|
},
|
|
1043
|
-
"description": "
|
|
1127
|
+
"description": "transfer applications to another user or team",
|
|
1044
1128
|
"examples": [
|
|
1045
|
-
"
|
|
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..."
|
|
1046
1130
|
],
|
|
1047
1131
|
"flags": {
|
|
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"
|
|
1146
|
+
},
|
|
1048
1147
|
"app": {
|
|
1049
1148
|
"char": "a",
|
|
1050
1149
|
"description": "app to run command against",
|
|
@@ -1060,44 +1159,44 @@
|
|
|
1060
1159
|
"hasDynamicHelp": false,
|
|
1061
1160
|
"multiple": false,
|
|
1062
1161
|
"type": "option"
|
|
1162
|
+
},
|
|
1163
|
+
"confirm": {
|
|
1164
|
+
"char": "c",
|
|
1165
|
+
"hidden": true,
|
|
1166
|
+
"name": "confirm",
|
|
1167
|
+
"hasDynamicHelp": false,
|
|
1168
|
+
"multiple": false,
|
|
1169
|
+
"type": "option"
|
|
1063
1170
|
}
|
|
1064
1171
|
},
|
|
1065
1172
|
"hasDynamicHelp": false,
|
|
1066
1173
|
"hiddenAliases": [],
|
|
1067
|
-
"id": "
|
|
1174
|
+
"id": "apps:transfer",
|
|
1068
1175
|
"pluginAlias": "heroku",
|
|
1069
1176
|
"pluginName": "heroku",
|
|
1070
1177
|
"pluginType": "core",
|
|
1071
1178
|
"strict": true,
|
|
1072
|
-
"topic": "
|
|
1179
|
+
"topic": "apps",
|
|
1073
1180
|
"isESM": false,
|
|
1074
1181
|
"relativePath": [
|
|
1075
1182
|
"lib",
|
|
1076
1183
|
"commands",
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1184
|
+
"apps",
|
|
1185
|
+
"transfer.js"
|
|
1079
1186
|
]
|
|
1080
1187
|
},
|
|
1081
|
-
"
|
|
1082
|
-
"aliases": [
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
},
|
|
1088
|
-
"description": "show provisioning status of the add-ons on the app",
|
|
1188
|
+
"apps:unlock": {
|
|
1189
|
+
"aliases": [
|
|
1190
|
+
"unlock"
|
|
1191
|
+
],
|
|
1192
|
+
"args": {},
|
|
1193
|
+
"description": "unlock an app so any team member can join",
|
|
1089
1194
|
"flags": {
|
|
1090
|
-
"wait-interval": {
|
|
1091
|
-
"description": "how frequently to poll in seconds",
|
|
1092
|
-
"name": "wait-interval",
|
|
1093
|
-
"hasDynamicHelp": false,
|
|
1094
|
-
"multiple": false,
|
|
1095
|
-
"type": "option"
|
|
1096
|
-
},
|
|
1097
1195
|
"app": {
|
|
1098
1196
|
"char": "a",
|
|
1099
1197
|
"description": "app to run command against",
|
|
1100
1198
|
"name": "app",
|
|
1199
|
+
"required": true,
|
|
1101
1200
|
"hasDynamicHelp": false,
|
|
1102
1201
|
"multiple": false,
|
|
1103
1202
|
"type": "option"
|
|
@@ -1113,219 +1212,123 @@
|
|
|
1113
1212
|
},
|
|
1114
1213
|
"hasDynamicHelp": false,
|
|
1115
1214
|
"hiddenAliases": [],
|
|
1116
|
-
"id": "
|
|
1215
|
+
"id": "apps:unlock",
|
|
1117
1216
|
"pluginAlias": "heroku",
|
|
1118
1217
|
"pluginName": "heroku",
|
|
1119
1218
|
"pluginType": "core",
|
|
1120
1219
|
"strict": true,
|
|
1121
|
-
"topic": "
|
|
1220
|
+
"topic": "apps",
|
|
1122
1221
|
"isESM": false,
|
|
1123
1222
|
"relativePath": [
|
|
1124
1223
|
"lib",
|
|
1125
1224
|
"commands",
|
|
1126
|
-
"
|
|
1127
|
-
"
|
|
1225
|
+
"apps",
|
|
1226
|
+
"unlock.js"
|
|
1128
1227
|
]
|
|
1129
1228
|
},
|
|
1130
|
-
"
|
|
1229
|
+
"addons:attach": {
|
|
1131
1230
|
"aliases": [],
|
|
1132
1231
|
"args": {
|
|
1133
|
-
"
|
|
1134
|
-
"
|
|
1135
|
-
"
|
|
1136
|
-
"required": false
|
|
1232
|
+
"addon_name": {
|
|
1233
|
+
"name": "addon_name",
|
|
1234
|
+
"required": true
|
|
1137
1235
|
}
|
|
1138
1236
|
},
|
|
1139
|
-
"description": "
|
|
1140
|
-
"examples": [
|
|
1141
|
-
"$ 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"
|
|
1142
|
-
],
|
|
1237
|
+
"description": "attach an existing add-on resource to an app",
|
|
1143
1238
|
"flags": {
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"name": "
|
|
1147
|
-
"hasDynamicHelp": false,
|
|
1148
|
-
"multiple": false,
|
|
1149
|
-
"type": "option"
|
|
1150
|
-
},
|
|
1151
|
-
"addons": {
|
|
1152
|
-
"description": "comma-delimited list of addons to install",
|
|
1153
|
-
"name": "addons",
|
|
1154
|
-
"hasDynamicHelp": false,
|
|
1155
|
-
"multiple": false,
|
|
1156
|
-
"type": "option"
|
|
1157
|
-
},
|
|
1158
|
-
"buildpack": {
|
|
1159
|
-
"char": "b",
|
|
1160
|
-
"description": "buildpack url to use for this app",
|
|
1161
|
-
"name": "buildpack",
|
|
1162
|
-
"hasDynamicHelp": false,
|
|
1163
|
-
"multiple": false,
|
|
1164
|
-
"type": "option"
|
|
1165
|
-
},
|
|
1166
|
-
"manifest": {
|
|
1167
|
-
"char": "m",
|
|
1168
|
-
"description": "use heroku.yml settings for this app",
|
|
1169
|
-
"hidden": true,
|
|
1170
|
-
"name": "manifest",
|
|
1171
|
-
"allowNo": false,
|
|
1172
|
-
"type": "boolean"
|
|
1173
|
-
},
|
|
1174
|
-
"no-remote": {
|
|
1175
|
-
"char": "n",
|
|
1176
|
-
"description": "do not create a git remote",
|
|
1177
|
-
"name": "no-remote",
|
|
1178
|
-
"allowNo": false,
|
|
1179
|
-
"type": "boolean"
|
|
1180
|
-
},
|
|
1181
|
-
"remote": {
|
|
1182
|
-
"char": "r",
|
|
1183
|
-
"description": "the git remote to create, default \"heroku\"",
|
|
1184
|
-
"name": "remote",
|
|
1185
|
-
"default": "heroku",
|
|
1186
|
-
"hasDynamicHelp": false,
|
|
1187
|
-
"multiple": false,
|
|
1188
|
-
"type": "option"
|
|
1189
|
-
},
|
|
1190
|
-
"stack": {
|
|
1191
|
-
"char": "s",
|
|
1192
|
-
"description": "the stack to create the app on",
|
|
1193
|
-
"name": "stack",
|
|
1194
|
-
"hasDynamicHelp": false,
|
|
1195
|
-
"multiple": false,
|
|
1196
|
-
"type": "option"
|
|
1197
|
-
},
|
|
1198
|
-
"space": {
|
|
1199
|
-
"description": "the private space to create the app in",
|
|
1200
|
-
"name": "space",
|
|
1239
|
+
"as": {
|
|
1240
|
+
"description": "name for add-on attachment",
|
|
1241
|
+
"name": "as",
|
|
1201
1242
|
"hasDynamicHelp": false,
|
|
1202
1243
|
"multiple": false,
|
|
1203
1244
|
"type": "option"
|
|
1204
1245
|
},
|
|
1205
|
-
"
|
|
1206
|
-
"description": "
|
|
1207
|
-
"name": "
|
|
1246
|
+
"credential": {
|
|
1247
|
+
"description": "credential name for scoped access to Heroku Postgres",
|
|
1248
|
+
"name": "credential",
|
|
1208
1249
|
"hasDynamicHelp": false,
|
|
1209
1250
|
"multiple": false,
|
|
1210
1251
|
"type": "option"
|
|
1211
1252
|
},
|
|
1212
|
-
"
|
|
1213
|
-
"description": "
|
|
1214
|
-
"
|
|
1215
|
-
"name": "internal-routing",
|
|
1216
|
-
"allowNo": false,
|
|
1217
|
-
"type": "boolean"
|
|
1218
|
-
},
|
|
1219
|
-
"features": {
|
|
1220
|
-
"hidden": true,
|
|
1221
|
-
"name": "features",
|
|
1253
|
+
"confirm": {
|
|
1254
|
+
"description": "overwrite existing add-on attachment with same name",
|
|
1255
|
+
"name": "confirm",
|
|
1222
1256
|
"hasDynamicHelp": false,
|
|
1223
1257
|
"multiple": false,
|
|
1224
1258
|
"type": "option"
|
|
1225
1259
|
},
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1260
|
+
"app": {
|
|
1261
|
+
"char": "a",
|
|
1262
|
+
"description": "app to run command against",
|
|
1263
|
+
"name": "app",
|
|
1264
|
+
"required": true,
|
|
1229
1265
|
"hasDynamicHelp": false,
|
|
1230
1266
|
"multiple": false,
|
|
1231
1267
|
"type": "option"
|
|
1232
1268
|
},
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1235
|
-
"
|
|
1236
|
-
"
|
|
1237
|
-
"type": "boolean"
|
|
1238
|
-
},
|
|
1239
|
-
"json": {
|
|
1240
|
-
"description": "output in json format",
|
|
1241
|
-
"name": "json",
|
|
1242
|
-
"allowNo": false,
|
|
1243
|
-
"type": "boolean"
|
|
1244
|
-
},
|
|
1245
|
-
"team": {
|
|
1246
|
-
"char": "t",
|
|
1247
|
-
"description": "team to use",
|
|
1248
|
-
"name": "team",
|
|
1269
|
+
"remote": {
|
|
1270
|
+
"char": "r",
|
|
1271
|
+
"description": "git remote of app to use",
|
|
1272
|
+
"name": "remote",
|
|
1249
1273
|
"hasDynamicHelp": false,
|
|
1250
1274
|
"multiple": false,
|
|
1251
1275
|
"type": "option"
|
|
1252
1276
|
}
|
|
1253
1277
|
},
|
|
1254
1278
|
"hasDynamicHelp": false,
|
|
1255
|
-
"hiddenAliases": [
|
|
1256
|
-
|
|
1257
|
-
],
|
|
1258
|
-
"id": "apps:create",
|
|
1279
|
+
"hiddenAliases": [],
|
|
1280
|
+
"id": "addons:attach",
|
|
1259
1281
|
"pluginAlias": "heroku",
|
|
1260
1282
|
"pluginName": "heroku",
|
|
1261
1283
|
"pluginType": "core",
|
|
1262
1284
|
"strict": true,
|
|
1285
|
+
"topic": "addons",
|
|
1263
1286
|
"isESM": false,
|
|
1264
1287
|
"relativePath": [
|
|
1265
1288
|
"lib",
|
|
1266
1289
|
"commands",
|
|
1267
|
-
"
|
|
1268
|
-
"
|
|
1290
|
+
"addons",
|
|
1291
|
+
"attach.js"
|
|
1269
1292
|
]
|
|
1270
1293
|
},
|
|
1271
|
-
"
|
|
1294
|
+
"addons:create": {
|
|
1272
1295
|
"aliases": [],
|
|
1273
1296
|
"args": {
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1297
|
+
"service:plan": {
|
|
1298
|
+
"name": "service:plan",
|
|
1299
|
+
"required": true
|
|
1277
1300
|
}
|
|
1278
1301
|
},
|
|
1279
|
-
"description": "
|
|
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",
|
|
1280
1304
|
"flags": {
|
|
1281
|
-
"
|
|
1282
|
-
"
|
|
1283
|
-
"
|
|
1284
|
-
"name": "app",
|
|
1305
|
+
"name": {
|
|
1306
|
+
"description": "name for the add-on resource",
|
|
1307
|
+
"name": "name",
|
|
1285
1308
|
"hasDynamicHelp": false,
|
|
1286
1309
|
"multiple": false,
|
|
1287
1310
|
"type": "option"
|
|
1288
1311
|
},
|
|
1289
|
-
"
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1292
|
-
"name": "remote",
|
|
1312
|
+
"as": {
|
|
1313
|
+
"description": "name for the initial add-on attachment",
|
|
1314
|
+
"name": "as",
|
|
1293
1315
|
"hasDynamicHelp": false,
|
|
1294
1316
|
"multiple": false,
|
|
1295
1317
|
"type": "option"
|
|
1296
1318
|
},
|
|
1297
1319
|
"confirm": {
|
|
1298
|
-
"
|
|
1320
|
+
"description": "overwrite existing config vars or existing add-on attachments",
|
|
1299
1321
|
"name": "confirm",
|
|
1300
1322
|
"hasDynamicHelp": false,
|
|
1301
1323
|
"multiple": false,
|
|
1302
1324
|
"type": "option"
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
"id": "apps:destroy",
|
|
1311
|
-
"pluginAlias": "heroku",
|
|
1312
|
-
"pluginName": "heroku",
|
|
1313
|
-
"pluginType": "core",
|
|
1314
|
-
"strict": true,
|
|
1315
|
-
"help": "This will also destroy all add-ons on the app.",
|
|
1316
|
-
"isESM": false,
|
|
1317
|
-
"relativePath": [
|
|
1318
|
-
"lib",
|
|
1319
|
-
"commands",
|
|
1320
|
-
"apps",
|
|
1321
|
-
"destroy.js"
|
|
1322
|
-
]
|
|
1323
|
-
},
|
|
1324
|
-
"apps:errors": {
|
|
1325
|
-
"aliases": [],
|
|
1326
|
-
"args": {},
|
|
1327
|
-
"description": "view app errors",
|
|
1328
|
-
"flags": {
|
|
1325
|
+
},
|
|
1326
|
+
"wait": {
|
|
1327
|
+
"description": "watch add-on creation status and exit when complete",
|
|
1328
|
+
"name": "wait",
|
|
1329
|
+
"allowNo": false,
|
|
1330
|
+
"type": "boolean"
|
|
1331
|
+
},
|
|
1329
1332
|
"app": {
|
|
1330
1333
|
"char": "a",
|
|
1331
1334
|
"description": "app to run command against",
|
|
@@ -1342,98 +1345,72 @@
|
|
|
1342
1345
|
"hasDynamicHelp": false,
|
|
1343
1346
|
"multiple": false,
|
|
1344
1347
|
"type": "option"
|
|
1345
|
-
},
|
|
1346
|
-
"json": {
|
|
1347
|
-
"description": "output in json format",
|
|
1348
|
-
"name": "json",
|
|
1349
|
-
"allowNo": false,
|
|
1350
|
-
"type": "boolean"
|
|
1351
|
-
},
|
|
1352
|
-
"hours": {
|
|
1353
|
-
"description": "number of hours to look back (default 24)",
|
|
1354
|
-
"name": "hours",
|
|
1355
|
-
"default": "24",
|
|
1356
|
-
"hasDynamicHelp": false,
|
|
1357
|
-
"multiple": false,
|
|
1358
|
-
"type": "option"
|
|
1359
|
-
},
|
|
1360
|
-
"router": {
|
|
1361
|
-
"description": "show only router errors",
|
|
1362
|
-
"name": "router",
|
|
1363
|
-
"allowNo": false,
|
|
1364
|
-
"type": "boolean"
|
|
1365
|
-
},
|
|
1366
|
-
"dyno": {
|
|
1367
|
-
"description": "show only dyno errors",
|
|
1368
|
-
"name": "dyno",
|
|
1369
|
-
"allowNo": false,
|
|
1370
|
-
"type": "boolean"
|
|
1371
1348
|
}
|
|
1372
1349
|
},
|
|
1373
1350
|
"hasDynamicHelp": false,
|
|
1374
|
-
"hiddenAliases": [
|
|
1375
|
-
|
|
1351
|
+
"hiddenAliases": [
|
|
1352
|
+
"addons:add"
|
|
1353
|
+
],
|
|
1354
|
+
"id": "addons:create",
|
|
1376
1355
|
"pluginAlias": "heroku",
|
|
1377
1356
|
"pluginName": "heroku",
|
|
1378
1357
|
"pluginType": "core",
|
|
1379
|
-
"strict":
|
|
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",
|
|
1380
1361
|
"isESM": false,
|
|
1381
1362
|
"relativePath": [
|
|
1382
1363
|
"lib",
|
|
1383
1364
|
"commands",
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1365
|
+
"addons",
|
|
1366
|
+
"create.js"
|
|
1386
1367
|
]
|
|
1387
1368
|
},
|
|
1388
|
-
"
|
|
1369
|
+
"addons:destroy": {
|
|
1389
1370
|
"aliases": [],
|
|
1390
|
-
"args": {
|
|
1391
|
-
|
|
1371
|
+
"args": {
|
|
1372
|
+
"addonName": {
|
|
1373
|
+
"name": "addonName",
|
|
1374
|
+
"required": true
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"description": "permanently destroy an add-on resource",
|
|
1392
1378
|
"examples": [
|
|
1393
|
-
"
|
|
1379
|
+
"addons:destroy [ADDON]... [flags]"
|
|
1394
1380
|
],
|
|
1395
1381
|
"flags": {
|
|
1396
|
-
"
|
|
1397
|
-
"char": "
|
|
1398
|
-
"description": "
|
|
1399
|
-
"name": "
|
|
1400
|
-
"allowNo": false,
|
|
1401
|
-
"type": "boolean"
|
|
1402
|
-
},
|
|
1403
|
-
"json": {
|
|
1404
|
-
"char": "j",
|
|
1405
|
-
"description": "output in json format",
|
|
1406
|
-
"name": "json",
|
|
1382
|
+
"force": {
|
|
1383
|
+
"char": "f",
|
|
1384
|
+
"description": "allow destruction even if connected to other apps",
|
|
1385
|
+
"name": "force",
|
|
1407
1386
|
"allowNo": false,
|
|
1408
1387
|
"type": "boolean"
|
|
1409
1388
|
},
|
|
1410
|
-
"
|
|
1411
|
-
"char": "
|
|
1412
|
-
"
|
|
1413
|
-
"name": "space",
|
|
1389
|
+
"confirm": {
|
|
1390
|
+
"char": "c",
|
|
1391
|
+
"name": "confirm",
|
|
1414
1392
|
"hasDynamicHelp": false,
|
|
1415
1393
|
"multiple": false,
|
|
1416
1394
|
"type": "option"
|
|
1417
1395
|
},
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1420
|
-
"
|
|
1421
|
-
"name": "personal",
|
|
1396
|
+
"wait": {
|
|
1397
|
+
"description": "watch add-on destruction status and exit when complete",
|
|
1398
|
+
"name": "wait",
|
|
1422
1399
|
"allowNo": false,
|
|
1423
1400
|
"type": "boolean"
|
|
1424
1401
|
},
|
|
1425
|
-
"
|
|
1426
|
-
"char": "
|
|
1427
|
-
"description": "
|
|
1428
|
-
"
|
|
1429
|
-
"
|
|
1430
|
-
"
|
|
1431
|
-
"type": "
|
|
1402
|
+
"app": {
|
|
1403
|
+
"char": "a",
|
|
1404
|
+
"description": "app to run command against",
|
|
1405
|
+
"name": "app",
|
|
1406
|
+
"hasDynamicHelp": false,
|
|
1407
|
+
"multiple": false,
|
|
1408
|
+
"type": "option"
|
|
1432
1409
|
},
|
|
1433
|
-
"
|
|
1434
|
-
"char": "
|
|
1435
|
-
"description": "
|
|
1436
|
-
"name": "
|
|
1410
|
+
"remote": {
|
|
1411
|
+
"char": "r",
|
|
1412
|
+
"description": "git remote of app to use",
|
|
1413
|
+
"name": "remote",
|
|
1437
1414
|
"hasDynamicHelp": false,
|
|
1438
1415
|
"multiple": false,
|
|
1439
1416
|
"type": "option"
|
|
@@ -1441,41 +1418,37 @@
|
|
|
1441
1418
|
},
|
|
1442
1419
|
"hasDynamicHelp": false,
|
|
1443
1420
|
"hiddenAliases": [
|
|
1444
|
-
"
|
|
1445
|
-
"apps:list"
|
|
1421
|
+
"addons:remove"
|
|
1446
1422
|
],
|
|
1447
|
-
"id": "
|
|
1423
|
+
"id": "addons:destroy",
|
|
1448
1424
|
"pluginAlias": "heroku",
|
|
1449
1425
|
"pluginName": "heroku",
|
|
1450
1426
|
"pluginType": "core",
|
|
1451
|
-
"strict":
|
|
1452
|
-
"topic": "
|
|
1427
|
+
"strict": false,
|
|
1428
|
+
"topic": "addons",
|
|
1453
1429
|
"isESM": false,
|
|
1454
1430
|
"relativePath": [
|
|
1455
1431
|
"lib",
|
|
1456
1432
|
"commands",
|
|
1457
|
-
"
|
|
1458
|
-
"
|
|
1433
|
+
"addons",
|
|
1434
|
+
"destroy.js"
|
|
1459
1435
|
]
|
|
1460
1436
|
},
|
|
1461
|
-
"
|
|
1437
|
+
"addons:detach": {
|
|
1462
1438
|
"aliases": [],
|
|
1463
1439
|
"args": {
|
|
1464
|
-
"
|
|
1465
|
-
"
|
|
1466
|
-
"
|
|
1440
|
+
"attachment_name": {
|
|
1441
|
+
"name": "attachment_name",
|
|
1442
|
+
"required": true
|
|
1467
1443
|
}
|
|
1468
|
-
},
|
|
1469
|
-
"description": "
|
|
1470
|
-
"examples": [
|
|
1471
|
-
"$ heroku apps:info",
|
|
1472
|
-
"$ heroku apps:info --shell"
|
|
1473
|
-
],
|
|
1444
|
+
},
|
|
1445
|
+
"description": "detach an existing add-on resource from an app",
|
|
1474
1446
|
"flags": {
|
|
1475
1447
|
"app": {
|
|
1476
1448
|
"char": "a",
|
|
1477
1449
|
"description": "app to run command against",
|
|
1478
1450
|
"name": "app",
|
|
1451
|
+
"required": true,
|
|
1479
1452
|
"hasDynamicHelp": false,
|
|
1480
1453
|
"multiple": false,
|
|
1481
1454
|
"type": "option"
|
|
@@ -1487,60 +1460,44 @@
|
|
|
1487
1460
|
"hasDynamicHelp": false,
|
|
1488
1461
|
"multiple": false,
|
|
1489
1462
|
"type": "option"
|
|
1490
|
-
},
|
|
1491
|
-
"shell": {
|
|
1492
|
-
"char": "s",
|
|
1493
|
-
"description": "output more shell friendly key/value pairs",
|
|
1494
|
-
"name": "shell",
|
|
1495
|
-
"allowNo": false,
|
|
1496
|
-
"type": "boolean"
|
|
1497
|
-
},
|
|
1498
|
-
"extended": {
|
|
1499
|
-
"char": "x",
|
|
1500
|
-
"hidden": true,
|
|
1501
|
-
"name": "extended",
|
|
1502
|
-
"allowNo": false,
|
|
1503
|
-
"type": "boolean"
|
|
1504
|
-
},
|
|
1505
|
-
"json": {
|
|
1506
|
-
"char": "j",
|
|
1507
|
-
"description": "output in json format",
|
|
1508
|
-
"name": "json",
|
|
1509
|
-
"allowNo": false,
|
|
1510
|
-
"type": "boolean"
|
|
1511
1463
|
}
|
|
1512
1464
|
},
|
|
1513
1465
|
"hasDynamicHelp": false,
|
|
1514
|
-
"hiddenAliases": [
|
|
1515
|
-
|
|
1516
|
-
],
|
|
1517
|
-
"id": "apps:info",
|
|
1466
|
+
"hiddenAliases": [],
|
|
1467
|
+
"id": "addons:detach",
|
|
1518
1468
|
"pluginAlias": "heroku",
|
|
1519
1469
|
"pluginName": "heroku",
|
|
1520
1470
|
"pluginType": "core",
|
|
1521
1471
|
"strict": true,
|
|
1522
|
-
"topic": "
|
|
1523
|
-
"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...",
|
|
1472
|
+
"topic": "addons",
|
|
1524
1473
|
"isESM": false,
|
|
1525
1474
|
"relativePath": [
|
|
1526
1475
|
"lib",
|
|
1527
1476
|
"commands",
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1477
|
+
"addons",
|
|
1478
|
+
"detach.js"
|
|
1530
1479
|
]
|
|
1531
1480
|
},
|
|
1532
|
-
"
|
|
1533
|
-
"aliases": [
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
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",
|
|
1538
1490
|
"flags": {
|
|
1491
|
+
"show-url": {
|
|
1492
|
+
"description": "show URL, do not open browser",
|
|
1493
|
+
"name": "show-url",
|
|
1494
|
+
"allowNo": false,
|
|
1495
|
+
"type": "boolean"
|
|
1496
|
+
},
|
|
1539
1497
|
"app": {
|
|
1540
1498
|
"char": "a",
|
|
1541
1499
|
"description": "app to run command against",
|
|
1542
1500
|
"name": "app",
|
|
1543
|
-
"required": true,
|
|
1544
1501
|
"hasDynamicHelp": false,
|
|
1545
1502
|
"multiple": false,
|
|
1546
1503
|
"type": "option"
|
|
@@ -1556,33 +1513,46 @@
|
|
|
1556
1513
|
},
|
|
1557
1514
|
"hasDynamicHelp": false,
|
|
1558
1515
|
"hiddenAliases": [],
|
|
1559
|
-
"id": "
|
|
1516
|
+
"id": "addons:docs",
|
|
1560
1517
|
"pluginAlias": "heroku",
|
|
1561
1518
|
"pluginName": "heroku",
|
|
1562
1519
|
"pluginType": "core",
|
|
1563
1520
|
"strict": true,
|
|
1564
|
-
"topic": "
|
|
1521
|
+
"topic": "addons",
|
|
1565
1522
|
"isESM": false,
|
|
1566
1523
|
"relativePath": [
|
|
1567
1524
|
"lib",
|
|
1568
1525
|
"commands",
|
|
1569
|
-
"
|
|
1570
|
-
"
|
|
1526
|
+
"addons",
|
|
1527
|
+
"docs.js"
|
|
1571
1528
|
]
|
|
1572
1529
|
},
|
|
1573
|
-
"
|
|
1574
|
-
"aliases": [
|
|
1575
|
-
"leave"
|
|
1576
|
-
],
|
|
1530
|
+
"addons": {
|
|
1531
|
+
"aliases": [],
|
|
1577
1532
|
"args": {},
|
|
1578
|
-
"description": "
|
|
1579
|
-
"examples":
|
|
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
|
+
],
|
|
1580
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
|
+
},
|
|
1581
1552
|
"app": {
|
|
1582
1553
|
"char": "a",
|
|
1583
1554
|
"description": "app to run command against",
|
|
1584
1555
|
"name": "app",
|
|
1585
|
-
"required": true,
|
|
1586
1556
|
"hasDynamicHelp": false,
|
|
1587
1557
|
"multiple": false,
|
|
1588
1558
|
"type": "option"
|
|
@@ -1598,33 +1568,35 @@
|
|
|
1598
1568
|
},
|
|
1599
1569
|
"hasDynamicHelp": false,
|
|
1600
1570
|
"hiddenAliases": [],
|
|
1601
|
-
"id": "
|
|
1571
|
+
"id": "addons",
|
|
1602
1572
|
"pluginAlias": "heroku",
|
|
1603
1573
|
"pluginName": "heroku",
|
|
1604
1574
|
"pluginType": "core",
|
|
1605
1575
|
"strict": true,
|
|
1606
|
-
"
|
|
1607
|
-
"
|
|
1576
|
+
"usage": "addons [--all|--app APP]",
|
|
1577
|
+
"topic": "addons",
|
|
1608
1578
|
"isESM": false,
|
|
1609
1579
|
"relativePath": [
|
|
1610
1580
|
"lib",
|
|
1611
1581
|
"commands",
|
|
1612
|
-
"
|
|
1613
|
-
"
|
|
1582
|
+
"addons",
|
|
1583
|
+
"index.js"
|
|
1614
1584
|
]
|
|
1615
1585
|
},
|
|
1616
|
-
"
|
|
1617
|
-
"aliases": [
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1586
|
+
"addons:info": {
|
|
1587
|
+
"aliases": [],
|
|
1588
|
+
"args": {
|
|
1589
|
+
"addon": {
|
|
1590
|
+
"name": "addon",
|
|
1591
|
+
"required": true
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"description": "show detailed add-on resource and attachment information",
|
|
1622
1595
|
"flags": {
|
|
1623
1596
|
"app": {
|
|
1624
1597
|
"char": "a",
|
|
1625
1598
|
"description": "app to run command against",
|
|
1626
1599
|
"name": "app",
|
|
1627
|
-
"required": true,
|
|
1628
1600
|
"hasDynamicHelp": false,
|
|
1629
1601
|
"multiple": false,
|
|
1630
1602
|
"type": "option"
|
|
@@ -1640,39 +1612,41 @@
|
|
|
1640
1612
|
},
|
|
1641
1613
|
"hasDynamicHelp": false,
|
|
1642
1614
|
"hiddenAliases": [],
|
|
1643
|
-
"id": "
|
|
1615
|
+
"id": "addons:info",
|
|
1644
1616
|
"pluginAlias": "heroku",
|
|
1645
1617
|
"pluginName": "heroku",
|
|
1646
1618
|
"pluginType": "core",
|
|
1647
1619
|
"strict": true,
|
|
1648
|
-
"
|
|
1620
|
+
"usage": "addons:info ADDON",
|
|
1621
|
+
"topic": "addons",
|
|
1649
1622
|
"isESM": false,
|
|
1650
1623
|
"relativePath": [
|
|
1651
1624
|
"lib",
|
|
1652
1625
|
"commands",
|
|
1653
|
-
"
|
|
1654
|
-
"
|
|
1626
|
+
"addons",
|
|
1627
|
+
"info.js"
|
|
1655
1628
|
]
|
|
1656
1629
|
},
|
|
1657
|
-
"
|
|
1630
|
+
"addons:open": {
|
|
1658
1631
|
"aliases": [],
|
|
1659
1632
|
"args": {
|
|
1660
|
-
"
|
|
1661
|
-
"name": "
|
|
1662
|
-
"required":
|
|
1633
|
+
"addon": {
|
|
1634
|
+
"name": "addon",
|
|
1635
|
+
"required": true
|
|
1663
1636
|
}
|
|
1664
1637
|
},
|
|
1665
|
-
"description": "open
|
|
1666
|
-
"examples": [
|
|
1667
|
-
"$ heroku open -a myapp",
|
|
1668
|
-
"$ heroku open -a myapp /foo"
|
|
1669
|
-
],
|
|
1638
|
+
"description": "open an add-on's dashboard in your browser",
|
|
1670
1639
|
"flags": {
|
|
1640
|
+
"show-url": {
|
|
1641
|
+
"description": "show URL, do not open browser",
|
|
1642
|
+
"name": "show-url",
|
|
1643
|
+
"allowNo": false,
|
|
1644
|
+
"type": "boolean"
|
|
1645
|
+
},
|
|
1671
1646
|
"app": {
|
|
1672
1647
|
"char": "a",
|
|
1673
1648
|
"description": "app to run command against",
|
|
1674
1649
|
"name": "app",
|
|
1675
|
-
"required": true,
|
|
1676
1650
|
"hasDynamicHelp": false,
|
|
1677
1651
|
"multiple": false,
|
|
1678
1652
|
"type": "option"
|
|
@@ -1687,102 +1661,130 @@
|
|
|
1687
1661
|
}
|
|
1688
1662
|
},
|
|
1689
1663
|
"hasDynamicHelp": false,
|
|
1690
|
-
"hiddenAliases": [
|
|
1691
|
-
|
|
1692
|
-
],
|
|
1693
|
-
"id": "apps:open",
|
|
1664
|
+
"hiddenAliases": [],
|
|
1665
|
+
"id": "addons:open",
|
|
1694
1666
|
"pluginAlias": "heroku",
|
|
1695
1667
|
"pluginName": "heroku",
|
|
1696
1668
|
"pluginType": "core",
|
|
1697
1669
|
"strict": true,
|
|
1698
|
-
"topic": "
|
|
1670
|
+
"topic": "addons",
|
|
1699
1671
|
"isESM": false,
|
|
1700
1672
|
"relativePath": [
|
|
1701
1673
|
"lib",
|
|
1702
1674
|
"commands",
|
|
1703
|
-
"
|
|
1675
|
+
"addons",
|
|
1704
1676
|
"open.js"
|
|
1705
1677
|
]
|
|
1706
1678
|
},
|
|
1707
|
-
"
|
|
1679
|
+
"addons:plans": {
|
|
1708
1680
|
"aliases": [],
|
|
1709
1681
|
"args": {
|
|
1710
|
-
"
|
|
1711
|
-
"name": "
|
|
1682
|
+
"service": {
|
|
1683
|
+
"name": "service",
|
|
1712
1684
|
"required": true
|
|
1713
1685
|
}
|
|
1714
1686
|
},
|
|
1715
|
-
"description": "
|
|
1716
|
-
"examples": [
|
|
1717
|
-
"$ heroku apps:rename --app oldname newname"
|
|
1718
|
-
],
|
|
1687
|
+
"description": "list all available plans for an add-on service",
|
|
1719
1688
|
"flags": {
|
|
1720
|
-
"
|
|
1721
|
-
"
|
|
1722
|
-
"
|
|
1723
|
-
"
|
|
1724
|
-
"
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1689
|
+
"json": {
|
|
1690
|
+
"description": "output in json format",
|
|
1691
|
+
"name": "json",
|
|
1692
|
+
"allowNo": false,
|
|
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
|
|
1728
1718
|
},
|
|
1729
|
-
"
|
|
1730
|
-
"
|
|
1731
|
-
"
|
|
1732
|
-
"name": "remote",
|
|
1733
|
-
"hasDynamicHelp": false,
|
|
1734
|
-
"multiple": false,
|
|
1735
|
-
"type": "option"
|
|
1719
|
+
"new_name": {
|
|
1720
|
+
"name": "new_name",
|
|
1721
|
+
"required": true
|
|
1736
1722
|
}
|
|
1737
1723
|
},
|
|
1724
|
+
"description": "rename an add-on",
|
|
1725
|
+
"flags": {},
|
|
1738
1726
|
"hasDynamicHelp": false,
|
|
1739
|
-
"hiddenAliases": [
|
|
1740
|
-
|
|
1741
|
-
],
|
|
1742
|
-
"id": "apps:rename",
|
|
1727
|
+
"hiddenAliases": [],
|
|
1728
|
+
"id": "addons:rename",
|
|
1743
1729
|
"pluginAlias": "heroku",
|
|
1744
1730
|
"pluginName": "heroku",
|
|
1745
1731
|
"pluginType": "core",
|
|
1746
1732
|
"strict": true,
|
|
1747
|
-
"
|
|
1748
|
-
"
|
|
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",
|
|
1750
|
+
"allowNo": false,
|
|
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",
|
|
1749
1762
|
"isESM": false,
|
|
1750
1763
|
"relativePath": [
|
|
1751
1764
|
"lib",
|
|
1752
1765
|
"commands",
|
|
1753
|
-
"
|
|
1754
|
-
"
|
|
1766
|
+
"addons",
|
|
1767
|
+
"services.js"
|
|
1755
1768
|
]
|
|
1756
1769
|
},
|
|
1757
|
-
"
|
|
1758
|
-
"aliases": [
|
|
1770
|
+
"addons:upgrade": {
|
|
1771
|
+
"aliases": [
|
|
1772
|
+
"addons:downgrade"
|
|
1773
|
+
],
|
|
1759
1774
|
"args": {
|
|
1760
|
-
"
|
|
1761
|
-
"
|
|
1762
|
-
"name": "recipient",
|
|
1775
|
+
"addon": {
|
|
1776
|
+
"name": "addon",
|
|
1763
1777
|
"required": true
|
|
1778
|
+
},
|
|
1779
|
+
"plan": {
|
|
1780
|
+
"name": "plan"
|
|
1764
1781
|
}
|
|
1765
1782
|
},
|
|
1766
|
-
"description": "
|
|
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 ",
|
|
1767
1784
|
"examples": [
|
|
1768
|
-
"
|
|
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"
|
|
1769
1786
|
],
|
|
1770
1787
|
"flags": {
|
|
1771
|
-
"locked": {
|
|
1772
|
-
"char": "l",
|
|
1773
|
-
"description": "lock the app upon transfer",
|
|
1774
|
-
"name": "locked",
|
|
1775
|
-
"required": false,
|
|
1776
|
-
"allowNo": false,
|
|
1777
|
-
"type": "boolean"
|
|
1778
|
-
},
|
|
1779
|
-
"bulk": {
|
|
1780
|
-
"description": "transfer applications in bulk",
|
|
1781
|
-
"name": "bulk",
|
|
1782
|
-
"required": false,
|
|
1783
|
-
"allowNo": false,
|
|
1784
|
-
"type": "boolean"
|
|
1785
|
-
},
|
|
1786
1788
|
"app": {
|
|
1787
1789
|
"char": "a",
|
|
1788
1790
|
"description": "app to run command against",
|
|
@@ -1798,44 +1800,44 @@
|
|
|
1798
1800
|
"hasDynamicHelp": false,
|
|
1799
1801
|
"multiple": false,
|
|
1800
1802
|
"type": "option"
|
|
1801
|
-
},
|
|
1802
|
-
"confirm": {
|
|
1803
|
-
"char": "c",
|
|
1804
|
-
"hidden": true,
|
|
1805
|
-
"name": "confirm",
|
|
1806
|
-
"hasDynamicHelp": false,
|
|
1807
|
-
"multiple": false,
|
|
1808
|
-
"type": "option"
|
|
1809
1803
|
}
|
|
1810
1804
|
},
|
|
1811
1805
|
"hasDynamicHelp": false,
|
|
1812
1806
|
"hiddenAliases": [],
|
|
1813
|
-
"id": "
|
|
1807
|
+
"id": "addons:upgrade",
|
|
1814
1808
|
"pluginAlias": "heroku",
|
|
1815
1809
|
"pluginName": "heroku",
|
|
1816
1810
|
"pluginType": "core",
|
|
1817
1811
|
"strict": true,
|
|
1818
|
-
"topic": "
|
|
1812
|
+
"topic": "addons",
|
|
1819
1813
|
"isESM": false,
|
|
1820
1814
|
"relativePath": [
|
|
1821
1815
|
"lib",
|
|
1822
1816
|
"commands",
|
|
1823
|
-
"
|
|
1824
|
-
"
|
|
1817
|
+
"addons",
|
|
1818
|
+
"upgrade.js"
|
|
1825
1819
|
]
|
|
1826
1820
|
},
|
|
1827
|
-
"
|
|
1828
|
-
"aliases": [
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
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",
|
|
1833
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
|
+
},
|
|
1834
1837
|
"app": {
|
|
1835
1838
|
"char": "a",
|
|
1836
1839
|
"description": "app to run command against",
|
|
1837
1840
|
"name": "app",
|
|
1838
|
-
"required": true,
|
|
1839
1841
|
"hasDynamicHelp": false,
|
|
1840
1842
|
"multiple": false,
|
|
1841
1843
|
"type": "option"
|
|
@@ -1851,18 +1853,18 @@
|
|
|
1851
1853
|
},
|
|
1852
1854
|
"hasDynamicHelp": false,
|
|
1853
1855
|
"hiddenAliases": [],
|
|
1854
|
-
"id": "
|
|
1856
|
+
"id": "addons:wait",
|
|
1855
1857
|
"pluginAlias": "heroku",
|
|
1856
1858
|
"pluginName": "heroku",
|
|
1857
1859
|
"pluginType": "core",
|
|
1858
1860
|
"strict": true,
|
|
1859
|
-
"topic": "
|
|
1861
|
+
"topic": "addons",
|
|
1860
1862
|
"isESM": false,
|
|
1861
1863
|
"relativePath": [
|
|
1862
1864
|
"lib",
|
|
1863
1865
|
"commands",
|
|
1864
|
-
"
|
|
1865
|
-
"
|
|
1866
|
+
"addons",
|
|
1867
|
+
"wait.js"
|
|
1866
1868
|
]
|
|
1867
1869
|
},
|
|
1868
1870
|
"auth:login": {
|
|
@@ -9657,6 +9659,7 @@
|
|
|
9657
9659
|
],
|
|
9658
9660
|
"flags": {
|
|
9659
9661
|
"space": {
|
|
9662
|
+
"char": "s",
|
|
9660
9663
|
"description": "name of space",
|
|
9661
9664
|
"name": "space",
|
|
9662
9665
|
"required": true,
|
|
@@ -9665,6 +9668,7 @@
|
|
|
9665
9668
|
"type": "option"
|
|
9666
9669
|
},
|
|
9667
9670
|
"team": {
|
|
9671
|
+
"char": "t",
|
|
9668
9672
|
"description": "desired owner of space",
|
|
9669
9673
|
"name": "team",
|
|
9670
9674
|
"required": true,
|
|
@@ -10610,7 +10614,6 @@
|
|
|
10610
10614
|
"char": "a",
|
|
10611
10615
|
"description": "app to run command against",
|
|
10612
10616
|
"name": "app",
|
|
10613
|
-
"required": false,
|
|
10614
10617
|
"hasDynamicHelp": false,
|
|
10615
10618
|
"multiple": false,
|
|
10616
10619
|
"type": "option"
|
|
@@ -10627,7 +10630,6 @@
|
|
|
10627
10630
|
"char": "p",
|
|
10628
10631
|
"description": "name of pipeline",
|
|
10629
10632
|
"name": "pipeline",
|
|
10630
|
-
"required": false,
|
|
10631
10633
|
"hasDynamicHelp": false,
|
|
10632
10634
|
"multiple": false,
|
|
10633
10635
|
"type": "option"
|
|
@@ -10667,12 +10669,20 @@
|
|
|
10667
10669
|
"flags": {
|
|
10668
10670
|
"app": {
|
|
10669
10671
|
"char": "a",
|
|
10670
|
-
"description": "app
|
|
10672
|
+
"description": "app to run command against",
|
|
10671
10673
|
"name": "app",
|
|
10672
10674
|
"hasDynamicHelp": false,
|
|
10673
10675
|
"multiple": false,
|
|
10674
10676
|
"type": "option"
|
|
10675
10677
|
},
|
|
10678
|
+
"remote": {
|
|
10679
|
+
"char": "r",
|
|
10680
|
+
"description": "git remote of app to use",
|
|
10681
|
+
"name": "remote",
|
|
10682
|
+
"hasDynamicHelp": false,
|
|
10683
|
+
"multiple": false,
|
|
10684
|
+
"type": "option"
|
|
10685
|
+
},
|
|
10676
10686
|
"shell": {
|
|
10677
10687
|
"char": "s",
|
|
10678
10688
|
"description": "output config vars in shell format",
|
|
@@ -10739,7 +10749,6 @@
|
|
|
10739
10749
|
"char": "p",
|
|
10740
10750
|
"description": "name of pipeline",
|
|
10741
10751
|
"name": "pipeline",
|
|
10742
|
-
"required": true,
|
|
10743
10752
|
"hasDynamicHelp": false,
|
|
10744
10753
|
"multiple": false,
|
|
10745
10754
|
"type": "option"
|
|
@@ -10770,18 +10779,10 @@
|
|
|
10770
10779
|
"$ heroku ci:config:unset RAILS_ENV"
|
|
10771
10780
|
],
|
|
10772
10781
|
"flags": {
|
|
10773
|
-
"help": {
|
|
10774
|
-
"char": "h",
|
|
10775
|
-
"description": "Show CLI help.",
|
|
10776
|
-
"name": "help",
|
|
10777
|
-
"allowNo": false,
|
|
10778
|
-
"type": "boolean"
|
|
10779
|
-
},
|
|
10780
10782
|
"app": {
|
|
10781
10783
|
"char": "a",
|
|
10782
10784
|
"description": "app to run command against",
|
|
10783
10785
|
"name": "app",
|
|
10784
|
-
"required": false,
|
|
10785
10786
|
"hasDynamicHelp": false,
|
|
10786
10787
|
"multiple": false,
|
|
10787
10788
|
"type": "option"
|
|
@@ -10798,7 +10799,6 @@
|
|
|
10798
10799
|
"char": "p",
|
|
10799
10800
|
"description": "name of pipeline",
|
|
10800
10801
|
"name": "pipeline",
|
|
10801
|
-
"required": false,
|
|
10802
10802
|
"hasDynamicHelp": false,
|
|
10803
10803
|
"multiple": false,
|
|
10804
10804
|
"type": "option"
|
|
@@ -12574,169 +12574,6 @@
|
|
|
12574
12574
|
"set.js"
|
|
12575
12575
|
]
|
|
12576
12576
|
},
|
|
12577
|
-
"spaces:outbound-rules:add": {
|
|
12578
|
-
"aliases": [
|
|
12579
|
-
"outbound-rules:add"
|
|
12580
|
-
],
|
|
12581
|
-
"args": {},
|
|
12582
|
-
"description": "Add outbound rules to a Private Space\n\nThe destination flag uses CIDR notation.\n\nICMP Rules\nThe ICMP protocol has types, not ports, but the underlying systems treat them as the same. For this reason,\nwhen you want to allow ICMP traffic you will use the --port flag to specify the ICMP types you want to\nallow. ICMP types are numbered, 0-255.\n",
|
|
12583
|
-
"examples": [
|
|
12584
|
-
"$ heroku outbound-rules:add --space my-space --dest 192.168.2.0/24 --protocol tcp --port 80\nAdding rule to the Outbound Rules of my-space... done\n",
|
|
12585
|
-
"# with port range:\n$ heroku outbound-rules:add --space my-space --dest 192.168.2.0/24 --protocol tcp --port 80-100\nAdding rule to the Outbound Rules of my-space... done\n",
|
|
12586
|
-
"# opening up everything\n$ heroku outbound-rules:add --space my-space --dest 0.0.0.0/0 --protocol any --port any\nAdding rule to the Outbound Rules of my-space... done\n"
|
|
12587
|
-
],
|
|
12588
|
-
"flags": {
|
|
12589
|
-
"space": {
|
|
12590
|
-
"char": "s",
|
|
12591
|
-
"description": "space to add rule to",
|
|
12592
|
-
"name": "space",
|
|
12593
|
-
"required": true,
|
|
12594
|
-
"hasDynamicHelp": false,
|
|
12595
|
-
"multiple": false,
|
|
12596
|
-
"type": "option"
|
|
12597
|
-
},
|
|
12598
|
-
"dest": {
|
|
12599
|
-
"description": "target CIDR block dynos are allowed to communicate with",
|
|
12600
|
-
"name": "dest",
|
|
12601
|
-
"required": true,
|
|
12602
|
-
"hasDynamicHelp": false,
|
|
12603
|
-
"multiple": false,
|
|
12604
|
-
"type": "option"
|
|
12605
|
-
},
|
|
12606
|
-
"protocol": {
|
|
12607
|
-
"description": "the protocol dynos are allowed to use when communicating with hosts in destination CIDR block.",
|
|
12608
|
-
"name": "protocol",
|
|
12609
|
-
"required": true,
|
|
12610
|
-
"hasDynamicHelp": false,
|
|
12611
|
-
"multiple": false,
|
|
12612
|
-
"options": [
|
|
12613
|
-
"tcp",
|
|
12614
|
-
"udp",
|
|
12615
|
-
"icmp",
|
|
12616
|
-
"0-255",
|
|
12617
|
-
"any"
|
|
12618
|
-
],
|
|
12619
|
-
"type": "option"
|
|
12620
|
-
},
|
|
12621
|
-
"port": {
|
|
12622
|
-
"description": "the port dynos are allowed to use when communicating with hosts in destination CIDR block. Accepts a range in `<lowest port>-<highest port>` format. 0 is the minimum. The maximum port allowed is 65535, except for ICMP with a maximum of 255.",
|
|
12623
|
-
"name": "port",
|
|
12624
|
-
"hasDynamicHelp": false,
|
|
12625
|
-
"multiple": false,
|
|
12626
|
-
"type": "option"
|
|
12627
|
-
}
|
|
12628
|
-
},
|
|
12629
|
-
"hasDynamicHelp": false,
|
|
12630
|
-
"hidden": true,
|
|
12631
|
-
"hiddenAliases": [],
|
|
12632
|
-
"id": "spaces:outbound-rules:add",
|
|
12633
|
-
"pluginAlias": "heroku",
|
|
12634
|
-
"pluginName": "heroku",
|
|
12635
|
-
"pluginType": "core",
|
|
12636
|
-
"strict": true,
|
|
12637
|
-
"topic": "spaces",
|
|
12638
|
-
"isESM": false,
|
|
12639
|
-
"relativePath": [
|
|
12640
|
-
"lib",
|
|
12641
|
-
"commands",
|
|
12642
|
-
"spaces",
|
|
12643
|
-
"outbound-rules",
|
|
12644
|
-
"add.js"
|
|
12645
|
-
]
|
|
12646
|
-
},
|
|
12647
|
-
"spaces:outbound-rules": {
|
|
12648
|
-
"aliases": [
|
|
12649
|
-
"outbound-rules"
|
|
12650
|
-
],
|
|
12651
|
-
"args": {
|
|
12652
|
-
"space": {
|
|
12653
|
-
"hidden": true,
|
|
12654
|
-
"name": "space"
|
|
12655
|
-
}
|
|
12656
|
-
},
|
|
12657
|
-
"description": "list Outbound Rules for a space\nOutbound Rules are only available on Private Spaces.\n\nNewly created spaces will have an \"Allow All\" rule set by default\nallowing all egress dyno traffic outside of the space. You can\nremove this default rule to completely stop your private dynos from\ntalking to the world.\n\nYou can add specific rules that only allow your dyno to communicate with trusted hosts.\n",
|
|
12658
|
-
"flags": {
|
|
12659
|
-
"space": {
|
|
12660
|
-
"char": "s",
|
|
12661
|
-
"description": "space to get outbound rules from",
|
|
12662
|
-
"name": "space",
|
|
12663
|
-
"hasDynamicHelp": false,
|
|
12664
|
-
"multiple": false,
|
|
12665
|
-
"type": "option"
|
|
12666
|
-
},
|
|
12667
|
-
"json": {
|
|
12668
|
-
"description": "output in json format",
|
|
12669
|
-
"name": "json",
|
|
12670
|
-
"allowNo": false,
|
|
12671
|
-
"type": "boolean"
|
|
12672
|
-
}
|
|
12673
|
-
},
|
|
12674
|
-
"hasDynamicHelp": false,
|
|
12675
|
-
"hidden": true,
|
|
12676
|
-
"hiddenAliases": [],
|
|
12677
|
-
"id": "spaces:outbound-rules",
|
|
12678
|
-
"pluginAlias": "heroku",
|
|
12679
|
-
"pluginName": "heroku",
|
|
12680
|
-
"pluginType": "core",
|
|
12681
|
-
"strict": true,
|
|
12682
|
-
"topic": "spaces",
|
|
12683
|
-
"isESM": false,
|
|
12684
|
-
"relativePath": [
|
|
12685
|
-
"lib",
|
|
12686
|
-
"commands",
|
|
12687
|
-
"spaces",
|
|
12688
|
-
"outbound-rules",
|
|
12689
|
-
"index.js"
|
|
12690
|
-
]
|
|
12691
|
-
},
|
|
12692
|
-
"spaces:outbound-rules:remove": {
|
|
12693
|
-
"aliases": [
|
|
12694
|
-
"outbound-rules:remove"
|
|
12695
|
-
],
|
|
12696
|
-
"args": {
|
|
12697
|
-
"ruleNumber": {
|
|
12698
|
-
"name": "ruleNumber",
|
|
12699
|
-
"required": true
|
|
12700
|
-
}
|
|
12701
|
-
},
|
|
12702
|
-
"description": "Remove a Rules from the list of Outbound Rules",
|
|
12703
|
-
"examples": [
|
|
12704
|
-
"$ heroku outbound-rules:remove --space my-space 4\n Removed 192.168.2.0/24 from trusted IP ranges on my-space\n"
|
|
12705
|
-
],
|
|
12706
|
-
"flags": {
|
|
12707
|
-
"space": {
|
|
12708
|
-
"description": "space to remove rule from",
|
|
12709
|
-
"name": "space",
|
|
12710
|
-
"hasDynamicHelp": false,
|
|
12711
|
-
"multiple": false,
|
|
12712
|
-
"type": "option"
|
|
12713
|
-
},
|
|
12714
|
-
"confirm": {
|
|
12715
|
-
"description": "set to space name to bypass confirm prompt",
|
|
12716
|
-
"name": "confirm",
|
|
12717
|
-
"hasDynamicHelp": false,
|
|
12718
|
-
"multiple": false,
|
|
12719
|
-
"type": "option"
|
|
12720
|
-
}
|
|
12721
|
-
},
|
|
12722
|
-
"hasDynamicHelp": false,
|
|
12723
|
-
"hidden": true,
|
|
12724
|
-
"hiddenAliases": [],
|
|
12725
|
-
"id": "spaces:outbound-rules:remove",
|
|
12726
|
-
"pluginAlias": "heroku",
|
|
12727
|
-
"pluginName": "heroku",
|
|
12728
|
-
"pluginType": "core",
|
|
12729
|
-
"strict": true,
|
|
12730
|
-
"topic": "spaces",
|
|
12731
|
-
"isESM": false,
|
|
12732
|
-
"relativePath": [
|
|
12733
|
-
"lib",
|
|
12734
|
-
"commands",
|
|
12735
|
-
"spaces",
|
|
12736
|
-
"outbound-rules",
|
|
12737
|
-
"remove.js"
|
|
12738
|
-
]
|
|
12739
|
-
},
|
|
12740
12577
|
"spaces:peerings:accept": {
|
|
12741
12578
|
"aliases": [],
|
|
12742
12579
|
"args": {
|
|
@@ -13038,8 +12875,10 @@
|
|
|
13038
12875
|
],
|
|
13039
12876
|
"flags": {
|
|
13040
12877
|
"space": {
|
|
12878
|
+
"char": "s",
|
|
13041
12879
|
"description": "space to remove rule from",
|
|
13042
12880
|
"name": "space",
|
|
12881
|
+
"required": true,
|
|
13043
12882
|
"hasDynamicHelp": false,
|
|
13044
12883
|
"multiple": false,
|
|
13045
12884
|
"type": "option"
|
|
@@ -13081,7 +12920,7 @@
|
|
|
13081
12920
|
}
|
|
13082
12921
|
},
|
|
13083
12922
|
"description": "display the configuration information for VPN\n\nYou will use the information provided by this command to establish a Private Space VPN Connection.\n\n- You must configure your VPN Gateway to use both Tunnels provided by Heroku\n- The VPN Gateway values are the IP addresses of the Private Space Tunnels\n- The Customer Gateway value is the Public IP of your VPN Gateway\n- The VPN Gateway must use the IKE Version shown and the Pre-shared Keys as the authentication method\n",
|
|
13084
|
-
"examples": "$ heroku spaces:vpn:config --space my-space
|
|
12923
|
+
"examples": "$ heroku spaces:vpn:config vpn-connection-name --space my-space\n=== vpn-connection-name VPN Tunnels\n VPN Tunnel Customer Gateway VPN Gateway Pre-shared Key Routable Subnets IKE Version\n ────────── ──────────────── ────────────── ────────────── ──────────────── ───────────\n Tunnel 1 104.196.121.200 35.171.237.136 abcdef12345 10.0.0.0/16 1\n Tunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1\n",
|
|
13085
12924
|
"flags": {
|
|
13086
12925
|
"space": {
|
|
13087
12926
|
"char": "s",
|
|
@@ -13107,7 +12946,7 @@
|
|
|
13107
12946
|
"pluginType": "core",
|
|
13108
12947
|
"strict": true,
|
|
13109
12948
|
"topic": "spaces",
|
|
13110
|
-
"example": "$ heroku spaces:vpn:config --space my-space
|
|
12949
|
+
"example": "$ heroku spaces:vpn:config vpn-connection-name --space my-space\n=== vpn-connection-name VPN Tunnels\n VPN Tunnel Customer Gateway VPN Gateway Pre-shared Key Routable Subnets IKE Version\n ────────── ──────────────── ────────────── ────────────── ──────────────── ───────────\n Tunnel 1 104.196.121.200 35.171.237.136 abcdef12345 10.0.0.0/16 1\n Tunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1\n",
|
|
13111
12950
|
"isESM": false,
|
|
13112
12951
|
"relativePath": [
|
|
13113
12952
|
"lib",
|
|
@@ -13121,13 +12960,14 @@
|
|
|
13121
12960
|
"aliases": [],
|
|
13122
12961
|
"args": {
|
|
13123
12962
|
"name": {
|
|
12963
|
+
"description": "name or id of the VPN connection to create",
|
|
13124
12964
|
"name": "name",
|
|
13125
12965
|
"required": true
|
|
13126
12966
|
}
|
|
13127
12967
|
},
|
|
13128
12968
|
"description": "create VPN\nPrivate Spaces can be connected to another private network via an IPSec VPN connection allowing dynos to connect to hosts on your private networks and vice versa.\nThe connection is established over the public Internet but all traffic is encrypted using IPSec.\n",
|
|
13129
12969
|
"examples": [
|
|
13130
|
-
"$ heroku spaces:vpn:connect
|
|
12970
|
+
"$ heroku spaces:vpn:connect vpn-connection-name --ip 35.161.69.30 --cidrs 172.16.0.0/16,10.0.0.0/24 --space my-space\nCreating VPN Connection in space my-space... done\n▸ Use spaces:vpn:wait to track allocation.\n"
|
|
13131
12971
|
],
|
|
13132
12972
|
"flags": {
|
|
13133
12973
|
"ip": {
|
|
@@ -13219,7 +13059,7 @@
|
|
|
13219
13059
|
"aliases": [],
|
|
13220
13060
|
"args": {
|
|
13221
13061
|
"name": {
|
|
13222
|
-
"description": "name of the VPN connection to destroy",
|
|
13062
|
+
"description": "name or id of the VPN connection to destroy",
|
|
13223
13063
|
"name": "name",
|
|
13224
13064
|
"required": true
|
|
13225
13065
|
}
|
|
@@ -13274,7 +13114,7 @@
|
|
|
13274
13114
|
}
|
|
13275
13115
|
},
|
|
13276
13116
|
"description": "display the information for VPN",
|
|
13277
|
-
"examples": "$ heroku spaces:vpn:info --space my-space
|
|
13117
|
+
"examples": "$ heroku spaces:vpn:info vpn-connection-name --space my-space\n=== vpn-connection-name VPN Tunnel Info\nName: vpn-connection-name\nID: 123456789012\nPublic IP: 35.161.69.30\nRoutable CIDRs: 172.16.0.0/16\nStatus: failed\nStatus Message: supplied CIDR block already in use\n=== my-space Tunnel Info\n VPN Tunnel IP Address Status Last Changed Details\n ────────── ───────────── ────── ──────────────────── ─────────────\n Tunnel 1 52.44.146.197 UP 2016-10-25T22:09:05Z status message\n Tunnel 2 52.44.146.197 UP 2016-10-25T22:09:05Z status message\n",
|
|
13278
13118
|
"flags": {
|
|
13279
13119
|
"space": {
|
|
13280
13120
|
"char": "s",
|
|
@@ -13300,7 +13140,7 @@
|
|
|
13300
13140
|
"pluginType": "core",
|
|
13301
13141
|
"strict": true,
|
|
13302
13142
|
"topic": "spaces",
|
|
13303
|
-
"example": "$ heroku spaces:vpn:info --space my-space
|
|
13143
|
+
"example": "$ heroku spaces:vpn:info vpn-connection-name --space my-space\n=== vpn-connection-name VPN Tunnel Info\nName: vpn-connection-name\nID: 123456789012\nPublic IP: 35.161.69.30\nRoutable CIDRs: 172.16.0.0/16\nStatus: failed\nStatus Message: supplied CIDR block already in use\n=== my-space Tunnel Info\n VPN Tunnel IP Address Status Last Changed Details\n ────────── ───────────── ────── ──────────────────── ─────────────\n Tunnel 1 52.44.146.197 UP 2016-10-25T22:09:05Z status message\n Tunnel 2 52.44.146.197 UP 2016-10-25T22:09:05Z status message\n",
|
|
13304
13144
|
"isESM": false,
|
|
13305
13145
|
"relativePath": [
|
|
13306
13146
|
"lib",
|
|
@@ -13314,12 +13154,13 @@
|
|
|
13314
13154
|
"aliases": [],
|
|
13315
13155
|
"args": {
|
|
13316
13156
|
"name": {
|
|
13157
|
+
"description": "name or id of the VPN connection to update",
|
|
13317
13158
|
"name": "name",
|
|
13318
13159
|
"required": true
|
|
13319
13160
|
}
|
|
13320
13161
|
},
|
|
13321
13162
|
"description": "update VPN\nPrivate Spaces can be connected to another private network via an IPSec VPN connection allowing dynos to connect to hosts on your private networks and vice versa.\nThe connection is established over the public Internet but all traffic is encrypted using IPSec.\n",
|
|
13322
|
-
"examples": "$ heroku spaces:vpn:update
|
|
13163
|
+
"examples": "$ heroku spaces:vpn:update vpn-connection-name --space my-space --cidrs 172.16.0.0/16,10.0.0.0/24\nUpdating VPN Connection in space my-space... done\n",
|
|
13323
13164
|
"flags": {
|
|
13324
13165
|
"cidrs": {
|
|
13325
13166
|
"char": "c",
|
|
@@ -13348,7 +13189,7 @@
|
|
|
13348
13189
|
"pluginType": "core",
|
|
13349
13190
|
"strict": true,
|
|
13350
13191
|
"topic": "spaces",
|
|
13351
|
-
"example": "$ heroku spaces:vpn:update
|
|
13192
|
+
"example": "$ heroku spaces:vpn:update vpn-connection-name --space my-space --cidrs 172.16.0.0/16,10.0.0.0/24\nUpdating VPN Connection in space my-space... done\n",
|
|
13352
13193
|
"isESM": false,
|
|
13353
13194
|
"relativePath": [
|
|
13354
13195
|
"lib",
|
|
@@ -13360,8 +13201,17 @@
|
|
|
13360
13201
|
},
|
|
13361
13202
|
"spaces:vpn:wait": {
|
|
13362
13203
|
"aliases": [],
|
|
13363
|
-
"args": {
|
|
13204
|
+
"args": {
|
|
13205
|
+
"name": {
|
|
13206
|
+
"description": "name or id of the VPN connection you are waiting on for allocation.",
|
|
13207
|
+
"name": "name",
|
|
13208
|
+
"required": true
|
|
13209
|
+
}
|
|
13210
|
+
},
|
|
13364
13211
|
"description": "wait for VPN Connection to be created",
|
|
13212
|
+
"examples": [
|
|
13213
|
+
" $ heroku spaces:vpn:wait vpn-connection-name --space my-space\n Waiting for VPN Connection vpn-connection-name to allocate... done\n === my-space VPN Tunnels\n\nVPN Tunnel Customer Gateway VPN Gateway Pre-shared Key Routable Subnets IKE Version\n────────── ──────────────── ────────────── ────────────── ──────────────── ───────────\nTunnel 1 104.196.121.200 35.171.237.136 abcdef12345 10.0.0.0/16 1\nTunnel 2 104.196.121.200 52.44.7.216 fedcba54321 10.0.0.0/16 1\n"
|
|
13214
|
+
],
|
|
13365
13215
|
"flags": {
|
|
13366
13216
|
"space": {
|
|
13367
13217
|
"char": "s",
|
|
@@ -13372,15 +13222,6 @@
|
|
|
13372
13222
|
"multiple": false,
|
|
13373
13223
|
"type": "option"
|
|
13374
13224
|
},
|
|
13375
|
-
"name": {
|
|
13376
|
-
"char": "n",
|
|
13377
|
-
"description": "name or id of the vpn connection to wait for",
|
|
13378
|
-
"name": "name",
|
|
13379
|
-
"required": true,
|
|
13380
|
-
"hasDynamicHelp": false,
|
|
13381
|
-
"multiple": false,
|
|
13382
|
-
"type": "option"
|
|
13383
|
-
},
|
|
13384
13225
|
"json": {
|
|
13385
13226
|
"description": "output in json format",
|
|
13386
13227
|
"name": "json",
|
|
@@ -13922,5 +13763,5 @@
|
|
|
13922
13763
|
]
|
|
13923
13764
|
}
|
|
13924
13765
|
},
|
|
13925
|
-
"version": "9.0.0-
|
|
13766
|
+
"version": "9.0.0-beta.1"
|
|
13926
13767
|
}
|