-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[Network] az network ddos-custom-policy: Support specifying frontend IP configuration associations
#33413
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
necusjz
merged 6 commits into
Azure:dev
from
huiii99:feat/network-ddos-custom-policy-update-33383
Jun 11, 2026
Merged
[Network] az network ddos-custom-policy: Support specifying frontend IP configuration associations
#33413
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
22a7c14
feat: upgrade ddos custom policy api version
huiii99 da7d7bc
feat: upgrade LB/LB FIP api version to support DCP
huiii99 ba2fdfc
fix: arg too long
huiii99 d850356
test: update test recording
huiii99 c93054e
test: update test recording
huiii99 89ddb8a
fix: lb list missing resource
huiii99 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
Some comments aren't visible on the classic Files Changed page.
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
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
263 changes: 263 additions & 0 deletions
263
...zure-cli/azure/cli/command_modules/network/aaz/latest/network/ddos_custom_policy/_list.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,263 @@ | ||
| # -------------------------------------------------------------------------------------------- | ||
| # 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 * | ||
|
|
||
|
|
||
| @register_command( | ||
| "network ddos-custom-policy list", | ||
| ) | ||
| class List(AAZCommand): | ||
| """List all the DDoS custom policies in a resource group. | ||
| """ | ||
|
|
||
| _aaz_info = { | ||
| "version": "2025-07-01", | ||
| "resources": [ | ||
| ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.network/ddoscustompolicies", "2025-07-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.resource_group = AAZResourceGroupNameArg( | ||
| required=True, | ||
| ) | ||
| return cls._args_schema | ||
|
|
||
| def _execute_operations(self): | ||
| self.pre_operations() | ||
| self.DdosCustomPoliciesList(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 DdosCustomPoliciesList(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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/ddosCustomPolicies", | ||
| **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( | ||
| "resourceGroupName", self.ctx.args.resource_group, | ||
| required=True, | ||
| ), | ||
| **self.serialize_url_param( | ||
| "subscriptionId", self.ctx.subscription_id, | ||
| required=True, | ||
| ), | ||
| } | ||
| return parameters | ||
|
|
||
| @property | ||
| def query_parameters(self): | ||
| parameters = { | ||
| **self.serialize_query_param( | ||
| "api-version", "2025-07-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", | ||
| ) | ||
| _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.etag = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.id = AAZStrType() | ||
| _element.location = AAZStrType() | ||
| _element.name = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.properties = AAZObjectType( | ||
| flags={"client_flatten": True}, | ||
| ) | ||
| _element.tags = AAZDictType() | ||
| _element.type = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
|
|
||
| properties = cls._schema_on_200.value.Element.properties | ||
| properties.detection_rules = AAZListType( | ||
| serialized_name="detectionRules", | ||
| ) | ||
| properties.front_end_ip_configuration = AAZListType( | ||
| serialized_name="frontEndIpConfiguration", | ||
| ) | ||
| properties.provisioning_state = AAZStrType( | ||
| serialized_name="provisioningState", | ||
| flags={"read_only": True}, | ||
| ) | ||
| properties.public_ip_addresses = AAZListType( | ||
| serialized_name="publicIPAddresses", | ||
| flags={"read_only": True}, | ||
| ) | ||
| properties.resource_guid = AAZStrType( | ||
| serialized_name="resourceGuid", | ||
| flags={"read_only": True}, | ||
| ) | ||
|
|
||
| detection_rules = cls._schema_on_200.value.Element.properties.detection_rules | ||
| detection_rules.Element = AAZObjectType() | ||
|
|
||
| _element = cls._schema_on_200.value.Element.properties.detection_rules.Element | ||
| _element.etag = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.id = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
| _element.name = AAZStrType() | ||
| _element.properties = AAZObjectType( | ||
| flags={"client_flatten": True}, | ||
| ) | ||
| _element.type = AAZStrType( | ||
| flags={"read_only": True}, | ||
| ) | ||
|
|
||
| properties = cls._schema_on_200.value.Element.properties.detection_rules.Element.properties | ||
| properties.detection_mode = AAZStrType( | ||
| serialized_name="detectionMode", | ||
| ) | ||
| properties.provisioning_state = AAZStrType( | ||
| serialized_name="provisioningState", | ||
| flags={"read_only": True}, | ||
| ) | ||
| properties.traffic_detection_rule = AAZObjectType( | ||
| serialized_name="trafficDetectionRule", | ||
| ) | ||
|
|
||
| traffic_detection_rule = cls._schema_on_200.value.Element.properties.detection_rules.Element.properties.traffic_detection_rule | ||
| traffic_detection_rule.packets_per_second = AAZIntType( | ||
| serialized_name="packetsPerSecond", | ||
| ) | ||
| traffic_detection_rule.traffic_type = AAZStrType( | ||
| serialized_name="trafficType", | ||
| ) | ||
|
|
||
| front_end_ip_configuration = cls._schema_on_200.value.Element.properties.front_end_ip_configuration | ||
| front_end_ip_configuration.Element = AAZObjectType() | ||
| _ListHelper._build_schema_common_sub_resource_read(front_end_ip_configuration.Element) | ||
|
|
||
| public_ip_addresses = cls._schema_on_200.value.Element.properties.public_ip_addresses | ||
| public_ip_addresses.Element = AAZObjectType() | ||
| _ListHelper._build_schema_common_sub_resource_read(public_ip_addresses.Element) | ||
|
|
||
| tags = cls._schema_on_200.value.Element.tags | ||
| tags.Element = AAZStrType() | ||
|
|
||
| return cls._schema_on_200 | ||
|
|
||
|
|
||
| class _ListHelper: | ||
| """Helper class for List""" | ||
|
|
||
| _schema_common_sub_resource_read = None | ||
|
|
||
| @classmethod | ||
| def _build_schema_common_sub_resource_read(cls, _schema): | ||
| if cls._schema_common_sub_resource_read is not None: | ||
| _schema.id = cls._schema_common_sub_resource_read.id | ||
| return | ||
|
|
||
| cls._schema_common_sub_resource_read = _schema_common_sub_resource_read = AAZObjectType() | ||
|
|
||
| common_sub_resource_read = _schema_common_sub_resource_read | ||
| common_sub_resource_read.id = AAZStrType() | ||
|
|
||
| _schema.id = cls._schema_common_sub_resource_read.id | ||
|
|
||
|
|
||
| __all__ = ["List"] |
Oops, something went wrong.
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.