Skip to content

Commit

Permalink
[Storage] publish new version for Ignite (Azure#298)
Browse files Browse the repository at this point in the history
* publish

* fix linter and update index

* add readme
  • Loading branch information
williexu authored Sep 22, 2018
1 parent 3625f79 commit 17ace77
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -818,9 +818,9 @@
],
"storage-preview": [
{
"filename": "storage_preview-0.1.4-py2.py3-none-any.whl",
"sha256Digest": "23a16ca387f9288339f2b18559cdf60fa305fb637bd62821a430e99955ab1d84",
"downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.1.4-py2.py3-none-any.whl",
"filename": "storage_preview-0.1.5-py2.py3-none-any.whl",
"sha256Digest": "9ab33715c0ee28057aadec7351ce9ec45322839ed8e1652f670eaf07ef5b72b8",
"downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.1.5-py2.py3-none-any.whl",
"metadata": {
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.0.43",
Expand Down Expand Up @@ -859,7 +859,7 @@
"metadata_version": "2.0",
"name": "storage-preview",
"summary": "Provides a preview for upcoming storage features.",
"version": "0.1.4"
"version": "0.1.5"
}
}
],
Expand Down
36 changes: 35 additions & 1 deletion src/storage-preview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,39 @@ Enable the blob service to exhibit filesystem semantics.\
az storage account create \
--name accountName \
--resource-group groupName \
--kind StorageV2 \
--hierarchical-namespace
```
```

**File AAD Integration:**
Enable AAD integration for Azure files, which will support SMB access.\
*Examples:*
```
az storage account create \
--name accountName \
--resource-group groupName \
--kind StorageV2 \
--file-aad
az storage account update \
--name accountName \
--resource-group groupName \
--file-aad false
```

**Premium Blobs/Files:**
Create premium blob/file storage accounts.\
*Examples:*
```
az storage account create \
--name accountName \
--resource-group groupName \
--sku Premium_LRS \
--kind BlockBlobStorage
az storage account create \
--name accountName \
--resource-group groupName \
--sku Premium_LRS \
--kind FileStorage
```
3 changes: 3 additions & 0 deletions src/storage-preview/azext_storage_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
'https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.')
c.argument('account_name', help='The name of the storage account within the specified resource group.')

with self.argument_context('storage account management-policy update') as c:
c.argument('account_name', help='The name of the storage account within the specified resource group.')

with self.argument_context('storage logging show') as c:
c.extra('services', validator=get_char_options_validator('bqt', 'services'), default='bqt')

Expand Down
2 changes: 1 addition & 1 deletion src/storage-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "0.1.4"
VERSION = "0.1.5"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 17ace77

Please sign in to comment.