diff --git a/src/vmware/HISTORY.md b/src/vmware/HISTORY.md index e5293414539..544236122e9 100644 --- a/src/vmware/HISTORY.md +++ b/src/vmware/HISTORY.md @@ -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 diff --git a/src/vmware/azext_vmware/_help.py b/src/vmware/azext_vmware/_help.py index 3e74bc8471f..f09286d1168 100644 --- a/src/vmware/azext_vmware/_help.py +++ b/src/vmware/azext_vmware/_help.py @@ -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'] = """ @@ -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'] = """ diff --git a/src/vmware/setup.py b/src/vmware/setup.py index 2a63a4fa7fd..f339f167b01 100644 --- a/src/vmware/setup.py +++ b/src/vmware/setup.py @@ -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()