Skip to content

Commit 520a8a8

Browse files
author
Avish Porwal
committed
Update CLI description for Qumulo
1 parent a078070 commit 520a8a8

File tree

11 files changed

+32
-28
lines changed

11 files changed

+32
-28
lines changed

src/qumulo/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
3.0.0
7+
++++++
8+
* Updated descriptions of the commands.
9+
610
2.0.0
711
++++++
812
* Incorporated new cluster property values for cli refresh

src/qumulo/azext_qumulo/aaz/latest/qumulo/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage qumulo
18+
"""Manage Qumulo
1919
"""
2020
pass
2121

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage qumulo storage
18+
"""Manage Qumulo storage resources through the Azure CLI.
1919
"""
2020
pass
2121

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage file-system",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage qumulo storage file system
18+
"""Manage file system resources within Qumulo storage.
1919
"""
2020
pass
2121

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_create.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage file-system create",
1616
)
1717
class Create(AAZCommand):
18-
"""Create a FileSystemResource
18+
"""Create a new file system resource in Qumulo storage.
1919
"""
2020

2121
_aaz_info = {
@@ -311,9 +311,9 @@ def content(self):
311311
marketplace_details.set_prop("publisherId", AAZStrType, ".publisher_id")
312312
marketplace_details.set_prop("termUnit", AAZStrType, ".term_unit")
313313

314-
private_ips = _builder.get(".properties.privateIPs")
315-
if private_ips is not None:
316-
private_ips.set_elements(AAZStrType, ".")
314+
private_i_ps = _builder.get(".properties.privateIPs")
315+
if private_i_ps is not None:
316+
private_i_ps.set_elements(AAZStrType, ".")
317317

318318
user_details = _builder.get(".properties.userDetails")
319319
if user_details is not None:
@@ -413,7 +413,7 @@ def _build_schema_on_200_201(cls):
413413
serialized_name="marketplaceDetails",
414414
flags={"required": True},
415415
)
416-
properties.private_ips = AAZListType(
416+
properties.private_i_ps = AAZListType(
417417
serialized_name="privateIPs",
418418
)
419419
properties.provisioning_state = AAZStrType(
@@ -452,8 +452,8 @@ def _build_schema_on_200_201(cls):
452452
serialized_name="termUnit",
453453
)
454454

455-
private_ips = cls._schema_on_200_201.properties.private_ips
456-
private_ips.Element = AAZStrType()
455+
private_i_ps = cls._schema_on_200_201.properties.private_i_ps
456+
private_i_ps.Element = AAZStrType()
457457

458458
user_details = cls._schema_on_200_201.properties.user_details
459459
user_details.email = AAZStrType(

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
confirmation="Are you sure you want to perform this operation?",
1717
)
1818
class Delete(AAZCommand):
19-
"""Delete a FileSystemResource
19+
"""Delete an existing file system resource from Qumulo storage.
2020
"""
2121

2222
_aaz_info = {

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_list.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage file-system list",
1616
)
1717
class List(AAZCommand):
18-
"""List file system resources
18+
"""List all file system resources within Qumulo storage.
1919
2020
:example: List file system by resource group
2121
az qumulo storage file-system list -g rg
@@ -226,7 +226,7 @@ def _build_schema_on_200(cls):
226226
serialized_name="marketplaceDetails",
227227
flags={"required": True},
228228
)
229-
properties.private_ips = AAZListType(
229+
properties.private_i_ps = AAZListType(
230230
serialized_name="privateIPs",
231231
)
232232
properties.provisioning_state = AAZStrType(
@@ -265,8 +265,8 @@ def _build_schema_on_200(cls):
265265
serialized_name="termUnit",
266266
)
267267

268-
private_ips = cls._schema_on_200.value.Element.properties.private_ips
269-
private_ips.Element = AAZStrType()
268+
private_i_ps = cls._schema_on_200.value.Element.properties.private_i_ps
269+
private_i_ps.Element = AAZStrType()
270270

271271
user_details = cls._schema_on_200.value.Element.properties.user_details
272272
user_details.email = AAZStrType(
@@ -456,7 +456,7 @@ def _build_schema_on_200(cls):
456456
serialized_name="marketplaceDetails",
457457
flags={"required": True},
458458
)
459-
properties.private_ips = AAZListType(
459+
properties.private_i_ps = AAZListType(
460460
serialized_name="privateIPs",
461461
)
462462
properties.provisioning_state = AAZStrType(
@@ -495,8 +495,8 @@ def _build_schema_on_200(cls):
495495
serialized_name="termUnit",
496496
)
497497

498-
private_ips = cls._schema_on_200.value.Element.properties.private_ips
499-
private_ips.Element = AAZStrType()
498+
private_i_ps = cls._schema_on_200.value.Element.properties.private_i_ps
499+
private_i_ps.Element = AAZStrType()
500500

501501
user_details = cls._schema_on_200.value.Element.properties.user_details
502502
user_details.email = AAZStrType(

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_show.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage file-system show",
1616
)
1717
class Show(AAZCommand):
18-
"""Get a FileSystemResource
18+
"""Retrieve details of a specific file system resource in Qumulo storage.
1919
"""
2020

2121
_aaz_info = {
@@ -223,7 +223,7 @@ def _build_schema_on_200(cls):
223223
serialized_name="marketplaceDetails",
224224
flags={"required": True},
225225
)
226-
properties.private_ips = AAZListType(
226+
properties.private_i_ps = AAZListType(
227227
serialized_name="privateIPs",
228228
)
229229
properties.provisioning_state = AAZStrType(
@@ -262,8 +262,8 @@ def _build_schema_on_200(cls):
262262
serialized_name="termUnit",
263263
)
264264

265-
private_ips = cls._schema_on_200.properties.private_ips
266-
private_ips.Element = AAZStrType()
265+
private_i_ps = cls._schema_on_200.properties.private_i_ps
266+
private_i_ps.Element = AAZStrType()
267267

268268
user_details = cls._schema_on_200.properties.user_details
269269
user_details.email = AAZStrType(

src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_wait.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"qumulo storage file-system wait",
1616
)
1717
class Wait(AAZWaitCommand):
18-
"""Place the CLI in a waiting state until a condition is met.
18+
"""Wait until a specified condition is met for operations on a Qumulo file system resource.
1919
"""
2020

2121
_aaz_info = {
@@ -222,7 +222,7 @@ def _build_schema_on_200(cls):
222222
serialized_name="marketplaceDetails",
223223
flags={"required": True},
224224
)
225-
properties.private_ips = AAZListType(
225+
properties.private_i_ps = AAZListType(
226226
serialized_name="privateIPs",
227227
)
228228
properties.provisioning_state = AAZStrType(
@@ -261,8 +261,8 @@ def _build_schema_on_200(cls):
261261
serialized_name="termUnit",
262262
)
263263

264-
private_ips = cls._schema_on_200.properties.private_ips
265-
private_ips.Element = AAZStrType()
264+
private_i_ps = cls._schema_on_200.properties.private_i_ps
265+
private_i_ps.Element = AAZStrType()
266266

267267
user_details = cls._schema_on_200.properties.user_details
268268
user_details.email = AAZStrType(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"azext.minCliCoreVersion": "2.61.0"
2+
"azext.minCliCoreVersion": "2.70.0"
33
}

0 commit comments

Comments
 (0)