Chapter 29. dynamic

This chapter describes the commands under the dynamic command.

29.1. dynamic action create

Create new action.

Usage:

openstack dynamic action create [-h] [-f {json,shell,table,value,yaml}]
                                       [-c COLUMN] [--noindent]
                                       [--prefix PREFIX]
                                       [--max-width <integer>] [--fit-width]
                                       [--print-empty] [--public]
                                       [--namespace [NAMESPACE]]
                                       name class_name code_source

Table 29.1. Positional arguments

ValueSummary

name

Dynamic action name

class_name

Dynamic action class name

code_source

Code source id or name

Table 29.2. Command arguments

ValueSummary

-h, --help

Show this help message and exit

--public

With this flag an action will be marked as "public".

--namespace [NAMESPACE]

Namespace to create the action within.

Table 29.3. Output formatter options

ValueSummary

-f {json,shell,table,value,yaml}, --format {json,shell,table,value,yaml}

The output format, defaults to table

-c COLUMN, --column COLUMN

Specify the column(s) to include, can be repeated to show multiple columns

Table 29.4. JSON formatter options

ValueSummary

--noindent

Whether to disable indenting the json

Table 29.5. Shell formatter options

ValueSummary

--prefix PREFIX

Add a prefix to all variable names

Table 29.6. Table formatter options

ValueSummary

--max-width <integer>

Maximum display width, <1 to disable. you can also use the CLIFF_MAX_TERM_WIDTH environment variable, but the parameter takes precedence.

--fit-width

Fit the table to the display width. implied if --max- width greater than 0. Set the environment variable CLIFF_FIT_WIDTH=1 to always enable

--print-empty

Print empty table if there is no data to show.

29.2. dynamic action delete

Delete action.

Usage:

openstack dynamic action delete [-h] [--namespace [NAMESPACE]]
                                       identifier [identifier ...]

Table 29.7. Positional arguments

ValueSummary

identifier

Dynamic action name or id (can be repeated multiple times).

Table 29.8. Command arguments

ValueSummary

-h, --help

Show this help message and exit

--namespace [NAMESPACE]

Namespace of the dynamic action(s).

29.3. dynamic action list

List all dynamic actions.

Usage:

openstack dynamic action list [-h] [-f {csv,json,table,value,yaml}]
                                     [-c COLUMN]
                                     [--quote {all,minimal,none,nonnumeric}]
                                     [--noindent] [--max-width <integer>]
                                     [--fit-width] [--print-empty]
                                     [--sort-column SORT_COLUMN]
                                     [--sort-ascending | --sort-descending]
                                     [--marker [MARKER]] [--limit [LIMIT]]
                                     [--sort_keys [SORT_KEYS]]
                                     [--sort_dirs [SORT_DIRS]]
                                     [--filter FILTERS]
                                     [--namespace [NAMESPACE]]

Table 29.9. Command arguments

ValueSummary

-h, --help

Show this help message and exit

--marker [MARKER]

The last execution uuid of the previous page, displays list of executions after "marker".

--limit [LIMIT]

Maximum number of entries to return in a single result.

--sort_keys [SORT_KEYS]

Comma-separated list of sort keys to sort results by. Default: created_at. Example: mistral execution-list --sort_keys=id,description

--sort_dirs [SORT_DIRS]

Comma-separated list of sort directions. default: asc. Example: mistral execution-list --sort_keys=id,description --sort_dirs=asc,desc

--filter FILTERS

Filters. can be repeated.

--namespace [NAMESPACE]

Namespace of dynamic actions.

Table 29.10. Output formatter options

ValueSummary

-f {csv,json,table,value,yaml}, --format {csv,json,table,value,yaml}

The output format, defaults to table

-c COLUMN, --column COLUMN

Specify the column(s) to include, can be repeated to show multiple columns

--sort-column SORT_COLUMN

Specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated

--sort-ascending

Sort the column(s) in ascending order

--sort-descending

Sort the column(s) in descending order

