Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/storage-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

1.0.0b7
++++++
* Remove DATA_COSMOS_TABLE and DATA_STORAGE references
* `az storage account migration start/show`: Remove since it has been GA in main repo

1.0.0b6
+++++++
* `az storage account task-assignment`: Task-Assignment GA for Storage Action
Expand Down
7 changes: 4 additions & 3 deletions src/storage-preview/azext_storage_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
tags_type, edge_zone_type, file_type)
from azure.cli.core.commands.validators import get_default_location_from_resource_group
from azure.cli.core.local_context import LocalContextAttribute, LocalContextAction, ALL
from azure.cli.core.profiles import ResourceType

from ._validators import (get_datetime_type, validate_metadata, validate_bypass, validate_subnet,
validate_azcopy_upload_destination_url, validate_azcopy_download_source_url,
Expand All @@ -25,12 +26,12 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
from knack.arguments import CLIArgumentType
from azure.cli.core.commands.parameters import get_resource_name_completion_list

from .sdkutil import get_table_data_type
from .completers import get_storage_name_completion_list, get_container_name_completions

t_base_blob_service = self.get_sdk('blob.baseblobservice#BaseBlobService')
t_file_service = self.get_sdk('file#FileService')
t_table_service = get_table_data_type(self.cli_ctx, 'table', 'TableService')
t_table_service = self.get_sdk('_table_service_client#TableServiceClient',
resource_type=ResourceType.DATA_STORAGE_TABLE)

acct_name_type = CLIArgumentType(options_list=['--account-name', '-n'], help='The storage account name.',
id_part='name',
Expand Down Expand Up @@ -388,7 +389,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
'Possible values include: `Enabled` or `Disabled`.')
c.argument('account_name', acct_name_type, options_list=['--name', '-n'])
c.argument('resource_group_name', required=False, validator=process_resource_group)
c.argument('enable_extended_groups', arg_type=get_three_state_flag(),
c.argument('enable_extended_groups', arg_type=get_three_state_flag(), is_preview=True,
help='Enable extended group support with local users feature, if set to true.')

for scope in ['storage account create', 'storage account update']:
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading