-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[App Service] az appservice list-locations: Add --managed-instance-enabled parameter for managed instances
#32444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
yanzhudd
merged 6 commits into
Azure:dev
from
joslinmicrosoft:appservice-managedinstanceregions
Dec 3, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6bf6008
Initial code to add support for --managed-instance-enabled
joslinmicrosoft c24ca4b
Finish implementing
joslinmicrosoft cd16242
Update src/azure-cli/azure/cli/command_modules/appservice/aaz/latest/…
joslinmicrosoft 8701e70
Add comment per PR suggestion
joslinmicrosoft acaf124
Add linter exclusion for managed_instance_enabled
joslinmicrosoft 3d786b6
Add tests
joslinmicrosoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,3 +9,4 @@ | |
| # flake8: noqa | ||
|
|
||
| from .__cmd_group import * | ||
| from ._list_locations import * | ||
217 changes: 217 additions & 0 deletions
217
src/azure-cli/azure/cli/command_modules/appservice/aaz/latest/appservice/_list_locations.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,217 @@ | ||
| # -------------------------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See License.txt in the project root for license information. | ||
| # | ||
| # Code generated by aaz-dev-tools | ||
| # -------------------------------------------------------------------------------------------- | ||
|
|
||
| # pylint: skip-file | ||
| # flake8: noqa | ||
|
|
||
| from azure.cli.core.aaz import * | ||
|
|
||
|
|
||
| class ListLocations(AAZCommand): | ||
| """List regions where a plan sku is available | ||
| """ | ||
|
|
||
| _aaz_info = { | ||
| "version": "2025-03-01", | ||
| "resources": [ | ||
| ["mgmt-plane", "/subscriptions/{}/providers/microsoft.web/georegions", "2025-03-01"], | ||
| ] | ||
| } | ||
|
|
||
| AZ_SUPPORT_PAGINATION = True | ||
|
|
||
| def _handler(self, command_args): | ||
| super()._handler(command_args) | ||
| return self.build_paging(self._execute_operations, self._output) | ||
|
|
||
| _args_schema = None | ||
|
|
||
| @classmethod | ||
| def _build_arguments_schema(cls, *args, **kwargs): | ||
| if cls._args_schema is not None: | ||
| return cls._args_schema | ||
| cls._args_schema = super()._build_arguments_schema(*args, **kwargs) | ||
|
|
||
| # define Arg Group "" | ||
|
|
||
| _args_schema = cls._args_schema | ||
| _args_schema.custom_mode_workers_enabled = AAZBoolArg( | ||
| options=["--custom-mode-workers-enabled"], | ||
| help="Specify true if you want to filter to only regions that support App Service Plans with IsCustomMode set to true.", | ||
| ) | ||
| _args_schema.linux_dynamic_workers_enabled = AAZBoolArg( | ||
| options=["--linux-dynamic-workers-enabled"], | ||
| help="Specify true if you want to filter to only regions that support Linux Consumption Workers.", | ||
| ) | ||
| _args_schema.linux_workers_enabled = AAZBoolArg( | ||
| options=["--linux-workers-enabled"], | ||
| help="Get regions which support hosting web apps on Linux workers.", | ||
| ) | ||
| _args_schema.sku = AAZStrArg( | ||
| options=["--sku"], | ||
| help="Name of SKU used to filter the regions.", | ||
| enum={"Basic": "Basic", "Dynamic": "Dynamic", "ElasticIsolated": "ElasticIsolated", "ElasticPremium": "ElasticPremium", "FlexConsumption": "FlexConsumption", "Free": "Free", "Isolated": "Isolated", "IsolatedV2": "IsolatedV2", "Premium": "Premium", "PremiumContainer": "PremiumContainer", "PremiumV2": "PremiumV2", "PremiumV3": "PremiumV3", "Shared": "Shared", "Standard": "Standard"}, | ||
| ) | ||
| _args_schema.hyperv_workers_enabled = AAZBoolArg( | ||
| options=["--hyperv-workers-enabled"], | ||
| help="Get regions which support hosting web apps on Windows Container workers.", | ||
| ) | ||
| return cls._args_schema | ||
|
|
||
| def _execute_operations(self): | ||
| self.pre_operations() | ||
| self.ListGeoRegions(ctx=self.ctx)() | ||
| self.post_operations() | ||
|
|
||
| @register_callback | ||
| def pre_operations(self): | ||
| pass | ||
|
|
||
| @register_callback | ||
| def post_operations(self): | ||
| pass | ||
|
|
||
| def _output(self, *args, **kwargs): | ||
| result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) | ||
| next_link = self.deserialize_output(self.ctx.vars.instance.next_link) | ||
| return result, next_link | ||
|
|
||
| class ListGeoRegions(AAZHttpOperation): | ||
| CLIENT_TYPE = "MgmtClient" | ||
|
|
||
| def __call__(self, *args, **kwargs): | ||
| request = self.make_request() | ||
| session = self.client.send_request(request=request, stream=False, **kwargs) | ||
| if session.http_response.status_code in [200]: | ||
| return self.on_200(session) | ||
|
|
||
| return self.on_error(session.http_response) | ||
|
|
||
| @property | ||
| def url(self): | ||
| return self.client.format_url( | ||
| "/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions", | ||
| **self.url_parameters | ||
| ) | ||
|
|
||
| @property | ||
| def method(self): | ||
| return "GET" | ||
|
|
||
| @property | ||
| def error_format(self): | ||
| return "ODataV4Format" | ||
|
|
||
| @property | ||
| def url_parameters(self): | ||
| parameters = { | ||
| **self.serialize_url_param( | ||
| "subscriptionId", self.ctx.subscription_id, | ||
| required=True, | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def query_parameters(self): | ||
| parameters = { | ||
| **self.serialize_query_param( | ||
| "customModeWorkersEnabled", self.ctx.args.custom_mode_workers_enabled, | ||
| ), | ||
| **self.serialize_query_param( | ||
| "linuxDynamicWorkersEnabled", self.ctx.args.linux_dynamic_workers_enabled, | ||
| ), | ||
| **self.serialize_query_param( | ||
| "linuxWorkersEnabled", self.ctx.args.linux_workers_enabled, | ||
| ), | ||
| **self.serialize_query_param( | ||
| "sku", self.ctx.args.sku, | ||
| ), | ||
| **self.serialize_query_param( | ||
| "xenonWorkersEnabled", self.ctx.args.hyperv_workers_enabled, | ||
| ), | ||
| **self.serialize_query_param( | ||
| "api-version", "2025-03-01", | ||
| required=True, | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def header_parameters(self): | ||
| parameters = { | ||
| **self.serialize_header_param( | ||
| "Accept", "application/json", | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| def on_200(self, session): | ||
| data = self.deserialize_http_content(session) | ||
| self.ctx.set_var( | ||
| "instance", | ||
| data, | ||
| schema_builder=self._build_schema_on_200 | ||
| ) | ||
|
|
||
| _schema_on_200 = None | ||
|
|
||
| @classmethod | ||
| def _build_schema_on_200(cls): | ||
| if cls._schema_on_200 is not None: | ||
| return cls._schema_on_200 | ||
|
|
||
| cls._schema_on_200 = AAZObjectType() | ||
|
|
||
| _schema_on_200 = cls._schema_on_200 | ||
| _schema_on_200.next_link = AAZStrType( | ||
| serialized_name="nextLink", | ||
| flags={"read_only": True}, | ||
| ) | ||
| _schema_on_200.value = AAZListType( | ||
| flags={"required": True}, | ||
| ) | ||
|
|
||
| value = cls._schema_on_200.value | ||
| value.Element = AAZObjectType() | ||
|
|
||
| _element = cls._schema_on_200.value.Element | ||
| _element.id = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.kind = AAZStrType() | ||
| _element.name = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.properties = AAZObjectType( | ||
| flags={"client_flatten": True}, | ||
| ) | ||
| _element.type = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
|
|
||
| properties = cls._schema_on_200.value.Element.properties | ||
| properties.description = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| properties.display_name = AAZStrType( | ||
| serialized_name="displayName", | ||
| flags={"read_only": True}, | ||
| ) | ||
| properties.org_domain = AAZStrType( | ||
| serialized_name="orgDomain", | ||
| flags={"read_only": True}, | ||
| ) | ||
|
|
||
| return cls._schema_on_200 | ||
|
|
||
|
|
||
| class _ListLocationsHelper: | ||
| """Helper class for ListLocations""" | ||
|
|
||
|
|
||
| __all__ = ["ListLocations"] |
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
5 changes: 5 additions & 0 deletions
5
src/azure-cli/azure/cli/command_modules/appservice/linter_exclusions.yml
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.