Update for python-heatclient 0.2.9
Change-Id: Iaecd576019e9586d43b3de2e1337564faf2507b2
This commit is contained in:
parent
17033c3601
commit
2b0932f990
@ -11,7 +11,7 @@
|
||||
<title>Orchestration command-line client</title>
|
||||
<para>The <command>heat</command> client is the command-line interface
|
||||
(CLI) for the Orchestration API and its extensions. This chapter documents
|
||||
<command>heat</command> version 0.2.8.
|
||||
<command>heat</command> version 0.2.9.
|
||||
</para>
|
||||
<para>For help on a specific <command>heat</command>
|
||||
command, enter:
|
||||
@ -21,12 +21,13 @@
|
||||
<section xml:id="heatclient_command_usage">
|
||||
<title>heat usage</title>
|
||||
<screen><computeroutput>usage: heat [--version] [-d] [-v] [-k] [--cert-file CERT_FILE]
|
||||
[--key-file KEY_FILE] [--ca-file CA_FILE] [--timeout TIMEOUT]
|
||||
[--os-username OS_USERNAME] [--os-password OS_PASSWORD]
|
||||
[--os-tenant-id OS_TENANT_ID] [--os-tenant-name OS_TENANT_NAME]
|
||||
[--os-auth-url OS_AUTH_URL] [--os-region-name OS_REGION_NAME]
|
||||
[--os-auth-token OS_AUTH_TOKEN] [--os-no-client-auth]
|
||||
[--heat-url HEAT_URL] [--heat-api-version HEAT_API_VERSION]
|
||||
[--key-file KEY_FILE] [--ca-file CA_FILE]
|
||||
[--api-timeout API_TIMEOUT] [--os-username OS_USERNAME]
|
||||
[--os-password OS_PASSWORD] [--os-tenant-id OS_TENANT_ID]
|
||||
[--os-tenant-name OS_TENANT_NAME] [--os-auth-url OS_AUTH_URL]
|
||||
[--os-region-name OS_REGION_NAME] [--os-auth-token OS_AUTH_TOKEN]
|
||||
[--os-no-client-auth] [--heat-url HEAT_URL]
|
||||
[--heat-api-version HEAT_API_VERSION]
|
||||
[--os-service-type OS_SERVICE_TYPE]
|
||||
[--os-endpoint-type OS_ENDPOINT_TYPE] [--include-password]
|
||||
<subcommand> ...
|
||||
@ -241,6 +242,14 @@
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>stack-preview</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Preview the stack.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>stack-show</command></term>
|
||||
<listitem>
|
||||
@ -377,10 +386,11 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>--timeout TIMEOUT</command></term>
|
||||
<term><command>--api-timeout API_TIMEOUT</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Number of seconds to wait for a response.
|
||||
Number of seconds to wait for an API response,
|
||||
defaults to system socket timeout
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@ -832,7 +842,7 @@ Abandon the stack.
|
||||
<section xml:id="heatclient_subcommand_stack-adopt">
|
||||
<title>heat stack-adopt command</title>
|
||||
<screen><computeroutput>usage: heat stack-adopt [-f <FILE>] [-e <FILE or URL>] [-u <URL>] [-o <URL>]
|
||||
[-c <TIMEOUT>] [-a <FILE or URL>] [-r]
|
||||
[-c <TIMEOUT>] [-t <TIMEOUT>] [-a <FILE or URL>] [-r]
|
||||
[-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
<STACK_NAME>
|
||||
</computeroutput></screen>
|
||||
@ -887,7 +897,16 @@ Adopt a stack.
|
||||
<term><command>-c <TIMEOUT>, --create-timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack creation timeout in minutes. Default: 60.
|
||||
Stack creation timeout in minutes. <emphasis>DEPRECATED</emphasis> use
|
||||
--timeout instead.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-t <TIMEOUT>, --timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack creation timeout in minutes.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@ -922,7 +941,8 @@ Adopt a stack.
|
||||
<section xml:id="heatclient_subcommand_stack-create">
|
||||
<title>heat stack-create command</title>
|
||||
<screen><computeroutput>usage: heat stack-create [-f <FILE>] [-e <FILE or URL>] [-u <URL>] [-o <URL>]
|
||||
[-c <TIMEOUT>] [-r] [-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
[-c <TIMEOUT>] [-t <TIMEOUT>] [-r]
|
||||
[-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
<STACK_NAME>
|
||||
</computeroutput></screen>
|
||||
<para>
|
||||
@ -976,7 +996,16 @@ Create the stack.
|
||||
<term><command>-c <TIMEOUT>, --create-timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack creation timeout in minutes. Default: 60.
|
||||
Stack creation timeout in minutes. <emphasis>DEPRECATED</emphasis> use
|
||||
--timeout instead.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-t <TIMEOUT>, --timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack creation timeout in minutes.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@ -1054,6 +1083,88 @@ List the user's stacks.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</section>
|
||||
<section xml:id="heatclient_subcommand_stack-preview">
|
||||
<title>heat stack-preview command</title>
|
||||
<screen><computeroutput>usage: heat stack-preview [-f <FILE>] [-e <FILE or URL>] [-u <URL>] [-o <URL>]
|
||||
[-c <TIMEOUT>] [-r]
|
||||
[-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
<STACK_NAME>
|
||||
</computeroutput></screen>
|
||||
<para>
|
||||
Preview the stack.
|
||||
</para> <variablelist wordsize="10">
|
||||
<title>Positional arguments</title>
|
||||
<varlistentry>
|
||||
<term><command><STACK_NAME></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Name of the stack to preview.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
<variablelist wordsize="10">
|
||||
<title>Optional arguments</title>
|
||||
<varlistentry>
|
||||
<term><command>-f <FILE>, --template-file <FILE></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Path to the template.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-e <FILE or URL>, --environment-file <FILE or URL></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Path to the environment.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-u <URL>, --template-url <URL></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
URL of template.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-o <URL>, --template-object <URL></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
URL to retrieve template object (e.g from swift)
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-c <TIMEOUT>, --create-timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack timeout in minutes. Default: 60
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-r, --enable-rollback</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Enable rollback on failure
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-P <KEY1=VALUE1;KEY2=VALUE2...>, --parameters <KEY1=VALUE1;KEY2=VALUE2...></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Parameter values used to preview the stack. This can
|
||||
be specified multiple times, or once with parameters
|
||||
separated by semicolon.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</section>
|
||||
<section xml:id="heatclient_subcommand_stack-show">
|
||||
@ -1077,7 +1188,7 @@ Describe the stack.
|
||||
<section xml:id="heatclient_subcommand_stack-update">
|
||||
<title>heat stack-update command</title>
|
||||
<screen><computeroutput>usage: heat stack-update [-f <FILE>] [-e <FILE or URL>] [-u <URL>] [-o <URL>]
|
||||
[-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
[-t <TIMEOUT>] [-P <KEY1=VALUE1;KEY2=VALUE2...>]
|
||||
<NAME or ID>
|
||||
</computeroutput></screen>
|
||||
<para>
|
||||
@ -1127,6 +1238,14 @@ Update the stack.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-t <TIMEOUT>, --timeout <TIMEOUT></command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Stack update timeout in minutes.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><command>-P <KEY1=VALUE1;KEY2=VALUE2...>, --parameters <KEY1=VALUE1;KEY2=VALUE2...></command></term>
|
||||
<listitem>
|
||||
|
Loading…
Reference in New Issue
Block a user