heroku 8.1.8 → 8.2.0-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/autocomplete-scripts/README.md +7 -0
- package/autocomplete-scripts/bash/heroku.bash +59 -0
- package/autocomplete-scripts/brew/bash +4 -0
- package/autocomplete-scripts/brew/zsh/_heroku +59 -0
- package/autocomplete-scripts/zsh/_heroku +53 -0
- package/bin/bats-test-runner.js +7 -0
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +36 -1
- package/lib/analytics.d.ts +2 -2
- package/lib/analytics.js +3 -4
- package/lib/commands/auth/2fa/disable.d.ts +7 -0
- package/lib/commands/auth/2fa/disable.js +16 -0
- package/lib/commands/auth/2fa/index.d.ts +6 -0
- package/lib/commands/auth/2fa/index.js +18 -0
- package/lib/commands/auth/login.d.ts +8 -0
- package/lib/commands/auth/login.js +25 -0
- package/lib/commands/auth/logout.d.ts +6 -0
- package/lib/commands/auth/logout.js +14 -0
- package/lib/commands/auth/token.d.ts +7 -0
- package/lib/commands/auth/token.js +31 -0
- package/lib/commands/auth/whoami.d.ts +7 -0
- package/lib/commands/auth/whoami.js +26 -0
- package/lib/commands/authorizations/create.d.ts +13 -0
- package/lib/commands/authorizations/create.js +41 -0
- package/lib/commands/authorizations/index.d.ts +9 -0
- package/lib/commands/authorizations/index.js +35 -0
- package/lib/commands/authorizations/info.d.ts +11 -0
- package/lib/commands/authorizations/info.js +25 -0
- package/lib/commands/authorizations/revoke.d.ts +10 -0
- package/lib/commands/authorizations/revoke.js +22 -0
- package/lib/commands/authorizations/rotate.d.ts +8 -0
- package/lib/commands/authorizations/rotate.js +19 -0
- package/lib/commands/authorizations/update.d.ts +13 -0
- package/lib/commands/authorizations/update.js +36 -0
- package/lib/commands/autocomplete/create.d.ts +29 -0
- package/lib/commands/autocomplete/create.js +213 -0
- package/lib/commands/autocomplete/doctor.d.ts +12 -0
- package/lib/commands/autocomplete/doctor.js +97 -0
- package/lib/commands/autocomplete/index.d.ts +12 -0
- package/lib/commands/autocomplete/index.js +67 -0
- package/lib/commands/autocomplete/options.d.ts +25 -0
- package/lib/commands/autocomplete/options.js +210 -0
- package/lib/commands/autocomplete/script.d.ts +10 -0
- package/lib/commands/autocomplete/script.js +23 -0
- package/lib/commands/buildpacks/add.d.ts +13 -0
- package/lib/commands/buildpacks/add.js +43 -0
- package/lib/commands/buildpacks/clear.d.ts +9 -0
- package/lib/commands/buildpacks/clear.js +17 -0
- package/lib/commands/buildpacks/index.d.ts +9 -0
- package/lib/commands/buildpacks/index.js +25 -0
- package/lib/commands/buildpacks/info.d.ts +8 -0
- package/lib/commands/buildpacks/info.js +41 -0
- package/lib/commands/buildpacks/remove.d.ts +13 -0
- package/lib/commands/buildpacks/remove.js +55 -0
- package/lib/commands/buildpacks/search.d.ts +13 -0
- package/lib/commands/buildpacks/search.js +69 -0
- package/lib/commands/buildpacks/set.d.ts +13 -0
- package/lib/commands/buildpacks/set.js +42 -0
- package/lib/commands/buildpacks/versions.d.ts +8 -0
- package/lib/commands/buildpacks/versions.js +56 -0
- package/lib/commands/certs/auto/wait.d.ts +9 -0
- package/lib/commands/certs/auto/wait.js +14 -0
- package/lib/commands/ci/index.d.ts +12 -0
- package/lib/commands/ci/index.js +25 -0
- package/lib/commands/ci/info.d.ts +14 -0
- package/lib/commands/ci/info.js +29 -0
- package/lib/commands/ci/last.d.ts +11 -0
- package/lib/commands/ci/last.js +31 -0
- package/lib/commands/ci/rerun.d.ts +13 -0
- package/lib/commands/ci/rerun.js +53 -0
- package/lib/commands/ci/run.d.ts +10 -0
- package/lib/commands/ci/run.js +42 -0
- package/lib/commands/clients/create.d.ts +14 -0
- package/lib/commands/clients/create.js +37 -0
- package/lib/commands/clients/destroy.d.ts +8 -0
- package/lib/commands/clients/destroy.js +18 -0
- package/lib/commands/clients/index.d.ts +8 -0
- package/lib/commands/clients/index.js +32 -0
- package/lib/commands/clients/info.d.ts +13 -0
- package/lib/commands/clients/info.js +33 -0
- package/lib/commands/clients/rotate.d.ts +12 -0
- package/lib/commands/clients/rotate.js +33 -0
- package/lib/commands/clients/update.d.ts +13 -0
- package/lib/commands/clients/update.js +38 -0
- package/lib/commands/config/edit.d.ts +23 -0
- package/lib/commands/config/edit.js +132 -0
- package/lib/commands/config/get.d.ts +16 -0
- package/lib/commands/config/get.js +35 -0
- package/lib/commands/config/index.d.ts +11 -0
- package/lib/commands/config/index.js +33 -0
- package/lib/commands/config/unset.d.ts +12 -0
- package/lib/commands/config/unset.js +51 -0
- package/lib/commands/console.d.ts +11 -0
- package/lib/commands/console.js +30 -0
- package/lib/commands/domains/add.d.ts +19 -0
- package/lib/commands/domains/add.js +117 -0
- package/lib/commands/domains/clear.d.ts +11 -0
- package/lib/commands/domains/clear.js +26 -0
- package/lib/commands/domains/index.d.ts +40 -0
- package/lib/commands/domains/index.js +79 -0
- package/lib/commands/domains/info.d.ts +14 -0
- package/lib/commands/domains/info.js +25 -0
- package/lib/commands/domains/remove.d.ts +14 -0
- package/lib/commands/domains/remove.js +26 -0
- package/lib/commands/domains/update.d.ts +15 -0
- package/lib/commands/domains/update.js +40 -0
- package/lib/commands/domains/wait.d.ts +13 -0
- package/lib/commands/domains/wait.js +32 -0
- package/lib/commands/git/clone.d.ts +13 -0
- package/lib/commands/git/clone.js +29 -0
- package/lib/commands/git/credentials.d.ts +9 -0
- package/lib/commands/git/credentials.js +32 -0
- package/lib/commands/git/remote.d.ts +11 -0
- package/lib/commands/git/remote.js +44 -0
- package/lib/commands/labs/disable.d.ts +11 -0
- package/lib/commands/labs/disable.js +65 -0
- package/lib/commands/local/index.d.ts +17 -0
- package/lib/commands/local/index.js +75 -0
- package/lib/commands/local/run.d.ts +11 -0
- package/lib/commands/local/run.js +38 -0
- package/lib/commands/local/version.d.ts +5 -0
- package/lib/commands/local/version.js +13 -0
- package/lib/commands/logs.d.ts +16 -0
- package/lib/commands/logs.js +45 -0
- package/lib/commands/pipelines/add.d.ts +14 -0
- package/lib/commands/pipelines/add.js +61 -0
- package/lib/commands/pipelines/connect.d.ts +12 -0
- package/lib/commands/pipelines/connect.js +52 -0
- package/lib/commands/pipelines/create.d.ts +15 -0
- package/lib/commands/pipelines/create.js +91 -0
- package/lib/commands/pipelines/destroy.d.ts +9 -0
- package/lib/commands/pipelines/destroy.js +27 -0
- package/lib/commands/pipelines/diff.d.ts +19 -0
- package/lib/commands/pipelines/diff.js +152 -0
- package/lib/commands/pipelines/index.d.ts +9 -0
- package/lib/commands/pipelines/index.js +27 -0
- package/lib/commands/pipelines/info.d.ts +13 -0
- package/lib/commands/pipelines/info.js +43 -0
- package/lib/commands/pipelines/open.d.ts +9 -0
- package/lib/commands/pipelines/open.js +19 -0
- package/lib/commands/pipelines/promote.d.ts +12 -0
- package/lib/commands/pipelines/promote.js +216 -0
- package/lib/commands/pipelines/remove.d.ts +10 -0
- package/lib/commands/pipelines/remove.js +23 -0
- package/lib/commands/pipelines/rename.d.ts +10 -0
- package/lib/commands/pipelines/rename.js +33 -0
- package/lib/commands/pipelines/setup.d.ts +14 -0
- package/lib/commands/pipelines/setup.js +91 -0
- package/lib/commands/pipelines/transfer.d.ts +13 -0
- package/lib/commands/pipelines/transfer.js +65 -0
- package/lib/commands/pipelines/update.d.ts +11 -0
- package/lib/commands/pipelines/update.js +32 -0
- package/lib/commands/ps/autoscale/disable.d.ts +9 -0
- package/lib/commands/ps/autoscale/disable.js +35 -0
- package/lib/commands/ps/autoscale/enable.d.ts +13 -0
- package/lib/commands/ps/autoscale/enable.js +65 -0
- package/lib/commands/ps/wait.d.ts +12 -0
- package/lib/commands/ps/wait.js +78 -0
- package/lib/commands/rake.d.ts +14 -0
- package/lib/commands/rake.js +46 -0
- package/lib/commands/regions.d.ts +11 -0
- package/lib/commands/regions.js +45 -0
- package/lib/commands/reviewapps/disable.d.ts +17 -0
- package/lib/commands/reviewapps/disable.js +102 -0
- package/lib/commands/reviewapps/enable.d.ts +14 -0
- package/lib/commands/reviewapps/enable.js +89 -0
- package/lib/commands/run/detached.d.ts +15 -0
- package/lib/commands/run/detached.js +56 -0
- package/lib/commands/run/index.d.ts +18 -0
- package/lib/commands/run/index.js +64 -0
- package/lib/commands/run/inside.d.ts +15 -0
- package/lib/commands/run/inside.js +55 -0
- package/lib/commands/sessions/destroy.d.ts +8 -0
- package/lib/commands/sessions/destroy.js +18 -0
- package/lib/commands/sessions/index.d.ts +8 -0
- package/lib/commands/sessions/index.js +31 -0
- package/lib/commands/status.d.ts +8 -0
- package/lib/commands/status.js +46 -0
- package/lib/commands/webhooks/add.d.ts +16 -0
- package/lib/commands/webhooks/add.js +47 -0
- package/lib/commands/webhooks/deliveries/index.d.ts +12 -0
- package/lib/commands/webhooks/deliveries/index.js +80 -0
- package/lib/commands/webhooks/deliveries/info.d.ts +14 -0
- package/lib/commands/webhooks/deliveries/info.js +42 -0
- package/lib/commands/webhooks/events/index.d.ts +11 -0
- package/lib/commands/webhooks/events/index.js +46 -0
- package/lib/commands/webhooks/events/info.d.ts +14 -0
- package/lib/commands/webhooks/events/info.js +31 -0
- package/lib/commands/webhooks/index.d.ts +11 -0
- package/lib/commands/webhooks/index.js +45 -0
- package/lib/commands/webhooks/info.d.ts +14 -0
- package/lib/commands/webhooks/info.js +31 -0
- package/lib/commands/webhooks/remove.d.ts +14 -0
- package/lib/commands/webhooks/remove.js +29 -0
- package/lib/commands/webhooks/update.d.ts +19 -0
- package/lib/commands/webhooks/update.js +41 -0
- package/lib/file.js +2 -3
- package/lib/global_telemetry.d.ts +53 -0
- package/lib/global_telemetry.js +82 -0
- package/lib/hooks/command_not_found/performance_analytics.d.ts +3 -0
- package/lib/hooks/command_not_found/performance_analytics.js +7 -0
- package/lib/hooks/init/terms-of-service.js +3 -4
- package/lib/hooks/init/version.d.ts +2 -1
- package/lib/hooks/init/version.js +1 -2
- package/lib/hooks/postrun/performance_analytics.d.ts +3 -0
- package/lib/hooks/postrun/performance_analytics.js +11 -0
- package/lib/hooks/prerun/analytics.d.ts +2 -1
- package/lib/hooks/prerun/analytics.js +4 -4
- package/lib/hooks/recache.d.ts +3 -0
- package/lib/hooks/recache.js +56 -0
- package/lib/hooks/update/brew.d.ts +2 -1
- package/lib/hooks/update/brew.js +3 -5
- package/lib/hooks/update/completions.d.ts +2 -1
- package/lib/hooks/update/completions.js +2 -3
- package/lib/hooks/update/plugin-migrate.d.ts +2 -1
- package/lib/hooks/update/plugin-migrate.js +3 -5
- package/lib/hooks/update/tidy.d.ts +2 -1
- package/lib/hooks/update/tidy.js +3 -5
- package/lib/lib/authorizations/authorizations.d.ts +2 -0
- package/lib/lib/authorizations/authorizations.js +39 -0
- package/lib/lib/autocomplete/base.d.ts +11 -0
- package/lib/lib/autocomplete/base.js +44 -0
- package/lib/lib/autocomplete/cache.d.ts +2 -0
- package/lib/lib/autocomplete/cache.js +28 -0
- package/lib/lib/autocomplete/completions.d.ts +37 -0
- package/lib/lib/autocomplete/completions.js +261 -0
- package/lib/lib/buildpacks/buildpacks.d.ts +32 -0
- package/lib/lib/buildpacks/buildpacks.js +161 -0
- package/lib/lib/buildpacks/push.d.ts +0 -0
- package/lib/lib/buildpacks/push.js +4 -0
- package/lib/lib/ci/git.d.ts +8 -0
- package/lib/lib/ci/git.js +71 -0
- package/lib/lib/ci/interfaces/kolkrabbi.d.ts +311 -0
- package/lib/lib/ci/interfaces/kolkrabbi.js +7 -0
- package/lib/lib/ci/pipelines.d.ts +3 -0
- package/lib/lib/ci/pipelines.js +57 -0
- package/lib/lib/ci/source.d.ts +2 -0
- package/lib/lib/ci/source.js +42 -0
- package/lib/lib/ci/test-run.d.ts +5 -0
- package/lib/lib/ci/test-run.js +232 -0
- package/lib/lib/clients/clients.d.ts +1 -0
- package/lib/lib/clients/clients.js +25 -0
- package/lib/lib/config/quote.d.ts +2 -0
- package/lib/lib/config/quote.js +33 -0
- package/lib/lib/config/util.d.ts +3 -0
- package/lib/lib/config/util.js +12 -0
- package/lib/lib/domains/wait-for-domain.d.ts +3 -0
- package/lib/lib/domains/wait-for-domain.js +19 -0
- package/lib/lib/git/git.d.ts +8 -0
- package/lib/lib/git/git.js +56 -0
- package/lib/lib/local/fork-foreman.d.ts +1 -0
- package/lib/lib/local/fork-foreman.js +33 -0
- package/lib/lib/local/load-foreman-procfile.d.ts +0 -0
- package/lib/lib/local/load-foreman-procfile.js +2 -0
- package/lib/lib/local/run-foreman.d.ts +0 -0
- package/lib/lib/local/run-foreman.js +2 -0
- package/lib/lib/pipelines/api.d.ts +25 -0
- package/lib/lib/pipelines/api.js +130 -0
- package/lib/lib/pipelines/disambiguate.d.ts +3 -0
- package/lib/lib/pipelines/disambiguate.js +49 -0
- package/lib/lib/pipelines/github-api.d.ts +8 -0
- package/lib/lib/pipelines/github-api.js +18 -0
- package/lib/lib/pipelines/infer.d.ts +1 -0
- package/lib/lib/pipelines/infer.js +11 -0
- package/lib/lib/pipelines/key-by.d.ts +1 -0
- package/lib/lib/pipelines/key-by.js +11 -0
- package/lib/lib/pipelines/kolkrabbi-api.d.ts +14 -0
- package/lib/lib/pipelines/kolkrabbi-api.js +62 -0
- package/lib/lib/pipelines/ownership.d.ts +4 -0
- package/lib/lib/pipelines/ownership.js +40 -0
- package/lib/lib/pipelines/render-pipeline.d.ts +6 -0
- package/lib/lib/pipelines/render-pipeline.js +52 -0
- package/lib/lib/pipelines/setup/create-apps.d.ts +1 -0
- package/lib/lib/pipelines/setup/create-apps.js +44 -0
- package/lib/lib/pipelines/setup/get-ci-settings.d.ts +4 -0
- package/lib/lib/pipelines/setup/get-ci-settings.js +19 -0
- package/lib/lib/pipelines/setup/get-github-token.d.ts +1 -0
- package/lib/lib/pipelines/setup/get-github-token.js +10 -0
- package/lib/lib/pipelines/setup/get-name-and-repo.d.ts +1 -0
- package/lib/lib/pipelines/setup/get-name-and-repo.js +47 -0
- package/lib/lib/pipelines/setup/get-repo.d.ts +1 -0
- package/lib/lib/pipelines/setup/get-repo.js +8 -0
- package/lib/lib/pipelines/setup/get-settings.d.ts +9 -0
- package/lib/lib/pipelines/setup/get-settings.js +39 -0
- package/lib/lib/pipelines/setup/poll-app-setups.d.ts +1 -0
- package/lib/lib/pipelines/setup/poll-app-setups.js +25 -0
- package/lib/lib/pipelines/setup/setup-pipeline.d.ts +1 -0
- package/lib/lib/pipelines/setup/setup-pipeline.js +15 -0
- package/lib/lib/pipelines/setup/validate.d.ts +9 -0
- package/lib/lib/pipelines/setup/validate.js +31 -0
- package/lib/lib/pipelines/stages.d.ts +7 -0
- package/lib/lib/pipelines/stages.js +22 -0
- package/lib/lib/run/colorize.d.ts +2 -0
- package/lib/lib/run/colorize.js +300 -0
- package/lib/lib/run/dyno.d.ts +72 -0
- package/lib/lib/run/dyno.js +397 -0
- package/lib/lib/run/helpers.d.ts +2 -0
- package/lib/lib/run/helpers.js +34 -0
- package/lib/lib/run/line-transform.d.ts +4 -0
- package/lib/lib/run/line-transform.js +26 -0
- package/lib/lib/run/log-displayer.d.ts +10 -0
- package/lib/lib/run/log-displayer.js +79 -0
- package/lib/lib/sessions/sessions.d.ts +7 -0
- package/lib/lib/sessions/sessions.js +2 -0
- package/lib/lib/status/util.d.ts +1 -0
- package/lib/lib/status/util.js +14 -0
- package/lib/lib/webhooks/base.d.ts +13 -0
- package/lib/lib/webhooks/base.js +28 -0
- package/lib/user-config.js +2 -3
- package/oclif.manifest.json +3376 -2
- package/package.json +81 -43
- package/lib/hooks/update/b.d.ts +0 -2
- package/lib/hooks/update/b.js +0 -48
package/oclif.manifest.json
CHANGED
|
@@ -1,4 +1,3378 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "8.
|
|
3
|
-
"commands": {
|
|
2
|
+
"version": "8.2.0-beta.0",
|
|
3
|
+
"commands": {
|
|
4
|
+
"console": {
|
|
5
|
+
"id": "console",
|
|
6
|
+
"strict": true,
|
|
7
|
+
"pluginName": "heroku",
|
|
8
|
+
"pluginAlias": "heroku",
|
|
9
|
+
"pluginType": "core",
|
|
10
|
+
"hidden": true,
|
|
11
|
+
"aliases": [],
|
|
12
|
+
"flags": {
|
|
13
|
+
"app": {
|
|
14
|
+
"name": "app",
|
|
15
|
+
"type": "option",
|
|
16
|
+
"char": "a",
|
|
17
|
+
"description": "app to run command against",
|
|
18
|
+
"required": true,
|
|
19
|
+
"multiple": false
|
|
20
|
+
},
|
|
21
|
+
"remote": {
|
|
22
|
+
"name": "remote",
|
|
23
|
+
"type": "option",
|
|
24
|
+
"char": "r",
|
|
25
|
+
"description": "git remote of app to use",
|
|
26
|
+
"multiple": false
|
|
27
|
+
},
|
|
28
|
+
"size": {
|
|
29
|
+
"name": "size",
|
|
30
|
+
"type": "option",
|
|
31
|
+
"char": "s",
|
|
32
|
+
"description": "dyno size",
|
|
33
|
+
"multiple": false
|
|
34
|
+
},
|
|
35
|
+
"env": {
|
|
36
|
+
"name": "env",
|
|
37
|
+
"type": "option",
|
|
38
|
+
"char": "e",
|
|
39
|
+
"description": "environment variables to set (use ';' to split multiple vars)",
|
|
40
|
+
"multiple": false
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"args": {}
|
|
44
|
+
},
|
|
45
|
+
"logs": {
|
|
46
|
+
"id": "logs",
|
|
47
|
+
"description": "display recent log output\ndisable colors with --no-color, HEROKU_LOGS_COLOR=0, or HEROKU_COLOR=0",
|
|
48
|
+
"strict": true,
|
|
49
|
+
"pluginName": "heroku",
|
|
50
|
+
"pluginAlias": "heroku",
|
|
51
|
+
"pluginType": "core",
|
|
52
|
+
"aliases": [],
|
|
53
|
+
"examples": [
|
|
54
|
+
"$ heroku logs --app=my-app",
|
|
55
|
+
"$ heroku logs --num=50",
|
|
56
|
+
"$ heroku logs --dyno=web --app=my-app",
|
|
57
|
+
"$ heroku logs --app=my-app --tail"
|
|
58
|
+
],
|
|
59
|
+
"flags": {
|
|
60
|
+
"app": {
|
|
61
|
+
"name": "app",
|
|
62
|
+
"type": "option",
|
|
63
|
+
"char": "a",
|
|
64
|
+
"description": "app to run command against",
|
|
65
|
+
"required": true,
|
|
66
|
+
"multiple": false
|
|
67
|
+
},
|
|
68
|
+
"remote": {
|
|
69
|
+
"name": "remote",
|
|
70
|
+
"type": "option",
|
|
71
|
+
"char": "r",
|
|
72
|
+
"description": "git remote of app to use",
|
|
73
|
+
"multiple": false
|
|
74
|
+
},
|
|
75
|
+
"num": {
|
|
76
|
+
"name": "num",
|
|
77
|
+
"type": "option",
|
|
78
|
+
"char": "n",
|
|
79
|
+
"description": "number of lines to display",
|
|
80
|
+
"multiple": false
|
|
81
|
+
},
|
|
82
|
+
"ps": {
|
|
83
|
+
"name": "ps",
|
|
84
|
+
"type": "option",
|
|
85
|
+
"char": "p",
|
|
86
|
+
"description": "hidden alias for dyno",
|
|
87
|
+
"hidden": true,
|
|
88
|
+
"multiple": false
|
|
89
|
+
},
|
|
90
|
+
"dyno": {
|
|
91
|
+
"name": "dyno",
|
|
92
|
+
"type": "option",
|
|
93
|
+
"char": "d",
|
|
94
|
+
"description": "only show output from this dyno type (such as \"web\" or \"worker\")",
|
|
95
|
+
"multiple": false
|
|
96
|
+
},
|
|
97
|
+
"source": {
|
|
98
|
+
"name": "source",
|
|
99
|
+
"type": "option",
|
|
100
|
+
"char": "s",
|
|
101
|
+
"description": "only show output from this source (such as \"app\" or \"heroku\")",
|
|
102
|
+
"multiple": false
|
|
103
|
+
},
|
|
104
|
+
"tail": {
|
|
105
|
+
"name": "tail",
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"char": "t",
|
|
108
|
+
"description": "continually stream logs",
|
|
109
|
+
"allowNo": false
|
|
110
|
+
},
|
|
111
|
+
"force-colors": {
|
|
112
|
+
"name": "force-colors",
|
|
113
|
+
"type": "boolean",
|
|
114
|
+
"description": "force use of colors (even on non-tty output)",
|
|
115
|
+
"allowNo": false
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"args": {}
|
|
119
|
+
},
|
|
120
|
+
"rake": {
|
|
121
|
+
"id": "rake",
|
|
122
|
+
"strict": false,
|
|
123
|
+
"pluginName": "heroku",
|
|
124
|
+
"pluginAlias": "heroku",
|
|
125
|
+
"pluginType": "core",
|
|
126
|
+
"hidden": true,
|
|
127
|
+
"aliases": [],
|
|
128
|
+
"flags": {
|
|
129
|
+
"app": {
|
|
130
|
+
"name": "app",
|
|
131
|
+
"type": "option",
|
|
132
|
+
"char": "a",
|
|
133
|
+
"description": "parent app used by review apps",
|
|
134
|
+
"required": true,
|
|
135
|
+
"multiple": false
|
|
136
|
+
},
|
|
137
|
+
"remote": {
|
|
138
|
+
"name": "remote",
|
|
139
|
+
"type": "option",
|
|
140
|
+
"char": "r",
|
|
141
|
+
"description": "git remote of app to use",
|
|
142
|
+
"multiple": false
|
|
143
|
+
},
|
|
144
|
+
"size": {
|
|
145
|
+
"name": "size",
|
|
146
|
+
"type": "option",
|
|
147
|
+
"char": "s",
|
|
148
|
+
"description": "dyno size",
|
|
149
|
+
"multiple": false
|
|
150
|
+
},
|
|
151
|
+
"exit-code": {
|
|
152
|
+
"name": "exit-code",
|
|
153
|
+
"type": "boolean",
|
|
154
|
+
"char": "x",
|
|
155
|
+
"description": "passthrough the exit code of the remote command",
|
|
156
|
+
"allowNo": false
|
|
157
|
+
},
|
|
158
|
+
"env": {
|
|
159
|
+
"name": "env",
|
|
160
|
+
"type": "option",
|
|
161
|
+
"char": "e",
|
|
162
|
+
"description": "environment variables to set (use ';' to split multiple vars)",
|
|
163
|
+
"multiple": false
|
|
164
|
+
},
|
|
165
|
+
"no-tty": {
|
|
166
|
+
"name": "no-tty",
|
|
167
|
+
"type": "boolean",
|
|
168
|
+
"description": "force the command to not run in a tty",
|
|
169
|
+
"allowNo": false
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"args": {}
|
|
173
|
+
},
|
|
174
|
+
"regions": {
|
|
175
|
+
"id": "regions",
|
|
176
|
+
"description": "list available regions for deployment",
|
|
177
|
+
"strict": true,
|
|
178
|
+
"pluginName": "heroku",
|
|
179
|
+
"pluginAlias": "heroku",
|
|
180
|
+
"pluginType": "core",
|
|
181
|
+
"aliases": [],
|
|
182
|
+
"flags": {
|
|
183
|
+
"json": {
|
|
184
|
+
"name": "json",
|
|
185
|
+
"type": "boolean",
|
|
186
|
+
"description": "output in json format",
|
|
187
|
+
"allowNo": false
|
|
188
|
+
},
|
|
189
|
+
"private": {
|
|
190
|
+
"name": "private",
|
|
191
|
+
"type": "boolean",
|
|
192
|
+
"description": "show regions for private spaces",
|
|
193
|
+
"allowNo": false
|
|
194
|
+
},
|
|
195
|
+
"common": {
|
|
196
|
+
"name": "common",
|
|
197
|
+
"type": "boolean",
|
|
198
|
+
"description": "show regions for common runtime",
|
|
199
|
+
"allowNo": false
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"args": {},
|
|
203
|
+
"topic": "regions"
|
|
204
|
+
},
|
|
205
|
+
"status": {
|
|
206
|
+
"id": "status",
|
|
207
|
+
"description": "display current status of the Heroku platform",
|
|
208
|
+
"strict": true,
|
|
209
|
+
"pluginName": "heroku",
|
|
210
|
+
"pluginAlias": "heroku",
|
|
211
|
+
"pluginType": "core",
|
|
212
|
+
"aliases": [],
|
|
213
|
+
"flags": {
|
|
214
|
+
"json": {
|
|
215
|
+
"name": "json",
|
|
216
|
+
"type": "boolean",
|
|
217
|
+
"description": "output in json format",
|
|
218
|
+
"allowNo": false
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"args": {}
|
|
222
|
+
},
|
|
223
|
+
"auth:login": {
|
|
224
|
+
"id": "auth:login",
|
|
225
|
+
"description": "login with your Heroku credentials",
|
|
226
|
+
"strict": true,
|
|
227
|
+
"pluginName": "heroku",
|
|
228
|
+
"pluginAlias": "heroku",
|
|
229
|
+
"pluginType": "core",
|
|
230
|
+
"aliases": [
|
|
231
|
+
"login"
|
|
232
|
+
],
|
|
233
|
+
"flags": {
|
|
234
|
+
"browser": {
|
|
235
|
+
"name": "browser",
|
|
236
|
+
"type": "option",
|
|
237
|
+
"description": "browser to open SSO with (example: \"firefox\", \"safari\")",
|
|
238
|
+
"multiple": false
|
|
239
|
+
},
|
|
240
|
+
"sso": {
|
|
241
|
+
"name": "sso",
|
|
242
|
+
"type": "boolean",
|
|
243
|
+
"char": "s",
|
|
244
|
+
"description": "login for enterprise users under SSO",
|
|
245
|
+
"hidden": true,
|
|
246
|
+
"allowNo": false
|
|
247
|
+
},
|
|
248
|
+
"interactive": {
|
|
249
|
+
"name": "interactive",
|
|
250
|
+
"type": "boolean",
|
|
251
|
+
"char": "i",
|
|
252
|
+
"description": "login with username/password",
|
|
253
|
+
"allowNo": false
|
|
254
|
+
},
|
|
255
|
+
"expires-in": {
|
|
256
|
+
"name": "expires-in",
|
|
257
|
+
"type": "option",
|
|
258
|
+
"char": "e",
|
|
259
|
+
"description": "duration of token in seconds (default 30 days)",
|
|
260
|
+
"multiple": false
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"args": {}
|
|
264
|
+
},
|
|
265
|
+
"auth:logout": {
|
|
266
|
+
"id": "auth:logout",
|
|
267
|
+
"description": "clears local login credentials and invalidates API session",
|
|
268
|
+
"strict": true,
|
|
269
|
+
"pluginName": "heroku",
|
|
270
|
+
"pluginAlias": "heroku",
|
|
271
|
+
"pluginType": "core",
|
|
272
|
+
"aliases": [
|
|
273
|
+
"logout"
|
|
274
|
+
],
|
|
275
|
+
"flags": {},
|
|
276
|
+
"args": {}
|
|
277
|
+
},
|
|
278
|
+
"auth:token": {
|
|
279
|
+
"id": "auth:token",
|
|
280
|
+
"description": "outputs current CLI authentication token.\nBy default, the CLI auth token is only valid for 1 year. To generate a long-lived token, use heroku authorizations:create",
|
|
281
|
+
"strict": true,
|
|
282
|
+
"pluginName": "heroku",
|
|
283
|
+
"pluginAlias": "heroku",
|
|
284
|
+
"pluginType": "core",
|
|
285
|
+
"aliases": [],
|
|
286
|
+
"flags": {
|
|
287
|
+
"help": {
|
|
288
|
+
"name": "help",
|
|
289
|
+
"type": "boolean",
|
|
290
|
+
"char": "h",
|
|
291
|
+
"description": "Show CLI help.",
|
|
292
|
+
"allowNo": false
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"args": {}
|
|
296
|
+
},
|
|
297
|
+
"auth:whoami": {
|
|
298
|
+
"id": "auth:whoami",
|
|
299
|
+
"description": "display the current logged in user",
|
|
300
|
+
"strict": true,
|
|
301
|
+
"pluginName": "heroku",
|
|
302
|
+
"pluginAlias": "heroku",
|
|
303
|
+
"pluginType": "core",
|
|
304
|
+
"aliases": [
|
|
305
|
+
"whoami"
|
|
306
|
+
],
|
|
307
|
+
"flags": {},
|
|
308
|
+
"args": {}
|
|
309
|
+
},
|
|
310
|
+
"authorizations:create": {
|
|
311
|
+
"id": "authorizations:create",
|
|
312
|
+
"description": "create a new OAuth authorization",
|
|
313
|
+
"strict": true,
|
|
314
|
+
"pluginName": "heroku",
|
|
315
|
+
"pluginAlias": "heroku",
|
|
316
|
+
"pluginType": "core",
|
|
317
|
+
"aliases": [],
|
|
318
|
+
"examples": [
|
|
319
|
+
"$ heroku authorizations:create --description \"For use with Anvil\""
|
|
320
|
+
],
|
|
321
|
+
"flags": {
|
|
322
|
+
"description": {
|
|
323
|
+
"name": "description",
|
|
324
|
+
"type": "option",
|
|
325
|
+
"char": "d",
|
|
326
|
+
"description": "set a custom authorization",
|
|
327
|
+
"multiple": false
|
|
328
|
+
},
|
|
329
|
+
"short": {
|
|
330
|
+
"name": "short",
|
|
331
|
+
"type": "boolean",
|
|
332
|
+
"char": "S",
|
|
333
|
+
"description": "only output token",
|
|
334
|
+
"allowNo": false
|
|
335
|
+
},
|
|
336
|
+
"json": {
|
|
337
|
+
"name": "json",
|
|
338
|
+
"type": "boolean",
|
|
339
|
+
"char": "j",
|
|
340
|
+
"description": "output in json format",
|
|
341
|
+
"allowNo": false
|
|
342
|
+
},
|
|
343
|
+
"scope": {
|
|
344
|
+
"name": "scope",
|
|
345
|
+
"type": "option",
|
|
346
|
+
"char": "s",
|
|
347
|
+
"description": "set custom OAuth scopes",
|
|
348
|
+
"multiple": false
|
|
349
|
+
},
|
|
350
|
+
"expires-in": {
|
|
351
|
+
"name": "expires-in",
|
|
352
|
+
"type": "option",
|
|
353
|
+
"char": "e",
|
|
354
|
+
"description": "set expiration in seconds (default no expiration)",
|
|
355
|
+
"multiple": false
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"args": {}
|
|
359
|
+
},
|
|
360
|
+
"authorizations": {
|
|
361
|
+
"id": "authorizations",
|
|
362
|
+
"description": "list OAuth authorizations",
|
|
363
|
+
"strict": true,
|
|
364
|
+
"pluginName": "heroku",
|
|
365
|
+
"pluginAlias": "heroku",
|
|
366
|
+
"pluginType": "core",
|
|
367
|
+
"aliases": [],
|
|
368
|
+
"examples": [
|
|
369
|
+
"$ heroku authorizations"
|
|
370
|
+
],
|
|
371
|
+
"flags": {
|
|
372
|
+
"json": {
|
|
373
|
+
"name": "json",
|
|
374
|
+
"type": "boolean",
|
|
375
|
+
"char": "j",
|
|
376
|
+
"description": "output in json format",
|
|
377
|
+
"allowNo": false
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"args": {}
|
|
381
|
+
},
|
|
382
|
+
"authorizations:info": {
|
|
383
|
+
"id": "authorizations:info",
|
|
384
|
+
"description": "show an existing OAuth authorization",
|
|
385
|
+
"strict": true,
|
|
386
|
+
"pluginName": "heroku",
|
|
387
|
+
"pluginAlias": "heroku",
|
|
388
|
+
"pluginType": "core",
|
|
389
|
+
"aliases": [],
|
|
390
|
+
"flags": {
|
|
391
|
+
"json": {
|
|
392
|
+
"name": "json",
|
|
393
|
+
"type": "boolean",
|
|
394
|
+
"char": "j",
|
|
395
|
+
"description": "output in json format",
|
|
396
|
+
"allowNo": false
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"args": {
|
|
400
|
+
"id": {
|
|
401
|
+
"name": "id",
|
|
402
|
+
"required": true
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"authorizations:revoke": {
|
|
407
|
+
"id": "authorizations:revoke",
|
|
408
|
+
"description": "revoke OAuth authorization",
|
|
409
|
+
"strict": true,
|
|
410
|
+
"pluginName": "heroku",
|
|
411
|
+
"pluginAlias": "heroku",
|
|
412
|
+
"pluginType": "core",
|
|
413
|
+
"aliases": [
|
|
414
|
+
"authorizations:revoke",
|
|
415
|
+
"authorizations:destroy"
|
|
416
|
+
],
|
|
417
|
+
"examples": [
|
|
418
|
+
"$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
|
|
419
|
+
],
|
|
420
|
+
"flags": {},
|
|
421
|
+
"args": {
|
|
422
|
+
"id": {
|
|
423
|
+
"name": "id",
|
|
424
|
+
"required": true
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"authorizations:rotate": {
|
|
429
|
+
"id": "authorizations:rotate",
|
|
430
|
+
"description": "updates an OAuth authorization token",
|
|
431
|
+
"strict": true,
|
|
432
|
+
"pluginName": "heroku",
|
|
433
|
+
"pluginAlias": "heroku",
|
|
434
|
+
"pluginType": "core",
|
|
435
|
+
"aliases": [],
|
|
436
|
+
"flags": {},
|
|
437
|
+
"args": {
|
|
438
|
+
"id": {
|
|
439
|
+
"name": "id",
|
|
440
|
+
"required": true
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"authorizations:update": {
|
|
445
|
+
"id": "authorizations:update",
|
|
446
|
+
"description": "updates an OAuth authorization",
|
|
447
|
+
"strict": true,
|
|
448
|
+
"pluginName": "heroku",
|
|
449
|
+
"pluginAlias": "heroku",
|
|
450
|
+
"pluginType": "core",
|
|
451
|
+
"aliases": [],
|
|
452
|
+
"flags": {
|
|
453
|
+
"description": {
|
|
454
|
+
"name": "description",
|
|
455
|
+
"type": "option",
|
|
456
|
+
"char": "d",
|
|
457
|
+
"description": "set a custom authorization description",
|
|
458
|
+
"multiple": false
|
|
459
|
+
},
|
|
460
|
+
"client-id": {
|
|
461
|
+
"name": "client-id",
|
|
462
|
+
"type": "option",
|
|
463
|
+
"description": "identifier of OAuth client to set",
|
|
464
|
+
"multiple": false,
|
|
465
|
+
"dependsOn": [
|
|
466
|
+
"client-secret"
|
|
467
|
+
]
|
|
468
|
+
},
|
|
469
|
+
"client-secret": {
|
|
470
|
+
"name": "client-secret",
|
|
471
|
+
"type": "option",
|
|
472
|
+
"description": "secret of OAuth client to set",
|
|
473
|
+
"multiple": false,
|
|
474
|
+
"dependsOn": [
|
|
475
|
+
"client-id"
|
|
476
|
+
]
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
"args": {
|
|
480
|
+
"id": {
|
|
481
|
+
"name": "id",
|
|
482
|
+
"required": true
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"autocomplete:create": {
|
|
487
|
+
"id": "autocomplete:create",
|
|
488
|
+
"description": "create autocomplete setup scripts and completion functions",
|
|
489
|
+
"strict": true,
|
|
490
|
+
"pluginName": "heroku",
|
|
491
|
+
"pluginAlias": "heroku",
|
|
492
|
+
"pluginType": "core",
|
|
493
|
+
"hidden": true,
|
|
494
|
+
"aliases": [],
|
|
495
|
+
"flags": {},
|
|
496
|
+
"args": {}
|
|
497
|
+
},
|
|
498
|
+
"autocomplete:doctor": {
|
|
499
|
+
"id": "autocomplete:doctor",
|
|
500
|
+
"description": "autocomplete diagnostic",
|
|
501
|
+
"strict": true,
|
|
502
|
+
"pluginName": "heroku",
|
|
503
|
+
"pluginAlias": "heroku",
|
|
504
|
+
"pluginType": "core",
|
|
505
|
+
"hidden": true,
|
|
506
|
+
"aliases": [],
|
|
507
|
+
"flags": {
|
|
508
|
+
"verbose": {
|
|
509
|
+
"name": "verbose",
|
|
510
|
+
"type": "boolean",
|
|
511
|
+
"description": "list completable commands",
|
|
512
|
+
"allowNo": false
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"args": {
|
|
516
|
+
"shell": {
|
|
517
|
+
"name": "shell",
|
|
518
|
+
"description": "shell type",
|
|
519
|
+
"required": false
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"autocomplete": {
|
|
524
|
+
"id": "autocomplete",
|
|
525
|
+
"description": "display autocomplete installation instructions",
|
|
526
|
+
"strict": true,
|
|
527
|
+
"pluginName": "heroku",
|
|
528
|
+
"pluginAlias": "heroku",
|
|
529
|
+
"pluginType": "core",
|
|
530
|
+
"aliases": [],
|
|
531
|
+
"examples": [
|
|
532
|
+
"$ heroku autocomplete",
|
|
533
|
+
"$ heroku autocomplete bash",
|
|
534
|
+
"$ heroku autocomplete zsh",
|
|
535
|
+
"$ heroku autocomplete --refresh-cache"
|
|
536
|
+
],
|
|
537
|
+
"flags": {
|
|
538
|
+
"refresh-cache": {
|
|
539
|
+
"name": "refresh-cache",
|
|
540
|
+
"type": "boolean",
|
|
541
|
+
"char": "r",
|
|
542
|
+
"description": "refresh cache only (ignores displaying instructions)",
|
|
543
|
+
"allowNo": false
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"args": {
|
|
547
|
+
"shell": {
|
|
548
|
+
"name": "shell",
|
|
549
|
+
"description": "shell type",
|
|
550
|
+
"required": false
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"autocomplete:options": {
|
|
555
|
+
"id": "autocomplete:options",
|
|
556
|
+
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
557
|
+
"strict": true,
|
|
558
|
+
"pluginName": "heroku",
|
|
559
|
+
"pluginAlias": "heroku",
|
|
560
|
+
"pluginType": "core",
|
|
561
|
+
"hidden": true,
|
|
562
|
+
"aliases": [],
|
|
563
|
+
"flags": {
|
|
564
|
+
"app": {
|
|
565
|
+
"name": "app",
|
|
566
|
+
"type": "option",
|
|
567
|
+
"char": "a",
|
|
568
|
+
"description": "app to run command against",
|
|
569
|
+
"hidden": true,
|
|
570
|
+
"required": false,
|
|
571
|
+
"multiple": false
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"args": {
|
|
575
|
+
"completion": {
|
|
576
|
+
"name": "completion"
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"autocomplete:script": {
|
|
581
|
+
"id": "autocomplete:script",
|
|
582
|
+
"description": "display autocomplete setup script for shell",
|
|
583
|
+
"strict": true,
|
|
584
|
+
"pluginName": "heroku",
|
|
585
|
+
"pluginAlias": "heroku",
|
|
586
|
+
"pluginType": "core",
|
|
587
|
+
"hidden": true,
|
|
588
|
+
"aliases": [],
|
|
589
|
+
"flags": {},
|
|
590
|
+
"args": {
|
|
591
|
+
"shell": {
|
|
592
|
+
"name": "shell",
|
|
593
|
+
"description": "shell type",
|
|
594
|
+
"required": false
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
},
|
|
598
|
+
"buildpacks:add": {
|
|
599
|
+
"id": "buildpacks:add",
|
|
600
|
+
"description": "add new app buildpack, inserting into list of buildpacks if necessary",
|
|
601
|
+
"strict": true,
|
|
602
|
+
"pluginName": "heroku",
|
|
603
|
+
"pluginAlias": "heroku",
|
|
604
|
+
"pluginType": "core",
|
|
605
|
+
"aliases": [],
|
|
606
|
+
"flags": {
|
|
607
|
+
"app": {
|
|
608
|
+
"name": "app",
|
|
609
|
+
"type": "option",
|
|
610
|
+
"char": "a",
|
|
611
|
+
"description": "app to run command against",
|
|
612
|
+
"required": true,
|
|
613
|
+
"multiple": false
|
|
614
|
+
},
|
|
615
|
+
"remote": {
|
|
616
|
+
"name": "remote",
|
|
617
|
+
"type": "option",
|
|
618
|
+
"char": "r",
|
|
619
|
+
"description": "git remote of app to use",
|
|
620
|
+
"multiple": false
|
|
621
|
+
},
|
|
622
|
+
"index": {
|
|
623
|
+
"name": "index",
|
|
624
|
+
"type": "option",
|
|
625
|
+
"char": "i",
|
|
626
|
+
"description": "the 1-based index of the URL in the list of URLs",
|
|
627
|
+
"multiple": false
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"args": {
|
|
631
|
+
"buildpack": {
|
|
632
|
+
"name": "buildpack",
|
|
633
|
+
"description": "namespace/name of the buildpack",
|
|
634
|
+
"required": true
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
"buildpacks:clear": {
|
|
639
|
+
"id": "buildpacks:clear",
|
|
640
|
+
"description": "clear all buildpacks set on the app",
|
|
641
|
+
"strict": true,
|
|
642
|
+
"pluginName": "heroku",
|
|
643
|
+
"pluginAlias": "heroku",
|
|
644
|
+
"pluginType": "core",
|
|
645
|
+
"aliases": [],
|
|
646
|
+
"flags": {
|
|
647
|
+
"app": {
|
|
648
|
+
"name": "app",
|
|
649
|
+
"type": "option",
|
|
650
|
+
"char": "a",
|
|
651
|
+
"description": "app to run command against",
|
|
652
|
+
"required": true,
|
|
653
|
+
"multiple": false
|
|
654
|
+
},
|
|
655
|
+
"remote": {
|
|
656
|
+
"name": "remote",
|
|
657
|
+
"type": "option",
|
|
658
|
+
"char": "r",
|
|
659
|
+
"description": "git remote of app to use",
|
|
660
|
+
"multiple": false
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"args": {}
|
|
664
|
+
},
|
|
665
|
+
"buildpacks": {
|
|
666
|
+
"id": "buildpacks",
|
|
667
|
+
"description": "display the buildpacks for an app",
|
|
668
|
+
"strict": true,
|
|
669
|
+
"pluginName": "heroku",
|
|
670
|
+
"pluginAlias": "heroku",
|
|
671
|
+
"pluginType": "core",
|
|
672
|
+
"aliases": [],
|
|
673
|
+
"flags": {
|
|
674
|
+
"app": {
|
|
675
|
+
"name": "app",
|
|
676
|
+
"type": "option",
|
|
677
|
+
"char": "a",
|
|
678
|
+
"description": "app to run command against",
|
|
679
|
+
"required": true,
|
|
680
|
+
"multiple": false
|
|
681
|
+
},
|
|
682
|
+
"remote": {
|
|
683
|
+
"name": "remote",
|
|
684
|
+
"type": "option",
|
|
685
|
+
"char": "r",
|
|
686
|
+
"description": "git remote of app to use",
|
|
687
|
+
"multiple": false
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"args": {}
|
|
691
|
+
},
|
|
692
|
+
"buildpacks:info": {
|
|
693
|
+
"id": "buildpacks:info",
|
|
694
|
+
"description": "fetch info about a buildpack",
|
|
695
|
+
"strict": true,
|
|
696
|
+
"pluginName": "heroku",
|
|
697
|
+
"pluginAlias": "heroku",
|
|
698
|
+
"pluginType": "core",
|
|
699
|
+
"aliases": [],
|
|
700
|
+
"flags": {},
|
|
701
|
+
"args": {
|
|
702
|
+
"buildpack": {
|
|
703
|
+
"name": "buildpack",
|
|
704
|
+
"description": "namespace/name of the buildpack",
|
|
705
|
+
"required": true
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"buildpacks:remove": {
|
|
710
|
+
"id": "buildpacks:remove",
|
|
711
|
+
"description": "remove a buildpack set on the app",
|
|
712
|
+
"strict": true,
|
|
713
|
+
"pluginName": "heroku",
|
|
714
|
+
"pluginAlias": "heroku",
|
|
715
|
+
"pluginType": "core",
|
|
716
|
+
"aliases": [],
|
|
717
|
+
"flags": {
|
|
718
|
+
"app": {
|
|
719
|
+
"name": "app",
|
|
720
|
+
"type": "option",
|
|
721
|
+
"char": "a",
|
|
722
|
+
"description": "app to run command against",
|
|
723
|
+
"required": true,
|
|
724
|
+
"multiple": false
|
|
725
|
+
},
|
|
726
|
+
"remote": {
|
|
727
|
+
"name": "remote",
|
|
728
|
+
"type": "option",
|
|
729
|
+
"char": "r",
|
|
730
|
+
"description": "git remote of app to use",
|
|
731
|
+
"multiple": false
|
|
732
|
+
},
|
|
733
|
+
"index": {
|
|
734
|
+
"name": "index",
|
|
735
|
+
"type": "option",
|
|
736
|
+
"char": "i",
|
|
737
|
+
"description": "the 1-based index of the URL to remove from the list of URLs",
|
|
738
|
+
"multiple": false
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"args": {
|
|
742
|
+
"buildpack": {
|
|
743
|
+
"name": "buildpack",
|
|
744
|
+
"description": "namespace/name of the buildpack"
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"buildpacks:search": {
|
|
749
|
+
"id": "buildpacks:search",
|
|
750
|
+
"description": "search for buildpacks",
|
|
751
|
+
"strict": true,
|
|
752
|
+
"pluginName": "heroku",
|
|
753
|
+
"pluginAlias": "heroku",
|
|
754
|
+
"pluginType": "core",
|
|
755
|
+
"aliases": [],
|
|
756
|
+
"flags": {
|
|
757
|
+
"namespace": {
|
|
758
|
+
"name": "namespace",
|
|
759
|
+
"type": "option",
|
|
760
|
+
"description": "buildpack namespaces to filter on using a comma separated list",
|
|
761
|
+
"multiple": false
|
|
762
|
+
},
|
|
763
|
+
"name": {
|
|
764
|
+
"name": "name",
|
|
765
|
+
"type": "option",
|
|
766
|
+
"description": "buildpack names to filter on using a comma separated list ",
|
|
767
|
+
"multiple": false
|
|
768
|
+
},
|
|
769
|
+
"description": {
|
|
770
|
+
"name": "description",
|
|
771
|
+
"type": "option",
|
|
772
|
+
"description": "buildpack description to filter on",
|
|
773
|
+
"multiple": false
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"args": {
|
|
777
|
+
"term": {
|
|
778
|
+
"name": "term",
|
|
779
|
+
"description": "search term that searches across name, namespace, and description"
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"buildpacks:set": {
|
|
784
|
+
"id": "buildpacks:set",
|
|
785
|
+
"strict": true,
|
|
786
|
+
"pluginName": "heroku",
|
|
787
|
+
"pluginAlias": "heroku",
|
|
788
|
+
"pluginType": "core",
|
|
789
|
+
"aliases": [],
|
|
790
|
+
"flags": {
|
|
791
|
+
"app": {
|
|
792
|
+
"name": "app",
|
|
793
|
+
"type": "option",
|
|
794
|
+
"char": "a",
|
|
795
|
+
"description": "app to run command against",
|
|
796
|
+
"required": true,
|
|
797
|
+
"multiple": false
|
|
798
|
+
},
|
|
799
|
+
"remote": {
|
|
800
|
+
"name": "remote",
|
|
801
|
+
"type": "option",
|
|
802
|
+
"char": "r",
|
|
803
|
+
"description": "git remote of app to use",
|
|
804
|
+
"multiple": false
|
|
805
|
+
},
|
|
806
|
+
"index": {
|
|
807
|
+
"name": "index",
|
|
808
|
+
"type": "option",
|
|
809
|
+
"char": "i",
|
|
810
|
+
"description": "the 1-based index of the URL in the list of URLs",
|
|
811
|
+
"multiple": false
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"args": {
|
|
815
|
+
"buildpack": {
|
|
816
|
+
"name": "buildpack",
|
|
817
|
+
"description": "namespace/name of the buildpack",
|
|
818
|
+
"required": true
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"buildpacks:versions": {
|
|
823
|
+
"id": "buildpacks:versions",
|
|
824
|
+
"description": "list versions of a buildpack",
|
|
825
|
+
"strict": true,
|
|
826
|
+
"pluginName": "heroku",
|
|
827
|
+
"pluginAlias": "heroku",
|
|
828
|
+
"pluginType": "core",
|
|
829
|
+
"aliases": [],
|
|
830
|
+
"flags": {},
|
|
831
|
+
"args": {
|
|
832
|
+
"buildpack": {
|
|
833
|
+
"name": "buildpack",
|
|
834
|
+
"description": "namespace/name of the buildpack",
|
|
835
|
+
"required": true
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"ci": {
|
|
840
|
+
"id": "ci",
|
|
841
|
+
"description": "display the most recent CI runs for the given pipeline",
|
|
842
|
+
"strict": true,
|
|
843
|
+
"pluginName": "heroku",
|
|
844
|
+
"pluginAlias": "heroku",
|
|
845
|
+
"pluginType": "core",
|
|
846
|
+
"aliases": [],
|
|
847
|
+
"examples": [
|
|
848
|
+
"$ heroku ci --app murmuring-headland-14719\n"
|
|
849
|
+
],
|
|
850
|
+
"flags": {
|
|
851
|
+
"app": {
|
|
852
|
+
"name": "app",
|
|
853
|
+
"type": "option",
|
|
854
|
+
"char": "a",
|
|
855
|
+
"description": "app name",
|
|
856
|
+
"multiple": false
|
|
857
|
+
},
|
|
858
|
+
"watch": {
|
|
859
|
+
"name": "watch",
|
|
860
|
+
"type": "boolean",
|
|
861
|
+
"description": "keep running and watch for new and update tests",
|
|
862
|
+
"required": false,
|
|
863
|
+
"allowNo": false
|
|
864
|
+
},
|
|
865
|
+
"pipeline": {
|
|
866
|
+
"name": "pipeline",
|
|
867
|
+
"type": "option",
|
|
868
|
+
"char": "p",
|
|
869
|
+
"description": "name of pipeline",
|
|
870
|
+
"required": false,
|
|
871
|
+
"multiple": false
|
|
872
|
+
},
|
|
873
|
+
"json": {
|
|
874
|
+
"name": "json",
|
|
875
|
+
"type": "boolean",
|
|
876
|
+
"description": "output in json format",
|
|
877
|
+
"required": false,
|
|
878
|
+
"allowNo": false
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"args": {}
|
|
882
|
+
},
|
|
883
|
+
"ci:info": {
|
|
884
|
+
"id": "ci:info",
|
|
885
|
+
"description": "show the status of a specific test run",
|
|
886
|
+
"strict": true,
|
|
887
|
+
"pluginName": "heroku",
|
|
888
|
+
"pluginAlias": "heroku",
|
|
889
|
+
"pluginType": "core",
|
|
890
|
+
"aliases": [],
|
|
891
|
+
"examples": [
|
|
892
|
+
"$ heroku ci:info 1288 --app murmuring-headland-14719\n"
|
|
893
|
+
],
|
|
894
|
+
"flags": {
|
|
895
|
+
"app": {
|
|
896
|
+
"name": "app",
|
|
897
|
+
"type": "option",
|
|
898
|
+
"char": "a",
|
|
899
|
+
"description": "app name",
|
|
900
|
+
"multiple": false
|
|
901
|
+
},
|
|
902
|
+
"node": {
|
|
903
|
+
"name": "node",
|
|
904
|
+
"type": "option",
|
|
905
|
+
"description": "the node number to show its setup and output",
|
|
906
|
+
"required": false,
|
|
907
|
+
"multiple": false
|
|
908
|
+
},
|
|
909
|
+
"pipeline": {
|
|
910
|
+
"name": "pipeline",
|
|
911
|
+
"type": "option",
|
|
912
|
+
"char": "p",
|
|
913
|
+
"description": "name of pipeline",
|
|
914
|
+
"required": false,
|
|
915
|
+
"multiple": false
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"args": {
|
|
919
|
+
"test-run": {
|
|
920
|
+
"name": "test-run",
|
|
921
|
+
"required": true
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
"ci:last": {
|
|
926
|
+
"id": "ci:last",
|
|
927
|
+
"description": "looks for the most recent run and returns the output of that run",
|
|
928
|
+
"strict": true,
|
|
929
|
+
"pluginName": "heroku",
|
|
930
|
+
"pluginAlias": "heroku",
|
|
931
|
+
"pluginType": "core",
|
|
932
|
+
"aliases": [],
|
|
933
|
+
"examples": [
|
|
934
|
+
"$ heroku ci:last --pipeline=my-pipeline --node 100\n"
|
|
935
|
+
],
|
|
936
|
+
"flags": {
|
|
937
|
+
"app": {
|
|
938
|
+
"name": "app",
|
|
939
|
+
"type": "option",
|
|
940
|
+
"char": "a",
|
|
941
|
+
"description": "app name",
|
|
942
|
+
"multiple": false
|
|
943
|
+
},
|
|
944
|
+
"node": {
|
|
945
|
+
"name": "node",
|
|
946
|
+
"type": "option",
|
|
947
|
+
"description": "the node number to show its setup and output",
|
|
948
|
+
"required": false,
|
|
949
|
+
"multiple": false
|
|
950
|
+
},
|
|
951
|
+
"pipeline": {
|
|
952
|
+
"name": "pipeline",
|
|
953
|
+
"type": "option",
|
|
954
|
+
"char": "p",
|
|
955
|
+
"description": "name of pipeline",
|
|
956
|
+
"required": false,
|
|
957
|
+
"multiple": false
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"args": {}
|
|
961
|
+
},
|
|
962
|
+
"ci:rerun": {
|
|
963
|
+
"id": "ci:rerun",
|
|
964
|
+
"description": "rerun tests against current directory",
|
|
965
|
+
"strict": true,
|
|
966
|
+
"pluginName": "heroku",
|
|
967
|
+
"pluginAlias": "heroku",
|
|
968
|
+
"pluginType": "core",
|
|
969
|
+
"aliases": [],
|
|
970
|
+
"examples": [
|
|
971
|
+
"$ heroku ci:rerun 985 --app murmuring-headland-14719\n"
|
|
972
|
+
],
|
|
973
|
+
"flags": {
|
|
974
|
+
"app": {
|
|
975
|
+
"name": "app",
|
|
976
|
+
"type": "option",
|
|
977
|
+
"char": "a",
|
|
978
|
+
"description": "app name",
|
|
979
|
+
"multiple": false
|
|
980
|
+
},
|
|
981
|
+
"pipeline": {
|
|
982
|
+
"name": "pipeline",
|
|
983
|
+
"type": "option",
|
|
984
|
+
"char": "p",
|
|
985
|
+
"description": "name of pipeline",
|
|
986
|
+
"required": false,
|
|
987
|
+
"multiple": false
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"args": {
|
|
991
|
+
"number": {
|
|
992
|
+
"name": "number",
|
|
993
|
+
"required": false
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"ci:run": {
|
|
998
|
+
"id": "ci:run",
|
|
999
|
+
"description": "run tests against current directory",
|
|
1000
|
+
"strict": true,
|
|
1001
|
+
"pluginName": "heroku",
|
|
1002
|
+
"pluginAlias": "heroku",
|
|
1003
|
+
"pluginType": "core",
|
|
1004
|
+
"aliases": [],
|
|
1005
|
+
"examples": [
|
|
1006
|
+
"$ heroku ci:run --app murmuring-headland-14719\n"
|
|
1007
|
+
],
|
|
1008
|
+
"flags": {
|
|
1009
|
+
"app": {
|
|
1010
|
+
"name": "app",
|
|
1011
|
+
"type": "option",
|
|
1012
|
+
"char": "a",
|
|
1013
|
+
"description": "app name",
|
|
1014
|
+
"multiple": false
|
|
1015
|
+
},
|
|
1016
|
+
"pipeline": {
|
|
1017
|
+
"name": "pipeline",
|
|
1018
|
+
"type": "option",
|
|
1019
|
+
"char": "p",
|
|
1020
|
+
"description": "name of pipeline",
|
|
1021
|
+
"required": false,
|
|
1022
|
+
"multiple": false
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"args": {}
|
|
1026
|
+
},
|
|
1027
|
+
"clients:create": {
|
|
1028
|
+
"id": "clients:create",
|
|
1029
|
+
"description": "create a new OAuth client",
|
|
1030
|
+
"strict": true,
|
|
1031
|
+
"pluginName": "heroku",
|
|
1032
|
+
"pluginAlias": "heroku",
|
|
1033
|
+
"pluginType": "core",
|
|
1034
|
+
"aliases": [],
|
|
1035
|
+
"examples": [
|
|
1036
|
+
"$ heroku clients:create \"Amazing\" https://amazing-client.herokuapp.com/auth/heroku/callback"
|
|
1037
|
+
],
|
|
1038
|
+
"flags": {
|
|
1039
|
+
"json": {
|
|
1040
|
+
"name": "json",
|
|
1041
|
+
"type": "boolean",
|
|
1042
|
+
"char": "j",
|
|
1043
|
+
"description": "output in json format",
|
|
1044
|
+
"allowNo": false
|
|
1045
|
+
},
|
|
1046
|
+
"shell": {
|
|
1047
|
+
"name": "shell",
|
|
1048
|
+
"type": "boolean",
|
|
1049
|
+
"char": "s",
|
|
1050
|
+
"description": "output in shell format",
|
|
1051
|
+
"allowNo": false
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"args": {
|
|
1055
|
+
"name": {
|
|
1056
|
+
"name": "name",
|
|
1057
|
+
"required": true
|
|
1058
|
+
},
|
|
1059
|
+
"redirect_uri": {
|
|
1060
|
+
"name": "redirect_uri",
|
|
1061
|
+
"required": true
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"clients:destroy": {
|
|
1066
|
+
"id": "clients:destroy",
|
|
1067
|
+
"description": "delete client by ID",
|
|
1068
|
+
"strict": true,
|
|
1069
|
+
"pluginName": "heroku",
|
|
1070
|
+
"pluginAlias": "heroku",
|
|
1071
|
+
"pluginType": "core",
|
|
1072
|
+
"aliases": [],
|
|
1073
|
+
"flags": {},
|
|
1074
|
+
"args": {
|
|
1075
|
+
"id": {
|
|
1076
|
+
"name": "id",
|
|
1077
|
+
"required": true
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
"clients": {
|
|
1082
|
+
"id": "clients",
|
|
1083
|
+
"description": "list your OAuth clients",
|
|
1084
|
+
"strict": true,
|
|
1085
|
+
"pluginName": "heroku",
|
|
1086
|
+
"pluginAlias": "heroku",
|
|
1087
|
+
"pluginType": "core",
|
|
1088
|
+
"aliases": [],
|
|
1089
|
+
"flags": {
|
|
1090
|
+
"json": {
|
|
1091
|
+
"name": "json",
|
|
1092
|
+
"type": "boolean",
|
|
1093
|
+
"char": "j",
|
|
1094
|
+
"description": "output in json format",
|
|
1095
|
+
"allowNo": false
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
"args": {}
|
|
1099
|
+
},
|
|
1100
|
+
"clients:info": {
|
|
1101
|
+
"id": "clients:info",
|
|
1102
|
+
"description": "show details of an oauth client",
|
|
1103
|
+
"strict": true,
|
|
1104
|
+
"pluginName": "heroku",
|
|
1105
|
+
"pluginAlias": "heroku",
|
|
1106
|
+
"pluginType": "core",
|
|
1107
|
+
"aliases": [],
|
|
1108
|
+
"examples": [
|
|
1109
|
+
"$ heroku clients:info 36120128-fee7-455e-8b7f-807aee130946"
|
|
1110
|
+
],
|
|
1111
|
+
"flags": {
|
|
1112
|
+
"json": {
|
|
1113
|
+
"name": "json",
|
|
1114
|
+
"type": "boolean",
|
|
1115
|
+
"char": "j",
|
|
1116
|
+
"description": "output in json format",
|
|
1117
|
+
"allowNo": false
|
|
1118
|
+
},
|
|
1119
|
+
"shell": {
|
|
1120
|
+
"name": "shell",
|
|
1121
|
+
"type": "boolean",
|
|
1122
|
+
"char": "s",
|
|
1123
|
+
"description": "output in shell format",
|
|
1124
|
+
"allowNo": false
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
"args": {
|
|
1128
|
+
"id": {
|
|
1129
|
+
"name": "id",
|
|
1130
|
+
"required": true
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"clients:rotate": {
|
|
1135
|
+
"id": "clients:rotate",
|
|
1136
|
+
"description": "rotate OAuth client secret",
|
|
1137
|
+
"strict": true,
|
|
1138
|
+
"pluginName": "heroku",
|
|
1139
|
+
"pluginAlias": "heroku",
|
|
1140
|
+
"pluginType": "core",
|
|
1141
|
+
"aliases": [],
|
|
1142
|
+
"flags": {
|
|
1143
|
+
"json": {
|
|
1144
|
+
"name": "json",
|
|
1145
|
+
"type": "boolean",
|
|
1146
|
+
"char": "j",
|
|
1147
|
+
"description": "output in json format",
|
|
1148
|
+
"allowNo": false
|
|
1149
|
+
},
|
|
1150
|
+
"shell": {
|
|
1151
|
+
"name": "shell",
|
|
1152
|
+
"type": "boolean",
|
|
1153
|
+
"char": "s",
|
|
1154
|
+
"description": "output in shell format",
|
|
1155
|
+
"allowNo": false
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"args": {
|
|
1159
|
+
"id": {
|
|
1160
|
+
"name": "id",
|
|
1161
|
+
"required": true
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
"clients:update": {
|
|
1166
|
+
"id": "clients:update",
|
|
1167
|
+
"description": "update OAuth client",
|
|
1168
|
+
"strict": true,
|
|
1169
|
+
"pluginName": "heroku",
|
|
1170
|
+
"pluginAlias": "heroku",
|
|
1171
|
+
"pluginType": "core",
|
|
1172
|
+
"aliases": [],
|
|
1173
|
+
"examples": [
|
|
1174
|
+
"$ heroku clients:update 3e304bda-d376-4278-bdea-6d6c08aa1359 --url https://amazing-client.herokuapp.com/auth/heroku/callback"
|
|
1175
|
+
],
|
|
1176
|
+
"flags": {
|
|
1177
|
+
"name": {
|
|
1178
|
+
"name": "name",
|
|
1179
|
+
"type": "option",
|
|
1180
|
+
"char": "n",
|
|
1181
|
+
"description": "change the client name",
|
|
1182
|
+
"multiple": false
|
|
1183
|
+
},
|
|
1184
|
+
"url": {
|
|
1185
|
+
"name": "url",
|
|
1186
|
+
"type": "option",
|
|
1187
|
+
"description": "change the client redirect URL",
|
|
1188
|
+
"multiple": false
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
"args": {
|
|
1192
|
+
"id": {
|
|
1193
|
+
"name": "id",
|
|
1194
|
+
"required": true
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
"config:edit": {
|
|
1199
|
+
"id": "config:edit",
|
|
1200
|
+
"description": "interactively edit config vars\nThis command opens the app config in a text editor set by $VISUAL or $EDITOR.\nAny variables added/removed/changed will be updated on the app after saving and closing the file.",
|
|
1201
|
+
"strict": true,
|
|
1202
|
+
"pluginName": "heroku",
|
|
1203
|
+
"pluginAlias": "heroku",
|
|
1204
|
+
"pluginType": "core",
|
|
1205
|
+
"aliases": [],
|
|
1206
|
+
"examples": [
|
|
1207
|
+
"# edit with vim\n$ EDITOR=\"vim\" heroku config:edit",
|
|
1208
|
+
"# edit with emacs\n$ EDITOR=\"emacs\" heroku config:edit",
|
|
1209
|
+
"# edit with pico\n$ EDITOR=\"pico\" heroku config:edit",
|
|
1210
|
+
"# edit with atom editor\n$ VISUAL=\"atom --wait\" heroku config:edit"
|
|
1211
|
+
],
|
|
1212
|
+
"flags": {
|
|
1213
|
+
"app": {
|
|
1214
|
+
"name": "app",
|
|
1215
|
+
"type": "option",
|
|
1216
|
+
"char": "a",
|
|
1217
|
+
"description": "app to run command against",
|
|
1218
|
+
"required": true,
|
|
1219
|
+
"multiple": false
|
|
1220
|
+
},
|
|
1221
|
+
"remote": {
|
|
1222
|
+
"name": "remote",
|
|
1223
|
+
"type": "option",
|
|
1224
|
+
"char": "r",
|
|
1225
|
+
"description": "git remote of app to use",
|
|
1226
|
+
"multiple": false
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"args": {
|
|
1230
|
+
"key": {
|
|
1231
|
+
"name": "key",
|
|
1232
|
+
"description": "edit a single key"
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"config:get": {
|
|
1237
|
+
"id": "config:get",
|
|
1238
|
+
"description": "display a single config value for an app",
|
|
1239
|
+
"strict": false,
|
|
1240
|
+
"usage": "config:get KEY...",
|
|
1241
|
+
"pluginName": "heroku",
|
|
1242
|
+
"pluginAlias": "heroku",
|
|
1243
|
+
"pluginType": "core",
|
|
1244
|
+
"aliases": [],
|
|
1245
|
+
"examples": "$ heroku config:get RAILS_ENV\nproduction",
|
|
1246
|
+
"flags": {
|
|
1247
|
+
"app": {
|
|
1248
|
+
"name": "app",
|
|
1249
|
+
"type": "option",
|
|
1250
|
+
"char": "a",
|
|
1251
|
+
"description": "app to run command against",
|
|
1252
|
+
"required": true,
|
|
1253
|
+
"multiple": false
|
|
1254
|
+
},
|
|
1255
|
+
"remote": {
|
|
1256
|
+
"name": "remote",
|
|
1257
|
+
"type": "option",
|
|
1258
|
+
"char": "r",
|
|
1259
|
+
"description": "git remote of app to use",
|
|
1260
|
+
"multiple": false
|
|
1261
|
+
},
|
|
1262
|
+
"shell": {
|
|
1263
|
+
"name": "shell",
|
|
1264
|
+
"type": "boolean",
|
|
1265
|
+
"char": "s",
|
|
1266
|
+
"description": "output config vars in shell format",
|
|
1267
|
+
"allowNo": false
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"args": {
|
|
1271
|
+
"KEY": {
|
|
1272
|
+
"name": "KEY",
|
|
1273
|
+
"required": true
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"example": "$ heroku config:get RAILS_ENV\nproduction"
|
|
1277
|
+
},
|
|
1278
|
+
"config": {
|
|
1279
|
+
"id": "config",
|
|
1280
|
+
"description": "display the config vars for an app",
|
|
1281
|
+
"strict": true,
|
|
1282
|
+
"pluginName": "heroku",
|
|
1283
|
+
"pluginAlias": "heroku",
|
|
1284
|
+
"pluginType": "core",
|
|
1285
|
+
"aliases": [],
|
|
1286
|
+
"flags": {
|
|
1287
|
+
"app": {
|
|
1288
|
+
"name": "app",
|
|
1289
|
+
"type": "option",
|
|
1290
|
+
"char": "a",
|
|
1291
|
+
"description": "app to run command against",
|
|
1292
|
+
"required": true,
|
|
1293
|
+
"multiple": false
|
|
1294
|
+
},
|
|
1295
|
+
"remote": {
|
|
1296
|
+
"name": "remote",
|
|
1297
|
+
"type": "option",
|
|
1298
|
+
"char": "r",
|
|
1299
|
+
"description": "git remote of app to use",
|
|
1300
|
+
"multiple": false
|
|
1301
|
+
},
|
|
1302
|
+
"shell": {
|
|
1303
|
+
"name": "shell",
|
|
1304
|
+
"type": "boolean",
|
|
1305
|
+
"char": "s",
|
|
1306
|
+
"description": "output config vars in shell format",
|
|
1307
|
+
"allowNo": false
|
|
1308
|
+
},
|
|
1309
|
+
"json": {
|
|
1310
|
+
"name": "json",
|
|
1311
|
+
"type": "boolean",
|
|
1312
|
+
"char": "j",
|
|
1313
|
+
"description": "output config vars in json format",
|
|
1314
|
+
"allowNo": false
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"args": {}
|
|
1318
|
+
},
|
|
1319
|
+
"config:unset": {
|
|
1320
|
+
"id": "config:unset",
|
|
1321
|
+
"description": "unset one or more config vars",
|
|
1322
|
+
"strict": false,
|
|
1323
|
+
"pluginName": "heroku",
|
|
1324
|
+
"pluginAlias": "heroku",
|
|
1325
|
+
"pluginType": "core",
|
|
1326
|
+
"aliases": [
|
|
1327
|
+
"config:remove"
|
|
1328
|
+
],
|
|
1329
|
+
"examples": [
|
|
1330
|
+
"$ heroku config:unset RAILS_ENV\nUnsetting RAILS_ENV and restarting example... done, v10",
|
|
1331
|
+
"$ heroku config:unset RAILS_ENV RACK_ENV\nUnsetting RAILS_ENV, RACK_ENV and restarting example... done, v10"
|
|
1332
|
+
],
|
|
1333
|
+
"flags": {
|
|
1334
|
+
"app": {
|
|
1335
|
+
"name": "app",
|
|
1336
|
+
"type": "option",
|
|
1337
|
+
"char": "a",
|
|
1338
|
+
"description": "app to run command against",
|
|
1339
|
+
"required": true,
|
|
1340
|
+
"multiple": false
|
|
1341
|
+
},
|
|
1342
|
+
"remote": {
|
|
1343
|
+
"name": "remote",
|
|
1344
|
+
"type": "option",
|
|
1345
|
+
"char": "r",
|
|
1346
|
+
"description": "git remote of app to use",
|
|
1347
|
+
"multiple": false
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"args": {}
|
|
1351
|
+
},
|
|
1352
|
+
"domains:add": {
|
|
1353
|
+
"id": "domains:add",
|
|
1354
|
+
"description": "add a domain to an app",
|
|
1355
|
+
"strict": true,
|
|
1356
|
+
"pluginName": "heroku",
|
|
1357
|
+
"pluginAlias": "heroku",
|
|
1358
|
+
"pluginType": "core",
|
|
1359
|
+
"aliases": [],
|
|
1360
|
+
"examples": [
|
|
1361
|
+
"heroku domains:add www.example.com"
|
|
1362
|
+
],
|
|
1363
|
+
"flags": {
|
|
1364
|
+
"help": {
|
|
1365
|
+
"name": "help",
|
|
1366
|
+
"type": "boolean",
|
|
1367
|
+
"char": "h",
|
|
1368
|
+
"description": "Show CLI help.",
|
|
1369
|
+
"allowNo": false
|
|
1370
|
+
},
|
|
1371
|
+
"app": {
|
|
1372
|
+
"name": "app",
|
|
1373
|
+
"type": "option",
|
|
1374
|
+
"char": "a",
|
|
1375
|
+
"description": "app to run command against",
|
|
1376
|
+
"required": true,
|
|
1377
|
+
"multiple": false
|
|
1378
|
+
},
|
|
1379
|
+
"cert": {
|
|
1380
|
+
"name": "cert",
|
|
1381
|
+
"type": "option",
|
|
1382
|
+
"char": "c",
|
|
1383
|
+
"description": "the name of the SSL cert you want to use for this domain",
|
|
1384
|
+
"multiple": false
|
|
1385
|
+
},
|
|
1386
|
+
"json": {
|
|
1387
|
+
"name": "json",
|
|
1388
|
+
"type": "boolean",
|
|
1389
|
+
"char": "j",
|
|
1390
|
+
"description": "output in json format",
|
|
1391
|
+
"allowNo": false
|
|
1392
|
+
},
|
|
1393
|
+
"wait": {
|
|
1394
|
+
"name": "wait",
|
|
1395
|
+
"type": "boolean",
|
|
1396
|
+
"allowNo": false
|
|
1397
|
+
},
|
|
1398
|
+
"remote": {
|
|
1399
|
+
"name": "remote",
|
|
1400
|
+
"type": "option",
|
|
1401
|
+
"char": "r",
|
|
1402
|
+
"description": "git remote of app to use",
|
|
1403
|
+
"multiple": false
|
|
1404
|
+
}
|
|
1405
|
+
},
|
|
1406
|
+
"args": {
|
|
1407
|
+
"hostname": {
|
|
1408
|
+
"name": "hostname",
|
|
1409
|
+
"required": true
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
"domains:clear": {
|
|
1414
|
+
"id": "domains:clear",
|
|
1415
|
+
"description": "remove all domains from an app",
|
|
1416
|
+
"strict": true,
|
|
1417
|
+
"pluginName": "heroku",
|
|
1418
|
+
"pluginAlias": "heroku",
|
|
1419
|
+
"pluginType": "core",
|
|
1420
|
+
"aliases": [],
|
|
1421
|
+
"examples": [
|
|
1422
|
+
"heroku domains:clear"
|
|
1423
|
+
],
|
|
1424
|
+
"flags": {
|
|
1425
|
+
"help": {
|
|
1426
|
+
"name": "help",
|
|
1427
|
+
"type": "boolean",
|
|
1428
|
+
"char": "h",
|
|
1429
|
+
"description": "Show CLI help.",
|
|
1430
|
+
"allowNo": false
|
|
1431
|
+
},
|
|
1432
|
+
"app": {
|
|
1433
|
+
"name": "app",
|
|
1434
|
+
"type": "option",
|
|
1435
|
+
"char": "a",
|
|
1436
|
+
"description": "app to run command against",
|
|
1437
|
+
"required": true,
|
|
1438
|
+
"multiple": false
|
|
1439
|
+
},
|
|
1440
|
+
"remote": {
|
|
1441
|
+
"name": "remote",
|
|
1442
|
+
"type": "option",
|
|
1443
|
+
"char": "r",
|
|
1444
|
+
"description": "git remote of app to use",
|
|
1445
|
+
"multiple": false
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
"args": {}
|
|
1449
|
+
},
|
|
1450
|
+
"domains": {
|
|
1451
|
+
"id": "domains",
|
|
1452
|
+
"description": "list domains for an app",
|
|
1453
|
+
"strict": true,
|
|
1454
|
+
"pluginName": "heroku",
|
|
1455
|
+
"pluginAlias": "heroku",
|
|
1456
|
+
"pluginType": "core",
|
|
1457
|
+
"aliases": [],
|
|
1458
|
+
"examples": [
|
|
1459
|
+
"$ heroku domains\n=== example Heroku Domain\nexample-xxxxxxxxxxxx.herokuapp.com\n\n=== example Custom Domains\nDomain Name DNS Record Type DNS Target\nwww.example.com CNAME www.example.herokudns.com\n",
|
|
1460
|
+
"$ heroku domains --filter 'Domain Name=www.example.com'"
|
|
1461
|
+
],
|
|
1462
|
+
"flags": {
|
|
1463
|
+
"help": {
|
|
1464
|
+
"name": "help",
|
|
1465
|
+
"type": "boolean",
|
|
1466
|
+
"char": "h",
|
|
1467
|
+
"description": "Show CLI help.",
|
|
1468
|
+
"allowNo": false
|
|
1469
|
+
},
|
|
1470
|
+
"app": {
|
|
1471
|
+
"name": "app",
|
|
1472
|
+
"type": "option",
|
|
1473
|
+
"char": "a",
|
|
1474
|
+
"description": "app to run command against",
|
|
1475
|
+
"required": true,
|
|
1476
|
+
"multiple": false
|
|
1477
|
+
},
|
|
1478
|
+
"remote": {
|
|
1479
|
+
"name": "remote",
|
|
1480
|
+
"type": "option",
|
|
1481
|
+
"char": "r",
|
|
1482
|
+
"description": "git remote of app to use",
|
|
1483
|
+
"multiple": false
|
|
1484
|
+
},
|
|
1485
|
+
"json": {
|
|
1486
|
+
"name": "json",
|
|
1487
|
+
"type": "boolean",
|
|
1488
|
+
"char": "j",
|
|
1489
|
+
"description": "output in json format",
|
|
1490
|
+
"allowNo": false
|
|
1491
|
+
},
|
|
1492
|
+
"columns": {
|
|
1493
|
+
"name": "columns",
|
|
1494
|
+
"type": "option",
|
|
1495
|
+
"description": "only show provided columns (comma-separated)",
|
|
1496
|
+
"multiple": false,
|
|
1497
|
+
"exclusive": [
|
|
1498
|
+
"extended"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
"sort": {
|
|
1502
|
+
"name": "sort",
|
|
1503
|
+
"type": "option",
|
|
1504
|
+
"description": "property to sort by (prepend '-' for descending)",
|
|
1505
|
+
"multiple": false
|
|
1506
|
+
},
|
|
1507
|
+
"filter": {
|
|
1508
|
+
"name": "filter",
|
|
1509
|
+
"type": "option",
|
|
1510
|
+
"description": "filter property by partial string matching, ex: name=foo",
|
|
1511
|
+
"multiple": false
|
|
1512
|
+
},
|
|
1513
|
+
"csv": {
|
|
1514
|
+
"name": "csv",
|
|
1515
|
+
"type": "boolean",
|
|
1516
|
+
"description": "output is csv format [alias: --output=csv]",
|
|
1517
|
+
"allowNo": false,
|
|
1518
|
+
"exclusive": [
|
|
1519
|
+
"no-truncate"
|
|
1520
|
+
]
|
|
1521
|
+
},
|
|
1522
|
+
"output": {
|
|
1523
|
+
"name": "output",
|
|
1524
|
+
"type": "option",
|
|
1525
|
+
"description": "output in a more machine friendly format",
|
|
1526
|
+
"multiple": false,
|
|
1527
|
+
"options": [
|
|
1528
|
+
"csv",
|
|
1529
|
+
"json",
|
|
1530
|
+
"yaml"
|
|
1531
|
+
],
|
|
1532
|
+
"exclusive": [
|
|
1533
|
+
"no-truncate",
|
|
1534
|
+
"csv"
|
|
1535
|
+
]
|
|
1536
|
+
},
|
|
1537
|
+
"extended": {
|
|
1538
|
+
"name": "extended",
|
|
1539
|
+
"type": "boolean",
|
|
1540
|
+
"char": "x",
|
|
1541
|
+
"description": "show extra columns",
|
|
1542
|
+
"allowNo": false,
|
|
1543
|
+
"exclusive": [
|
|
1544
|
+
"columns"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"no-header": {
|
|
1548
|
+
"name": "no-header",
|
|
1549
|
+
"type": "boolean",
|
|
1550
|
+
"description": "hide table header from output",
|
|
1551
|
+
"allowNo": false,
|
|
1552
|
+
"exclusive": [
|
|
1553
|
+
"csv"
|
|
1554
|
+
]
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
"args": {}
|
|
1558
|
+
},
|
|
1559
|
+
"domains:info": {
|
|
1560
|
+
"id": "domains:info",
|
|
1561
|
+
"description": "show detailed information for a domain on an app",
|
|
1562
|
+
"strict": true,
|
|
1563
|
+
"pluginName": "heroku",
|
|
1564
|
+
"pluginAlias": "heroku",
|
|
1565
|
+
"pluginType": "core",
|
|
1566
|
+
"aliases": [],
|
|
1567
|
+
"examples": [
|
|
1568
|
+
"$ heroku domains:info www.example.com"
|
|
1569
|
+
],
|
|
1570
|
+
"flags": {
|
|
1571
|
+
"help": {
|
|
1572
|
+
"name": "help",
|
|
1573
|
+
"type": "boolean",
|
|
1574
|
+
"char": "h",
|
|
1575
|
+
"description": "Show CLI help.",
|
|
1576
|
+
"allowNo": false
|
|
1577
|
+
},
|
|
1578
|
+
"app": {
|
|
1579
|
+
"name": "app",
|
|
1580
|
+
"type": "option",
|
|
1581
|
+
"char": "a",
|
|
1582
|
+
"description": "app to run command against",
|
|
1583
|
+
"required": true,
|
|
1584
|
+
"multiple": false
|
|
1585
|
+
},
|
|
1586
|
+
"remote": {
|
|
1587
|
+
"name": "remote",
|
|
1588
|
+
"type": "option",
|
|
1589
|
+
"char": "r",
|
|
1590
|
+
"description": "git remote of app to use",
|
|
1591
|
+
"multiple": false
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"args": {
|
|
1595
|
+
"hostname": {
|
|
1596
|
+
"name": "hostname",
|
|
1597
|
+
"required": true
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
"domains:remove": {
|
|
1602
|
+
"id": "domains:remove",
|
|
1603
|
+
"description": "remove a domain from an app",
|
|
1604
|
+
"strict": true,
|
|
1605
|
+
"pluginName": "heroku",
|
|
1606
|
+
"pluginAlias": "heroku",
|
|
1607
|
+
"pluginType": "core",
|
|
1608
|
+
"aliases": [],
|
|
1609
|
+
"examples": [
|
|
1610
|
+
"heroku domains:remove www.example.com"
|
|
1611
|
+
],
|
|
1612
|
+
"flags": {
|
|
1613
|
+
"help": {
|
|
1614
|
+
"name": "help",
|
|
1615
|
+
"type": "boolean",
|
|
1616
|
+
"char": "h",
|
|
1617
|
+
"description": "Show CLI help.",
|
|
1618
|
+
"allowNo": false
|
|
1619
|
+
},
|
|
1620
|
+
"app": {
|
|
1621
|
+
"name": "app",
|
|
1622
|
+
"type": "option",
|
|
1623
|
+
"char": "a",
|
|
1624
|
+
"description": "app to run command against",
|
|
1625
|
+
"required": true,
|
|
1626
|
+
"multiple": false
|
|
1627
|
+
},
|
|
1628
|
+
"remote": {
|
|
1629
|
+
"name": "remote",
|
|
1630
|
+
"type": "option",
|
|
1631
|
+
"char": "r",
|
|
1632
|
+
"description": "git remote of app to use",
|
|
1633
|
+
"multiple": false
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"args": {
|
|
1637
|
+
"hostname": {
|
|
1638
|
+
"name": "hostname",
|
|
1639
|
+
"required": true
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
},
|
|
1643
|
+
"domains:update": {
|
|
1644
|
+
"id": "domains:update",
|
|
1645
|
+
"description": "update a domain to use a different SSL certificate on an app",
|
|
1646
|
+
"strict": true,
|
|
1647
|
+
"pluginName": "heroku",
|
|
1648
|
+
"pluginAlias": "heroku",
|
|
1649
|
+
"pluginType": "core",
|
|
1650
|
+
"aliases": [],
|
|
1651
|
+
"examples": [
|
|
1652
|
+
"heroku domains:update www.example.com --cert mycert"
|
|
1653
|
+
],
|
|
1654
|
+
"flags": {
|
|
1655
|
+
"help": {
|
|
1656
|
+
"name": "help",
|
|
1657
|
+
"type": "boolean",
|
|
1658
|
+
"char": "h",
|
|
1659
|
+
"description": "Show CLI help.",
|
|
1660
|
+
"allowNo": false
|
|
1661
|
+
},
|
|
1662
|
+
"app": {
|
|
1663
|
+
"name": "app",
|
|
1664
|
+
"type": "option",
|
|
1665
|
+
"char": "a",
|
|
1666
|
+
"description": "app to run command against",
|
|
1667
|
+
"required": true,
|
|
1668
|
+
"multiple": false
|
|
1669
|
+
},
|
|
1670
|
+
"remote": {
|
|
1671
|
+
"name": "remote",
|
|
1672
|
+
"type": "option",
|
|
1673
|
+
"char": "r",
|
|
1674
|
+
"description": "git remote of app to use",
|
|
1675
|
+
"multiple": false
|
|
1676
|
+
},
|
|
1677
|
+
"cert": {
|
|
1678
|
+
"name": "cert",
|
|
1679
|
+
"type": "option",
|
|
1680
|
+
"description": "the name or id of the certificate you want to use for this domain",
|
|
1681
|
+
"required": true,
|
|
1682
|
+
"multiple": false
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
"args": {
|
|
1686
|
+
"hostname": {
|
|
1687
|
+
"name": "hostname",
|
|
1688
|
+
"required": true
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1692
|
+
"domains:wait": {
|
|
1693
|
+
"id": "domains:wait",
|
|
1694
|
+
"description": "wait for domain to be active for an app",
|
|
1695
|
+
"strict": true,
|
|
1696
|
+
"pluginName": "heroku",
|
|
1697
|
+
"pluginAlias": "heroku",
|
|
1698
|
+
"pluginType": "core",
|
|
1699
|
+
"aliases": [],
|
|
1700
|
+
"flags": {
|
|
1701
|
+
"help": {
|
|
1702
|
+
"name": "help",
|
|
1703
|
+
"type": "boolean",
|
|
1704
|
+
"char": "h",
|
|
1705
|
+
"description": "Show CLI help.",
|
|
1706
|
+
"allowNo": false
|
|
1707
|
+
},
|
|
1708
|
+
"app": {
|
|
1709
|
+
"name": "app",
|
|
1710
|
+
"type": "option",
|
|
1711
|
+
"char": "a",
|
|
1712
|
+
"description": "app to run command against",
|
|
1713
|
+
"required": true,
|
|
1714
|
+
"multiple": false
|
|
1715
|
+
},
|
|
1716
|
+
"remote": {
|
|
1717
|
+
"name": "remote",
|
|
1718
|
+
"type": "option",
|
|
1719
|
+
"char": "r",
|
|
1720
|
+
"description": "git remote of app to use",
|
|
1721
|
+
"multiple": false
|
|
1722
|
+
}
|
|
1723
|
+
},
|
|
1724
|
+
"args": {
|
|
1725
|
+
"hostname": {
|
|
1726
|
+
"name": "hostname"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"git:clone": {
|
|
1731
|
+
"id": "git:clone",
|
|
1732
|
+
"description": "clones a heroku app to your local machine at DIRECTORY (defaults to app name)",
|
|
1733
|
+
"strict": true,
|
|
1734
|
+
"pluginName": "heroku",
|
|
1735
|
+
"pluginAlias": "heroku",
|
|
1736
|
+
"pluginType": "core",
|
|
1737
|
+
"aliases": [],
|
|
1738
|
+
"examples": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n...",
|
|
1739
|
+
"flags": {
|
|
1740
|
+
"app": {
|
|
1741
|
+
"name": "app",
|
|
1742
|
+
"type": "option",
|
|
1743
|
+
"char": "a",
|
|
1744
|
+
"description": "the Heroku app to use",
|
|
1745
|
+
"required": true,
|
|
1746
|
+
"multiple": false
|
|
1747
|
+
},
|
|
1748
|
+
"remote": {
|
|
1749
|
+
"name": "remote",
|
|
1750
|
+
"type": "option",
|
|
1751
|
+
"char": "r",
|
|
1752
|
+
"description": "the git remote to create, default \"heroku\"",
|
|
1753
|
+
"multiple": false
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"args": {
|
|
1757
|
+
"DIRECTORY": {
|
|
1758
|
+
"name": "DIRECTORY",
|
|
1759
|
+
"description": "where to clone the app"
|
|
1760
|
+
}
|
|
1761
|
+
},
|
|
1762
|
+
"example": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n..."
|
|
1763
|
+
},
|
|
1764
|
+
"git:credentials": {
|
|
1765
|
+
"id": "git:credentials",
|
|
1766
|
+
"description": "internal command for git-credentials",
|
|
1767
|
+
"strict": true,
|
|
1768
|
+
"pluginName": "heroku",
|
|
1769
|
+
"pluginAlias": "heroku",
|
|
1770
|
+
"pluginType": "core",
|
|
1771
|
+
"hidden": true,
|
|
1772
|
+
"aliases": [],
|
|
1773
|
+
"flags": {},
|
|
1774
|
+
"args": {
|
|
1775
|
+
"command": {
|
|
1776
|
+
"name": "command",
|
|
1777
|
+
"required": true
|
|
1778
|
+
}
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"git:remote": {
|
|
1782
|
+
"id": "git:remote",
|
|
1783
|
+
"description": "adds a git remote to an app repo\nextra arguments will be passed to git remote add\n",
|
|
1784
|
+
"strict": false,
|
|
1785
|
+
"pluginName": "heroku",
|
|
1786
|
+
"pluginAlias": "heroku",
|
|
1787
|
+
"pluginType": "core",
|
|
1788
|
+
"aliases": [],
|
|
1789
|
+
"examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
|
|
1790
|
+
"flags": {
|
|
1791
|
+
"app": {
|
|
1792
|
+
"name": "app",
|
|
1793
|
+
"type": "option",
|
|
1794
|
+
"char": "a",
|
|
1795
|
+
"description": "the Heroku app to use",
|
|
1796
|
+
"multiple": false
|
|
1797
|
+
},
|
|
1798
|
+
"remote": {
|
|
1799
|
+
"name": "remote",
|
|
1800
|
+
"type": "option",
|
|
1801
|
+
"char": "r",
|
|
1802
|
+
"description": "the git remote to create",
|
|
1803
|
+
"multiple": false
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
"args": {},
|
|
1807
|
+
"example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example"
|
|
1808
|
+
},
|
|
1809
|
+
"labs:disable": {
|
|
1810
|
+
"id": "labs:disable",
|
|
1811
|
+
"description": "disables an experimental feature",
|
|
1812
|
+
"strict": true,
|
|
1813
|
+
"pluginName": "heroku",
|
|
1814
|
+
"pluginAlias": "heroku",
|
|
1815
|
+
"pluginType": "core",
|
|
1816
|
+
"aliases": [],
|
|
1817
|
+
"flags": {
|
|
1818
|
+
"app": {
|
|
1819
|
+
"name": "app",
|
|
1820
|
+
"type": "option",
|
|
1821
|
+
"char": "a",
|
|
1822
|
+
"description": "app to run command against",
|
|
1823
|
+
"multiple": false
|
|
1824
|
+
},
|
|
1825
|
+
"remote": {
|
|
1826
|
+
"name": "remote",
|
|
1827
|
+
"type": "option",
|
|
1828
|
+
"char": "r",
|
|
1829
|
+
"description": "git remote of app to use",
|
|
1830
|
+
"multiple": false
|
|
1831
|
+
},
|
|
1832
|
+
"confirm": {
|
|
1833
|
+
"name": "confirm",
|
|
1834
|
+
"type": "option",
|
|
1835
|
+
"required": false,
|
|
1836
|
+
"multiple": false
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
"args": {
|
|
1840
|
+
"feature": {
|
|
1841
|
+
"name": "feature",
|
|
1842
|
+
"required": true
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"local": {
|
|
1847
|
+
"id": "local",
|
|
1848
|
+
"description": "run heroku app locally\nStart the application specified by a Procfile (defaults to ./Procfile)",
|
|
1849
|
+
"strict": true,
|
|
1850
|
+
"pluginName": "heroku",
|
|
1851
|
+
"pluginAlias": "heroku",
|
|
1852
|
+
"pluginType": "core",
|
|
1853
|
+
"aliases": [
|
|
1854
|
+
"local:start"
|
|
1855
|
+
],
|
|
1856
|
+
"examples": [
|
|
1857
|
+
"$ heroku local\n$ heroku local web\n$ heroku local web=2\n$ heroku local web=1,worker=2"
|
|
1858
|
+
],
|
|
1859
|
+
"flags": {
|
|
1860
|
+
"procfile": {
|
|
1861
|
+
"name": "procfile",
|
|
1862
|
+
"type": "option",
|
|
1863
|
+
"char": "f",
|
|
1864
|
+
"description": "use a different Procfile",
|
|
1865
|
+
"multiple": false
|
|
1866
|
+
},
|
|
1867
|
+
"env": {
|
|
1868
|
+
"name": "env",
|
|
1869
|
+
"type": "option",
|
|
1870
|
+
"char": "e",
|
|
1871
|
+
"description": "location of env file (defaults to .env)",
|
|
1872
|
+
"multiple": false
|
|
1873
|
+
},
|
|
1874
|
+
"port": {
|
|
1875
|
+
"name": "port",
|
|
1876
|
+
"type": "option",
|
|
1877
|
+
"char": "p",
|
|
1878
|
+
"description": "port to listen on",
|
|
1879
|
+
"multiple": false
|
|
1880
|
+
},
|
|
1881
|
+
"restart": {
|
|
1882
|
+
"name": "restart",
|
|
1883
|
+
"type": "boolean",
|
|
1884
|
+
"char": "r",
|
|
1885
|
+
"description": "restart process if it dies",
|
|
1886
|
+
"hidden": true,
|
|
1887
|
+
"allowNo": false
|
|
1888
|
+
},
|
|
1889
|
+
"concurrency": {
|
|
1890
|
+
"name": "concurrency",
|
|
1891
|
+
"type": "option",
|
|
1892
|
+
"char": "c",
|
|
1893
|
+
"description": "number of processes to start",
|
|
1894
|
+
"hidden": true,
|
|
1895
|
+
"multiple": false
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
"args": {
|
|
1899
|
+
"processname": {
|
|
1900
|
+
"name": "processname",
|
|
1901
|
+
"required": false
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
},
|
|
1905
|
+
"local:run": {
|
|
1906
|
+
"id": "local:run",
|
|
1907
|
+
"description": "run a one-off command",
|
|
1908
|
+
"strict": false,
|
|
1909
|
+
"pluginName": "heroku",
|
|
1910
|
+
"pluginAlias": "heroku",
|
|
1911
|
+
"pluginType": "core",
|
|
1912
|
+
"aliases": [],
|
|
1913
|
+
"examples": [
|
|
1914
|
+
"$ heroku local:run bin/migrate"
|
|
1915
|
+
],
|
|
1916
|
+
"flags": {
|
|
1917
|
+
"env": {
|
|
1918
|
+
"name": "env",
|
|
1919
|
+
"type": "option",
|
|
1920
|
+
"char": "e",
|
|
1921
|
+
"multiple": false
|
|
1922
|
+
},
|
|
1923
|
+
"port": {
|
|
1924
|
+
"name": "port",
|
|
1925
|
+
"type": "option",
|
|
1926
|
+
"char": "p",
|
|
1927
|
+
"multiple": false,
|
|
1928
|
+
"default": "5001"
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1931
|
+
"args": {}
|
|
1932
|
+
},
|
|
1933
|
+
"local:version": {
|
|
1934
|
+
"id": "local:version",
|
|
1935
|
+
"description": "display node-foreman version",
|
|
1936
|
+
"strict": true,
|
|
1937
|
+
"pluginName": "heroku",
|
|
1938
|
+
"pluginAlias": "heroku",
|
|
1939
|
+
"pluginType": "core",
|
|
1940
|
+
"aliases": [],
|
|
1941
|
+
"flags": {},
|
|
1942
|
+
"args": {}
|
|
1943
|
+
},
|
|
1944
|
+
"pipelines:add": {
|
|
1945
|
+
"id": "pipelines:add",
|
|
1946
|
+
"description": "add this app to a pipeline\nThe app and pipeline names must be specified.\nThe stage of the app will be guessed based on its name if not specified.",
|
|
1947
|
+
"strict": true,
|
|
1948
|
+
"pluginName": "heroku",
|
|
1949
|
+
"pluginAlias": "heroku",
|
|
1950
|
+
"pluginType": "core",
|
|
1951
|
+
"aliases": [],
|
|
1952
|
+
"examples": [
|
|
1953
|
+
"$ heroku pipelines:add my-pipeline -a my-app -s production"
|
|
1954
|
+
],
|
|
1955
|
+
"flags": {
|
|
1956
|
+
"app": {
|
|
1957
|
+
"name": "app",
|
|
1958
|
+
"type": "option",
|
|
1959
|
+
"char": "a",
|
|
1960
|
+
"description": "app to run command against",
|
|
1961
|
+
"required": true,
|
|
1962
|
+
"multiple": false
|
|
1963
|
+
},
|
|
1964
|
+
"remote": {
|
|
1965
|
+
"name": "remote",
|
|
1966
|
+
"type": "option",
|
|
1967
|
+
"char": "r",
|
|
1968
|
+
"description": "git remote of app to use",
|
|
1969
|
+
"multiple": false
|
|
1970
|
+
},
|
|
1971
|
+
"stage": {
|
|
1972
|
+
"name": "stage",
|
|
1973
|
+
"type": "option",
|
|
1974
|
+
"char": "s",
|
|
1975
|
+
"description": "stage of first app in pipeline",
|
|
1976
|
+
"multiple": false
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"args": {
|
|
1980
|
+
"pipeline": {
|
|
1981
|
+
"name": "pipeline",
|
|
1982
|
+
"description": "name of pipeline",
|
|
1983
|
+
"required": true
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"pipelines:connect": {
|
|
1988
|
+
"id": "pipelines:connect",
|
|
1989
|
+
"description": "connect a github repo to an existing pipeline",
|
|
1990
|
+
"strict": true,
|
|
1991
|
+
"pluginName": "heroku",
|
|
1992
|
+
"pluginAlias": "heroku",
|
|
1993
|
+
"pluginType": "core",
|
|
1994
|
+
"aliases": [],
|
|
1995
|
+
"examples": [
|
|
1996
|
+
"$ heroku pipelines:connect my-pipeline -r githuborg/reponame"
|
|
1997
|
+
],
|
|
1998
|
+
"flags": {
|
|
1999
|
+
"repo": {
|
|
2000
|
+
"name": "repo",
|
|
2001
|
+
"type": "option",
|
|
2002
|
+
"char": "r",
|
|
2003
|
+
"description": "the GitHub repository to connect to",
|
|
2004
|
+
"required": true,
|
|
2005
|
+
"multiple": false
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
"args": {
|
|
2009
|
+
"name": {
|
|
2010
|
+
"name": "name",
|
|
2011
|
+
"description": "name of pipeline",
|
|
2012
|
+
"required": true
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
"pipelines:create": {
|
|
2017
|
+
"id": "pipelines:create",
|
|
2018
|
+
"description": "create a new pipeline\n An existing app must be specified as the first app in the pipeline.\n The pipeline name will be inferred from the app name if not specified.\n The stage of the app will be guessed based on its name if not specified.\n The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs.",
|
|
2019
|
+
"strict": true,
|
|
2020
|
+
"pluginName": "heroku",
|
|
2021
|
+
"pluginAlias": "heroku",
|
|
2022
|
+
"pluginType": "core",
|
|
2023
|
+
"aliases": [],
|
|
2024
|
+
"examples": [
|
|
2025
|
+
"$ heroku pipelines:create -a my-app-staging",
|
|
2026
|
+
"$ heroku pipelines:create my-pipeline -a my-app-staging"
|
|
2027
|
+
],
|
|
2028
|
+
"flags": {
|
|
2029
|
+
"app": {
|
|
2030
|
+
"name": "app",
|
|
2031
|
+
"type": "option",
|
|
2032
|
+
"char": "a",
|
|
2033
|
+
"description": "app to run command against",
|
|
2034
|
+
"required": true,
|
|
2035
|
+
"multiple": false
|
|
2036
|
+
},
|
|
2037
|
+
"remote": {
|
|
2038
|
+
"name": "remote",
|
|
2039
|
+
"type": "option",
|
|
2040
|
+
"char": "r",
|
|
2041
|
+
"description": "git remote of app to use",
|
|
2042
|
+
"multiple": false
|
|
2043
|
+
},
|
|
2044
|
+
"stage": {
|
|
2045
|
+
"name": "stage",
|
|
2046
|
+
"type": "option",
|
|
2047
|
+
"char": "s",
|
|
2048
|
+
"description": "stage of first app in pipeline",
|
|
2049
|
+
"multiple": false
|
|
2050
|
+
},
|
|
2051
|
+
"team": {
|
|
2052
|
+
"name": "team",
|
|
2053
|
+
"type": "option",
|
|
2054
|
+
"char": "t",
|
|
2055
|
+
"description": "the team which will own the apps",
|
|
2056
|
+
"multiple": false
|
|
2057
|
+
}
|
|
2058
|
+
},
|
|
2059
|
+
"args": {
|
|
2060
|
+
"name": {
|
|
2061
|
+
"name": "name",
|
|
2062
|
+
"description": "name of pipeline (defaults to basename of the app)",
|
|
2063
|
+
"required": false
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
2067
|
+
"pipelines:destroy": {
|
|
2068
|
+
"id": "pipelines:destroy",
|
|
2069
|
+
"description": "destroy a pipeline",
|
|
2070
|
+
"strict": true,
|
|
2071
|
+
"pluginName": "heroku",
|
|
2072
|
+
"pluginAlias": "heroku",
|
|
2073
|
+
"pluginType": "core",
|
|
2074
|
+
"aliases": [],
|
|
2075
|
+
"examples": [
|
|
2076
|
+
"$ heroku pipelines:destroy my-pipeline"
|
|
2077
|
+
],
|
|
2078
|
+
"flags": {},
|
|
2079
|
+
"args": {
|
|
2080
|
+
"pipeline": {
|
|
2081
|
+
"name": "pipeline",
|
|
2082
|
+
"description": "name of pipeline",
|
|
2083
|
+
"required": true
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"pipelines:diff": {
|
|
2088
|
+
"id": "pipelines:diff",
|
|
2089
|
+
"description": "compares the latest release of this app to its downstream app(s)",
|
|
2090
|
+
"strict": true,
|
|
2091
|
+
"pluginName": "heroku",
|
|
2092
|
+
"pluginAlias": "heroku",
|
|
2093
|
+
"pluginType": "core",
|
|
2094
|
+
"aliases": [],
|
|
2095
|
+
"examples": [
|
|
2096
|
+
"$ heroku pipelines:diff -a my-app-staging"
|
|
2097
|
+
],
|
|
2098
|
+
"flags": {
|
|
2099
|
+
"app": {
|
|
2100
|
+
"name": "app",
|
|
2101
|
+
"type": "option",
|
|
2102
|
+
"char": "a",
|
|
2103
|
+
"description": "app to run command against",
|
|
2104
|
+
"required": true,
|
|
2105
|
+
"multiple": false
|
|
2106
|
+
},
|
|
2107
|
+
"remote": {
|
|
2108
|
+
"name": "remote",
|
|
2109
|
+
"type": "option",
|
|
2110
|
+
"char": "r",
|
|
2111
|
+
"description": "git remote of app to use",
|
|
2112
|
+
"multiple": false
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"args": {}
|
|
2116
|
+
},
|
|
2117
|
+
"pipelines": {
|
|
2118
|
+
"id": "pipelines",
|
|
2119
|
+
"description": "list pipelines you have access to",
|
|
2120
|
+
"strict": true,
|
|
2121
|
+
"pluginName": "heroku",
|
|
2122
|
+
"pluginAlias": "heroku",
|
|
2123
|
+
"pluginType": "core",
|
|
2124
|
+
"aliases": [],
|
|
2125
|
+
"examples": [
|
|
2126
|
+
"$ heroku pipelines"
|
|
2127
|
+
],
|
|
2128
|
+
"flags": {
|
|
2129
|
+
"json": {
|
|
2130
|
+
"name": "json",
|
|
2131
|
+
"type": "boolean",
|
|
2132
|
+
"description": "output in json format",
|
|
2133
|
+
"allowNo": false
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"args": {}
|
|
2137
|
+
},
|
|
2138
|
+
"pipelines:info": {
|
|
2139
|
+
"id": "pipelines:info",
|
|
2140
|
+
"description": "show list of apps in a pipeline",
|
|
2141
|
+
"strict": true,
|
|
2142
|
+
"pluginName": "heroku",
|
|
2143
|
+
"pluginAlias": "heroku",
|
|
2144
|
+
"pluginType": "core",
|
|
2145
|
+
"aliases": [],
|
|
2146
|
+
"examples": [
|
|
2147
|
+
"$ heroku pipelines:info my-pipeline"
|
|
2148
|
+
],
|
|
2149
|
+
"flags": {
|
|
2150
|
+
"json": {
|
|
2151
|
+
"name": "json",
|
|
2152
|
+
"type": "boolean",
|
|
2153
|
+
"description": "output in json format",
|
|
2154
|
+
"allowNo": false
|
|
2155
|
+
},
|
|
2156
|
+
"with-owners": {
|
|
2157
|
+
"name": "with-owners",
|
|
2158
|
+
"type": "boolean",
|
|
2159
|
+
"description": "shows owner of every app",
|
|
2160
|
+
"hidden": true,
|
|
2161
|
+
"allowNo": false
|
|
2162
|
+
}
|
|
2163
|
+
},
|
|
2164
|
+
"args": {
|
|
2165
|
+
"pipeline": {
|
|
2166
|
+
"name": "pipeline",
|
|
2167
|
+
"description": "pipeline to show list of apps for",
|
|
2168
|
+
"required": true
|
|
2169
|
+
}
|
|
2170
|
+
}
|
|
2171
|
+
},
|
|
2172
|
+
"pipelines:open": {
|
|
2173
|
+
"id": "pipelines:open",
|
|
2174
|
+
"description": "open a pipeline in dashboard",
|
|
2175
|
+
"strict": true,
|
|
2176
|
+
"pluginName": "heroku",
|
|
2177
|
+
"pluginAlias": "heroku",
|
|
2178
|
+
"pluginType": "core",
|
|
2179
|
+
"aliases": [],
|
|
2180
|
+
"examples": [
|
|
2181
|
+
"$ heroku pipelines:open my-pipeline"
|
|
2182
|
+
],
|
|
2183
|
+
"flags": {},
|
|
2184
|
+
"args": {
|
|
2185
|
+
"pipeline": {
|
|
2186
|
+
"name": "pipeline",
|
|
2187
|
+
"description": "name of pipeline",
|
|
2188
|
+
"required": true
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
"pipelines:promote": {
|
|
2193
|
+
"id": "pipelines:promote",
|
|
2194
|
+
"description": "promote the latest release of this app to its downstream app(s)",
|
|
2195
|
+
"strict": true,
|
|
2196
|
+
"pluginName": "heroku",
|
|
2197
|
+
"pluginAlias": "heroku",
|
|
2198
|
+
"pluginType": "core",
|
|
2199
|
+
"aliases": [],
|
|
2200
|
+
"examples": [
|
|
2201
|
+
"$ heroku pipelines:promote -a my-app-staging"
|
|
2202
|
+
],
|
|
2203
|
+
"flags": {
|
|
2204
|
+
"app": {
|
|
2205
|
+
"name": "app",
|
|
2206
|
+
"type": "option",
|
|
2207
|
+
"char": "a",
|
|
2208
|
+
"description": "app to run command against",
|
|
2209
|
+
"required": true,
|
|
2210
|
+
"multiple": false
|
|
2211
|
+
},
|
|
2212
|
+
"remote": {
|
|
2213
|
+
"name": "remote",
|
|
2214
|
+
"type": "option",
|
|
2215
|
+
"char": "r",
|
|
2216
|
+
"description": "git remote of app to use",
|
|
2217
|
+
"multiple": false
|
|
2218
|
+
},
|
|
2219
|
+
"to": {
|
|
2220
|
+
"name": "to",
|
|
2221
|
+
"type": "option",
|
|
2222
|
+
"char": "t",
|
|
2223
|
+
"description": "comma separated list of apps to promote to",
|
|
2224
|
+
"multiple": false
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2227
|
+
"args": {}
|
|
2228
|
+
},
|
|
2229
|
+
"pipelines:remove": {
|
|
2230
|
+
"id": "pipelines:remove",
|
|
2231
|
+
"description": "remove this app from its pipeline",
|
|
2232
|
+
"strict": true,
|
|
2233
|
+
"pluginName": "heroku",
|
|
2234
|
+
"pluginAlias": "heroku",
|
|
2235
|
+
"pluginType": "core",
|
|
2236
|
+
"aliases": [],
|
|
2237
|
+
"examples": [
|
|
2238
|
+
"$ heroku pipelines:remove -a my-app"
|
|
2239
|
+
],
|
|
2240
|
+
"flags": {
|
|
2241
|
+
"app": {
|
|
2242
|
+
"name": "app",
|
|
2243
|
+
"type": "option",
|
|
2244
|
+
"char": "a",
|
|
2245
|
+
"description": "app to run command against",
|
|
2246
|
+
"required": true,
|
|
2247
|
+
"multiple": false
|
|
2248
|
+
},
|
|
2249
|
+
"remote": {
|
|
2250
|
+
"name": "remote",
|
|
2251
|
+
"type": "option",
|
|
2252
|
+
"char": "r",
|
|
2253
|
+
"description": "git remote of app to use",
|
|
2254
|
+
"multiple": false
|
|
2255
|
+
}
|
|
2256
|
+
},
|
|
2257
|
+
"args": {}
|
|
2258
|
+
},
|
|
2259
|
+
"pipelines:rename": {
|
|
2260
|
+
"id": "pipelines:rename",
|
|
2261
|
+
"description": "rename a pipeline",
|
|
2262
|
+
"strict": true,
|
|
2263
|
+
"pluginName": "heroku",
|
|
2264
|
+
"pluginAlias": "heroku",
|
|
2265
|
+
"pluginType": "core",
|
|
2266
|
+
"aliases": [],
|
|
2267
|
+
"examples": [
|
|
2268
|
+
"$ heroku pipelines:rename my-pipeline new-pipeline-name"
|
|
2269
|
+
],
|
|
2270
|
+
"flags": {},
|
|
2271
|
+
"args": {
|
|
2272
|
+
"pipeline": {
|
|
2273
|
+
"name": "pipeline",
|
|
2274
|
+
"description": "current name of pipeline",
|
|
2275
|
+
"required": true
|
|
2276
|
+
},
|
|
2277
|
+
"name": {
|
|
2278
|
+
"name": "name",
|
|
2279
|
+
"description": "new name of pipeline",
|
|
2280
|
+
"required": true
|
|
2281
|
+
}
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"pipelines:setup": {
|
|
2285
|
+
"id": "pipelines:setup",
|
|
2286
|
+
"description": "bootstrap a new pipeline with common settings and create a production and staging app (requires a fully formed app.json in the repo)",
|
|
2287
|
+
"strict": true,
|
|
2288
|
+
"pluginName": "heroku",
|
|
2289
|
+
"pluginAlias": "heroku",
|
|
2290
|
+
"pluginType": "core",
|
|
2291
|
+
"aliases": [],
|
|
2292
|
+
"examples": [
|
|
2293
|
+
"$ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team"
|
|
2294
|
+
],
|
|
2295
|
+
"flags": {
|
|
2296
|
+
"team": {
|
|
2297
|
+
"name": "team",
|
|
2298
|
+
"type": "option",
|
|
2299
|
+
"char": "t",
|
|
2300
|
+
"description": "the team to assign pipeline ownership to (defaults to current user)",
|
|
2301
|
+
"multiple": false
|
|
2302
|
+
},
|
|
2303
|
+
"yes": {
|
|
2304
|
+
"name": "yes",
|
|
2305
|
+
"type": "boolean",
|
|
2306
|
+
"char": "y",
|
|
2307
|
+
"description": "accept all default settings without prompting",
|
|
2308
|
+
"allowNo": false
|
|
2309
|
+
}
|
|
2310
|
+
},
|
|
2311
|
+
"args": {
|
|
2312
|
+
"name": {
|
|
2313
|
+
"name": "name",
|
|
2314
|
+
"description": "name of pipeline",
|
|
2315
|
+
"required": false
|
|
2316
|
+
},
|
|
2317
|
+
"repo": {
|
|
2318
|
+
"name": "repo",
|
|
2319
|
+
"description": "a GitHub repository to connect the pipeline to",
|
|
2320
|
+
"required": false
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
2324
|
+
"pipelines:transfer": {
|
|
2325
|
+
"id": "pipelines:transfer",
|
|
2326
|
+
"description": "transfer ownership of a pipeline",
|
|
2327
|
+
"strict": true,
|
|
2328
|
+
"pluginName": "heroku",
|
|
2329
|
+
"pluginAlias": "heroku",
|
|
2330
|
+
"pluginType": "core",
|
|
2331
|
+
"aliases": [],
|
|
2332
|
+
"examples": [
|
|
2333
|
+
"$ heroku pipelines:transfer admin@example.com -p my-pipeline",
|
|
2334
|
+
"$ heroku pipelines:transfer admin-team -p my-pipeline"
|
|
2335
|
+
],
|
|
2336
|
+
"flags": {
|
|
2337
|
+
"pipeline": {
|
|
2338
|
+
"name": "pipeline",
|
|
2339
|
+
"type": "option",
|
|
2340
|
+
"char": "p",
|
|
2341
|
+
"description": "name of pipeline",
|
|
2342
|
+
"required": true,
|
|
2343
|
+
"multiple": false
|
|
2344
|
+
},
|
|
2345
|
+
"confirm": {
|
|
2346
|
+
"name": "confirm",
|
|
2347
|
+
"type": "option",
|
|
2348
|
+
"char": "c",
|
|
2349
|
+
"multiple": false
|
|
2350
|
+
}
|
|
2351
|
+
},
|
|
2352
|
+
"args": {
|
|
2353
|
+
"owner": {
|
|
2354
|
+
"name": "owner",
|
|
2355
|
+
"description": "the owner to transfer the pipeline to",
|
|
2356
|
+
"required": true
|
|
2357
|
+
}
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
"pipelines:update": {
|
|
2361
|
+
"id": "pipelines:update",
|
|
2362
|
+
"description": "update the app's stage in a pipeline",
|
|
2363
|
+
"strict": true,
|
|
2364
|
+
"pluginName": "heroku",
|
|
2365
|
+
"pluginAlias": "heroku",
|
|
2366
|
+
"pluginType": "core",
|
|
2367
|
+
"aliases": [],
|
|
2368
|
+
"examples": [
|
|
2369
|
+
"$ heroku pipelines:update -s staging -a my-app"
|
|
2370
|
+
],
|
|
2371
|
+
"flags": {
|
|
2372
|
+
"app": {
|
|
2373
|
+
"name": "app",
|
|
2374
|
+
"type": "option",
|
|
2375
|
+
"char": "a",
|
|
2376
|
+
"description": "app to run command against",
|
|
2377
|
+
"required": true,
|
|
2378
|
+
"multiple": false
|
|
2379
|
+
},
|
|
2380
|
+
"remote": {
|
|
2381
|
+
"name": "remote",
|
|
2382
|
+
"type": "option",
|
|
2383
|
+
"char": "r",
|
|
2384
|
+
"description": "git remote of app to use",
|
|
2385
|
+
"multiple": false
|
|
2386
|
+
},
|
|
2387
|
+
"stage": {
|
|
2388
|
+
"name": "stage",
|
|
2389
|
+
"type": "option",
|
|
2390
|
+
"char": "s",
|
|
2391
|
+
"description": "new stage of app",
|
|
2392
|
+
"required": true,
|
|
2393
|
+
"multiple": false
|
|
2394
|
+
}
|
|
2395
|
+
},
|
|
2396
|
+
"args": {}
|
|
2397
|
+
},
|
|
2398
|
+
"ps:wait": {
|
|
2399
|
+
"id": "ps:wait",
|
|
2400
|
+
"description": "wait for all dynos to be running latest version after a release",
|
|
2401
|
+
"strict": true,
|
|
2402
|
+
"pluginName": "heroku",
|
|
2403
|
+
"pluginAlias": "heroku",
|
|
2404
|
+
"pluginType": "core",
|
|
2405
|
+
"aliases": [],
|
|
2406
|
+
"flags": {
|
|
2407
|
+
"app": {
|
|
2408
|
+
"name": "app",
|
|
2409
|
+
"type": "option",
|
|
2410
|
+
"char": "a",
|
|
2411
|
+
"description": "app to run command against",
|
|
2412
|
+
"required": true,
|
|
2413
|
+
"multiple": false
|
|
2414
|
+
},
|
|
2415
|
+
"remote": {
|
|
2416
|
+
"name": "remote",
|
|
2417
|
+
"type": "option",
|
|
2418
|
+
"char": "r",
|
|
2419
|
+
"description": "git remote of app to use",
|
|
2420
|
+
"multiple": false
|
|
2421
|
+
},
|
|
2422
|
+
"type": {
|
|
2423
|
+
"name": "type",
|
|
2424
|
+
"type": "option",
|
|
2425
|
+
"char": "t",
|
|
2426
|
+
"description": "wait for one specific dyno type",
|
|
2427
|
+
"multiple": false
|
|
2428
|
+
},
|
|
2429
|
+
"wait-interval": {
|
|
2430
|
+
"name": "wait-interval",
|
|
2431
|
+
"type": "option",
|
|
2432
|
+
"char": "w",
|
|
2433
|
+
"description": "how frequently to poll in seconds (to avoid hitting Heroku API rate limits)",
|
|
2434
|
+
"multiple": false,
|
|
2435
|
+
"default": 10
|
|
2436
|
+
},
|
|
2437
|
+
"with-run": {
|
|
2438
|
+
"name": "with-run",
|
|
2439
|
+
"type": "boolean",
|
|
2440
|
+
"char": "R",
|
|
2441
|
+
"description": "whether to wait for one-off run dynos",
|
|
2442
|
+
"allowNo": false,
|
|
2443
|
+
"exclusive": [
|
|
2444
|
+
"type"
|
|
2445
|
+
]
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
"args": {}
|
|
2449
|
+
},
|
|
2450
|
+
"reviewapps:disable": {
|
|
2451
|
+
"id": "reviewapps:disable",
|
|
2452
|
+
"description": "disable review apps and/or settings on an existing pipeline",
|
|
2453
|
+
"strict": true,
|
|
2454
|
+
"pluginName": "heroku",
|
|
2455
|
+
"pluginAlias": "heroku",
|
|
2456
|
+
"pluginType": "core",
|
|
2457
|
+
"aliases": [],
|
|
2458
|
+
"examples": [
|
|
2459
|
+
"$ heroku reviewapps:disable -p my-pipeline -a my-app --no-autodeploy"
|
|
2460
|
+
],
|
|
2461
|
+
"flags": {
|
|
2462
|
+
"app": {
|
|
2463
|
+
"name": "app",
|
|
2464
|
+
"type": "option",
|
|
2465
|
+
"char": "a",
|
|
2466
|
+
"description": "parent app used by review apps",
|
|
2467
|
+
"multiple": false
|
|
2468
|
+
},
|
|
2469
|
+
"remote": {
|
|
2470
|
+
"name": "remote",
|
|
2471
|
+
"type": "option",
|
|
2472
|
+
"char": "r",
|
|
2473
|
+
"description": "git remote of app to use",
|
|
2474
|
+
"multiple": false
|
|
2475
|
+
},
|
|
2476
|
+
"pipeline": {
|
|
2477
|
+
"name": "pipeline",
|
|
2478
|
+
"type": "option",
|
|
2479
|
+
"char": "p",
|
|
2480
|
+
"description": "name of pipeline",
|
|
2481
|
+
"required": true,
|
|
2482
|
+
"multiple": false
|
|
2483
|
+
},
|
|
2484
|
+
"autodeploy": {
|
|
2485
|
+
"name": "autodeploy",
|
|
2486
|
+
"type": "boolean",
|
|
2487
|
+
"description": "disable autodeployments",
|
|
2488
|
+
"hidden": true,
|
|
2489
|
+
"allowNo": false
|
|
2490
|
+
},
|
|
2491
|
+
"autodestroy": {
|
|
2492
|
+
"name": "autodestroy",
|
|
2493
|
+
"type": "boolean",
|
|
2494
|
+
"description": "disable automatically destroying review apps",
|
|
2495
|
+
"hidden": true,
|
|
2496
|
+
"allowNo": false
|
|
2497
|
+
},
|
|
2498
|
+
"wait-for-ci": {
|
|
2499
|
+
"name": "wait-for-ci",
|
|
2500
|
+
"type": "boolean",
|
|
2501
|
+
"description": "disable wait for CI",
|
|
2502
|
+
"hidden": true,
|
|
2503
|
+
"allowNo": false
|
|
2504
|
+
},
|
|
2505
|
+
"no-autodeploy": {
|
|
2506
|
+
"name": "no-autodeploy",
|
|
2507
|
+
"type": "boolean",
|
|
2508
|
+
"description": "disable autodeployments",
|
|
2509
|
+
"allowNo": false
|
|
2510
|
+
},
|
|
2511
|
+
"no-autodestroy": {
|
|
2512
|
+
"name": "no-autodestroy",
|
|
2513
|
+
"type": "boolean",
|
|
2514
|
+
"description": "disable automatically destroying review apps",
|
|
2515
|
+
"allowNo": false
|
|
2516
|
+
},
|
|
2517
|
+
"no-wait-for-ci": {
|
|
2518
|
+
"name": "no-wait-for-ci",
|
|
2519
|
+
"type": "boolean",
|
|
2520
|
+
"description": "disable wait for CI",
|
|
2521
|
+
"allowNo": false
|
|
2522
|
+
}
|
|
2523
|
+
},
|
|
2524
|
+
"args": {}
|
|
2525
|
+
},
|
|
2526
|
+
"reviewapps:enable": {
|
|
2527
|
+
"id": "reviewapps:enable",
|
|
2528
|
+
"description": "enable review apps and/or settings on an existing pipeline",
|
|
2529
|
+
"strict": true,
|
|
2530
|
+
"pluginName": "heroku",
|
|
2531
|
+
"pluginAlias": "heroku",
|
|
2532
|
+
"pluginType": "core",
|
|
2533
|
+
"aliases": [],
|
|
2534
|
+
"examples": [
|
|
2535
|
+
"$ heroku reviewapps:enable -p my-pipeline -a my-app --autodeploy --autodestroy"
|
|
2536
|
+
],
|
|
2537
|
+
"flags": {
|
|
2538
|
+
"app": {
|
|
2539
|
+
"name": "app",
|
|
2540
|
+
"type": "option",
|
|
2541
|
+
"char": "a",
|
|
2542
|
+
"description": "parent app used by review apps",
|
|
2543
|
+
"multiple": false
|
|
2544
|
+
},
|
|
2545
|
+
"remote": {
|
|
2546
|
+
"name": "remote",
|
|
2547
|
+
"type": "option",
|
|
2548
|
+
"char": "r",
|
|
2549
|
+
"description": "git remote of app to use",
|
|
2550
|
+
"multiple": false
|
|
2551
|
+
},
|
|
2552
|
+
"pipeline": {
|
|
2553
|
+
"name": "pipeline",
|
|
2554
|
+
"type": "option",
|
|
2555
|
+
"char": "p",
|
|
2556
|
+
"description": "name of pipeline",
|
|
2557
|
+
"required": true,
|
|
2558
|
+
"multiple": false
|
|
2559
|
+
},
|
|
2560
|
+
"autodeploy": {
|
|
2561
|
+
"name": "autodeploy",
|
|
2562
|
+
"type": "boolean",
|
|
2563
|
+
"description": "autodeploy the review app",
|
|
2564
|
+
"allowNo": false
|
|
2565
|
+
},
|
|
2566
|
+
"autodestroy": {
|
|
2567
|
+
"name": "autodestroy",
|
|
2568
|
+
"type": "boolean",
|
|
2569
|
+
"description": "autodestroy the review app",
|
|
2570
|
+
"allowNo": false
|
|
2571
|
+
},
|
|
2572
|
+
"wait-for-ci": {
|
|
2573
|
+
"name": "wait-for-ci",
|
|
2574
|
+
"type": "boolean",
|
|
2575
|
+
"description": "wait for CI to pass before deploying",
|
|
2576
|
+
"allowNo": false
|
|
2577
|
+
}
|
|
2578
|
+
},
|
|
2579
|
+
"args": {}
|
|
2580
|
+
},
|
|
2581
|
+
"run:detached": {
|
|
2582
|
+
"id": "run:detached",
|
|
2583
|
+
"description": "run a detached dyno, where output is sent to your logs",
|
|
2584
|
+
"strict": false,
|
|
2585
|
+
"pluginName": "heroku",
|
|
2586
|
+
"pluginAlias": "heroku",
|
|
2587
|
+
"pluginType": "core",
|
|
2588
|
+
"aliases": [],
|
|
2589
|
+
"examples": [
|
|
2590
|
+
"$ heroku run:detached ls"
|
|
2591
|
+
],
|
|
2592
|
+
"flags": {
|
|
2593
|
+
"app": {
|
|
2594
|
+
"name": "app",
|
|
2595
|
+
"type": "option",
|
|
2596
|
+
"char": "a",
|
|
2597
|
+
"description": "app to run command against",
|
|
2598
|
+
"required": true,
|
|
2599
|
+
"multiple": false
|
|
2600
|
+
},
|
|
2601
|
+
"remote": {
|
|
2602
|
+
"name": "remote",
|
|
2603
|
+
"type": "option",
|
|
2604
|
+
"char": "r",
|
|
2605
|
+
"description": "git remote of app to use",
|
|
2606
|
+
"multiple": false
|
|
2607
|
+
},
|
|
2608
|
+
"env": {
|
|
2609
|
+
"name": "env",
|
|
2610
|
+
"type": "option",
|
|
2611
|
+
"char": "e",
|
|
2612
|
+
"description": "environment variables to set (use ';' to split multiple vars)",
|
|
2613
|
+
"multiple": false
|
|
2614
|
+
},
|
|
2615
|
+
"size": {
|
|
2616
|
+
"name": "size",
|
|
2617
|
+
"type": "option",
|
|
2618
|
+
"char": "s",
|
|
2619
|
+
"description": "dyno size",
|
|
2620
|
+
"multiple": false
|
|
2621
|
+
},
|
|
2622
|
+
"tail": {
|
|
2623
|
+
"name": "tail",
|
|
2624
|
+
"type": "boolean",
|
|
2625
|
+
"char": "t",
|
|
2626
|
+
"description": "continually stream logs",
|
|
2627
|
+
"allowNo": false
|
|
2628
|
+
},
|
|
2629
|
+
"type": {
|
|
2630
|
+
"name": "type",
|
|
2631
|
+
"type": "option",
|
|
2632
|
+
"description": "process type",
|
|
2633
|
+
"multiple": false
|
|
2634
|
+
}
|
|
2635
|
+
},
|
|
2636
|
+
"args": {}
|
|
2637
|
+
},
|
|
2638
|
+
"run": {
|
|
2639
|
+
"id": "run",
|
|
2640
|
+
"description": "run a one-off process inside a heroku dyno\nShows a notification if the dyno takes more than 20 seconds to start.",
|
|
2641
|
+
"strict": false,
|
|
2642
|
+
"pluginName": "heroku",
|
|
2643
|
+
"pluginAlias": "heroku",
|
|
2644
|
+
"pluginType": "core",
|
|
2645
|
+
"aliases": [],
|
|
2646
|
+
"examples": [
|
|
2647
|
+
"$ heroku run bash",
|
|
2648
|
+
"$ heroku run -s standard-2x -- myscript.sh -a arg1 -s arg2"
|
|
2649
|
+
],
|
|
2650
|
+
"flags": {
|
|
2651
|
+
"app": {
|
|
2652
|
+
"name": "app",
|
|
2653
|
+
"type": "option",
|
|
2654
|
+
"char": "a",
|
|
2655
|
+
"description": "parent app used by review apps",
|
|
2656
|
+
"required": true,
|
|
2657
|
+
"multiple": false
|
|
2658
|
+
},
|
|
2659
|
+
"remote": {
|
|
2660
|
+
"name": "remote",
|
|
2661
|
+
"type": "option",
|
|
2662
|
+
"char": "r",
|
|
2663
|
+
"description": "git remote of app to use",
|
|
2664
|
+
"multiple": false
|
|
2665
|
+
},
|
|
2666
|
+
"size": {
|
|
2667
|
+
"name": "size",
|
|
2668
|
+
"type": "option",
|
|
2669
|
+
"char": "s",
|
|
2670
|
+
"description": "dyno size",
|
|
2671
|
+
"multiple": false
|
|
2672
|
+
},
|
|
2673
|
+
"type": {
|
|
2674
|
+
"name": "type",
|
|
2675
|
+
"type": "option",
|
|
2676
|
+
"description": "process type",
|
|
2677
|
+
"multiple": false
|
|
2678
|
+
},
|
|
2679
|
+
"exit-code": {
|
|
2680
|
+
"name": "exit-code",
|
|
2681
|
+
"type": "boolean",
|
|
2682
|
+
"char": "x",
|
|
2683
|
+
"description": "passthrough the exit code of the remote command",
|
|
2684
|
+
"allowNo": false
|
|
2685
|
+
},
|
|
2686
|
+
"env": {
|
|
2687
|
+
"name": "env",
|
|
2688
|
+
"type": "option",
|
|
2689
|
+
"char": "e",
|
|
2690
|
+
"description": "environment variables to set (use ';' to split multiple vars)",
|
|
2691
|
+
"multiple": false
|
|
2692
|
+
},
|
|
2693
|
+
"no-tty": {
|
|
2694
|
+
"name": "no-tty",
|
|
2695
|
+
"type": "boolean",
|
|
2696
|
+
"description": "force the command to not run in a tty",
|
|
2697
|
+
"allowNo": false
|
|
2698
|
+
},
|
|
2699
|
+
"listen": {
|
|
2700
|
+
"name": "listen",
|
|
2701
|
+
"type": "boolean",
|
|
2702
|
+
"description": "listen on a local port",
|
|
2703
|
+
"hidden": true,
|
|
2704
|
+
"allowNo": false
|
|
2705
|
+
},
|
|
2706
|
+
"no-notify": {
|
|
2707
|
+
"name": "no-notify",
|
|
2708
|
+
"type": "boolean",
|
|
2709
|
+
"description": "disables notification when dyno is up (alternatively use HEROKU_NOTIFICATIONS=0)",
|
|
2710
|
+
"allowNo": false
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2713
|
+
"args": {}
|
|
2714
|
+
},
|
|
2715
|
+
"run:inside": {
|
|
2716
|
+
"id": "run:inside",
|
|
2717
|
+
"description": "run a one-off process inside an existing heroku dyno",
|
|
2718
|
+
"strict": false,
|
|
2719
|
+
"pluginName": "heroku",
|
|
2720
|
+
"pluginAlias": "heroku",
|
|
2721
|
+
"pluginType": "core",
|
|
2722
|
+
"hidden": true,
|
|
2723
|
+
"aliases": [],
|
|
2724
|
+
"examples": [
|
|
2725
|
+
"$ heroku run:inside web.1 bash"
|
|
2726
|
+
],
|
|
2727
|
+
"flags": {
|
|
2728
|
+
"app": {
|
|
2729
|
+
"name": "app",
|
|
2730
|
+
"type": "option",
|
|
2731
|
+
"char": "a",
|
|
2732
|
+
"description": "app to run command against",
|
|
2733
|
+
"required": true,
|
|
2734
|
+
"multiple": false
|
|
2735
|
+
},
|
|
2736
|
+
"remote": {
|
|
2737
|
+
"name": "remote",
|
|
2738
|
+
"type": "option",
|
|
2739
|
+
"char": "r",
|
|
2740
|
+
"description": "git remote of app to use",
|
|
2741
|
+
"multiple": false
|
|
2742
|
+
},
|
|
2743
|
+
"exit-code": {
|
|
2744
|
+
"name": "exit-code",
|
|
2745
|
+
"type": "boolean",
|
|
2746
|
+
"char": "x",
|
|
2747
|
+
"description": "passthrough the exit code of the remote command",
|
|
2748
|
+
"allowNo": false
|
|
2749
|
+
},
|
|
2750
|
+
"env": {
|
|
2751
|
+
"name": "env",
|
|
2752
|
+
"type": "option",
|
|
2753
|
+
"char": "e",
|
|
2754
|
+
"description": "environment variables to set (use ';' to split multiple vars)",
|
|
2755
|
+
"multiple": false
|
|
2756
|
+
},
|
|
2757
|
+
"listen": {
|
|
2758
|
+
"name": "listen",
|
|
2759
|
+
"type": "boolean",
|
|
2760
|
+
"description": "listen on a local port",
|
|
2761
|
+
"hidden": true,
|
|
2762
|
+
"allowNo": false
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"args": {}
|
|
2766
|
+
},
|
|
2767
|
+
"sessions:destroy": {
|
|
2768
|
+
"id": "sessions:destroy",
|
|
2769
|
+
"description": "delete (logout) OAuth session by ID",
|
|
2770
|
+
"strict": true,
|
|
2771
|
+
"pluginName": "heroku",
|
|
2772
|
+
"pluginAlias": "heroku",
|
|
2773
|
+
"pluginType": "core",
|
|
2774
|
+
"aliases": [],
|
|
2775
|
+
"flags": {},
|
|
2776
|
+
"args": {
|
|
2777
|
+
"id": {
|
|
2778
|
+
"name": "id",
|
|
2779
|
+
"required": true
|
|
2780
|
+
}
|
|
2781
|
+
}
|
|
2782
|
+
},
|
|
2783
|
+
"sessions": {
|
|
2784
|
+
"id": "sessions",
|
|
2785
|
+
"description": "list your OAuth sessions",
|
|
2786
|
+
"strict": true,
|
|
2787
|
+
"pluginName": "heroku",
|
|
2788
|
+
"pluginAlias": "heroku",
|
|
2789
|
+
"pluginType": "core",
|
|
2790
|
+
"aliases": [],
|
|
2791
|
+
"flags": {
|
|
2792
|
+
"json": {
|
|
2793
|
+
"name": "json",
|
|
2794
|
+
"type": "boolean",
|
|
2795
|
+
"char": "j",
|
|
2796
|
+
"description": "output in json format",
|
|
2797
|
+
"allowNo": false
|
|
2798
|
+
}
|
|
2799
|
+
},
|
|
2800
|
+
"args": {}
|
|
2801
|
+
},
|
|
2802
|
+
"webhooks:add": {
|
|
2803
|
+
"id": "webhooks:add",
|
|
2804
|
+
"description": "add a webhook to an app",
|
|
2805
|
+
"strict": true,
|
|
2806
|
+
"pluginName": "heroku",
|
|
2807
|
+
"pluginAlias": "heroku",
|
|
2808
|
+
"pluginType": "core",
|
|
2809
|
+
"aliases": [],
|
|
2810
|
+
"examples": [
|
|
2811
|
+
"$ heroku webhooks:add -i api:dyno -l notify -u https://example.com/hooks"
|
|
2812
|
+
],
|
|
2813
|
+
"flags": {
|
|
2814
|
+
"app": {
|
|
2815
|
+
"name": "app",
|
|
2816
|
+
"type": "option",
|
|
2817
|
+
"char": "a",
|
|
2818
|
+
"description": "app to run command against",
|
|
2819
|
+
"multiple": false
|
|
2820
|
+
},
|
|
2821
|
+
"remote": {
|
|
2822
|
+
"name": "remote",
|
|
2823
|
+
"type": "option",
|
|
2824
|
+
"char": "r",
|
|
2825
|
+
"description": "git remote of app to use",
|
|
2826
|
+
"multiple": false
|
|
2827
|
+
},
|
|
2828
|
+
"pipeline": {
|
|
2829
|
+
"name": "pipeline",
|
|
2830
|
+
"type": "option",
|
|
2831
|
+
"char": "p",
|
|
2832
|
+
"description": "pipeline on which to list",
|
|
2833
|
+
"hidden": true,
|
|
2834
|
+
"multiple": false
|
|
2835
|
+
},
|
|
2836
|
+
"include": {
|
|
2837
|
+
"name": "include",
|
|
2838
|
+
"type": "option",
|
|
2839
|
+
"char": "i",
|
|
2840
|
+
"description": "comma delimited event types your server will receive ",
|
|
2841
|
+
"required": true,
|
|
2842
|
+
"multiple": false
|
|
2843
|
+
},
|
|
2844
|
+
"level": {
|
|
2845
|
+
"name": "level",
|
|
2846
|
+
"type": "option",
|
|
2847
|
+
"char": "l",
|
|
2848
|
+
"description": "notify does not retry, sync will retry until successful or timeout",
|
|
2849
|
+
"required": true,
|
|
2850
|
+
"multiple": false
|
|
2851
|
+
},
|
|
2852
|
+
"secret": {
|
|
2853
|
+
"name": "secret",
|
|
2854
|
+
"type": "option",
|
|
2855
|
+
"char": "s",
|
|
2856
|
+
"description": "value to sign delivery with in Heroku-Webhook-Hmac-SHA256 header",
|
|
2857
|
+
"multiple": false
|
|
2858
|
+
},
|
|
2859
|
+
"authorization": {
|
|
2860
|
+
"name": "authorization",
|
|
2861
|
+
"type": "option",
|
|
2862
|
+
"char": "t",
|
|
2863
|
+
"description": "authoriation header to send with webhooks",
|
|
2864
|
+
"multiple": false
|
|
2865
|
+
},
|
|
2866
|
+
"url": {
|
|
2867
|
+
"name": "url",
|
|
2868
|
+
"type": "option",
|
|
2869
|
+
"char": "u",
|
|
2870
|
+
"description": "URL for receiver",
|
|
2871
|
+
"required": true,
|
|
2872
|
+
"multiple": false
|
|
2873
|
+
}
|
|
2874
|
+
},
|
|
2875
|
+
"args": {}
|
|
2876
|
+
},
|
|
2877
|
+
"webhooks": {
|
|
2878
|
+
"id": "webhooks",
|
|
2879
|
+
"description": "list webhooks on an app",
|
|
2880
|
+
"strict": true,
|
|
2881
|
+
"pluginName": "heroku",
|
|
2882
|
+
"pluginAlias": "heroku",
|
|
2883
|
+
"pluginType": "core",
|
|
2884
|
+
"aliases": [],
|
|
2885
|
+
"examples": [
|
|
2886
|
+
"$ heroku webhooks"
|
|
2887
|
+
],
|
|
2888
|
+
"flags": {
|
|
2889
|
+
"app": {
|
|
2890
|
+
"name": "app",
|
|
2891
|
+
"type": "option",
|
|
2892
|
+
"char": "a",
|
|
2893
|
+
"description": "app to run command against",
|
|
2894
|
+
"multiple": false
|
|
2895
|
+
},
|
|
2896
|
+
"remote": {
|
|
2897
|
+
"name": "remote",
|
|
2898
|
+
"type": "option",
|
|
2899
|
+
"char": "r",
|
|
2900
|
+
"description": "git remote of app to use",
|
|
2901
|
+
"multiple": false
|
|
2902
|
+
},
|
|
2903
|
+
"pipeline": {
|
|
2904
|
+
"name": "pipeline",
|
|
2905
|
+
"type": "option",
|
|
2906
|
+
"char": "p",
|
|
2907
|
+
"description": "pipeline on which to list",
|
|
2908
|
+
"hidden": true,
|
|
2909
|
+
"multiple": false
|
|
2910
|
+
}
|
|
2911
|
+
},
|
|
2912
|
+
"args": {}
|
|
2913
|
+
},
|
|
2914
|
+
"webhooks:info": {
|
|
2915
|
+
"id": "webhooks:info",
|
|
2916
|
+
"description": "info for a webhook on an app",
|
|
2917
|
+
"strict": true,
|
|
2918
|
+
"pluginName": "heroku",
|
|
2919
|
+
"pluginAlias": "heroku",
|
|
2920
|
+
"pluginType": "core",
|
|
2921
|
+
"aliases": [],
|
|
2922
|
+
"examples": [
|
|
2923
|
+
"$ heroku webhooks:info 99999999-9999-9999-9999-999999999999"
|
|
2924
|
+
],
|
|
2925
|
+
"flags": {
|
|
2926
|
+
"app": {
|
|
2927
|
+
"name": "app",
|
|
2928
|
+
"type": "option",
|
|
2929
|
+
"char": "a",
|
|
2930
|
+
"description": "app to run command against",
|
|
2931
|
+
"multiple": false
|
|
2932
|
+
},
|
|
2933
|
+
"remote": {
|
|
2934
|
+
"name": "remote",
|
|
2935
|
+
"type": "option",
|
|
2936
|
+
"char": "r",
|
|
2937
|
+
"description": "git remote of app to use",
|
|
2938
|
+
"multiple": false
|
|
2939
|
+
},
|
|
2940
|
+
"pipeline": {
|
|
2941
|
+
"name": "pipeline",
|
|
2942
|
+
"type": "option",
|
|
2943
|
+
"char": "p",
|
|
2944
|
+
"description": "pipeline on which to list",
|
|
2945
|
+
"hidden": true,
|
|
2946
|
+
"multiple": false
|
|
2947
|
+
}
|
|
2948
|
+
},
|
|
2949
|
+
"args": {
|
|
2950
|
+
"id": {
|
|
2951
|
+
"name": "id",
|
|
2952
|
+
"required": true
|
|
2953
|
+
}
|
|
2954
|
+
},
|
|
2955
|
+
"example": [
|
|
2956
|
+
"$ heroku webhooks:info 99999999-9999-9999-9999-999999999999"
|
|
2957
|
+
]
|
|
2958
|
+
},
|
|
2959
|
+
"webhooks:remove": {
|
|
2960
|
+
"id": "webhooks:remove",
|
|
2961
|
+
"description": "removes a webhook from an app",
|
|
2962
|
+
"strict": true,
|
|
2963
|
+
"pluginName": "heroku",
|
|
2964
|
+
"pluginAlias": "heroku",
|
|
2965
|
+
"pluginType": "core",
|
|
2966
|
+
"aliases": [],
|
|
2967
|
+
"examples": [
|
|
2968
|
+
"$ heroku webhooks:remove 99999999-9999-9999-9999-999999999999"
|
|
2969
|
+
],
|
|
2970
|
+
"flags": {
|
|
2971
|
+
"app": {
|
|
2972
|
+
"name": "app",
|
|
2973
|
+
"type": "option",
|
|
2974
|
+
"char": "a",
|
|
2975
|
+
"description": "app to run command against",
|
|
2976
|
+
"multiple": false
|
|
2977
|
+
},
|
|
2978
|
+
"remote": {
|
|
2979
|
+
"name": "remote",
|
|
2980
|
+
"type": "option",
|
|
2981
|
+
"char": "r",
|
|
2982
|
+
"description": "git remote of app to use",
|
|
2983
|
+
"multiple": false
|
|
2984
|
+
},
|
|
2985
|
+
"pipeline": {
|
|
2986
|
+
"name": "pipeline",
|
|
2987
|
+
"type": "option",
|
|
2988
|
+
"char": "p",
|
|
2989
|
+
"description": "pipeline on which to list",
|
|
2990
|
+
"hidden": true,
|
|
2991
|
+
"multiple": false
|
|
2992
|
+
}
|
|
2993
|
+
},
|
|
2994
|
+
"args": {
|
|
2995
|
+
"id": {
|
|
2996
|
+
"name": "id",
|
|
2997
|
+
"description": "id of webhook to remove",
|
|
2998
|
+
"required": true
|
|
2999
|
+
}
|
|
3000
|
+
}
|
|
3001
|
+
},
|
|
3002
|
+
"webhooks:update": {
|
|
3003
|
+
"id": "webhooks:update",
|
|
3004
|
+
"description": "updates a webhook in an app",
|
|
3005
|
+
"strict": true,
|
|
3006
|
+
"pluginName": "heroku",
|
|
3007
|
+
"pluginAlias": "heroku",
|
|
3008
|
+
"pluginType": "core",
|
|
3009
|
+
"aliases": [],
|
|
3010
|
+
"examples": [
|
|
3011
|
+
"$ heroku webhooks:update 99999999-9999-9999-9999-999999999999 -i dyno -l notify -s 09928c40bf1b191b645174a19f7053d16a180da37332e719ef0998f4c0a2 -u https://example.com/hooks"
|
|
3012
|
+
],
|
|
3013
|
+
"flags": {
|
|
3014
|
+
"app": {
|
|
3015
|
+
"name": "app",
|
|
3016
|
+
"type": "option",
|
|
3017
|
+
"char": "a",
|
|
3018
|
+
"description": "app to run command against",
|
|
3019
|
+
"multiple": false
|
|
3020
|
+
},
|
|
3021
|
+
"remote": {
|
|
3022
|
+
"name": "remote",
|
|
3023
|
+
"type": "option",
|
|
3024
|
+
"char": "r",
|
|
3025
|
+
"description": "git remote of app to use",
|
|
3026
|
+
"multiple": false
|
|
3027
|
+
},
|
|
3028
|
+
"pipeline": {
|
|
3029
|
+
"name": "pipeline",
|
|
3030
|
+
"type": "option",
|
|
3031
|
+
"char": "p",
|
|
3032
|
+
"description": "pipeline on which to list",
|
|
3033
|
+
"hidden": true,
|
|
3034
|
+
"multiple": false
|
|
3035
|
+
},
|
|
3036
|
+
"include": {
|
|
3037
|
+
"name": "include",
|
|
3038
|
+
"type": "option",
|
|
3039
|
+
"char": "i",
|
|
3040
|
+
"description": "comma delimited event types your server will receive ",
|
|
3041
|
+
"required": true,
|
|
3042
|
+
"multiple": false
|
|
3043
|
+
},
|
|
3044
|
+
"level": {
|
|
3045
|
+
"name": "level",
|
|
3046
|
+
"type": "option",
|
|
3047
|
+
"char": "l",
|
|
3048
|
+
"description": "notify does not retry, sync will retry until successful or timeout",
|
|
3049
|
+
"required": true,
|
|
3050
|
+
"multiple": false
|
|
3051
|
+
},
|
|
3052
|
+
"secret": {
|
|
3053
|
+
"name": "secret",
|
|
3054
|
+
"type": "option",
|
|
3055
|
+
"char": "s",
|
|
3056
|
+
"description": "value to sign delivery with in Heroku-Webhook-Hmac-SHA256 header",
|
|
3057
|
+
"multiple": false
|
|
3058
|
+
},
|
|
3059
|
+
"authorization": {
|
|
3060
|
+
"name": "authorization",
|
|
3061
|
+
"type": "option",
|
|
3062
|
+
"char": "t",
|
|
3063
|
+
"description": "authoriation header to send with webhooks",
|
|
3064
|
+
"multiple": false
|
|
3065
|
+
},
|
|
3066
|
+
"url": {
|
|
3067
|
+
"name": "url",
|
|
3068
|
+
"type": "option",
|
|
3069
|
+
"char": "u",
|
|
3070
|
+
"description": "URL for receiver",
|
|
3071
|
+
"required": true,
|
|
3072
|
+
"multiple": false
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
3075
|
+
"args": {
|
|
3076
|
+
"id": {
|
|
3077
|
+
"name": "id",
|
|
3078
|
+
"required": true
|
|
3079
|
+
}
|
|
3080
|
+
}
|
|
3081
|
+
},
|
|
3082
|
+
"auth:2fa:disable": {
|
|
3083
|
+
"id": "auth:2fa:disable",
|
|
3084
|
+
"description": "disables 2fa on account",
|
|
3085
|
+
"strict": true,
|
|
3086
|
+
"pluginName": "heroku",
|
|
3087
|
+
"pluginAlias": "heroku",
|
|
3088
|
+
"pluginType": "core",
|
|
3089
|
+
"aliases": [
|
|
3090
|
+
"twofactor:disable",
|
|
3091
|
+
"2fa:disable"
|
|
3092
|
+
],
|
|
3093
|
+
"examples": "$ heroku auth:2fa:disable",
|
|
3094
|
+
"flags": {},
|
|
3095
|
+
"args": {},
|
|
3096
|
+
"example": "$ heroku auth:2fa:disable"
|
|
3097
|
+
},
|
|
3098
|
+
"auth:2fa": {
|
|
3099
|
+
"id": "auth:2fa",
|
|
3100
|
+
"description": "check 2fa status",
|
|
3101
|
+
"strict": true,
|
|
3102
|
+
"pluginName": "heroku",
|
|
3103
|
+
"pluginAlias": "heroku",
|
|
3104
|
+
"pluginType": "core",
|
|
3105
|
+
"aliases": [
|
|
3106
|
+
"2fa",
|
|
3107
|
+
"twofactor"
|
|
3108
|
+
],
|
|
3109
|
+
"flags": {},
|
|
3110
|
+
"args": {}
|
|
3111
|
+
},
|
|
3112
|
+
"certs:auto:wait": {
|
|
3113
|
+
"id": "certs:auto:wait",
|
|
3114
|
+
"description": "waits for the certificate to be activated",
|
|
3115
|
+
"strict": true,
|
|
3116
|
+
"pluginName": "heroku",
|
|
3117
|
+
"pluginAlias": "heroku",
|
|
3118
|
+
"pluginType": "core",
|
|
3119
|
+
"hidden": true,
|
|
3120
|
+
"aliases": [],
|
|
3121
|
+
"flags": {
|
|
3122
|
+
"help": {
|
|
3123
|
+
"name": "help",
|
|
3124
|
+
"type": "boolean",
|
|
3125
|
+
"char": "h",
|
|
3126
|
+
"description": "Show CLI help.",
|
|
3127
|
+
"allowNo": false
|
|
3128
|
+
}
|
|
3129
|
+
},
|
|
3130
|
+
"args": {}
|
|
3131
|
+
},
|
|
3132
|
+
"ps:autoscale:disable": {
|
|
3133
|
+
"id": "ps:autoscale:disable",
|
|
3134
|
+
"description": "disable web dyno autoscaling",
|
|
3135
|
+
"strict": true,
|
|
3136
|
+
"pluginName": "heroku",
|
|
3137
|
+
"pluginAlias": "heroku",
|
|
3138
|
+
"pluginType": "core",
|
|
3139
|
+
"aliases": [],
|
|
3140
|
+
"flags": {
|
|
3141
|
+
"app": {
|
|
3142
|
+
"name": "app",
|
|
3143
|
+
"type": "option",
|
|
3144
|
+
"char": "a",
|
|
3145
|
+
"description": "app to run command against",
|
|
3146
|
+
"required": true,
|
|
3147
|
+
"multiple": false
|
|
3148
|
+
},
|
|
3149
|
+
"remote": {
|
|
3150
|
+
"name": "remote",
|
|
3151
|
+
"type": "option",
|
|
3152
|
+
"char": "r",
|
|
3153
|
+
"description": "git remote of app to use",
|
|
3154
|
+
"multiple": false
|
|
3155
|
+
}
|
|
3156
|
+
},
|
|
3157
|
+
"args": {}
|
|
3158
|
+
},
|
|
3159
|
+
"ps:autoscale:enable": {
|
|
3160
|
+
"id": "ps:autoscale:enable",
|
|
3161
|
+
"description": "enable web dyno autoscaling",
|
|
3162
|
+
"strict": true,
|
|
3163
|
+
"pluginName": "heroku",
|
|
3164
|
+
"pluginAlias": "heroku",
|
|
3165
|
+
"pluginType": "core",
|
|
3166
|
+
"aliases": [],
|
|
3167
|
+
"flags": {
|
|
3168
|
+
"app": {
|
|
3169
|
+
"name": "app",
|
|
3170
|
+
"type": "option",
|
|
3171
|
+
"char": "a",
|
|
3172
|
+
"description": "app to run command against",
|
|
3173
|
+
"required": true,
|
|
3174
|
+
"multiple": false
|
|
3175
|
+
},
|
|
3176
|
+
"remote": {
|
|
3177
|
+
"name": "remote",
|
|
3178
|
+
"type": "option",
|
|
3179
|
+
"char": "r",
|
|
3180
|
+
"description": "git remote of app to use",
|
|
3181
|
+
"multiple": false
|
|
3182
|
+
},
|
|
3183
|
+
"min": {
|
|
3184
|
+
"name": "min",
|
|
3185
|
+
"type": "option",
|
|
3186
|
+
"description": "minimum number of dynos",
|
|
3187
|
+
"required": true,
|
|
3188
|
+
"multiple": false
|
|
3189
|
+
},
|
|
3190
|
+
"max": {
|
|
3191
|
+
"name": "max",
|
|
3192
|
+
"type": "option",
|
|
3193
|
+
"description": "maximum number of dynos",
|
|
3194
|
+
"required": true,
|
|
3195
|
+
"multiple": false
|
|
3196
|
+
},
|
|
3197
|
+
"p95": {
|
|
3198
|
+
"name": "p95",
|
|
3199
|
+
"type": "option",
|
|
3200
|
+
"description": "desired p95 response time",
|
|
3201
|
+
"multiple": false
|
|
3202
|
+
},
|
|
3203
|
+
"notifications": {
|
|
3204
|
+
"name": "notifications",
|
|
3205
|
+
"type": "boolean",
|
|
3206
|
+
"description": "receive email notifications when the max dyno limit is reached",
|
|
3207
|
+
"allowNo": false
|
|
3208
|
+
}
|
|
3209
|
+
},
|
|
3210
|
+
"args": {}
|
|
3211
|
+
},
|
|
3212
|
+
"webhooks:deliveries": {
|
|
3213
|
+
"id": "webhooks:deliveries",
|
|
3214
|
+
"description": "list webhook deliveries on an app",
|
|
3215
|
+
"strict": true,
|
|
3216
|
+
"pluginName": "heroku",
|
|
3217
|
+
"pluginAlias": "heroku",
|
|
3218
|
+
"pluginType": "core",
|
|
3219
|
+
"aliases": [],
|
|
3220
|
+
"examples": [
|
|
3221
|
+
"$ heroku webhooks:deliveries"
|
|
3222
|
+
],
|
|
3223
|
+
"flags": {
|
|
3224
|
+
"app": {
|
|
3225
|
+
"name": "app",
|
|
3226
|
+
"type": "option",
|
|
3227
|
+
"char": "a",
|
|
3228
|
+
"description": "app to run command against",
|
|
3229
|
+
"multiple": false
|
|
3230
|
+
},
|
|
3231
|
+
"remote": {
|
|
3232
|
+
"name": "remote",
|
|
3233
|
+
"type": "option",
|
|
3234
|
+
"char": "r",
|
|
3235
|
+
"description": "git remote of app to use",
|
|
3236
|
+
"multiple": false
|
|
3237
|
+
},
|
|
3238
|
+
"status": {
|
|
3239
|
+
"name": "status",
|
|
3240
|
+
"type": "option",
|
|
3241
|
+
"char": "s",
|
|
3242
|
+
"description": "filter deliveries by status",
|
|
3243
|
+
"multiple": false
|
|
3244
|
+
},
|
|
3245
|
+
"pipeline": {
|
|
3246
|
+
"name": "pipeline",
|
|
3247
|
+
"type": "option",
|
|
3248
|
+
"char": "p",
|
|
3249
|
+
"description": "pipeline on which to list",
|
|
3250
|
+
"hidden": true,
|
|
3251
|
+
"multiple": false
|
|
3252
|
+
}
|
|
3253
|
+
},
|
|
3254
|
+
"args": {}
|
|
3255
|
+
},
|
|
3256
|
+
"webhooks:deliveries:info": {
|
|
3257
|
+
"id": "webhooks:deliveries:info",
|
|
3258
|
+
"description": "info for a webhook event on an app",
|
|
3259
|
+
"strict": true,
|
|
3260
|
+
"pluginName": "heroku",
|
|
3261
|
+
"pluginAlias": "heroku",
|
|
3262
|
+
"pluginType": "core",
|
|
3263
|
+
"aliases": [],
|
|
3264
|
+
"examples": [
|
|
3265
|
+
"$ heroku webhooks:deliveries:info 99999999-9999-9999-9999-999999999999"
|
|
3266
|
+
],
|
|
3267
|
+
"flags": {
|
|
3268
|
+
"app": {
|
|
3269
|
+
"name": "app",
|
|
3270
|
+
"type": "option",
|
|
3271
|
+
"char": "a",
|
|
3272
|
+
"description": "app to run command against",
|
|
3273
|
+
"multiple": false
|
|
3274
|
+
},
|
|
3275
|
+
"remote": {
|
|
3276
|
+
"name": "remote",
|
|
3277
|
+
"type": "option",
|
|
3278
|
+
"char": "r",
|
|
3279
|
+
"description": "git remote of app to use",
|
|
3280
|
+
"multiple": false
|
|
3281
|
+
},
|
|
3282
|
+
"pipeline": {
|
|
3283
|
+
"name": "pipeline",
|
|
3284
|
+
"type": "option",
|
|
3285
|
+
"char": "p",
|
|
3286
|
+
"description": "pipeline on which to list",
|
|
3287
|
+
"hidden": true,
|
|
3288
|
+
"multiple": false
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
3291
|
+
"args": {
|
|
3292
|
+
"id": {
|
|
3293
|
+
"name": "id",
|
|
3294
|
+
"required": true
|
|
3295
|
+
}
|
|
3296
|
+
}
|
|
3297
|
+
},
|
|
3298
|
+
"webhooks:events": {
|
|
3299
|
+
"id": "webhooks:events",
|
|
3300
|
+
"description": "list webhook events on an app",
|
|
3301
|
+
"strict": true,
|
|
3302
|
+
"pluginName": "heroku",
|
|
3303
|
+
"pluginAlias": "heroku",
|
|
3304
|
+
"pluginType": "core",
|
|
3305
|
+
"aliases": [],
|
|
3306
|
+
"examples": [
|
|
3307
|
+
"$ heroku webhooks:events"
|
|
3308
|
+
],
|
|
3309
|
+
"flags": {
|
|
3310
|
+
"app": {
|
|
3311
|
+
"name": "app",
|
|
3312
|
+
"type": "option",
|
|
3313
|
+
"char": "a",
|
|
3314
|
+
"description": "app to run command against",
|
|
3315
|
+
"multiple": false
|
|
3316
|
+
},
|
|
3317
|
+
"remote": {
|
|
3318
|
+
"name": "remote",
|
|
3319
|
+
"type": "option",
|
|
3320
|
+
"char": "r",
|
|
3321
|
+
"description": "git remote of app to use",
|
|
3322
|
+
"multiple": false
|
|
3323
|
+
},
|
|
3324
|
+
"pipeline": {
|
|
3325
|
+
"name": "pipeline",
|
|
3326
|
+
"type": "option",
|
|
3327
|
+
"char": "p",
|
|
3328
|
+
"description": "pipeline on which to list",
|
|
3329
|
+
"hidden": true,
|
|
3330
|
+
"multiple": false
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3333
|
+
"args": {}
|
|
3334
|
+
},
|
|
3335
|
+
"webhooks:events:info": {
|
|
3336
|
+
"id": "webhooks:events:info",
|
|
3337
|
+
"description": "info for a webhook event on an app",
|
|
3338
|
+
"strict": true,
|
|
3339
|
+
"pluginName": "heroku",
|
|
3340
|
+
"pluginAlias": "heroku",
|
|
3341
|
+
"pluginType": "core",
|
|
3342
|
+
"aliases": [],
|
|
3343
|
+
"examples": [
|
|
3344
|
+
"$ heroku webhooks:events:info 99999999-9999-9999-9999-999999999999"
|
|
3345
|
+
],
|
|
3346
|
+
"flags": {
|
|
3347
|
+
"app": {
|
|
3348
|
+
"name": "app",
|
|
3349
|
+
"type": "option",
|
|
3350
|
+
"char": "a",
|
|
3351
|
+
"description": "app to run command against",
|
|
3352
|
+
"multiple": false
|
|
3353
|
+
},
|
|
3354
|
+
"remote": {
|
|
3355
|
+
"name": "remote",
|
|
3356
|
+
"type": "option",
|
|
3357
|
+
"char": "r",
|
|
3358
|
+
"description": "git remote of app to use",
|
|
3359
|
+
"multiple": false
|
|
3360
|
+
},
|
|
3361
|
+
"pipeline": {
|
|
3362
|
+
"name": "pipeline",
|
|
3363
|
+
"type": "option",
|
|
3364
|
+
"char": "p",
|
|
3365
|
+
"description": "pipeline on which to list",
|
|
3366
|
+
"hidden": true,
|
|
3367
|
+
"multiple": false
|
|
3368
|
+
}
|
|
3369
|
+
},
|
|
3370
|
+
"args": {
|
|
3371
|
+
"id": {
|
|
3372
|
+
"name": "id",
|
|
3373
|
+
"required": true
|
|
3374
|
+
}
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
}
|
|
4
3378
|
}
|