diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index feb862c85f1..089524d039e 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -646,15 +646,15 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem t_blob_permissions = self.get_sdk('blob.models#BlobPermissions') c.register_sas_arguments() - c.argument('cache_control', help='Response header value for Cache-Control when resource is accessed' + c.argument('cache_control', help='Response header value for Cache-Control when resource is accessed ' 'using this shared access signature.') - c.argument('content_disposition', help='Response header value for Content-Disposition when resource is accessed' - 'using this shared access signature.') - c.argument('content_encoding', help='Response header value for Content-Encoding when resource is accessed' + c.argument('content_disposition', help='Response header value for Content-Disposition when resource is ' + 'accessed using this shared access signature.') + c.argument('content_encoding', help='Response header value for Content-Encoding when resource is accessed ' 'using this shared access signature.') - c.argument('content_language', help='Response header value for Content-Language when resource is accessed' + c.argument('content_language', help='Response header value for Content-Language when resource is accessed ' 'using this shared access signature.') - c.argument('content_type', help='Response header value for Content-Type when resource is accessed' + c.argument('content_type', help='Response header value for Content-Type when resource is accessed ' 'using this shared access signature.') c.argument('full_uri', action='store_true', help='Indicates that this command return the full blob URI and the shared access signature token.') @@ -713,7 +713,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob url') as c: c.argument('protocol', arg_type=get_enum_type(['http', 'https'], 'https'), help='Protocol to use.') - c.argument('snapshot', help='An string value that uniquely identifies the snapshot. The value of' + c.argument('snapshot', help='An string value that uniquely identifies the snapshot. The value of ' 'this query parameter indicates the snapshot version.') with self.argument_context('storage blob set-tier') as c: @@ -1145,15 +1145,15 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('permission', options_list='--permissions', help=sas_help.format(get_permission_help_string(t_container_permissions)), validator=get_permission_validator(t_container_permissions)) - c.argument('cache_control', help='Response header value for Cache-Control when resource is accessed' + c.argument('cache_control', help='Response header value for Cache-Control when resource is accessed ' 'using this shared access signature.') - c.argument('content_disposition', help='Response header value for Content-Disposition when resource is accessed' - 'using this shared access signature.') - c.argument('content_encoding', help='Response header value for Content-Encoding when resource is accessed' + c.argument('content_disposition', help='Response header value for Content-Disposition when resource is ' + 'accessed using this shared access signature.') + c.argument('content_encoding', help='Response header value for Content-Encoding when resource is accessed ' 'using this shared access signature.') - c.argument('content_language', help='Response header value for Content-Language when resource is accessed' + c.argument('content_language', help='Response header value for Content-Language when resource is accessed ' 'using this shared access signature.') - c.argument('content_type', help='Response header value for Content-Type when resource is accessed' + c.argument('content_type', help='Response header value for Content-Type when resource is accessed ' 'using this shared access signature.') c.argument('as_user', min_api='2018-11-09', action='store_true', validator=as_user_validator,