Skip to content

Commit

Permalink
Update Clusters Descriptions (#6254)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanhe-msft committed May 5, 2023
1 parent bf132da commit f2a8a23
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions src/vmware/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 5.0.2 (2023-05)

- Update `az vmware cluster` subcommand descriptions

## 5.0.1 (2022-12)

- Update to AVS 2022-05-01 API
Expand Down
12 changes: 6 additions & 6 deletions src/vmware/azext_vmware/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

helps['vmware cluster'] = """
type: group
short-summary: Commands to manage clusters in a private cloud.
short-summary: Commands to manage all the clusters in a private cloud, excluding the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud. For management cluster commands, use az vmware private-cloud.
"""

helps['vmware authorization'] = """
Expand Down Expand Up @@ -74,27 +74,27 @@

helps['vmware cluster delete'] = """
type: command
short-summary: Delete a cluster in a private cloud.
short-summary: Delete a cluster in a private cloud, excluding the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud. To delete the management cluster, use az vmware private-cloud delete.
"""

helps['vmware cluster list'] = """
type: command
short-summary: List clusters in a private cloud.
short-summary: List clusters in a private cloud, excluding the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud. To view details of the management cluster, use az vmware private-cloud show.
"""

helps['vmware cluster show'] = """
type: command
short-summary: Show details of a cluster in a private cloud.
short-summary: Show details of a cluster in a private cloud, excluding the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud. To view details of the management cluster, use az vmware private-cloud show.
"""

helps['vmware cluster update'] = """
type: command
short-summary: Update a cluster in a private cloud.
short-summary: Update a cluster in a private cloud, excluding the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud. To update details of the management cluster, use az vmware private-cloud update.
"""

helps['vmware cluster list-zones'] = """
type: command
short-summary: List hosts by zone in a cluster.
short-summary: List hosts by zone in a cluster in a private cloud, including the first cluster which is the default management cluster. The default management cluster is created and managed as part of the private cloud.
"""

helps['vmware private-cloud add-identity-source'] = """
Expand Down
2 changes: 1 addition & 1 deletion src/vmware/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from io import open
from setuptools import setup, find_packages

VERSION = "5.0.1"
VERSION = "5.0.2"

with open('README.md', encoding='utf-8') as f:
readme = f.read()
Expand Down

0 comments on commit f2a8a23

Please sign in to comment.