[App Service] az appservice plan: Remove preview flag for managed instance app service plans and add Premium V3 SKU support#33690
Merged
yanzhudd merged 2 commits intoJul 3, 2026
Conversation
…nstance app service plans and add Premium V3 SKU support - Remove is_preview from managed instance command groups, arguments, and aaz command stubs - Allow Premium V3 SKUs (Premium0V3, PremiumV3, PremiumMV3) for managed instance list-locations Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
️✔️AzureCLI-FullTest
|
|
| rule | cmd_name | rule_message | suggest_message |
|---|---|---|---|
| appservice plan identity assign | cmd appservice plan identity assign removed property is_preview |
||
| appservice plan identity remove | cmd appservice plan identity remove removed property is_preview |
||
| appservice plan identity set-default | cmd appservice plan identity set-default removed property is_preview |
||
| appservice plan identity show | cmd appservice plan identity show removed property is_preview |
||
| appservice plan managed-instance instance connect | cmd appservice plan managed-instance instance connect removed property is_preview |
||
| appservice plan managed-instance instance recycle | cmd appservice plan managed-instance instance recycle removed property is_preview |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the App Service command module to graduate managed instance App Service plan functionality out of preview and expand managed instance region discovery to include Premium V3 SKUs.
Changes:
- Removes preview flags from
az appservice plan managed-instance instanceandaz appservice plan identitycommand groups. - Removes preview flags from managed instance-related parameters on
az appservice plan create/updateandaz appservice list-locations --managed-instance-enabled. - Expands managed instance SKU-tier allowlist used by
appservice list-locations --managed-instance-enabledto include Premium V3 (P0V3,P1-3V3,P1-5MV3).
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/azure-cli/azure/cli/command_modules/appservice/utils.py | Allows managed-instance location listing for Premium V3 tiers in SKU validation helper. |
| src/azure-cli/azure/cli/command_modules/appservice/commands.py | Removes preview flags from managed-instance instance and identity command groups. |
| src/azure-cli/azure/cli/command_modules/appservice/aaz/latest/appservice/plan/managed_instance/instance/_list.py | Removes preview flag from the AAZ instance list command registration. |
| src/azure-cli/azure/cli/command_modules/appservice/aaz/latest/appservice/plan/managed_instance/__cmd_group.py | Removes preview flag from the AAZ managed-instance command group registration. |
| src/azure-cli/azure/cli/command_modules/appservice/_params.py | Removes preview flags from managed-instance-related CLI arguments. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…oup stub and add Premium V3 SKU test coverage
Collaborator
|
App Service |
Contributor
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
yanzhudd
reviewed
Jul 2, 2026
|
|
||
| @register_command_group( | ||
| "appservice plan managed-instance instance", | ||
| is_preview=True, |
Contributor
There was a problem hiding this comment.
please raise a PR for aaz repo changes as well
Member
Author
There was a problem hiding this comment.
Raised the corresponding PR here: Azure/aaz#1042
yanzhudd
approved these changes
Jul 3, 2026
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.
Related command
az appservice plan create,az appservice plan update,az appservice plan managed-instance,az appservice plan identity,az appservice list-locationsDescription
This PR does two things for managed instance App Service plans:
Graduates the managed instance commands out of preview (removes the preview flag) in preparation for GA:
az appservice plan managed-instance instance,az appservice plan identityaz appservice plan create/az appservice plan update:--is-managed-instance,--mi-system-assigned,--mi-user-assigned,--default-identity,--rdp-enabled,--vnet,--subnet,--registry-adapter,--install-script,--storage-mountaz appservice list-locations:--managed-instance-enabledmanaged-instancecommand group and themanaged-instance instance listcommandAdds Premium V3 SKU support for managed instances. Previously only
PremiumV4/PremiumMV4were allowed foraz appservice list-locations --managed-instance-enabled. This addsPremium0V3,PremiumV3, andPremiumMV3to the allowed SKUs for managed instance.Testing Guide
Validated locally against a source build and compared with the officially installed CLI (2.87.0).
Preview flag removed (help no longer shows
[Preview]/ "in preview" warnings):Premium V3 SKUs are now listed for managed instance (read-only
list-locations):Result counts observed (same subscription): the old CLI returned 0 regions for the V3 SKUs and 8 for P1V4; the source build returns 8 regions for all of P1V4 / P0V3 / P1V3 / P1MV3.
History Notes
[App Service]
az appservice plan: Remove preview flag for managed instance app service plans[App Service]
az appservice plan: Add Premium V3 SKU support (P0V3,P1-3V3,P1-5MV3) for managed instancesThis checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.