execution_environments#

usage: awx execution_environments [-h] action ...

positional arguments:
  action
    list
    create
    get
    modify
    delete

options:
  -h, --help  show this help message and exit

awx execution_environments: the following arguments are required: action

execution_environments list#

usage: awx execution_environments list [-h] [--all] [--order_by ORDER_BY] [-f {json,yaml,jq,human}] [--filter TEXT] [--conf.color BOOLEAN] [-v]
                                       [--type {execution_environment}] [--created CREATED] [--modified MODIFIED] [--name TEXT] [--description TEXT]
                                       [--organization ID] [--image TEXT] [--managed BOOLEAN] [--credential ID] [--pull {,always,missing,never}]

options:
  -h, --help            show this help message and exit
  --all                 fetch all pages of content from the API when returning results (instead of just the first page)
  --order_by ORDER_BY   order results by given field name, prefix the field name with a dash (-) to sort in reverse eg --order_by='-name',multiple sorting fields may
                        be specified by separating the field names with a comma (,)
  --type {execution_environment}
                        only list execution_environments with the specified type
  --created CREATED     only list execution_environments with the specified created
  --modified MODIFIED   only list execution_environments with the specified modified
  --name TEXT           only list execution_environments with the specified name
  --description TEXT    only list execution_environments with the specified description
  --organization ID     only list execution_environments with the specified organization
  --image TEXT          only list execution_environments with the specified image
  --managed BOOLEAN     only list execution_environments with the specified managed
  --credential ID       only list execution_environments with the specified credential
  --pull {,always,missing,never}
                        only list execution_environments with the specified pull

input/output formatting:
  -f {json,yaml,jq,human}, --conf.format {json,yaml,jq,human}
                        specify a format for the input and output
  --filter TEXT         specify an output filter (only valid with jq or human format)
  --conf.color BOOLEAN  Display colorized output. Defaults to True
  -v, --verbose         print debug-level logs, including requests made

execution_environments create#

usage: awx execution_environments create [-h] --name TEXT [--description TEXT] [--organization ID] --image TEXT [--credential ID] [--pull {,always,missing,never}]

required arguments:
  --name TEXT           Name of this execution environment.
  --image TEXT          The full image location, including the container registry, image name, and version tag.

options:
  -h, --help            show this help message and exit
  --description TEXT    Optional description of this execution environment.
  --organization ID     The organization used to determine access to this execution environment.
  --credential ID       the ID of the associated credential
  --pull {,always,missing,never}
                        Pull image before running?

awx execution_environments create: the following arguments are required: --name, --image

execution_environments get#

usage: awx execution_environments get [-h] [-f {json,yaml,jq,human}] [--filter TEXT] [--conf.color BOOLEAN] [-v] id

positional arguments:
  id                    the ID (or unique name) of the resource

options:
  -h, --help            show this help message and exit

input/output formatting:
  -f {json,yaml,jq,human}, --conf.format {json,yaml,jq,human}
                        specify a format for the input and output
  --filter TEXT         specify an output filter (only valid with jq or human format)
  --conf.color BOOLEAN  Display colorized output. Defaults to True
  -v, --verbose         print debug-level logs, including requests made

awx execution_environments get: the following arguments are required: id

execution_environments modify#

usage: awx execution_environments modify [-h] id

positional arguments:
  id          the ID (or unique name) of the resource

options:
  -h, --help  show this help message and exit

awx execution_environments modify: the following arguments are required: id

execution_environments delete#

usage: awx execution_environments delete [-h] id

positional arguments:
  id          the ID (or unique name) of the resource

options:
  -h, --help  show this help message and exit

awx execution_environments delete: the following arguments are required: id