diff --git a/src/command_modules/azure-cli-storage/HISTORY.rst b/src/command_modules/azure-cli-storage/HISTORY.rst index c9178996466..490d3240899 100644 --- a/src/command_modules/azure-cli-storage/HISTORY.rst +++ b/src/command_modules/azure-cli-storage/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.2.7 ++++++ +* Minor fixes. + 2.2.6 +++++ * Minor fixes. diff --git a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py index ffbacf5f5fe..2691781204a 100644 --- a/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py +++ b/src/command_modules/azure-cli-storage/azure/cli/command_modules/storage/_help.py @@ -132,14 +132,6 @@ short-summary: Show the current count and limit of the storage accounts under the subscription. """ -helps['storage blob list'] = """ - type: command - short-summary: List storage blobs in a container. - examples: - - name: List all storage blobs in a container. - text: az storage blob list -c MyContainer -""" - helps['storage account delete'] = """ type: command short-summary: Delete a storage account. @@ -205,6 +197,9 @@ parameters: - name: --include short-summary: 'Specifies additional datasets to include: (c)opy-info, (m)etadata, (s)napshots, (d)eleted-soft. Can be combined.' + examples: + - name: List all storage blobs in a container whose names start with 'foo'; will match names such as 'foo', 'foobar', and 'foo/bar' + text: az storage blob list -c MyContainer --prefix foo """ helps['storage blob copy'] = """ diff --git a/src/command_modules/azure-cli-storage/setup.py b/src/command_modules/azure-cli-storage/setup.py index 07e533038cc..98ef5d9e713 100644 --- a/src/command_modules/azure-cli-storage/setup.py +++ b/src/command_modules/azure-cli-storage/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.2.6" +VERSION = "2.2.7" CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',