Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"network express-route",
)
class __CMDGroup(AAZCommandGroup):
"""Manage dedicated private network fiber connections to Azure.
"""Manage Express Route Circuit

To learn more about ExpressRoute circuits visit https://learn.microsoft.com/azure/expressroute/howto-circuit-cli.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@
from .__cmd_group import *
from ._create import *
from ._delete import *
from ._get_link_failover_all_tests_detail import *
from ._get_link_failover_single_test_detail import *
from ._get_stats import *
from ._list import *
from ._list_arp_tables import *
from ._list_route_tables import *
from ._list_route_tables_summary import *
from ._list_service_providers import *
from ._show import *
from ._start_link_failover_test import *
from ._stop_link_failover_test import *
from ._update import *
from ._wait import *
Original file line number Diff line number Diff line change
@@ -0,0 +1,267 @@
# --------------------------------------------------------------------------------------------
# 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 express-route get-link-failover-all-tests-detail",
)
class GetLinkFailoverAllTestsDetail(AAZCommand):
"""This operation retrieves the details of all the failover tests performed on the ExpressRoute circuit for different peering locations

:example: ExpressRouteCircuitLinkFailoverAllTestsDetails
az network express-route get-link-failover-all-tests-detail --resource-group rg1 --name erckt --type LinkFailover --fetch-latest true
"""

_aaz_info = {
"version": "2025-07-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.network/expressroutecircuits/{}/getlinkfailoveralltestsdetails", "2025-07-01"],
]
}

AZ_SUPPORT_NO_WAIT = True

def _handler(self, command_args):
super()._handler(command_args)
return self.build_lro_poller(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.name = AAZStrArg(
options=["--name"],
help="The name of the express route circuit.",
required=True,
id_part="name",
fmt=AAZStrArgFormat(
pattern="^[A-Za-z0-9_-]+",
),
)
_args_schema.resource_group = AAZResourceGroupNameArg(
required=True,
)
_args_schema.type = AAZStrArg(
options=["--type"],
help="The type of failover test",
required=True,
enum={"All": "All", "LinkFailover": "LinkFailover", "MultiSiteFailover": "MultiSiteFailover", "SingleSiteFailover": "SingleSiteFailover"},
)
_args_schema.fetch_latest = AAZBoolArg(
options=["--fetch-latest"],
help="Fetch only the latest tests for each peering location",
required=True,
)
return cls._args_schema

def _execute_operations(self):
self.pre_operations()
yield self.ExpressRouteCircuitsGetLinkFailoverAllTestsDetails(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, client_flatten=True)
return result

class ExpressRouteCircuitsGetLinkFailoverAllTestsDetails(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 [202]:
return self.client.build_lro_polling(
self.ctx.args.no_wait,
session,
self.on_200,
self.on_error,
lro_options={"final-state-via": "location"},
path_format_arguments=self.url_parameters,
)
if session.http_response.status_code in [200]:
return self.client.build_lro_polling(
self.ctx.args.no_wait,
session,
self.on_200,
self.on_error,
lro_options={"final-state-via": "location"},
path_format_arguments=self.url_parameters,
)

return self.on_error(session.http_response)

@property
def url(self):
return self.client.format_url(
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{expressRouteCircuitName}/getCircuitLinkFailoverAllTestsDetails",
**self.url_parameters
)

@property
def method(self):
return "POST"

@property
def error_format(self):
return "ODataV4Format"

@property
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"expressRouteCircuitName", self.ctx.args.name,
required=True,
),
**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(
"failoverTestType", self.ctx.args.type,
required=True,
),
**self.serialize_query_param(
"fetchLatest", self.ctx.args.fetch_latest,
required=True,
),
**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.value = AAZListType()

value = cls._schema_on_200.value
value.Element = AAZObjectType()

_element = cls._schema_on_200.value.Element
_element.bgp_status = AAZListType(
serialized_name="bgpStatus",
flags={"read_only": True},
)
_element.circuit_test_category = AAZStrType(
serialized_name="circuitTestCategory",
flags={"read_only": True},
)
_element.end_time = AAZStrType(
serialized_name="endTime",
flags={"read_only": True},
)
_element.issues = AAZListType(
flags={"read_only": True},
)
_element.link_type = AAZStrType(
serialized_name="linkType",
flags={"read_only": True},
)
_element.start_time = AAZStrType(
serialized_name="startTime",
flags={"read_only": True},
)
_element.status = AAZStrType(
flags={"read_only": True},
)
_element.test_guid = AAZStrType(
serialized_name="testGuid",
flags={"read_only": True},
)
_element.test_type = AAZStrType(
serialized_name="testType",
flags={"read_only": True},
)
_element.was_simulation_successful = AAZBoolType(
serialized_name="wasSimulationSuccessful",
flags={"read_only": True},
)

bgp_status = cls._schema_on_200.value.Element.bgp_status
bgp_status.Element = AAZObjectType()

_element = cls._schema_on_200.value.Element.bgp_status.Element
_element.bgp_status_type = AAZStrType(
serialized_name="bgpStatusType",
flags={"read_only": True},
)
_element.check_time = AAZStrType(
serialized_name="checkTime",
flags={"read_only": True},
)
_element.link = AAZStrType()
_element.status = AAZStrType(
flags={"read_only": True},
)

issues = cls._schema_on_200.value.Element.issues
issues.Element = AAZStrType()

return cls._schema_on_200


class _GetLinkFailoverAllTestsDetailHelper:
"""Helper class for GetLinkFailoverAllTestsDetail"""


__all__ = ["GetLinkFailoverAllTestsDetail"]
Loading
Loading