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 ++++++ 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 1dd5b0d5c94..671c3104702 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()