Update qumulo extension to 3.0.0 for API version 2026-04-16 - #10034
Merged
Ethan Yang (necusjz) merged 5 commits intoJun 29, 2026
Conversation
Navjot Kaur (Navjot190102)
requested a review
from Yu Chen (jsntcy)
as a code owner
June 23, 2026 06:02
|
| rule | cmd_name | rule_message | suggest_message |
|---|---|---|---|
| qumulo storage file-system create | cmd qumulo storage file-system create added parameter performance_tier |
||
| qumulo storage file-system create | cmd qumulo storage file-system create update parameter admin_password: added property nargs=? |
||
| qumulo storage file-system create | cmd qumulo storage file-system create update parameter admin_password: updated property aaz_type from string to AAZPasswordArg |
||
| qumulo storage file-system create | cmd qumulo storage file-system create update parameter admin_password: updated property type from string to Password |
||
| qumulo storage file-system identity | sub group qumulo storage file-system identity added |
||
| qumulo storage file-system update | cmd qumulo storage file-system update added |
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request updates the qumulo Azure CLI extension to v3.0.0 and migrates file-system related operations to Qumulo RP API version 2026-04-16, while adding new file-system update and file-system identity command surfaces.
Changes:
- Bump extension version to
3.0.0and raise minimum CLI core requirement to2.75.0. - Update file-system AAZ command implementations to use API version
2026-04-16, including adding performance tier support. - Add new
qumulo storage file-system updatecommand and a newqumulo storage file-system identitycommand group (assign/remove/show/wait).
Reviewed changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| src/qumulo/setup.py | Bumps extension package version to 3.0.0. |
| src/qumulo/HISTORY.rst | Updates release history for the 3.0.0/API bump. |
| src/qumulo/azext_qumulo/azext_metadata.json | Raises minimum Azure CLI core version to 2.75.0. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/_wait.py | Adds file-system identity wait AAZ command implementation (2026-04-16). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/_show.py | Adds file-system identity show AAZ command implementation (2026-04-16). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/_remove.py | Adds file-system identity remove AAZ command implementation (2026-04-16). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/_assign.py | Adds file-system identity assign AAZ command implementation (2026-04-16). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/init.py | Exposes identity subcommands via package init imports. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/identity/__cmd_group.py | Registers the qumulo storage file-system identity command group. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_wait.py | Updates existing wait command to API 2026-04-16 and extends schema (nullable UAI dict, performance tier). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_update.py | Adds new file-system update command (LRO + generic update) for API 2026-04-16. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_show.py | Updates show command to API 2026-04-16 and extends schema (nullable UAI dict, performance tier). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_list.py | Updates list command(s) to API 2026-04-16 and extends schema (nullable UAI dict, performance tier). |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_delete.py | Updates delete command to API 2026-04-16 and adds an example snippet. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/_create.py | Updates create command to API 2026-04-16, adds perf tier arg, and adds prompt handling for password-style inputs. |
| src/qumulo/azext_qumulo/aaz/latest/qumulo/storage/file_system/init.py | Adds export for the new _update module. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Collaborator
|
qumulo |
Member
Author
Can You approve this PR Yong Zhang (@yonzhan) |
Member
|
/azp run |
|
Azure Pipelines successfully started running 2 pipeline(s). |
Member
|
/azp run |
|
Azure Pipelines successfully started running 2 pipeline(s). |
Ethan Yang (necusjz)
approved these changes
Jun 29, 2026
Collaborator
|
[Release] Update index.json for extension [ qumulo-3.0.0 ] : https://dev.azure.com/msazure/One/_build/results?buildId=170198314&view=results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrade the Qumulo extension to v3.0.0 and move file-system operations to API version 2026-04-16.
Changes
Why
This brings the extension in sync with the newest Qumulo RP API and adds missing lifecycle/identity management functionality for file-system resources.