diff options
Diffstat (limited to 'plugins/heroku/_heroku')
| -rw-r--r-- | plugins/heroku/_heroku | 55 | 
1 files changed, 53 insertions, 2 deletions
diff --git a/plugins/heroku/_heroku b/plugins/heroku/_heroku index fd72e530e..4122de237 100644 --- a/plugins/heroku/_heroku +++ b/plugins/heroku/_heroku @@ -31,6 +31,10 @@ _1st_arguments=(    "domains\:add":"add a custom domain to an app"    "domains\:remove":"remove a custom domain from an app"    "domains\:clear":"remove all custom domains from an app" +  "features":"list available app features" +  "features\:disable":"disables a feature" +  "features\:enable":"enables an feature" +  "features\:info":"displays additional information about feature"    "help":"list available commands or display help for a specific command"    "keys":"display keys for the current user"    "keys\:add":"add a key for the current user" @@ -41,6 +45,18 @@ _1st_arguments=(    "logs\:drains":"manage syslog drains"    "maintenance\:on":"put the app into maintenance mode"    "maintenance\:off":"take the app out of maintenance mode" +  "pipelines":"list pipelines you have access to" +  "pipelines\:add":"add this app to a pipeline" +  "pipelines\:create":"create a new pipeline" +  "pipelines\:destroy":"destroy a pipeline" +  "pipelines\:diff":"compares the latest release of this app to its downstream app(s)" +  "pipelines\:info":"show list of apps in a pipeline" +  "pipelines\:list":"list pipelines you have access to" +  "pipelines\:open":"open a pipeline in dashboard" +  "pipelines\:promote":"promote the latest release of this app to its downstream app(s)" +  "pipelines\:remove":"remove this app from its pipeline" +  "pipelines\:rename":"rename a pipeline" +  "pipelines\:update":"update this app's stage in a pipeline"    "pg\:credentials":"display the DATABASE credentials"    "pg\:diagnose":"run diagnostics report on DATABASE"    "pg\:info":"display database information" @@ -56,6 +72,7 @@ _1st_arguments=(    "pg\:unfollow":"stop a replica from following and make it a read/write database"    "pg\:upgrade":"unfollow a database and upgrade it to the latest PostgreSQL version"    "pg\:wait":"monitor database creation, exit when complete" +  "pg\:backups":"Interact with built-in backups"    "pgbackups":"list captured backups"    "pgbackups\:url":"get a temporary URL for a backup"    "pgbackups\:capture":"capture a backup from a database id" @@ -127,6 +144,41 @@ case "$words[1]" in        '(-t|--tail)'{-t,--tail}'[continually stream logs]' \      )      ;; +  pipelines) +    _command_args=( +      '(--json)'--json'[output in json format]' \ +    ) +    ;; +  pipelines:add) +    _command_args=( +      '(-s|--stage)'{-s,--stage}'[stage of first app in pipeline]' \ +    ) +    ;; +  pipelines:create) +    _command_args=( +      '(-s|--stage)'{-s,--stage}'[stage of first app in pipeline]' \ +    ) +    ;; +  pipelines:info) +    _command_args=( +      '(--json)'--json'[output in json format]' \ +    ) +    ;; +  pipelines:list) +    _command_args=( +      '(--json)'--json'[output in json format]' \ +    ) +    ;; +  pipelines:promote) +    _command_args=( +      '(-t|--to)'{-t,--to}'[comma separated list of apps to promote to]' \ +    ) +    ;; +  pipelines:update) +    _command_args=( +      '(-s|--stage)'{-s,--stage}'[stage of first app in pipeline]' \ +    ) +    ;;    pgbackups:capture)      _command_args=(        '(-e|--expire)'{-e,--expire}'[if no slots are available to capture, delete the oldest backup to make room]' \ @@ -144,5 +196,4 @@ _arguments \    '(--app)--app[the app name]' \    '(--remote)--remote[the remote name]' \    '(--help)--help[help about the current command]' \ -  &&  return 0 - +  && return 0  | 
