From 13341f659b79597b840d9cda24a1e0f4ec9f8522 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sun, 22 Dec 2019 21:41:05 +0800 Subject: [PATCH 1/2] remove preview --- src/azure-cli/azure/cli/command_modules/storage/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 85eb4b41603..291c11fbc46 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -158,7 +158,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem options_list=['--enable-hierarchical-namespace', '--hns'], help=" Allow the blob service to exhibit filesystem semantics. This property can be enabled only " "when storage account kind is StorageV2.", - min_api='2018-02-01', is_preview=True) + min_api='2018-02-01') with self.argument_context('storage account update', resource_type=ResourceType.MGMT_STORAGE) as c: c.register_common_storage_account_options() From d25843ce7378c266aa72351aaf50130968221ccd Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sun, 22 Dec 2019 21:44:06 +0800 Subject: [PATCH 2/2] update history --- src/azure-cli/HISTORY.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 496497afea3..ac1394ee3c9 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -19,6 +19,10 @@ Release History * Fix `vm create` failure in Azure Stack profile. +**Storage** + +* `az storage account create`: Remove preview flag for --enable-hierarchical-namespace parameter + 2.0.78 ++++++