Table 29.11. CSV formatter options

ValueSummary

--quote {all,minimal,none,nonnumeric}

When to include quotes, defaults to nonnumeric

Table 29.12. JSON formatter options

ValueSummary

--noindent

Whether to disable indenting the json

Table 29.13. Table formatter options

ValueSummary

--max-width <integer>

Maximum display width, <1 to disable. you can also use the CLIFF_MAX_TERM_WIDTH environment variable, but the parameter takes precedence.

--fit-width

Fit the table to the display width. implied if --max- width greater than 0. Set the environment variable CLIFF_FIT_WIDTH=1 to always enable

--print-empty

Print empty table if there is no data to show.

29.4. dynamic action show

Show specific dynamic action.

Usage:

openstack dynamic action show [-h] [-f {json,shell,table,value,yaml}]
                                     [-c COLUMN] [--noindent]
                                     [--prefix PREFIX] [--max-width <integer>]
                                     [--fit-width] [--print-empty]
                                     [--namespace [NAMESPACE]]
                                     identifier

Table 29.14. Positional arguments

ValueSummary

identifier

Dynamic action identifier (name or id)

Table 29.15. Command arguments

ValueSummary

-h, --help

Show this help message and exit

--namespace [NAMESPACE]

Namespace to create the dynamic action within.

Table 29.16. Output formatter options

ValueSummary

-f {json,shell,table,value,yaml}, --format {json,shell,table,value,yaml}

The output format, defaults to table

-c COLUMN, --column COLUMN

Specify the column(s) to include, can be repeated to show multiple columns

Table 29.17. JSON formatter options

ValueSummary

--noindent

Whether to disable indenting the json

Table 29.18. Shell formatter options

ValueSummary

--prefix PREFIX

Add a prefix to all variable names

Table 29.19. Table formatter options

ValueSummary

--max-width <integer>

Maximum display width, <1 to disable. you can also use the CLIFF_MAX_TERM_WIDTH environment variable, but the parameter takes precedence.

--fit-width

Fit the table to the display width. implied if --max- width greater than 0. Set the environment variable CLIFF_FIT_WIDTH=1 to always enable

--print-empty

Print empty table if there is no data to show.

29.5. dynamic action update

Update dynamic action.

Usage:

openstack dynamic action update [-h] [-f {json,shell,table,value,yaml}]
                                       [-c COLUMN] [--noindent]
                                       [--prefix PREFIX]
                                       [--max-width <integer>] [--fit-width]
                                       [--print-empty]
                                       [--class-name [CLASS_NAME]]
                                       [--code-source [CODE_SOURCE]]
                                       [--public] [--namespace [NAMESPACE]]
                                       identifier

Table 29.20. Positional arguments

ValueSummary

identifier

Dynamic action identifier (id or name)

Table 29.21. Command arguments

ValueSummary

-h, --help

Show this help message and exit

--class-name [CLASS_NAME]

Dynamic action class name.

--code-source [CODE_SOURCE]

Code source identifier (id or name).

--public

With this flag action will be marked as "public".

--namespace [NAMESPACE]

Namespace of the action.

Table 29.22. Output formatter options

ValueSummary

-f {json,shell,table,value,yaml}, --format {json,shell,table,value,yaml}

The output format, defaults to table

-c COLUMN, --column COLUMN

Specify the column(s) to include, can be repeated to show multiple columns

Table 29.23. JSON formatter options

ValueSummary

--noindent

Whether to disable indenting the json

Table 29.24. Shell formatter options

ValueSummary

--prefix PREFIX

Add a prefix to all variable names

Table 29.25. Table formatter options

ValueSummary

--max-width <integer>

Maximum display width, <1 to disable. you can also use the CLIFF_MAX_TERM_WIDTH environment variable, but the parameter takes precedence.

--fit-width

Fit the table to the display width. implied if --max- width greater than 0. Set the environment variable CLIFF_FIT_WIDTH=1 to always enable

--print-empty

Print empty table if there is no data to show.