Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/qumulo/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

2.0.1
++++++
* Updated CLI Description

2.0.0
++++++
* Incorporated new cluster property values for cli refresh
Expand Down
2 changes: 1 addition & 1 deletion src/qumulo/azext_qumulo/aaz/latest/qumulo/__cmd_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"qumulo",
)
class __CMDGroup(AAZCommandGroup):
"""Manage qumulo
"""Manage Qumulo file system storage resources with the Azure CLI.
"""
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"qumulo storage file-system",
)
class __CMDGroup(AAZCommandGroup):
"""Manage qumulo storage file system
"""Perform management operations on Qumulo file system storage resource.
"""
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"qumulo storage file-system create",
)
class Create(AAZCommand):
"""Create a FileSystemResource
"""Create a new Qumulo file system storage resource.
"""

_aaz_info = {
Expand Down Expand Up @@ -311,9 +311,9 @@ def content(self):
marketplace_details.set_prop("publisherId", AAZStrType, ".publisher_id")
marketplace_details.set_prop("termUnit", AAZStrType, ".term_unit")

private_ips = _builder.get(".properties.privateIPs")
if private_ips is not None:
private_ips.set_elements(AAZStrType, ".")
private_i_ps = _builder.get(".properties.privateIPs")
if private_i_ps is not None:
private_i_ps.set_elements(AAZStrType, ".")

user_details = _builder.get(".properties.userDetails")
if user_details is not None:
Expand Down Expand Up @@ -413,7 +413,7 @@ def _build_schema_on_200_201(cls):
serialized_name="marketplaceDetails",
flags={"required": True},
)
properties.private_ips = AAZListType(
properties.private_i_ps = AAZListType(
serialized_name="privateIPs",
)
properties.provisioning_state = AAZStrType(
Expand Down Expand Up @@ -452,8 +452,8 @@ def _build_schema_on_200_201(cls):
serialized_name="termUnit",
)

private_ips = cls._schema_on_200_201.properties.private_ips
private_ips.Element = AAZStrType()
private_i_ps = cls._schema_on_200_201.properties.private_i_ps
private_i_ps.Element = AAZStrType()

user_details = cls._schema_on_200_201.properties.user_details
user_details.email = AAZStrType(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
"""Delete a FileSystemResource
"""Delete the specified existing Qumulo file system storage resource permanently.
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"qumulo storage file-system list",
)
class List(AAZCommand):
"""List file system resources
"""List all existing Qumulo file system storage resources.

:example: List file system by resource group
az qumulo storage file-system list -g rg
Expand Down Expand Up @@ -226,7 +226,7 @@ def _build_schema_on_200(cls):
serialized_name="marketplaceDetails",
flags={"required": True},
)
properties.private_ips = AAZListType(
properties.private_i_ps = AAZListType(
serialized_name="privateIPs",
)
properties.provisioning_state = AAZStrType(
Expand Down Expand Up @@ -265,8 +265,8 @@ def _build_schema_on_200(cls):
serialized_name="termUnit",
)

private_ips = cls._schema_on_200.value.Element.properties.private_ips
private_ips.Element = AAZStrType()
private_i_ps = cls._schema_on_200.value.Element.properties.private_i_ps
private_i_ps.Element = AAZStrType()

user_details = cls._schema_on_200.value.Element.properties.user_details
user_details.email = AAZStrType(
Expand Down Expand Up @@ -456,7 +456,7 @@ def _build_schema_on_200(cls):
serialized_name="marketplaceDetails",
flags={"required": True},
)
properties.private_ips = AAZListType(
properties.private_i_ps = AAZListType(
serialized_name="privateIPs",
)
properties.provisioning_state = AAZStrType(
Expand Down Expand Up @@ -495,8 +495,8 @@ def _build_schema_on_200(cls):
serialized_name="termUnit",
)

private_ips = cls._schema_on_200.value.Element.properties.private_ips
private_ips.Element = AAZStrType()
private_i_ps = cls._schema_on_200.value.Element.properties.private_i_ps
private_i_ps.Element = AAZStrType()

user_details = cls._schema_on_200.value.Element.properties.user_details
user_details.email = AAZStrType(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"qumulo storage file-system show",
)
class Show(AAZCommand):
"""Get a FileSystemResource
"""Retrieve details of a specific file system resource in Qumulo storage.
"""

_aaz_info = {
Expand Down Expand Up @@ -223,7 +223,7 @@ def _build_schema_on_200(cls):
serialized_name="marketplaceDetails",
flags={"required": True},
)
properties.private_ips = AAZListType(
properties.private_i_ps = AAZListType(
serialized_name="privateIPs",
)
properties.provisioning_state = AAZStrType(
Expand Down Expand Up @@ -262,8 +262,8 @@ def _build_schema_on_200(cls):
serialized_name="termUnit",
)

private_ips = cls._schema_on_200.properties.private_ips
private_ips.Element = AAZStrType()
private_i_ps = cls._schema_on_200.properties.private_i_ps
private_i_ps.Element = AAZStrType()

user_details = cls._schema_on_200.properties.user_details
user_details.email = AAZStrType(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def _build_schema_on_200(cls):
serialized_name="marketplaceDetails",
flags={"required": True},
)
properties.private_ips = AAZListType(
properties.private_i_ps = AAZListType(
serialized_name="privateIPs",
)
properties.provisioning_state = AAZStrType(
Expand Down Expand Up @@ -261,8 +261,8 @@ def _build_schema_on_200(cls):
serialized_name="termUnit",
)

private_ips = cls._schema_on_200.properties.private_ips
private_ips.Element = AAZStrType()
private_i_ps = cls._schema_on_200.properties.private_i_ps
private_i_ps.Element = AAZStrType()

user_details = cls._schema_on_200.properties.user_details
user_details.email = AAZStrType(
Expand Down
2 changes: 1 addition & 1 deletion src/qumulo/azext_qumulo/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"azext.minCliCoreVersion": "2.61.0"
"azext.minCliCoreVersion": "2.70.0"
}
2 changes: 1 addition & 1 deletion src/qumulo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# HISTORY.rst entry.
VERSION = '2.0.0'
VERSION = '2.0.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading