diff --git a/src/index.json b/src/index.json index fa0eff7807..fac0c13a84 100644 --- a/src/index.json +++ b/src/index.json @@ -920,9 +920,9 @@ ], "mesh": [ { - "filename": "mesh-0.9.0-py2.py3-none-any.whl", - "sha256Digest": "fcfdaadd48b7ac5bb7248d07c0d8f20f2057faeed58b9e70634df3afb6ec84b5", - "downloadUrl": "https://meshcli.blob.core.windows.net/cli/mesh-0.9.0-py2.py3-none-any.whl", + "filename": "mesh-0.9.1-py2.py3-none-any.whl", + "sha256Digest": "0c3a9d251910208139baf854d03de925e4d9b46bee99208f61ca4dcd2382eaa7", + "downloadUrl": "https://meshcli.blob.core.windows.net/cli/mesh-0.9.1-py2.py3-none-any.whl", "metadata": { "azext.minCliCoreVersion": "2.0.30", "azext.isPreview": true, @@ -939,7 +939,7 @@ "description": "DESCRIPTION.rst" }, "project_urls": { - "Home": "https://github.com/Azure/azure-cli" + "Home": "https://github.com/Azure/azure-cli-extensions" } } }, @@ -948,7 +948,7 @@ "metadata_version": "2.0", "name": "mesh", "summary": "Support for Microsoft Azure Service Fabric Mesh - Public Preview", - "version": "0.9.0" + "version": "0.9.1" } } ] diff --git a/src/mesh/HISTORY.rst b/src/mesh/HISTORY.rst index 29ca537bc3..c6218a300c 100644 --- a/src/mesh/HISTORY.rst +++ b/src/mesh/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +0.9.1 (2018-07-26) +++++++++++++++++++ + +* Fix output in table format for volume list. + 0.9.0 (2018-07-16) ++++++++++++++++++ diff --git a/src/mesh/README.rst b/src/mesh/README.rst index fa202dcbc9..33148484cd 100644 --- a/src/mesh/README.rst +++ b/src/mesh/README.rst @@ -1,49 +1,54 @@ Microsoft Azure CLI 'mesh' Command Module ============================================================== - +Official doc https://docs.microsoft.com/en-us/azure/service-fabric-mesh/ Commands to manage Azure Service Fabric Mesh resources ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ :: - Group - az mesh: Manage Azure Service Fabric Mesh resources. + az mesh: Manage Azure Service Fabric Mesh Resources. + + Subgroups: + app : Manage Service Fabric Mesh applications. + code-package-log: Examine the logs for a codepackage. + deployment : Manage Service Fabric Mesh deployments. + network : Manage networks. + service : Manage Service Fabric Mesh services. + service-replica : Manage Service Fabric Mesh service replicas. + volume : Manage volumes. - Commands: - app create: Create an application. - app delete: Delete an application. - app list : List applications. - app show : Show the details of an application. - codepackage logs : Tail the log of a container. Commands to create an application ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ :: - Command - az mesh app create: Create an Service Fabric Mesh application. - - Arguments - --resource-group -g [Required]: Name of resource group. You can configure the default group - using `az configure --defaults group=`. - --mode - --no-wait : Do not wait for the long-running operation to finish. - --parameters - --template-file : The full file path of creation template. - --template-uri : The full file path of creation template on a http or https link. - - Global Arguments - --debug : Increase logging verbosity to show all debug logs. - --help -h : Show this help message and exit. - --output -o : Output format. Allowed values: json, jsonc, table, tsv. - Default: json. - --query : JMESPath query string. See http://jmespath.org/ for more - information and examples. - --verbose : Increase logging verbosity. Use --debug for full debug logs. - - Examples - Create an application with a template file on the remote. - az mesh app create --resource-group mygroup --template-uri - https://seabreezequickstart.blob.core.windows.net/quickstart/application-quickstart.json - - Create an application with a template file on local disk. - az mesh app create --resource-group mygroup --template-file ./appTemplate.json +-Command + az mesh deployment create: Create a Service Fabric Mesh application. + +-Arguments + --resource-group -g [Required]: Name of resource group. You can configure the default group + using `az configure --defaults group=`. + --mode + --name -n : The deployment name. Default to template file base name. + --no-wait : Do not wait for the long-running operation to finish. + --parameters + --template-file : The full file path of creation template. + --template-uri : The full file path of creation template on a http or https link. + +-Global Arguments + --debug : Increase logging verbosity to show all debug logs. + --help -h : Show this help message and exit. + --output -o : Output format. Allowed values: json, jsonc, table, tsv. + Default: json. + --query : JMESPath query string. See http://jmespath.org/ for more + information and examples. + --subscription : Name or ID of subscription. You can configure the default + subscription using `az account set -s NAME_OR_ID`". + --verbose : Increase logging verbosity. Use --debug for full debug logs. + +-Examples + Create a deployment with a template file on the remote. + az mesh deployment create --resource-group mygroup --template-uri + https://seabreezequickstart.blob.core.windows.net/templates/quickstart/sbz_rp.linux.json + + Create a deployment with a template file on local disk. + az mesh deployment create --resource-group mygroup --template-file ./appTemplate.json diff --git a/src/mesh/setup.py b/src/mesh/setup.py index 1d8870099f..d93e05848e 100644 --- a/src/mesh/setup.py +++ b/src/mesh/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.9.0" +VERSION = "0.9.1" CLASSIFIERS = [ 'Development Status :: 4 - Beta',