Merge "[cli-ref] Remove Image API V1"

This commit is contained in:
Jenkins 2017-01-12 07:07:17 +00:00 committed by Gerrit Code Review
commit 60e224714d
1 changed files with 0 additions and 17 deletions

View File

@ -679,27 +679,10 @@ def document_single_project(os_command, output_dir, continue_on_error):
out_file.write(" export OS_VOLUME_API_VERSION=1\n\n")
out_file.write("This chapter describes the commands with API v2.\n\n")
elif os_command == 'glance':
format_heading("Image service API v2 commands", 2, out_file)
discover_and_generate_subcommands(os_command, out_file, subcommands,
None, "", "")
# Print subcommands for different API versions
if os_command == 'glance':
out_file.write("\n")
format_heading("Image service API v1 commands", 2, out_file)
out_file.write("As of this version, the default API version is 2.\n")
out_file.write("You can select an API version to use by adding the\n")
out_file.write(":option:`--os-image-api-version` parameter or by\n")
out_file.write("setting the corresponding environment variable:\n\n")
out_file.write(".. code-block:: console\n\n")
out_file.write(" export OS_IMAGE_API_VERSION=1\n\n")
discover_and_generate_subcommands(os_command, out_file, subcommands,
["--os-image-api-version", "1"],
"_v1", " (v1)")
print("Finished.\n")
out_file.close()
return True