From 0317ac4b4ca48d5934840ccfd2cb63e2eb3dc145 Mon Sep 17 00:00:00 2001 From: Jaishal Shah Date: Sun, 18 Jun 2023 23:50:56 -0700 Subject: [PATCH 1/3] ALB extension with api version support --- src/{traffic-controller => alb}/HISTORY.rst | 0 src/alb/README.md | 13 + .../azext_alb}/__init__.py | 8 +- .../azext_alb}/_help.py | 0 .../azext_alb}/_params.py | 0 .../azext_alb}/aaz/__init__.py | 0 .../azext_alb}/aaz/latest/__init__.py | 0 .../aaz/latest/network}/__cmd_group.py | 5 +- .../azext_alb/aaz/latest/network}/__init__.py | 0 .../aaz/latest/network/alb}/__cmd_group.py | 5 +- .../aaz/latest/network/alb}/__init__.py | 0 .../aaz/latest/network/alb}/_create.py | 23 +- .../aaz/latest/network/alb}/_delete.py | 23 +- .../aaz/latest/network/alb}/_list.py | 23 +- .../aaz/latest/network/alb}/_show.py | 23 +- .../aaz/latest/network/alb}/_update.py | 29 +- .../aaz/latest/network/alb}/_wait.py | 14 +- .../network/alb/association}/__cmd_group.py | 5 +- .../network/alb}/association/__init__.py | 0 .../network/alb}/association/_create.py | 27 +- .../network/alb}/association/_delete.py | 25 +- .../latest/network/alb}/association/_list.py | 23 +- .../latest/network/alb}/association/_show.py | 25 +- .../network/alb}/association/_update.py | 25 +- .../latest/network/alb}/association/_wait.py | 16 +- .../network/alb/frontend}/__cmd_group.py | 5 +- .../latest/network/alb}/frontend/__init__.py | 0 .../latest/network/alb}/frontend/_create.py | 71 +- .../latest/network/alb}/frontend/_delete.py | 25 +- .../aaz/latest/network/alb}/frontend/_list.py | 36 +- .../aaz/latest/network/alb}/frontend/_show.py | 38 +- .../latest/network/alb}/frontend/_update.py | 38 +- .../aaz/latest/network/alb}/frontend/_wait.py | 29 +- src/alb/azext_alb/azext_metadata.json | 4 + .../azext_alb}/commands.py | 5 +- .../azext_alb}/custom.py | 16 +- .../azext_alb}/tests/__init__.py | 0 .../azext_alb}/tests/latest/__init__.py | 0 .../latest/recordings/test_alb_resources.yaml | 5634 ++++++++++++++++ .../tests/latest/test_alb_commands.py | 84 + src/{traffic-controller => alb}/setup.cfg | 0 src/{traffic-controller => alb}/setup.py | 10 +- src/service_name.json | 10 +- src/traffic-controller/README.md | 13 - .../azext_metadata.json | 4 - .../test_trafficcontroller_resources.yaml | 5803 ----------------- .../latest/test_trafficcontroller_commands.py | 87 - 47 files changed, 5969 insertions(+), 6255 deletions(-) rename src/{traffic-controller => alb}/HISTORY.rst (100%) create mode 100644 src/alb/README.md rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/__init__.py (81%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/_help.py (100%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/_params.py (100%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/aaz/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/aaz/latest/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking => alb/azext_alb/aaz/latest/network}/__cmd_group.py (86%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking => alb/azext_alb/aaz/latest/network}/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/__cmd_group.py (81%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_create.py (94%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_delete.py (88%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_list.py (95%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_show.py (92%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_update.py (93%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/_wait.py (95%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend => alb/azext_alb/aaz/latest/network/alb/association}/__cmd_group.py (78%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_create.py (92%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_delete.py (87%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_list.py (91%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_show.py (90%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_update.py (95%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/association/_wait.py (94%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association => alb/azext_alb/aaz/latest/network/alb/frontend}/__cmd_group.py (78%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_create.py (76%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_delete.py (88%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_list.py (85%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_show.py (85%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_update.py (92%) rename src/{traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller => alb/azext_alb/aaz/latest/network/alb}/frontend/_wait.py (88%) create mode 100644 src/alb/azext_alb/azext_metadata.json rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/commands.py (67%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/custom.py (64%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/tests/__init__.py (100%) rename src/{traffic-controller/azext_traffic_controller => alb/azext_alb}/tests/latest/__init__.py (100%) create mode 100644 src/alb/azext_alb/tests/latest/recordings/test_alb_resources.yaml create mode 100644 src/alb/azext_alb/tests/latest/test_alb_commands.py rename src/{traffic-controller => alb}/setup.cfg (100%) rename src/{traffic-controller => alb}/setup.py (86%) delete mode 100644 src/traffic-controller/README.md delete mode 100644 src/traffic-controller/azext_traffic_controller/azext_metadata.json delete mode 100644 src/traffic-controller/azext_traffic_controller/tests/latest/recordings/test_trafficcontroller_resources.yaml delete mode 100644 src/traffic-controller/azext_traffic_controller/tests/latest/test_trafficcontroller_commands.py diff --git a/src/traffic-controller/HISTORY.rst b/src/alb/HISTORY.rst similarity index 100% rename from src/traffic-controller/HISTORY.rst rename to src/alb/HISTORY.rst diff --git a/src/alb/README.md b/src/alb/README.md new file mode 100644 index 00000000000..020e765c58b --- /dev/null +++ b/src/alb/README.md @@ -0,0 +1,13 @@ +# Azure CLI ALB Extension # +This is an extension to Azure CLI to manage Application Gateway for Containers resources. + +## How to use ## +First, install the extension: +``` +az extension add --name alb +``` + +Then, call it as you would any other az command: +``` +az network alb -h +``` \ No newline at end of file diff --git a/src/traffic-controller/azext_traffic_controller/__init__.py b/src/alb/azext_alb/__init__.py similarity index 81% rename from src/traffic-controller/azext_traffic_controller/__init__.py rename to src/alb/azext_alb/__init__.py index 9a720f51b39..3ace7eac5a8 100644 --- a/src/traffic-controller/azext_traffic_controller/__init__.py +++ b/src/alb/azext_alb/__init__.py @@ -6,7 +6,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.core import AzCommandsLoader -from azext_traffic_controller._help import helps # pylint: disable=unused-import +from azext_alb._help import helps # pylint: disable=unused-import class TrafficControllerCommandsLoader(AzCommandsLoader): @@ -14,12 +14,12 @@ class TrafficControllerCommandsLoader(AzCommandsLoader): def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType custom_command_type = CliCommandType( - operations_tmpl='azext_traffic_controller.custom#{}') + operations_tmpl='azext_alb.custom#{}') super().__init__(cli_ctx=cli_ctx, custom_command_type=custom_command_type) def load_command_table(self, args): - from azext_traffic_controller.commands import load_command_table + from azext_alb.commands import load_command_table from azure.cli.core.aaz import load_aaz_command_table try: from . import aaz @@ -35,7 +35,7 @@ def load_command_table(self, args): return self.command_table def load_arguments(self, command): - from azext_traffic_controller._params import load_arguments + from azext_alb._params import load_arguments load_arguments(self, command) diff --git a/src/traffic-controller/azext_traffic_controller/_help.py b/src/alb/azext_alb/_help.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/_help.py rename to src/alb/azext_alb/_help.py diff --git a/src/traffic-controller/azext_traffic_controller/_params.py b/src/alb/azext_alb/_params.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/_params.py rename to src/alb/azext_alb/_params.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/__init__.py b/src/alb/azext_alb/aaz/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/__init__.py rename to src/alb/azext_alb/aaz/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/__init__.py b/src/alb/azext_alb/aaz/latest/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/__init__.py rename to src/alb/azext_alb/aaz/latest/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/__cmd_group.py b/src/alb/azext_alb/aaz/latest/network/__cmd_group.py similarity index 86% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/__cmd_group.py rename to src/alb/azext_alb/aaz/latest/network/__cmd_group.py index 8b47ae10d94..5093d2928ba 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/__cmd_group.py +++ b/src/alb/azext_alb/aaz/latest/network/__cmd_group.py @@ -12,11 +12,10 @@ @register_command_group( - "service-networking", - is_preview=True, + "network", ) class __CMDGroup(AAZCommandGroup): - """Manage Service Networking Resources + """Manage Azure Network resources. """ pass diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/__init__.py b/src/alb/azext_alb/aaz/latest/network/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/__init__.py rename to src/alb/azext_alb/aaz/latest/network/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/__cmd_group.py b/src/alb/azext_alb/aaz/latest/network/alb/__cmd_group.py similarity index 81% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/__cmd_group.py rename to src/alb/azext_alb/aaz/latest/network/alb/__cmd_group.py index 5a528b19e9d..c97717ca5f8 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/__cmd_group.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/__cmd_group.py @@ -12,11 +12,10 @@ @register_command_group( - "service-networking traffic-controller", - is_preview=True, + "network alb", ) class __CMDGroup(AAZCommandGroup): - """Manage and Configure Azure Traffic Controller Resource + """Manage and Configure Application Gateway for Containers """ pass diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/__init__.py b/src/alb/azext_alb/aaz/latest/network/alb/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/__init__.py rename to src/alb/azext_alb/aaz/latest/network/alb/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_create.py b/src/alb/azext_alb/aaz/latest/network/alb/_create.py similarity index 94% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_create.py rename to src/alb/azext_alb/aaz/latest/network/alb/_create.py index 225543cf089..2ced09e86f6 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_create.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_create.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller create", - is_preview=True, + "network alb create", ) class Create(AAZCommand): - """Create a Traffic Controller + """Create an Application Gateway for Containers resource - :example: Create a Traffic Controller - az service-networking traffic-controller create -g testRG -n testTC + :example: Create an Application Gateway for Containers resource + az network alb create -g test-rg -n test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2023-05-01-preview"], ] } @@ -49,9 +48,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["-n", "--name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="Name of the resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -150,7 +149,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -160,7 +159,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_delete.py b/src/alb/azext_alb/aaz/latest/network/alb/_delete.py similarity index 88% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_delete.py rename to src/alb/azext_alb/aaz/latest/network/alb/_delete.py index 7d81dd84483..25ea055fff5 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_delete.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_delete.py @@ -12,21 +12,20 @@ @register_command( - "service-networking traffic-controller delete", - is_preview=True, + "network alb delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete a Traffic Controller + """Delete an Application Gateway for Containers resource - :example: Delete a Traffic Controller Resource - az service-networking traffic-controller delete -g testRG -n testTC + :example: Delete an Application Gateway for Containers resource + az network alb delete -g test-rg -n test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2023-05-01-preview"], ] } @@ -50,9 +49,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["-n", "--name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="Name of the resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -137,7 +136,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -147,7 +146,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_list.py b/src/alb/azext_alb/aaz/latest/network/alb/_list.py similarity index 95% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_list.py rename to src/alb/azext_alb/aaz/latest/network/alb/_list.py index a1b7b70adc0..24370bdad1a 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_list.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_list.py @@ -12,24 +12,23 @@ @register_command( - "service-networking traffic-controller list", - is_preview=True, + "network alb list", ) class List(AAZCommand): - """List Traffic Controllers + """List Application Gateway for Containers resource - :example: List Traffic Controllers in resource group - az service-networking traffic-controller list -g testRG + :example: List Application Gateway for Containers in resource group + az network alb list -g test-rg - :example: List all Traffic Controllers in a subscription - az service-networking traffic-controller list + :example: List all Application Gateway for Containers in subscription + az network alb list """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicenetworking/trafficcontrollers", "2022-10-01-preview"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicenetworking/trafficcontrollers", "2023-05-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers", "2023-05-01-preview"], ] } @@ -118,7 +117,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -274,7 +273,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_show.py b/src/alb/azext_alb/aaz/latest/network/alb/_show.py similarity index 92% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_show.py rename to src/alb/azext_alb/aaz/latest/network/alb/_show.py index 74803fe5790..7e1b90ded40 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_show.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_show.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller show", - is_preview=True, + "network alb show", ) class Show(AAZCommand): - """Get a Traffic Controller + """Get an Application Gateway for Containers resource - :example: Get the details of a Traffic Controller - az service-networking traffic-controller show -g testRG -n testTC + :example: Get the details of an Application Gateway for Containers resource + az network alb show -g test-rg -n test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2023-05-01-preview"], ] } @@ -48,9 +47,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["-n", "--name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="Name of the resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -114,7 +113,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -124,7 +123,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_update.py b/src/alb/azext_alb/aaz/latest/network/alb/_update.py similarity index 93% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_update.py rename to src/alb/azext_alb/aaz/latest/network/alb/_update.py index bc94086c15f..3082706dd7e 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_update.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_update.py @@ -12,22 +12,21 @@ @register_command( - "service-networking traffic-controller update", - is_preview=True, + "network alb update", ) class Update(AAZCommand): - """Update a Traffic Controller + """Update an Application Gateway for Containers resource - This command can only be used to update the tags for a traffic controller. Name and resource group are immutable and cannot be updated + This command can only be used to update the tags for the resource. Name and resource group are immutable and cannot be updated - :example: Update the tags of a traffic controller - az service-networking traffic-controller update -g testRG -n testTC --set tags.CostCenter=testBusinessGroup + :example: Update the tags of the resource + az network alb update -g test-rg -n test-alb --set tags.CostCenter=testBusinessGroup """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2023-05-01-preview"], ] } @@ -53,9 +52,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["-n", "--name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="Name of the resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -147,7 +146,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -157,7 +156,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -246,7 +245,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -256,7 +255,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_wait.py b/src/alb/azext_alb/aaz/latest/network/alb/_wait.py similarity index 95% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_wait.py rename to src/alb/azext_alb/aaz/latest/network/alb/_wait.py index fe4dbe991d7..793e5011827 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/_wait.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/_wait.py @@ -12,7 +12,7 @@ @register_command( - "service-networking traffic-controller wait", + "network alb wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}", "2023-05-01-preview"], ] } @@ -43,9 +43,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["-n", "--name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.name = AAZStrArg( + options=["-n", "--name"], + help="Name of the resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -109,7 +109,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.name, required=True, ), } @@ -119,7 +119,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/__cmd_group.py b/src/alb/azext_alb/aaz/latest/network/alb/association/__cmd_group.py similarity index 78% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/__cmd_group.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/__cmd_group.py index ff8afb31592..f8ff72e3d26 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/__cmd_group.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/__cmd_group.py @@ -12,11 +12,10 @@ @register_command_group( - "service-networking traffic-controller frontend", - is_preview=True, + "network alb association", ) class __CMDGroup(AAZCommandGroup): - """Manage and Configure Frontends for Azure Traffic Controller Resource + """Manage and Configure Associations for Application Gateway for Containers resource """ pass diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/__init__.py b/src/alb/azext_alb/aaz/latest/network/alb/association/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/__init__.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_create.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_create.py similarity index 92% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_create.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_create.py index 95468f862e2..5e0df62c7d9 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_create.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_create.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller association create", - is_preview=True, + "network alb association create", ) class Create(AAZCommand): - """Create a Traffic Controller Association + """Create an Application Gateway for Containers association resource - :example: Create a Traffic Controller Association - az service-networking traffic-controller association create -g testRG -n testAssociation --traffic-controller-name testTC --subnet + :example: Create an Application Gateway for Containers association resource + az network alb association create -g test-rg -n test-association --alb-name test-alb --subnet """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2023-05-01-preview"], ] } @@ -48,7 +47,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.association_name = AAZStrArg( options=["-n", "--name", "--association-name"], - help="Name of Association", + help="Name of the association resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -57,9 +56,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -78,7 +77,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.subnet = AAZStrArg( options=["--subnet"], arg_group="Properties", - help="Name or Id of exiting Subnet resource", + help="Name or Id of exiting subnet resource", ) # define Arg Group "Resource" @@ -177,7 +176,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -187,7 +186,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_delete.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_delete.py similarity index 87% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_delete.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_delete.py index f8724c78b35..b1bdc560203 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_delete.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_delete.py @@ -12,21 +12,20 @@ @register_command( - "service-networking traffic-controller association delete", - is_preview=True, + "network alb association delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete a Traffic Controller Association + """Delete an Application Gateway for Containers association resource - :example: Delete a Traffic Controller Association - az service-networking traffic-controller association create -g testRG -n testAssociation --traffic-controller-name testTC + :example: Delete an Application Gateway for Containers association resource + az network alb association delete -g test-rg -n test-association --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2023-05-01-preview"], ] } @@ -49,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.association_name = AAZStrArg( options=["-n", "--name", "--association-name"], - help="Name of Association", + help="Name of the association resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -59,9 +58,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -150,7 +149,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -160,7 +159,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_list.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_list.py similarity index 91% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_list.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_list.py index 42028e66a59..0359daa7f06 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_list.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_list.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller association list", - is_preview=True, + "network alb association list", ) class List(AAZCommand): - """List all Association resources by Traffic Controller + """List all associations for an Application Gateway for Containers resource - :example: List associations for a traffic controller - az service-networking traffic-controller association list -g testRG --traffic-controller-name testTC + :example: List all associations for an Application Gateway for Containers resource + az network alb association list -g test-rg --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations", "2023-05-01-preview"], ] } @@ -47,9 +46,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -113,7 +112,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -123,7 +122,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_show.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_show.py similarity index 90% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_show.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_show.py index 2c7fa67fa47..31f47690b82 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_show.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_show.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller association show", - is_preview=True, + "network alb association show", ) class Show(AAZCommand): - """Get a Traffic Controller Association + """Get an Application Gateway for Containers association resource - :example: Get the details of an Association - az service-networking traffic-controller association show -g testRG -n testAssociation --traffic-controller-name testTC + :example: Get the details of an Application Gateway for containers association resource + az network alb association show -g test-rg -n test-association --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2023-05-01-preview"], ] } @@ -47,7 +46,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.association_name = AAZStrArg( options=["-n", "--name", "--association-name"], - help="Name of Association", + help="Name of the association resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -57,9 +56,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -127,7 +126,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -137,7 +136,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_update.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_update.py similarity index 95% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_update.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_update.py index 8a4446e0eec..728196cb527 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_update.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_update.py @@ -12,17 +12,16 @@ @register_command( - "service-networking traffic-controller association update", - is_preview=True, + "network alb association update", ) class Update(AAZCommand): - """Update a Traffic Controller Association + """Update an Application Gateway for Containers association resource """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2023-05-01-preview"], ] } @@ -47,7 +46,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.association_name = AAZStrArg( options=["-n", "--name", "--association-name"], - help="Name of Association", + help="Name of the association resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -57,9 +56,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -155,7 +154,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -165,7 +164,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -258,7 +257,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -268,7 +267,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_wait.py b/src/alb/azext_alb/aaz/latest/network/alb/association/_wait.py similarity index 94% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_wait.py rename to src/alb/azext_alb/aaz/latest/network/alb/association/_wait.py index b7b14cc3953..da70d8b521c 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/_wait.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/association/_wait.py @@ -12,7 +12,7 @@ @register_command( - "service-networking traffic-controller association wait", + "network alb association wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/associations/{}", "2023-05-01-preview"], ] } @@ -42,7 +42,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.association_name = AAZStrArg( options=["-n", "--name", "--association-name"], - help="Name of Association", + help="Name of the association resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -52,9 +52,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -122,7 +122,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -132,7 +132,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/__cmd_group.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/__cmd_group.py similarity index 78% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/__cmd_group.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/__cmd_group.py index 87a97e68694..66edf408727 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/association/__cmd_group.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/__cmd_group.py @@ -12,11 +12,10 @@ @register_command_group( - "service-networking traffic-controller association", - is_preview=True, + "network alb frontend", ) class __CMDGroup(AAZCommandGroup): - """Manage and Configure Associations for Azure Traffic Controller Resource + """Manage and Configure Frontends for Application Gateway for Containers resource """ pass diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/__init__.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/__init__.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_create.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_create.py similarity index 76% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_create.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_create.py index c310cbb845b..baac2bc8404 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_create.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_create.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller frontend create", - is_preview=True, + "network alb frontend create", ) class Create(AAZCommand): - """Create a Traffic Controller Frontend + """Create an Application Gateway for Containers frontend resource - :example: Create a Public frontend on Traffic Controller - az service-networking traffic-controller frontend create -g testRG -n testFrontend --traffic-controller-name testTC --public-ip-address + :example: Create an Application Gateway for Containers frontend resource + az network alb frontend create -g test-rg -n test-frontend --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2023-05-01-preview"], ] } @@ -48,7 +47,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.frontend_name = AAZStrArg( options=["-n", "--name", "--frontend-name"], - help="Frontends", + help="Name of the frontend resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -57,37 +56,15 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", ), ) - # define Arg Group "Properties" - - _args_schema = cls._args_schema - _args_schema.ip_address_version = AAZStrArg( - options=["--ip-address-version"], - arg_group="Properties", - help="Frontend IP Address Version (Optional).", - enum={"IPv4": "IPv4", "IPv6": "IPv6"}, - ) - _args_schema.mode = AAZStrArg( - options=["--mode"], - arg_group="Properties", - help="Frontend Mode (Optional).", - default="public", - enum={"public": "public"}, - ) - _args_schema.public_ip_address = AAZStrArg( - options=["--public-ip-address"], - arg_group="Properties", - help="Name or Id of existing PublicIP Address Resource", - ) - # define Arg Group "Resource" _args_schema = cls._args_schema @@ -184,7 +161,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -194,7 +171,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -220,19 +197,8 @@ def content(self): typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) - _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("tags", AAZDictType, ".tags") - properties = _builder.get(".properties") - if properties is not None: - properties.set_prop("ipAddressVersion", AAZStrType, ".ip_address_version") - properties.set_prop("mode", AAZStrType, ".mode") - properties.set_prop("publicIPAddress", AAZObjectType) - - public_ip_address = _builder.get(".properties.publicIPAddress") - if public_ip_address is not None: - public_ip_address.set_prop("id", AAZStrType, ".public_ip_address", typ_kwargs={"flags": {"required": True}}) - tags = _builder.get(".tags") if tags is not None: tags.set_elements(AAZStrType, ".") @@ -279,21 +245,12 @@ def _build_schema_on_200_201(cls): ) properties = cls._schema_on_200_201.properties - properties.ip_address_version = AAZStrType( - serialized_name="ipAddressVersion", + properties.fqdn = AAZStrType( + flags={"read_only": True}, ) - properties.mode = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", ) - properties.public_ip_address = AAZObjectType( - serialized_name="publicIPAddress", - ) - - public_ip_address = cls._schema_on_200_201.properties.public_ip_address - public_ip_address.id = AAZStrType( - flags={"required": True}, - ) system_data = cls._schema_on_200_201.system_data system_data.created_at = AAZStrType( diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_delete.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_delete.py similarity index 88% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_delete.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_delete.py index 4d018abd2b4..852553a68bf 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_delete.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_delete.py @@ -12,21 +12,20 @@ @register_command( - "service-networking traffic-controller frontend delete", - is_preview=True, + "network alb frontend delete", confirmation="Are you sure you want to perform this operation?", ) class Delete(AAZCommand): - """Delete a Traffic Controller Frontend + """Delete an Application Gateway for Containers frontend resource - :example: Delete a Traffic Controller Frontend - az service-networking traffic-controller frontend delete -g testRG -n testFrontend --traffic-controller-name testTC + :example: Delete an Application Gateway for Containers frontend resource + az network alb frontend delete -g test-rg -n test-frontend --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2023-05-01-preview"], ] } @@ -49,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.frontend_name = AAZStrArg( options=["-n", "--name", "--frontend-name"], - help="Frontends", + help="Name of the frontend resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -59,9 +58,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -150,7 +149,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -160,7 +159,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_list.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_list.py similarity index 85% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_list.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_list.py index 4f558a4a7be..4adf4568d52 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_list.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_list.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller frontend list", - is_preview=True, + "network alb frontend list", ) class List(AAZCommand): - """List All Frontend resources by TrafficController + """List all frontends for an Application Gateway for Containers resource - :example: List all Frontends for Traffic Controller - az service-networking traffic-controller frontend list -g testRG --traffic-controller-name testTC + :example: List all frontends for an Application Gateway for Containers resource + az network alb frontend list -g test-rg --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends", "2023-05-01-preview"], ] } @@ -47,9 +46,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, fmt=AAZStrArgFormat( pattern="[A-Za-z0-9]+[A-Za-z0-9-_.]{0,62}[A-Za-z0-9_]+", @@ -113,7 +112,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -123,7 +122,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -189,21 +188,12 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.value.Element.properties - properties.ip_address_version = AAZStrType( - serialized_name="ipAddressVersion", + properties.fqdn = AAZStrType( + flags={"read_only": True}, ) - properties.mode = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", ) - properties.public_ip_address = AAZObjectType( - serialized_name="publicIPAddress", - ) - - public_ip_address = cls._schema_on_200.value.Element.properties.public_ip_address - public_ip_address.id = AAZStrType( - flags={"required": True}, - ) system_data = cls._schema_on_200.value.Element.system_data system_data.created_at = AAZStrType( diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_show.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_show.py similarity index 85% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_show.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_show.py index 74e015e4ac9..ea1212d91b1 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_show.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_show.py @@ -12,20 +12,19 @@ @register_command( - "service-networking traffic-controller frontend show", - is_preview=True, + "network alb frontend show", ) class Show(AAZCommand): - """Get a Traffic Controller Frontend + """Get an Application Gateway for Containers frontend resource - :example: Get the details of an Frontend - az service-networking traffic-controller frontend show -g testRG -n testFrontend --traffic-controller-name testTC + :example: Get the details of an Application Gateway for containers frontend resource + az network alb frontend show -g test-rg -n test-frontend --alb-name test-alb """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2023-05-01-preview"], ] } @@ -47,7 +46,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.frontend_name = AAZStrArg( options=["-n", "--name", "--frontend-name"], - help="Frontends", + help="Name of the frontend resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -57,9 +56,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -127,7 +126,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -137,7 +136,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -192,21 +191,12 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.ip_address_version = AAZStrType( - serialized_name="ipAddressVersion", + properties.fqdn = AAZStrType( + flags={"read_only": True}, ) - properties.mode = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", ) - properties.public_ip_address = AAZObjectType( - serialized_name="publicIPAddress", - ) - - public_ip_address = cls._schema_on_200.properties.public_ip_address - public_ip_address.id = AAZStrType( - flags={"required": True}, - ) system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_update.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_update.py similarity index 92% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_update.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_update.py index 99f499c83a5..794e110e26b 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_update.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_update.py @@ -12,17 +12,16 @@ @register_command( - "service-networking traffic-controller frontend update", - is_preview=True, + "network alb frontend update", ) class Update(AAZCommand): - """Update a Traffic Controller Frontend + """Update an Application Gateway for Containers frontend resource """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-05-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2023-05-01-preview"], ] } @@ -47,7 +46,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.frontend_name = AAZStrArg( options=["-n", "--name", "--frontend-name"], - help="Frontends", + help="Name of the frontend resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -57,9 +56,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -155,7 +154,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -165,7 +164,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -258,7 +257,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -268,7 +267,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -385,21 +384,12 @@ def _build_schema_frontend_read(cls, _schema): ) properties = _schema_frontend_read.properties - properties.ip_address_version = AAZStrType( - serialized_name="ipAddressVersion", + properties.fqdn = AAZStrType( + flags={"read_only": True}, ) - properties.mode = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", ) - properties.public_ip_address = AAZObjectType( - serialized_name="publicIPAddress", - ) - - public_ip_address = _schema_frontend_read.properties.public_ip_address - public_ip_address.id = AAZStrType( - flags={"required": True}, - ) system_data = _schema_frontend_read.system_data system_data.created_at = AAZStrType( diff --git a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_wait.py b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_wait.py similarity index 88% rename from src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_wait.py rename to src/alb/azext_alb/aaz/latest/network/alb/frontend/_wait.py index ee451af47c8..5f69d1a6d55 100644 --- a/src/traffic-controller/azext_traffic_controller/aaz/latest/service_networking/traffic_controller/frontend/_wait.py +++ b/src/alb/azext_alb/aaz/latest/network/alb/frontend/_wait.py @@ -12,7 +12,7 @@ @register_command( - "service-networking traffic-controller frontend wait", + "network alb frontend wait", ) class Wait(AAZWaitCommand): """Place the CLI in a waiting state until a condition is met. @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicenetworking/trafficcontrollers/{}/frontends/{}", "2023-05-01-preview"], ] } @@ -42,7 +42,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema = cls._args_schema _args_schema.frontend_name = AAZStrArg( options=["-n", "--name", "--frontend-name"], - help="Frontends", + help="Name of the frontend resource", required=True, id_part="child_name_1", fmt=AAZStrArgFormat( @@ -52,9 +52,9 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.resource_group = AAZResourceGroupNameArg( required=True, ) - _args_schema.traffic_controller_name = AAZStrArg( - options=["--tc-name", "--traffic-controller-name"], - help="Name of the Traffic Controller", + _args_schema.alb_name = AAZStrArg( + options=["--alb-name"], + help="Name of the Application Gateway for Containers resource", required=True, id_part="name", fmt=AAZStrArgFormat( @@ -122,7 +122,7 @@ def url_parameters(self): required=True, ), **self.serialize_url_param( - "trafficControllerName", self.ctx.args.traffic_controller_name, + "trafficControllerName", self.ctx.args.alb_name, required=True, ), } @@ -132,7 +132,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-05-01-preview", required=True, ), } @@ -187,21 +187,12 @@ def _build_schema_on_200(cls): ) properties = cls._schema_on_200.properties - properties.ip_address_version = AAZStrType( - serialized_name="ipAddressVersion", + properties.fqdn = AAZStrType( + flags={"read_only": True}, ) - properties.mode = AAZStrType() properties.provisioning_state = AAZStrType( serialized_name="provisioningState", ) - properties.public_ip_address = AAZObjectType( - serialized_name="publicIPAddress", - ) - - public_ip_address = cls._schema_on_200.properties.public_ip_address - public_ip_address.id = AAZStrType( - flags={"required": True}, - ) system_data = cls._schema_on_200.system_data system_data.created_at = AAZStrType( diff --git a/src/alb/azext_alb/azext_metadata.json b/src/alb/azext_alb/azext_metadata.json new file mode 100644 index 00000000000..9491320bc7d --- /dev/null +++ b/src/alb/azext_alb/azext_metadata.json @@ -0,0 +1,4 @@ +{ + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.48.0" +} \ No newline at end of file diff --git a/src/traffic-controller/azext_traffic_controller/commands.py b/src/alb/azext_alb/commands.py similarity index 67% rename from src/traffic-controller/azext_traffic_controller/commands.py rename to src/alb/azext_alb/commands.py index 018ae226c7b..9a5c4692d4c 100644 --- a/src/traffic-controller/azext_traffic_controller/commands.py +++ b/src/alb/azext_alb/commands.py @@ -10,8 +10,5 @@ def load_command_table(self, _): # pylint: disable=unused-argument - from .custom import FrontendCreate - self.command_table["service-networking traffic-controller frontend create"] = FrontendCreate(loader=self) - from .custom import AssociationCreate - self.command_table["service-networking traffic-controller association create"] = AssociationCreate(loader=self) + self.command_table["network alb association create"] = AssociationCreate(loader=self) diff --git a/src/traffic-controller/azext_traffic_controller/custom.py b/src/alb/azext_alb/custom.py similarity index 64% rename from src/traffic-controller/azext_traffic_controller/custom.py rename to src/alb/azext_alb/custom.py index 8fb17896ec9..9e575f50df2 100644 --- a/src/traffic-controller/azext_traffic_controller/custom.py +++ b/src/alb/azext_alb/custom.py @@ -9,24 +9,10 @@ # pylint: disable=too-many-statements, protected-access from knack.log import get_logger -from .aaz.latest.service_networking.traffic_controller.frontend import Create as _FrontendCreate -from .aaz.latest.service_networking.traffic_controller.association import Create as _AssociationCreate +from .aaz.latest.network.alb.association import Create as _AssociationCreate logger = get_logger(__name__) - -class FrontendCreate(_FrontendCreate): - @classmethod - def _build_arguments_schema(cls, *args, **kwargs): - from azure.cli.core.aaz import AAZResourceIdArgFormat - args_schema = super()._build_arguments_schema(*args, **kwargs) - args_schema.public_ip_address._fmt = AAZResourceIdArgFormat( - template="/subscriptions/{subscription}/resourceGroups/{resource_group}/providers/Microsoft.Network" - "/publicIpAddresses/{}", - ) - return args_schema - - class AssociationCreate(_AssociationCreate): @classmethod def _build_arguments_schema(cls, *args, **kwargs): diff --git a/src/traffic-controller/azext_traffic_controller/tests/__init__.py b/src/alb/azext_alb/tests/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/tests/__init__.py rename to src/alb/azext_alb/tests/__init__.py diff --git a/src/traffic-controller/azext_traffic_controller/tests/latest/__init__.py b/src/alb/azext_alb/tests/latest/__init__.py similarity index 100% rename from src/traffic-controller/azext_traffic_controller/tests/latest/__init__.py rename to src/alb/azext_alb/tests/latest/__init__.py diff --git a/src/alb/azext_alb/tests/latest/recordings/test_alb_resources.yaml b/src/alb/azext_alb/tests/latest/recordings/test_alb_resources.yaml new file mode 100644 index 00000000000..ea1a86a103c --- /dev/null +++ b/src/alb/azext_alb/tests/latest/recordings/test_alb_resources.yaml @@ -0,0 +1,5634 @@ +interactions: +- request: + body: '{"location": "canadaeast"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '26' + Content-Type: + - application/json + ParameterSetName: + - -n --location + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999990?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990","name":"cli_record_test_tc_000999990","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 06:59:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2023-05-01-preview + response: + body: + string: '{"value":[{"properties":{"configurationEndpoints":["cc70978d6faf462e95fe26037832c338.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend2"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller","name":"sarahbartontrafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"78ade6b3-bf14-49ee-bd7a-6ed8465df3eb","location":"canadaeast","tags":{"dummyKey":"dummyValue"}},{"properties":{"configurationEndpoints":["73e1dd0582bd4f7680348a2081cffc16.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/frontends/rj-frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc","name":"rj-test-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0660c12b-4343-4a2f-8d29-5f4813fcf0be","location":"canadaeast"},{"properties":{"configurationEndpoints":["2c44a043114449b8997e25021797d34f.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller/frontends/rj-frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller","name":"rjay-trafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d7cf4454-62e5-4067-85d3-e561460e234e","location":"canadaeast"},{"properties":{"configurationEndpoints":["255f260eb37149d9a4f4a51ea5711fca.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/frontends/frontend1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/associations/association-eastus"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController","name":"test-trafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dffb3c7a-4bb6-4b53-a56f-4a4210fa04fd","location":"canadaeast"},{"properties":{"configurationEndpoints":["b9168d4fe54e49f99c733d5114d13db3.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/frontends/tc-latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2","name":"tc-latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"643cdb9f-9f2e-4317-9b1f-fc30dea81545","location":"canadaeast"},{"properties":{"configurationEndpoints":["8a980c26d5ac47ccadbf4de12c8a53ab.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"1758c2dc-f02f-442a-97e5-9df4b02fb910","location":"canadaeast"},{"properties":{"configurationEndpoints":["e111885c5e044c709033ba7afec7241f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shoebox/providers/Microsoft.ServiceNetworking/trafficControllers/tc-shmalp","name":"tc-shmalp","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"41cce5d4-197f-405c-b153-31eea05390c6","location":"canadaeast"},{"properties":{"configurationEndpoints":["1df21d528cd642e69fa8c2dd80e235de.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"68ec456f-db00-4d82-8e59-f0877f9ef675","location":"canadaeast"},{"properties":{"configurationEndpoints":["257cf91b2abc402aa88d989f5f76b9f0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency-1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"16cd7a8f-bded-4ef5-8cf1-47777f259183","location":"canadaeast"},{"properties":{"configurationEndpoints":["666eb3dba815432fb50ca40f5071149c.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugplanet","name":"bugplanet","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"beee699e-c1df-48ab-8881-eb4f08e6d2d5","location":"canadaeast"},{"properties":{"configurationEndpoints":["47e2699b8e1b4d198e17591fa15e115f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/pramod-is-pramod","name":"pramod-is-pramod","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b24041d0-4e97-46b5-b569-1e095e76c86a","location":"canadaeast"},{"properties":{"configurationEndpoints":["9e1d602e30a14d8a9c10aa92fb99cd59.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ea88500c-f733-4c43-b0bd-629826fbbacc","location":"canadaeast"},{"properties":{"configurationEndpoints":["8ee1d2aaebcf40ec9c25ede296635f14.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b63c8487-f189-4e6b-af6e-c1464a7ca24d","location":"canadaeast"},{"properties":{"configurationEndpoints":["afddc5df784d4db1a72dd799e9b2ecf0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4c861da5-02bc-4acd-bdbc-4056603710a8","location":"canadaeast"},{"properties":{"configurationEndpoints":["88ee45294cb84b71b11c46e0a7df2c97.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip-2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/associations/tc-subnet"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc","name":"new-api-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"915ff177-5cc4-49b7-a75e-7e3558474eda","location":"canadaeast"},{"properties":{"configurationEndpoints":["602913643729462a95161a02663b8d7f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e014b3b-2f21-4a15-bdd0-1106bbc2c8ed","location":"canadaeast"},{"properties":{"configurationEndpoints":["6f23005be92d4f2f8b67f29110f56ddb.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls/associations/seanjeffrey-ass-pls"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls","name":"seanjeffrey-tc-pls","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"994b76c8-8dd2-4c5f-b55e-3d10e2781d61","location":"canadaeast"},{"properties":{"configurationEndpoints":["9ddbbf6a45a343e097e1de36972f65a2.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"46e5a7ec-aba3-4297-90e5-f306fbf21605","location":"canadaeast"},{"properties":{"configurationEndpoints":["6d848a557a0f420d80e85077287c35f8.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/raw-fe"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"3bc53dd0-8886-4ad8-b5c1-3317bb75e9eb","location":"canadaeast"},{"properties":{"configurationEndpoints":["47ec4fcb216d451e8524db8cd84204da.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test","name":"latency-test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"11a41e25-a0cd-4b5b-afbc-61817643221c","location":"canadaeast"},{"properties":{"configurationEndpoints":["46ee2a36b6f2415d8df46835a7ac5581.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c5ede861-d487-4253-916f-8f4eda05a11c","location":"canadaeast"},{"properties":{"configurationEndpoints":["3b3c765a5dd8442b8d12af4621103b9d.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4cb5d46a-d927-415a-a877-6460cf22579f","location":"canadaeast"},{"properties":{"configurationEndpoints":["2b17a8c8ea9c4c488fe87a6593a013ee.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/health-1/providers/Microsoft.ServiceNetworking/trafficControllers/health-1","name":"health-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"51f6a21a-96d5-486a-b306-f2541e371499","location":"northeurope"},{"properties":{"configurationEndpoints":["c35fb86f7eca421caa40e042f68846bc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/chengde-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dc7e7e9c-c87d-4776-a86f-c53cc74ebacb","location":"northeurope"},{"properties":{"configurationEndpoints":["8895049146bb44919643c8ed28cb84ed.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Frontends/frontend2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Associations/asc2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/asc2"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e051496-272b-48ad-888b-bed4d1263a6d","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["79198c80007a4816b562e3f75b2f0851.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Associations/bugsociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash","name":"bugbash","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f1a8757-e818-4ea0-a58d-f14695f6c567","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["6fda0bc218e34022ab85eb894a8e288a.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"533ad412-118b-4833-b904-802b20ea6192","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc","name":"latency-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"415e32eb-7a25-4171-843c-e8de004f7c93","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc-1","name":"latency-tc-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6fc957b4-f3f8-4044-a3f1-14421f5e5bdf","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e1069f05-28e3-4c83-bbab-ca884b78973e","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency","name":"tc-latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"bf220554-7ddf-4dcc-9264-3443a1220469","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-1","name":"tc-latency-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0c7ff592-26a5-4bfd-a47b-4e687fed8951","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-2","name":"latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"14e6fd46-ea0a-4b7c-9978-3a0eb986490b","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ca6d9576-6dcc-4ed4-915a-99a0d59ac320","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"720c3ae0-88c4-416b-825d-22052dcf2f45","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e773b709-4710-4b89-a44d-0299126d977f","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/sarah_resource","name":"sarah_resource","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c59cd061-7e78-4f19-b085-cb6727d4662e","location":"eastus","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc-to-fail","name":"tc-to-fail","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"45624003-36f1-47ab-8328-4da464fc884d","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/canary-tc","name":"canary-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f6468ae8-e143-4b78-871b-0f0cc525e72d","location":"centraluseuap"},{"properties":{"configurationEndpoints":["bb4e90e5a1df4ca09f04e14fa669e71f.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pentest-rg/providers/Microsoft.ServiceNetworking/trafficControllers/pentest-tc-cisco1","name":"pentest-tc-cisco1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e34744e8-2105-4940-802f-d7d5d1aa831c","location":"centraluseuap"},{"properties":{"configurationEndpoints":["491c7c2c62e74ce9ad6b032f8c446005.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/all-in-one-tc","name":"all-in-one-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b6f266ea-1f4d-4221-a342-290e2f513496","location":"centraluseuap"},{"properties":{"configurationEndpoints":["396859e9a00e4c90a67d8ee9417bdfbc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash2","name":"bugbash2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d1bb43f0-4005-4c61-a239-de78cdb0c93c","location":"centraluseuap","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/metricstest","name":"metricstest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"a3e243fd-1291-43e0-aa76-218659d7bc05","location":"centraluseuap","tags":{}},{"properties":{"configurationEndpoints":["c58b98c339d34f9db179adb89c8f8916.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/newApiFrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/frontendArmPut"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Associations/newApiAssociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController","name":"newApiTrafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"2cb764ad-4473-44da-b375-6fa029fcdb07","location":"centraluseuap"},{"properties":{"configurationEndpoints":["a25285be69f04a8bbd85c5a4e72fa668.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/alex-tc","name":"alex-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4dbe5be2-b742-4318-8fc9-4461fdcc03ee","location":"centraluseuap"},{"properties":{"configurationEndpoints":["e960aec28b1e46759493b19b0d485d0b.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/tcSbTest","name":"tcSbTest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f4dbca8-e298-4fb6-ac38-c53930e1cb5e","location":"centraluseuap"},{"properties":{"configurationEndpoints":["ba20bb6a75a34b1c96293f26156725a4.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/alex-debug","name":"alex-debug","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"525f2704-58df-4a83-a055-44c8ce4f42b2","location":"eastus2euap","tags":{"key1":"value1"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '29489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999990?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990","name":"cli_record_test_tc_000999990","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "canadaeast", "tags": {"foo": "doo"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/json + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"frontends\": [],\r\n \"associations\": + [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n + \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n + \ \"etag\": \"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87\",\r\n \"location\": \"canadaeast\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:00:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0641e065-3dfe-4595-8ae0-8d935b09267d?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb create + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"configurationEndpoints\": [\r\n \"550fc53e113c4553953254ec983c2b49.test.trafficcontroller.azure.com\"\r\n + \ ],\r\n \"frontends\": [],\r\n \"associations\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n + \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n + \ \"etag\": \"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87\",\r\n \"location\": \"canadaeast\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:16 GMT + etag: + - '"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2023-05-01-preview + response: + body: + string: '{"value":[{"properties":{"configurationEndpoints":["cc70978d6faf462e95fe26037832c338.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend2"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller","name":"sarahbartontrafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"78ade6b3-bf14-49ee-bd7a-6ed8465df3eb","location":"canadaeast","tags":{"dummyKey":"dummyValue"}},{"properties":{"configurationEndpoints":["73e1dd0582bd4f7680348a2081cffc16.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/frontends/rj-frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc","name":"rj-test-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0660c12b-4343-4a2f-8d29-5f4813fcf0be","location":"canadaeast"},{"properties":{"configurationEndpoints":["2c44a043114449b8997e25021797d34f.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller/frontends/rj-frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller","name":"rjay-trafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d7cf4454-62e5-4067-85d3-e561460e234e","location":"canadaeast"},{"properties":{"configurationEndpoints":["255f260eb37149d9a4f4a51ea5711fca.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/frontends/frontend1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/associations/association-eastus"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController","name":"test-trafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dffb3c7a-4bb6-4b53-a56f-4a4210fa04fd","location":"canadaeast"},{"properties":{"configurationEndpoints":["b9168d4fe54e49f99c733d5114d13db3.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/frontends/tc-latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2","name":"tc-latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"643cdb9f-9f2e-4317-9b1f-fc30dea81545","location":"canadaeast"},{"properties":{"configurationEndpoints":["8a980c26d5ac47ccadbf4de12c8a53ab.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"1758c2dc-f02f-442a-97e5-9df4b02fb910","location":"canadaeast"},{"properties":{"configurationEndpoints":["e111885c5e044c709033ba7afec7241f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shoebox/providers/Microsoft.ServiceNetworking/trafficControllers/tc-shmalp","name":"tc-shmalp","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"41cce5d4-197f-405c-b153-31eea05390c6","location":"canadaeast"},{"properties":{"configurationEndpoints":["1df21d528cd642e69fa8c2dd80e235de.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"68ec456f-db00-4d82-8e59-f0877f9ef675","location":"canadaeast"},{"properties":{"configurationEndpoints":["257cf91b2abc402aa88d989f5f76b9f0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency-1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"16cd7a8f-bded-4ef5-8cf1-47777f259183","location":"canadaeast"},{"properties":{"configurationEndpoints":["666eb3dba815432fb50ca40f5071149c.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugplanet","name":"bugplanet","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"beee699e-c1df-48ab-8881-eb4f08e6d2d5","location":"canadaeast"},{"properties":{"configurationEndpoints":["47e2699b8e1b4d198e17591fa15e115f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/pramod-is-pramod","name":"pramod-is-pramod","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b24041d0-4e97-46b5-b569-1e095e76c86a","location":"canadaeast"},{"properties":{"configurationEndpoints":["9e1d602e30a14d8a9c10aa92fb99cd59.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ea88500c-f733-4c43-b0bd-629826fbbacc","location":"canadaeast"},{"properties":{"configurationEndpoints":["8ee1d2aaebcf40ec9c25ede296635f14.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b63c8487-f189-4e6b-af6e-c1464a7ca24d","location":"canadaeast"},{"properties":{"configurationEndpoints":["afddc5df784d4db1a72dd799e9b2ecf0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4c861da5-02bc-4acd-bdbc-4056603710a8","location":"canadaeast"},{"properties":{"configurationEndpoints":["88ee45294cb84b71b11c46e0a7df2c97.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip-2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/associations/tc-subnet"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc","name":"new-api-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"915ff177-5cc4-49b7-a75e-7e3558474eda","location":"canadaeast"},{"properties":{"configurationEndpoints":["602913643729462a95161a02663b8d7f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e014b3b-2f21-4a15-bdd0-1106bbc2c8ed","location":"canadaeast"},{"properties":{"configurationEndpoints":["6f23005be92d4f2f8b67f29110f56ddb.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls/associations/seanjeffrey-ass-pls"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls","name":"seanjeffrey-tc-pls","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"994b76c8-8dd2-4c5f-b55e-3d10e2781d61","location":"canadaeast"},{"properties":{"configurationEndpoints":["9ddbbf6a45a343e097e1de36972f65a2.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"46e5a7ec-aba3-4297-90e5-f306fbf21605","location":"canadaeast"},{"properties":{"configurationEndpoints":["6d848a557a0f420d80e85077287c35f8.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/raw-fe"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"3bc53dd0-8886-4ad8-b5c1-3317bb75e9eb","location":"canadaeast"},{"properties":{"configurationEndpoints":["47ec4fcb216d451e8524db8cd84204da.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test","name":"latency-test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"11a41e25-a0cd-4b5b-afbc-61817643221c","location":"canadaeast"},{"properties":{"configurationEndpoints":["46ee2a36b6f2415d8df46835a7ac5581.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c5ede861-d487-4253-916f-8f4eda05a11c","location":"canadaeast"},{"properties":{"configurationEndpoints":["3b3c765a5dd8442b8d12af4621103b9d.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4cb5d46a-d927-415a-a877-6460cf22579f","location":"canadaeast"},{"properties":{"configurationEndpoints":["550fc53e113c4553953254ec983c2b49.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1","name":"tc1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87","location":"canadaeast","tags":{"foo":"doo"}},{"properties":{"configurationEndpoints":["2b17a8c8ea9c4c488fe87a6593a013ee.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/health-1/providers/Microsoft.ServiceNetworking/trafficControllers/health-1","name":"health-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"51f6a21a-96d5-486a-b306-f2541e371499","location":"northeurope"},{"properties":{"configurationEndpoints":["c35fb86f7eca421caa40e042f68846bc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/chengde-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dc7e7e9c-c87d-4776-a86f-c53cc74ebacb","location":"northeurope"},{"properties":{"configurationEndpoints":["8895049146bb44919643c8ed28cb84ed.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Frontends/frontend2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Associations/asc2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/asc2"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e051496-272b-48ad-888b-bed4d1263a6d","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["79198c80007a4816b562e3f75b2f0851.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Associations/bugsociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash","name":"bugbash","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f1a8757-e818-4ea0-a58d-f14695f6c567","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["6fda0bc218e34022ab85eb894a8e288a.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"533ad412-118b-4833-b904-802b20ea6192","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc","name":"latency-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"415e32eb-7a25-4171-843c-e8de004f7c93","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc-1","name":"latency-tc-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6fc957b4-f3f8-4044-a3f1-14421f5e5bdf","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e1069f05-28e3-4c83-bbab-ca884b78973e","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency","name":"tc-latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"bf220554-7ddf-4dcc-9264-3443a1220469","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-1","name":"tc-latency-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0c7ff592-26a5-4bfd-a47b-4e687fed8951","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-2","name":"latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"14e6fd46-ea0a-4b7c-9978-3a0eb986490b","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ca6d9576-6dcc-4ed4-915a-99a0d59ac320","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"720c3ae0-88c4-416b-825d-22052dcf2f45","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e773b709-4710-4b89-a44d-0299126d977f","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/sarah_resource","name":"sarah_resource","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c59cd061-7e78-4f19-b085-cb6727d4662e","location":"eastus","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc-to-fail","name":"tc-to-fail","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"45624003-36f1-47ab-8328-4da464fc884d","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/canary-tc","name":"canary-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f6468ae8-e143-4b78-871b-0f0cc525e72d","location":"centraluseuap"},{"properties":{"configurationEndpoints":["bb4e90e5a1df4ca09f04e14fa669e71f.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pentest-rg/providers/Microsoft.ServiceNetworking/trafficControllers/pentest-tc-cisco1","name":"pentest-tc-cisco1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e34744e8-2105-4940-802f-d7d5d1aa831c","location":"centraluseuap"},{"properties":{"configurationEndpoints":["491c7c2c62e74ce9ad6b032f8c446005.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/all-in-one-tc","name":"all-in-one-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b6f266ea-1f4d-4221-a342-290e2f513496","location":"centraluseuap"},{"properties":{"configurationEndpoints":["396859e9a00e4c90a67d8ee9417bdfbc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash2","name":"bugbash2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d1bb43f0-4005-4c61-a239-de78cdb0c93c","location":"centraluseuap","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/metricstest","name":"metricstest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"a3e243fd-1291-43e0-aa76-218659d7bc05","location":"centraluseuap","tags":{}},{"properties":{"configurationEndpoints":["c58b98c339d34f9db179adb89c8f8916.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/newApiFrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/frontendArmPut"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Associations/newApiAssociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController","name":"newApiTrafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"2cb764ad-4473-44da-b375-6fa029fcdb07","location":"centraluseuap"},{"properties":{"configurationEndpoints":["a25285be69f04a8bbd85c5a4e72fa668.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/alex-tc","name":"alex-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4dbe5be2-b742-4318-8fc9-4461fdcc03ee","location":"centraluseuap"},{"properties":{"configurationEndpoints":["e960aec28b1e46759493b19b0d485d0b.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/tcSbTest","name":"tcSbTest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f4dbca8-e298-4fb6-ac38-c53930e1cb5e","location":"centraluseuap"},{"properties":{"configurationEndpoints":["ba20bb6a75a34b1c96293f26156725a4.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/alex-debug","name":"alex-debug","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"525f2704-58df-4a83-a055-44c8ce4f42b2","location":"eastus2euap","tags":{"key1":"value1"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '29990' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"configurationEndpoints\": [\r\n \"550fc53e113c4553953254ec983c2b49.test.trafficcontroller.azure.com\"\r\n + \ ],\r\n \"frontends\": [],\r\n \"associations\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n + \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n + \ \"etag\": \"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87\",\r\n \"location\": \"canadaeast\",\r\n + \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:19 GMT + etag: + - '"b9a7b81e-c4f0-4619-bc94-0032fd1e8d87"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999990?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990","name":"cli_record_test_tc_000999990","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "canadaeast"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + Content-Length: + - '26' + Content-Type: + - application/json + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n + \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n + \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n + \ \"etag\": \"17ae3874-2618-4000-a421-77f65908e5ef\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '417' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:01:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/ef3eb6d1-c952-4eea-97fc-01d33f274a0c?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"fqdn\": \"3cf501ec8c88f9f618a5235c20ef7a79.fz73.test.trafficcontroller.azure.com\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n + \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n + \ \"etag\": \"17ae3874-2618-4000-a421-77f65908e5ef\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:37 GMT + etag: + - '"17ae3874-2618-4000-a421-77f65908e5ef"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"fqdn\": + \"3cf501ec8c88f9f618a5235c20ef7a79.fz73.test.trafficcontroller.azure.com\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n + \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n + \ \"etag\": \"17ae3874-2618-4000-a421-77f65908e5ef\",\r\n \"location\": + \"canadaeast\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '574' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend show + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"fqdn\": \"3cf501ec8c88f9f618a5235c20ef7a79.fz73.test.trafficcontroller.azure.com\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n + \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n + \ \"etag\": \"17ae3874-2618-4000-a421-77f65908e5ef\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:41 GMT + etag: + - '"17ae3874-2618-4000-a421-77f65908e5ef"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, + "subnets": [{"name": "s1", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '229' + Content-Type: + - application/json + ParameterSetName: + - -g -n --subnet-name --location + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n + \ \"etag\": \"W/\\\"8f425e6d-6544-4b1c-ab8e-0984cb348472\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"19618751-d591-45ff-9479-e2670813a0cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n + \ \"etag\": \"W/\\\"8f425e6d-6544-4b1c-ab8e-0984cb348472\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/896f2f0f-68d8-4e4f-b5ea-ff8847716005?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '1231' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 671e2971-85ab-49f3-a6f2-c2f7a470f7a4 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name --location + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/896f2f0f-68d8-4e4f-b5ea-ff8847716005?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 39b17ad7-8bc9-4a61-8c25-072af09146e1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name --location + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n + \ \"etag\": \"W/\\\"6dc2e70e-8d91-4041-8daa-c63ab6421425\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"19618751-d591-45ff-9479-e2670813a0cb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n + \ \"etag\": \"W/\\\"6dc2e70e-8d91-4041-8daa-c63ab6421425\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1233' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:48 GMT + etag: + - W/"6dc2e70e-8d91-4041-8daa-c63ab6421425" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0d5d1fce-e833-4cb1-b375-ad95aa761ecf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --delegations + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n + \ \"etag\": \"W/\\\"6dc2e70e-8d91-4041-8daa-c63ab6421425\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '530' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:51 GMT + etag: + - W/"6dc2e70e-8d91-4041-8daa-c63ab6421425" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6362924d-7aa3-4937-806d-bd1eaa248181 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1", + "name": "s1", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": + [{"name": "0", "properties": {"serviceName": "Microsoft.ServiceNetworking/trafficControllers"}}], + "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": + "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vnet-name --delegations + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n + \ \"etag\": \"W/\\\"bec05fab-eff4-420a-9498-55af85351858\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1/delegations/0\",\r\n + \ \"etag\": \"W/\\\"bec05fab-eff4-420a-9498-55af85351858\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"serviceName\": \"Microsoft.ServiceNetworking/trafficControllers\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcf16ac2-1b0c-439b-9aea-a21c69f291c8?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '1164' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 76550835-d912-4fd3-8648-123b595b91d5 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --delegations + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcf16ac2-1b0c-439b-9aea-a21c69f291c8?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 30d7b6b7-154b-4327-92c1-a1973482b401 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --delegations + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 + response: + body: + string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n + \ \"etag\": \"W/\\\"583bd105-f9b3-46e4-bec4-5c3da8ffc141\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1/delegations/0\",\r\n + \ \"etag\": \"W/\\\"583bd105-f9b3-46e4-bec4-5c3da8ffc141\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"serviceName\": \"Microsoft.ServiceNetworking/trafficControllers\",\r\n + \ \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:55 GMT + etag: + - W/"583bd105-f9b3-46e4-bec4-5c3da8ffc141" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6f4e8b3c-14f4-42d6-acf8-9c723da7b4bf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999990?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990","name":"cli_record_test_tc_000999990","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:02:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "canadaeast", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + Content-Length: + - '220' + Content-Type: + - application/json + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"associationType\": \"subnets\",\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n + \ },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n + \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n + \ \"etag\": \"93fc9c18-7eb9-44ab-bab1-8b1a73d98486\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:03:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:04:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:05:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/a8ed5e4f-b75e-485a-be90-62bd065d2e7a?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association create + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"associationType\": \"subnets\",\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n + \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n + \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n + \ \"etag\": \"93fc9c18-7eb9-44ab-bab1-8b1a73d98486\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:16 GMT + etag: + - '"93fc9c18-7eb9-44ab-bab1-8b1a73d98486"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"associationType\": + \"subnets\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n + \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n + \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n + \ \"etag\": \"93fc9c18-7eb9-44ab-bab1-8b1a73d98486\",\r\n \"location\": + \"canadaeast\"\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '735' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association show + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"associationType\": \"subnets\",\r\n + \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n + \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n + \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n + \ \"etag\": \"93fc9c18-7eb9-44ab-bab1-8b1a73d98486\",\r\n \"location\": \"canadaeast\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '654' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:18 GMT + etag: + - '"93fc9c18-7eb9-44ab-bab1-8b1a73d98486"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:06:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:08:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:09:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:10:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/0053e84d-11c2-41e4-a5ec-cf57b27252a6?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb association list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:11:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --alb-name -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/54c42887-3869-4bb4-b8c0-f1b7864253bb?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb frontend list + Connection: + - keep-alive + ParameterSetName: + - -g --alb-name + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"value\": []\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '19' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:12:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operations/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -y + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/canadaeast/operationResults/3ca3bb32-23ff-4bae-9cac-24ca44fcaf32?api-version=2023-05-01-preview + response: + body: + string: 'null' + headers: + cache-control: + - no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network alb list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2023-05-01-preview + response: + body: + string: '{"value":[{"properties":{"configurationEndpoints":["cc70978d6faf462e95fe26037832c338.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller/frontends/sarahbartonfrontend2"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarahbartonbugbash/providers/Microsoft.ServiceNetworking/trafficControllers/sarahbartontrafficcontroller","name":"sarahbartontrafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"78ade6b3-bf14-49ee-bd7a-6ed8465df3eb","location":"canadaeast","tags":{"dummyKey":"dummyValue"}},{"properties":{"configurationEndpoints":["73e1dd0582bd4f7680348a2081cffc16.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/frontends/rj-frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc/associations/rj-test-association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rj-test-1/providers/Microsoft.ServiceNetworking/trafficControllers/rj-test-tc","name":"rj-test-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0660c12b-4343-4a2f-8d29-5f4813fcf0be","location":"canadaeast"},{"properties":{"configurationEndpoints":["2c44a043114449b8997e25021797d34f.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller/frontends/rj-frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rjay-test/providers/Microsoft.ServiceNetworking/trafficControllers/rjay-trafficcontroller","name":"rjay-trafficcontroller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d7cf4454-62e5-4067-85d3-e561460e234e","location":"canadaeast"},{"properties":{"configurationEndpoints":["255f260eb37149d9a4f4a51ea5711fca.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/frontends/frontend1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController/associations/association-eastus"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jaishah-bugbash-rg/providers/Microsoft.ServiceNetworking/trafficControllers/test-trafficController","name":"test-trafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dffb3c7a-4bb6-4b53-a56f-4a4210fa04fd","location":"canadaeast"},{"properties":{"configurationEndpoints":["b9168d4fe54e49f99c733d5114d13db3.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/frontends/tc-latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2/associations/tc-latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-2","name":"tc-latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"643cdb9f-9f2e-4317-9b1f-fc30dea81545","location":"canadaeast"},{"properties":{"configurationEndpoints":["8a980c26d5ac47ccadbf4de12c8a53ab.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"1758c2dc-f02f-442a-97e5-9df4b02fb910","location":"canadaeast"},{"properties":{"configurationEndpoints":["e111885c5e044c709033ba7afec7241f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shoebox/providers/Microsoft.ServiceNetworking/trafficControllers/tc-shmalp","name":"tc-shmalp","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"41cce5d4-197f-405c-b153-31eea05390c6","location":"canadaeast"},{"properties":{"configurationEndpoints":["1df21d528cd642e69fa8c2dd80e235de.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"68ec456f-db00-4d82-8e59-f0877f9ef675","location":"canadaeast"},{"properties":{"configurationEndpoints":["257cf91b2abc402aa88d989f5f76b9f0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/latency-1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency/associations/latency-1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency","name":"latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"16cd7a8f-bded-4ef5-8cf1-47777f259183","location":"canadaeast"},{"properties":{"configurationEndpoints":["666eb3dba815432fb50ca40f5071149c.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugplanet","name":"bugplanet","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"beee699e-c1df-48ab-8881-eb4f08e6d2d5","location":"canadaeast"},{"properties":{"configurationEndpoints":["47e2699b8e1b4d198e17591fa15e115f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/pramod-is-pramod","name":"pramod-is-pramod","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b24041d0-4e97-46b5-b569-1e095e76c86a","location":"canadaeast"},{"properties":{"configurationEndpoints":["9e1d602e30a14d8a9c10aa92fb99cd59.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVTDevRG/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ea88500c-f733-4c43-b0bd-629826fbbacc","location":"canadaeast"},{"properties":{"configurationEndpoints":["8ee1d2aaebcf40ec9c25ede296635f14.test.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b63c8487-f189-4e6b-af6e-c1464a7ca24d","location":"canadaeast"},{"properties":{"configurationEndpoints":["afddc5df784d4db1a72dd799e9b2ecf0.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-test/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4c861da5-02bc-4acd-bdbc-4056603710a8","location":"canadaeast"},{"properties":{"configurationEndpoints":["88ee45294cb84b71b11c46e0a7df2c97.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/frontends/managed-pip-2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc/associations/tc-subnet"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alex-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/new-api-tc","name":"new-api-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"915ff177-5cc4-49b7-a75e-7e3558474eda","location":"canadaeast"},{"properties":{"configurationEndpoints":["602913643729462a95161a02663b8d7f.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e014b3b-2f21-4a15-bdd0-1106bbc2c8ed","location":"canadaeast"},{"properties":{"configurationEndpoints":["6f23005be92d4f2f8b67f29110f56ddb.test.trafficcontroller.azure.com"],"frontends":[],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls/associations/seanjeffrey-ass-pls"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet/providers/Microsoft.ServiceNetworking/trafficControllers/seanjeffrey-tc-pls","name":"seanjeffrey-tc-pls","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"994b76c8-8dd2-4c5f-b55e-3d10e2781d61","location":"canadaeast"},{"properties":{"configurationEndpoints":["9ddbbf6a45a343e097e1de36972f65a2.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/seanjeffrey-bug-planet-3/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"46e5a7ec-aba3-4297-90e5-f306fbf21605","location":"canadaeast"},{"properties":{"configurationEndpoints":["6d848a557a0f420d80e85077287c35f8.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/raw-fe"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/snchh-test-rg/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"3bc53dd0-8886-4ad8-b5c1-3317bb75e9eb","location":"canadaeast"},{"properties":{"configurationEndpoints":["47ec4fcb216d451e8524db8cd84204da.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-test","name":"latency-test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"11a41e25-a0cd-4b5b-afbc-61817643221c","location":"canadaeast"},{"properties":{"configurationEndpoints":["46ee2a36b6f2415d8df46835a7ac5581.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/KubicBVT-2023-06-03-015139.587/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c5ede861-d487-4253-916f-8f4eda05a11c","location":"canadaeast"},{"properties":{"configurationEndpoints":["3b3c765a5dd8442b8d12af4621103b9d.test.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc/frontends/frontend"}],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-trial/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4cb5d46a-d927-415a-a877-6460cf22579f","location":"canadaeast"},{"properties":{"configurationEndpoints":["2b17a8c8ea9c4c488fe87a6593a013ee.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/health-1/providers/Microsoft.ServiceNetworking/trafficControllers/health-1","name":"health-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"51f6a21a-96d5-486a-b306-f2541e371499","location":"northeurope"},{"properties":{"configurationEndpoints":["c35fb86f7eca421caa40e042f68846bc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/chengde-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"dc7e7e9c-c87d-4776-a86f-c53cc74ebacb","location":"northeurope"},{"properties":{"configurationEndpoints":["8895049146bb44919643c8ed28cb84ed.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Frontends/frontend2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/Associations/asc2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2/associations/asc2"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalp-portal/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5e051496-272b-48ad-888b-bed4d1263a6d","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["79198c80007a4816b562e3f75b2f0851.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Frontends/bugplanet"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash/Associations/bugsociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash","name":"bugbash","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f1a8757-e818-4ea0-a58d-f14695f6c567","location":"northeurope","tags":{}},{"properties":{"configurationEndpoints":["6fda0bc218e34022ab85eb894a8e288a.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"533ad412-118b-4833-b904-802b20ea6192","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc","name":"latency-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"415e32eb-7a25-4171-843c-e8de004f7c93","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/latency-tc-1","name":"latency-tc-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6fc957b4-f3f8-4044-a3f1-14421f5e5bdf","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-tc/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e1069f05-28e3-4c83-bbab-ca884b78973e","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency","name":"tc-latency","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"bf220554-7ddf-4dcc-9264-3443a1220469","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/tc-latency/providers/Microsoft.ServiceNetworking/trafficControllers/tc-latency-1","name":"tc-latency-1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0c7ff592-26a5-4bfd-a47b-4e687fed8951","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/latency-2","name":"latency-2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"14e6fd46-ea0a-4b7c-9978-3a0eb986490b","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc","name":"tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"ca6d9576-6dcc-4ed4-915a-99a0d59ac320","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"720c3ae0-88c4-416b-825d-22052dcf2f45","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/shmalpani-testing-setup/providers/Microsoft.ServiceNetworking/trafficControllers/tc2","name":"tc2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e773b709-4710-4b89-a44d-0299126d977f","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/sarah_resource","name":"sarah_resource","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c59cd061-7e78-4f19-b085-cb6727d4662e","location":"eastus","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/preflight-to-fail/providers/Microsoft.ServiceNetworking/trafficControllers/tc-to-fail","name":"tc-to-fail","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"45624003-36f1-47ab-8328-4da464fc884d","location":"eastus"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/canary-tc","name":"canary-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f6468ae8-e143-4b78-871b-0f0cc525e72d","location":"centraluseuap"},{"properties":{"configurationEndpoints":["bb4e90e5a1df4ca09f04e14fa669e71f.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pentest-rg/providers/Microsoft.ServiceNetworking/trafficControllers/pentest-tc-cisco1","name":"pentest-tc-cisco1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"e34744e8-2105-4940-802f-d7d5d1aa831c","location":"centraluseuap"},{"properties":{"configurationEndpoints":["491c7c2c62e74ce9ad6b032f8c446005.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-centraluseuap-canary/providers/Microsoft.ServiceNetworking/trafficControllers/all-in-one-tc","name":"all-in-one-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"b6f266ea-1f4d-4221-a342-290e2f513496","location":"centraluseuap"},{"properties":{"configurationEndpoints":["396859e9a00e4c90a67d8ee9417bdfbc.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-dev2/providers/Microsoft.ServiceNetworking/trafficControllers/bugbash2","name":"bugbash2","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d1bb43f0-4005-4c61-a239-de78cdb0c93c","location":"centraluseuap","tags":{}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/latency-1/providers/Microsoft.ServiceNetworking/trafficControllers/metricstest","name":"metricstest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"a3e243fd-1291-43e0-aa76-218659d7bc05","location":"centraluseuap","tags":{}},{"properties":{"configurationEndpoints":["c58b98c339d34f9db179adb89c8f8916.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/newApiFrontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Frontends/frontendArmPut"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController/Associations/newApiAssociation"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/newApiTrafficController","name":"newApiTrafficController","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"2cb764ad-4473-44da-b375-6fa029fcdb07","location":"centraluseuap"},{"properties":{"configurationEndpoints":["a25285be69f04a8bbd85c5a4e72fa668.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/alex-tc","name":"alex-tc","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"4dbe5be2-b742-4318-8fc9-4461fdcc03ee","location":"centraluseuap"},{"properties":{"configurationEndpoints":["e960aec28b1e46759493b19b0d485d0b.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbSlice/providers/Microsoft.ServiceNetworking/trafficControllers/tcSbTest","name":"tcSbTest","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"6f4dbca8-e298-4fb6-ac38-c53930e1cb5e","location":"centraluseuap"},{"properties":{"configurationEndpoints":["ba20bb6a75a34b1c96293f26156725a4.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/alex-bvt-dev/providers/Microsoft.ServiceNetworking/trafficControllers/alex-debug","name":"alex-debug","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"525f2704-58df-4a83-a055-44c8ce4f42b2","location":"eastus2euap","tags":{"key1":"value1"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '29489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999990/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:13:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7a656444-f9a3-4bfb-9494-590702e77be1 + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 21b8594c-af57-48d0-aae7-40da865ecd43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Jun 2023 07:13:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/ced14d87-c31a-40ed-9387-6b88eef1c64f?api-version=2022-01-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7a656444-f9a3-4bfb-9494-590702e77be1 + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999990?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:13:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:14:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:14:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:14:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:14:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + ParameterSetName: + - -n -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTk5OTAtQ0FOQURBRUFTVCIsImpvYkxvY2F0aW9uIjoiY2FuYWRhZWFzdCJ9?api-version=2022-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 15 Jun 2023 07:15:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/alb/azext_alb/tests/latest/test_alb_commands.py b/src/alb/azext_alb/tests/latest/test_alb_commands.py new file mode 100644 index 00000000000..9c017ed0063 --- /dev/null +++ b/src/alb/azext_alb/tests/latest/test_alb_commands.py @@ -0,0 +1,84 @@ +# -------------------------------------------------------------------------------------------- +# 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 +# -------------------------------------------------------------------------------------------- + +import os +import unittest +import tempfile + +from azure.cli.testsdk import * +from knack.util import CLIError +from azure.cli.core.profiles import supported_api_version, ResourceType +from azure.cli.core.commands.client_factory import get_subscription_id +from azure.cli.testsdk import ( + ScenarioTest, LiveScenarioTest, LocalContextScenarioTest, ResourceGroupPreparer, live_only, + KeyVaultPreparer, record_only) + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + +class AlbScenario(ScenarioTest): + def test_alb_resources(self): + self.kwargs.update({ + 'rg': 'cli_record_test_tc_000999990', + 'tc': 'tc1', + 'fe': 'fe1', + 'aso': 'a1', + 'vnet': 'vnet1', + 'subnet': "s1" + }) + + #Works with subscription db308457-7e8c-44cc-a8a7-c6d7daee414d + # Create Resource group. + self.cmd('group create -n {rg} --location canadaeast') + + # Create Traffic Controller + tcCount1 = len(self.cmd('network alb list').get_output_in_json()) + self.cmd('network alb create -g {rg} -n {tc} --tags foo=doo', + checks=self.check('tags.foo', 'doo')) + tcCount2 = len(self.cmd('network alb list').get_output_in_json()) + self.assertTrue(tcCount2 == tcCount1 + 1) + self.cmd('network alb show -g {rg} -n {tc}', checks=[ + self.check('name', '{tc}'), + self.check('resourceGroup', '{rg}'), + self.check('tags.foo', 'doo') + ]) + + # Create Frontend for traffic controller + tcFrontendCount1 = len(self.cmd('network alb frontend list -g {rg} --alb-name {tc}').get_output_in_json()) + self.cmd('network alb frontend create -g {rg} -n {fe} --alb-name {tc}') + tcFrontendCount2 = len(self.cmd('network alb frontend list -g {rg} --alb-name {tc}').get_output_in_json()) + self.assertTrue(tcFrontendCount2 == tcFrontendCount1 + 1) + self.cmd('network alb frontend show -g {rg} -n {fe} --alb-name {tc}', checks=[ + self.check('name', '{fe}') + ]) + + #Create Association for traffic controller. Currently this tests will only work in subscription db308457-7e8c-44cc-a8a7-c6d7daee414d + vnet = self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet} --location eastus').get_output_in_json() + subnet = self.cmd('network vnet subnet update -g {rg} -n {subnet} --vnet-name {vnet} --delegations Microsoft.ServiceNetworking/trafficControllers').get_output_in_json() + + associationCount1 = len(self.cmd('network alb association list -g {rg} --alb-name {tc}').get_output_in_json()) + self.cmd('network alb association create -g {rg} -n {aso} --alb-name {tc} --vnet-name {vnet} --subnet {subnet}') + associationCount2 = len(self.cmd('network alb association list -g {rg} --alb-name {tc}').get_output_in_json()) + self.assertTrue(associationCount2 == associationCount1 + 1) + self.cmd('network alb association show -g {rg} -n {aso} --alb-name {tc}', checks=[ + self.check('name', '{aso}') + ]) + + #Start Deleting + self.cmd('network alb association delete -g {rg} -n {aso} --alb-name {tc} -y') + associationCount3 = len(self.cmd('network alb association list -g {rg} --alb-name {tc}').get_output_in_json()) + self.assertTrue(associationCount3 == associationCount1) + + self.cmd('network alb frontend delete -g {rg} -n {fe} --alb-name {tc} -y') + tcFrontendCount3 = len(self.cmd('network alb frontend list -g {rg} --alb-name {tc}').get_output_in_json()) + self.assertTrue(tcFrontendCount3 == tcFrontendCount1) + + self.cmd('network alb delete -g {rg} -n {tc} -y') + tcCount3 = len(self.cmd('network alb list').get_output_in_json()) + self.assertTrue(tcCount3 == tcCount1) + + self.cmd('network vnet delete -g {rg} -n {vnet}') + self.cmd('group delete -n {rg} -y') \ No newline at end of file diff --git a/src/traffic-controller/setup.cfg b/src/alb/setup.cfg similarity index 100% rename from src/traffic-controller/setup.cfg rename to src/alb/setup.cfg diff --git a/src/traffic-controller/setup.py b/src/alb/setup.py similarity index 86% rename from src/traffic-controller/setup.py rename to src/alb/setup.py index 0643c5a3347..2b363733ecd 100644 --- a/src/traffic-controller/setup.py +++ b/src/alb/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '0.1.0' +VERSION = '0.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -34,16 +34,16 @@ HISTORY = f.read() setup( - name='traffic-controller', + name='alb', version=VERSION, - description='Microsoft Azure Command-Line Tools TrafficController Extension.', + description='Microsoft Azure Command-Line Tools ALB Extension.', long_description=README + '\n\n' + HISTORY, license='MIT', author='Microsoft Corporation', author_email='azpycli@microsoft.com', - url='https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-controller', + url='https://github.com/Azure/azure-cli-extensions/tree/main/src/alb', classifiers=CLASSIFIERS, packages=find_packages(exclude=["tests"]), - package_data={'azext_traffic_controller': ['azext_metadata.json']}, + package_data={'azext_alb': ['azext_metadata.json']}, install_requires=DEPENDENCIES ) diff --git a/src/service_name.json b/src/service_name.json index 926a45a2566..699081c15be 100644 --- a/src/service_name.json +++ b/src/service_name.json @@ -394,6 +394,11 @@ "AzureServiceName": "Azure Network Function", "URL": "https://docs.microsoft.com/en-us/rest/api/hybridnetwork/network-functions" }, + { + "Command": "az network alb", + "AzureServiceName": "Application Gateway for Containers", + "URL": "" + }, { "Command": "az next", "AzureServiceName": "Azure CLI", @@ -724,11 +729,6 @@ "AzureServiceName": "Storage Mover", "URL": "https://learn.microsoft.com/en-us/azure/storage-mover/" }, - { - "Command": "az service-networking", - "AzureServiceName": "Service Networking", - "URL": "" - }, { "Command": "az confidentialledger managedccfs", "AzureServiceName": "Azure Managed Confidential Consortium Framework", diff --git a/src/traffic-controller/README.md b/src/traffic-controller/README.md deleted file mode 100644 index b8af8f1a809..00000000000 --- a/src/traffic-controller/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# Azure CLI TrafficController Extension # -This is an extension to Azure CLI to manage TrafficController resources. - -## How to use ## -First, install the extension: -``` -az extension add --name traffic-controller -``` - -Then, call it as you would any other az command: -``` -az service-networking traffic-controller -h -``` \ No newline at end of file diff --git a/src/traffic-controller/azext_traffic_controller/azext_metadata.json b/src/traffic-controller/azext_traffic_controller/azext_metadata.json deleted file mode 100644 index be5de02d927..00000000000 --- a/src/traffic-controller/azext_traffic_controller/azext_metadata.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "azext.isPreview": true, - "azext.minCliCoreVersion": "2.45.0" -} \ No newline at end of file diff --git a/src/traffic-controller/azext_traffic_controller/tests/latest/recordings/test_trafficcontroller_resources.yaml b/src/traffic-controller/azext_traffic_controller/tests/latest/recordings/test_trafficcontroller_resources.yaml deleted file mode 100644 index 83d104ddfa1..00000000000 --- a/src/traffic-controller/azext_traffic_controller/tests/latest/recordings/test_trafficcontroller_resources.yaml +++ /dev/null @@ -1,5803 +0,0 @@ -interactions: -- request: - body: '{"location": "northeurope"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '27' - Content-Type: - - application/json - ParameterSetName: - - -n --location - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2022-10-01-preview - response: - body: - string: '{"value":[{"properties":{"configurationEndpoints":["8f7e0fde09e648b08208b7a785d80aae.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"19a5d2f1-5608-44c1-b543-a51d821d7954","location":"northeurope"},{"properties":{"configurationEndpoints":["8a5a17f08c314bba9e06a7a66adfa4bf.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f383ae7a-47eb-4cf9-b71e-3ee3e0f84fbd","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/3a2c63f936348a46e689c29961a3577c","name":"3a2c63f936348a46e689c29961a3577c","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5578dbd4-c691-43e5-ad3c-a20bd8d8fcd1","location":"northeurope"},{"properties":{"configurationEndpoints":["2b66b08b47844977ae9b172ad1e274b2.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d39baa41-18a9-442d-a4a4-c8e0f1432382","location":"northeurope"},{"properties":{"configurationEndpoints":["398605aa9a434770b6495082b0c89936.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/frontends/f1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/associations/a1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test","name":"test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"949e5276-ae58-4e84-988b-e527c37dd9f1","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tc_testrghdb3xab3arfynrimxant4mcvjoyprc7mvg56kq6fbf5oqmtubloyz7ixidwuob/providers/Microsoft.ServiceNetworking/trafficControllers/tc1","name":"tc1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0eda5a6f-e548-405b-8fed-7f00789df496","location":"northeurope","tags":{"foo":"doo"}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/ncu","name":"ncu","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d4c64992-4c1d-4db3-92dd-f86c818847df","location":"northcentralus"}]}' - headers: - cache-control: - - no-cache - content-length: - - '5126' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "northeurope", "tags": {"foo": "doo"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - Content-Length: - - '51' - Content-Type: - - application/json - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"frontends\": [],\r\n \"associations\": - [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n - \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n - \ \"etag\": \"c2bf9a60-a2f7-4882-92fc-e38d7ece1832\",\r\n \"location\": \"northeurope\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '475' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:32:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/bbeb0b82-0325-401d-9e3f-52bf93266b16?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller create - Connection: - - keep-alive - ParameterSetName: - - -g -n --tags - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"configurationEndpoints\": [\r\n \"9f538f856e5944abb37f189dc2c00ab6.trafficcontroller.azure.com\"\r\n - \ ],\r\n \"frontends\": [],\r\n \"associations\": [],\r\n \"provisioningState\": - \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n - \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n - \ \"etag\": \"c2bf9a60-a2f7-4882-92fc-e38d7ece1832\",\r\n \"location\": \"northeurope\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:53 GMT - etag: - - '"c2bf9a60-a2f7-4882-92fc-e38d7ece1832"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2022-10-01-preview - response: - body: - string: '{"value":[{"properties":{"configurationEndpoints":["8f7e0fde09e648b08208b7a785d80aae.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"19a5d2f1-5608-44c1-b543-a51d821d7954","location":"northeurope"},{"properties":{"configurationEndpoints":["8a5a17f08c314bba9e06a7a66adfa4bf.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f383ae7a-47eb-4cf9-b71e-3ee3e0f84fbd","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/3a2c63f936348a46e689c29961a3577c","name":"3a2c63f936348a46e689c29961a3577c","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5578dbd4-c691-43e5-ad3c-a20bd8d8fcd1","location":"northeurope"},{"properties":{"configurationEndpoints":["2b66b08b47844977ae9b172ad1e274b2.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d39baa41-18a9-442d-a4a4-c8e0f1432382","location":"northeurope"},{"properties":{"configurationEndpoints":["398605aa9a434770b6495082b0c89936.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/frontends/f1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/associations/a1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test","name":"test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"949e5276-ae58-4e84-988b-e527c37dd9f1","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tc_testrghdb3xab3arfynrimxant4mcvjoyprc7mvg56kq6fbf5oqmtubloyz7ixidwuob/providers/Microsoft.ServiceNetworking/trafficControllers/tc1","name":"tc1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0eda5a6f-e548-405b-8fed-7f00789df496","location":"northeurope","tags":{"foo":"doo"}},{"properties":{"configurationEndpoints":["9f538f856e5944abb37f189dc2c00ab6.trafficcontroller.azure.com"],"frontends":[],"associations":[],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1","name":"tc1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"c2bf9a60-a2f7-4882-92fc-e38d7ece1832","location":"northeurope","tags":{"foo":"doo"}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/ncu","name":"ncu","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d4c64992-4c1d-4db3-92dd-f86c818847df","location":"northcentralus"}]}' - headers: - cache-control: - - no-cache - content-length: - - '5620' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"configurationEndpoints\": [\r\n \"9f538f856e5944abb37f189dc2c00ab6.trafficcontroller.azure.com\"\r\n - \ ],\r\n \"frontends\": [],\r\n \"associations\": [],\r\n \"provisioningState\": - \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1\",\r\n - \ \"name\": \"tc1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers\",\r\n - \ \"etag\": \"c2bf9a60-a2f7-4882-92fc-e38d7ece1832\",\r\n \"location\": \"northeurope\",\r\n - \ \"tags\": {\r\n \"foo\": \"doo\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:33:55 GMT - etag: - - '"c2bf9a60-a2f7-4882-92fc-e38d7ece1832"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "properties": {"idleTimeoutInMinutes": 4, "publicIPAddressVersion": - "IPv4", "publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard", "tier": - "Global"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '185' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku --tier --location - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2022-05-01 - response: - body: - string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n - \ \"etag\": \"W/\\\"95b19290-f5ac-4abf-b5a9-44b7c9440a7e\\\"\",\r\n \"location\": - \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7ba49f12-d153-490f-bef9-28f7bd5676e4\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Global\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8d588d73-da0d-40bc-8a9c-2ddaf3871f9b?api-version=2022-05-01 - cache-control: - - no-cache - content-length: - - '714' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3b88391b-16ce-4333-986e-e8c789362604 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --tier --location - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8d588d73-da0d-40bc-8a9c-2ddaf3871f9b?api-version=2022-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 51fa45df-4325-482b-9200-3d58fb6983e2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --tier --location - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/8d588d73-da0d-40bc-8a9c-2ddaf3871f9b?api-version=2022-05-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5017bf03-1bc3-4f4f-ae68-88cb85c8989b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --tier --location - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2022-05-01 - response: - body: - string: "{\r\n \"name\": \"pip1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIPAddresses/pip1\",\r\n - \ \"etag\": \"W/\\\"07569779-14a1-4eeb-be39-1f597dd3eb6e\\\"\",\r\n \"location\": - \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7ba49f12-d153-490f-bef9-28f7bd5676e4\",\r\n \"ipAddress\": - \"20.41.28.212\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Global\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '749' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:04 GMT - etag: - - W/"07569779-14a1-4eeb-be39-1f597dd3eb6e" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3c813f06-c233-41d3-aaeb-daa17e661776 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": []\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '19' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "northeurope", "properties": {"mode": "public", "publicIPAddress": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIpAddresses/pip1"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - Content-Length: - - '235' - Content-Type: - - application/json - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"mode\": \"Public\",\r\n \"ipVersion\": - \"IPv4\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIpAddresses/pip1\"\r\n - \ },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n - \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n - \ \"etag\": \"3a714c25-9271-4877-8a46-d1aea528b688\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/1557b542-4b2a-4d8f-8a9b-3483f1eef227?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '657' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/1557b542-4b2a-4d8f-8a9b-3483f1eef227?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/1557b542-4b2a-4d8f-8a9b-3483f1eef227?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/1557b542-4b2a-4d8f-8a9b-3483f1eef227?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/1557b542-4b2a-4d8f-8a9b-3483f1eef227?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --public-ip-address - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"mode\": \"Public\",\r\n \"ipVersion\": - \"IPv4\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIpAddresses/pip1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n - \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n - \ \"etag\": \"3a714c25-9271-4877-8a46-d1aea528b688\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '658' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:52 GMT - etag: - - '"3a714c25-9271-4877-8a46-d1aea528b688"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mode\": - \"Public\",\r\n \"ipVersion\": \"IPv4\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIpAddresses/pip1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n - \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n - \ \"etag\": \"3a714c25-9271-4877-8a46-d1aea528b688\",\r\n \"location\": - \"northeurope\"\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '743' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend show - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"mode\": \"Public\",\r\n \"ipVersion\": - \"IPv4\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIpAddresses/pip1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1\",\r\n - \ \"name\": \"fe1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Frontends\",\r\n - \ \"etag\": \"3a714c25-9271-4877-8a46-d1aea528b688\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '658' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:55 GMT - etag: - - '"3a714c25-9271-4877-8a46-d1aea528b688"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "northeurope", "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, - "subnets": [{"name": "s1", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '234' - Content-Type: - - application/json - ParameterSetName: - - -g -n --subnet-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"59a049c7-80b7-45fb-b7b6-612529dc9684\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"9bc9faa5-f20b-47a9-a242-dd54c342b421\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n - \ \"etag\": \"W/\\\"59a049c7-80b7-45fb-b7b6-612529dc9684\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/04320ee3-5196-4c43-87a3-e5e74331ea0b?api-version=2022-01-01 - cache-control: - - no-cache - content-length: - - '1230' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:34:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 02da740d-beff-42ed-8dc5-838d2575af51 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/04320ee3-5196-4c43-87a3-e5e74331ea0b?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c8b22573-cab0-4657-b3bf-90dabff67a78 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"87367224-ea2c-4a00-9516-fa6d617be687\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"9bc9faa5-f20b-47a9-a242-dd54c342b421\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n - \ \"etag\": \"W/\\\"87367224-ea2c-4a00-9516-fa6d617be687\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1232' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:03 GMT - etag: - - W/"87367224-ea2c-4a00-9516-fa6d617be687" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c695d467-f88b-411e-bedc-724bb29e955c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vnet-name --delegations - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n - \ \"etag\": \"W/\\\"87367224-ea2c-4a00-9516-fa6d617be687\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '527' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:04 GMT - etag: - - W/"87367224-ea2c-4a00-9516-fa6d617be687" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5aa5b913-0fb0-4baf-a76f-2227c9883fad - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1", - "name": "s1", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": - [{"name": "0", "properties": {"serviceName": "Microsoft.ServiceNetworking/trafficControllers"}}], - "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": - "Enabled"}, "type": "Microsoft.Network/virtualNetworks/subnets"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - Content-Length: - - '485' - Content-Type: - - application/json - ParameterSetName: - - -g -n --vnet-name --delegations - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n - \ \"etag\": \"W/\\\"3a23b24a-6ebe-43e5-ba11-4c606c865560\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1/delegations/0\",\r\n - \ \"etag\": \"W/\\\"3a23b24a-6ebe-43e5-ba11-4c606c865560\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"serviceName\": \"Microsoft.ServiceNetworking/trafficControllers\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/4bdd506b-31f8-41d5-944c-95d1557b6d40?api-version=2022-01-01 - cache-control: - - no-cache - content-length: - - '1158' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0b7d2f49-812b-4ba7-84df-65a8ff21fd34 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vnet-name --delegations - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/4bdd506b-31f8-41d5-944c-95d1557b6d40?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3582eff8-5f68-4174-a6ed-18ffa00b8b3f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vnet-name --delegations - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\",\r\n - \ \"etag\": \"W/\\\"0b60cda0-4829-4919-929e-357a11739c42\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1/delegations/0\",\r\n - \ \"etag\": \"W/\\\"0b60cda0-4829-4919-929e-357a11739c42\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"serviceName\": \"Microsoft.ServiceNetworking/trafficControllers\",\r\n - \ \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:09 GMT - etag: - - W/"0b60cda0-4829-4919-929e-357a11739c42" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 77c030f9-2f71-42a7-9dda-84b5e73f173b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": []\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '19' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "northeurope", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - Content-Length: - - '218' - Content-Type: - - application/json - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"associationType\": \"Subnets\",\r\n - \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n - \ },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n - \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n - \ \"etag\": \"13173cb3-38c0-45ab-98f8-f278b71f196a\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:35:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:36:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:37:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:37:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:37:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:37:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:37:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/48559390-3a65-4a63-b179-60f3dc0712e1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association create - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name --vnet-name --subnet - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"associationType\": \"Subnets\",\r\n - \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n - \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n - \ \"etag\": \"13173cb3-38c0-45ab-98f8-f278b71f196a\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '649' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:00 GMT - etag: - - '"13173cb3-38c0-45ab-98f8-f278b71f196a"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"associationType\": - \"Subnets\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n - \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n - \ \"etag\": \"13173cb3-38c0-45ab-98f8-f278b71f196a\",\r\n \"location\": - \"northeurope\"\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '730' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association show - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"properties\": {\r\n \"associationType\": \"Subnets\",\r\n - \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/s1\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1\",\r\n - \ \"name\": \"a1\",\r\n \"type\": \"Microsoft.ServiceNetworking/TrafficControllers/Associations\",\r\n - \ \"etag\": \"13173cb3-38c0-45ab-98f8-f278b71f196a\",\r\n \"location\": \"northeurope\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '649' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:03 GMT - etag: - - '"13173cb3-38c0-45ab-98f8-f278b71f196a"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations/a1?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:38:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:39:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:40:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/122f8e89-77e9-4354-a7bd-67fb19b87f53?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller association list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/associations?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": []\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '19' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends/fe1?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/7a15f0a0-c483-46b0-b9cc-d6fa43059803?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:41:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/7a15f0a0-c483-46b0-b9cc-d6fa43059803?api-version=2022-10-01-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/7a15f0a0-c483-46b0-b9cc-d6fa43059803?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/7a15f0a0-c483-46b0-b9cc-d6fa43059803?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --traffic-controller-name -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/7a15f0a0-c483-46b0-b9cc-d6fa43059803?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller frontend list - Connection: - - keep-alive - ParameterSetName: - - -g --traffic-controller-name - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1/frontends?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"value\": []\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '19' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.ServiceNetworking/trafficControllers/tc1?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:42:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:43:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:43:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:43:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:43:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:43:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operations/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller delete - Connection: - - keep-alive - ParameterSetName: - - -g -n -y - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/locations/northeurope/operationResults/015c8fc2-08b7-4fd1-b6d4-4afebf1ef09c?api-version=2022-10-01-preview - response: - body: - string: 'null' - headers: - cache-control: - - no-cache - content-length: - - '4' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - service-networking traffic-controller list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceNetworking/trafficControllers?api-version=2022-10-01-preview - response: - body: - string: '{"value":[{"properties":{"configurationEndpoints":["8f7e0fde09e648b08208b7a785d80aae.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-bugbash/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"19a5d2f1-5608-44c1-b543-a51d821d7954","location":"northeurope"},{"properties":{"configurationEndpoints":["8a5a17f08c314bba9e06a7a66adfa4bf.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/aksgupta-workload-id/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"f383ae7a-47eb-4cf9-b71e-3ee3e0f84fbd","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/3a2c63f936348a46e689c29961a3577c","name":"3a2c63f936348a46e689c29961a3577c","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"5578dbd4-c691-43e5-ad3c-a20bd8d8fcd1","location":"northeurope"},{"properties":{"configurationEndpoints":["2b66b08b47844977ae9b172ad1e274b2.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/frontends/frontend2"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller/associations/association"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sc-test/providers/Microsoft.ServiceNetworking/trafficControllers/traffic-controller","name":"traffic-controller","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d39baa41-18a9-442d-a4a4-c8e0f1432382","location":"northeurope"},{"properties":{"configurationEndpoints":["398605aa9a434770b6495082b0c89936.trafficcontroller.azure.com"],"frontends":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/frontends/f1"}],"associations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test/associations/a1"}],"provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestResourceGroup/providers/Microsoft.ServiceNetworking/trafficControllers/test","name":"test","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"949e5276-ae58-4e84-988b-e527c37dd9f1","location":"northeurope"},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_tc_testrghdb3xab3arfynrimxant4mcvjoyprc7mvg56kq6fbf5oqmtubloyz7ixidwuob/providers/Microsoft.ServiceNetworking/trafficControllers/tc1","name":"tc1","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"0eda5a6f-e548-405b-8fed-7f00789df496","location":"northeurope","tags":{"foo":"doo"}},{"properties":{"frontends":[],"associations":[],"provisioningState":"Failed"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/mc_sneha-managed-tc_snchh-mamaged-test_northeurope/providers/Microsoft.ServiceNetworking/trafficControllers/ncu","name":"ncu","type":"Microsoft.ServiceNetworking/TrafficControllers","etag":"d4c64992-4c1d-4db3-92dd-f86c818847df","location":"northcentralus"}]}' - headers: - cache-control: - - no-cache - content-length: - - '5126' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/publicIPAddresses/pip1?api-version=2022-05-01 - response: - body: - string: '' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:44:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4b3679ca-6e53-4098-8bd2-8db74e6fac49 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip delete - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ff901815-b6cc-4d5c-80c1-7a82fc8e2336 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip delete - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - response: - body: - string: '' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/5c1e979a-88b2-4921-bf63-ba2cfb17f968?api-version=2022-05-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4b3679ca-6e53-4098-8bd2-8db74e6fac49 - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999","name":"cli_record_test_tc_000999","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"Created":"2023-03-08T06:32:23.5575662Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '302' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "northeurope", "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '157' - Content-Type: - - application/json - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"e085d8de-32fc-476a-bad9-266d85c25bde\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"9bc9faa5-f20b-47a9-a242-dd54c342b421\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/564491b7-d6da-496c-9964-79bc8c01ff06?api-version=2022-01-01 - cache-control: - - no-cache - content-length: - - '618' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9075c455-3bf7-4552-bfec-71c1b5834805 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/564491b7-d6da-496c-9964-79bc8c01ff06?api-version=2022-01-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - cfd4c660-00bd-40bf-a0e4-160238f325f9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_record_test_tc_000999/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"bebdc0d9-0577-4305-8e13-98d55c7f60cf\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"9bc9faa5-f20b-47a9-a242-dd54c342b421\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '619' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 08 Mar 2023 06:44:51 GMT - etag: - - W/"bebdc0d9-0577-4305-8e13-98d55c7f60cf" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 088ecace-1068-49aa-941c-f99ebcff4f65 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_record_test_tc_000999?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:44:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:45:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:45:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:45:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:45:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:46:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:46:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:46:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:46:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - -n -y - User-Agent: - - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.7 (Windows-10-10.0.19045-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZSRUNPUkQ6NUZURVNUOjVGVEM6NUYwMDA5OTktTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 08 Mar 2023 06:47:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -version: 1 diff --git a/src/traffic-controller/azext_traffic_controller/tests/latest/test_trafficcontroller_commands.py b/src/traffic-controller/azext_traffic_controller/tests/latest/test_trafficcontroller_commands.py deleted file mode 100644 index 067d5731585..00000000000 --- a/src/traffic-controller/azext_traffic_controller/tests/latest/test_trafficcontroller_commands.py +++ /dev/null @@ -1,87 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# 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 -# -------------------------------------------------------------------------------------------- - -import os -import unittest -import tempfile - -from azure.cli.testsdk import * -from knack.util import CLIError -from azure.cli.core.profiles import supported_api_version, ResourceType -from azure.cli.core.commands.client_factory import get_subscription_id -from azure.cli.testsdk import ( - ScenarioTest, LiveScenarioTest, LocalContextScenarioTest, ResourceGroupPreparer, live_only, - KeyVaultPreparer, record_only) - -TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) - -class TrafficControllerWithFrontendAndAssiociationScenario(ScenarioTest): - def test_trafficcontroller_resources(self): - self.kwargs.update({ - 'rg': 'cli_record_test_tc_000999', - 'tc': 'tc1', - 'fe': 'fe1', - 'ip': 'pip1', - 'aso': 'a1', - 'vnet': 'vnet1', - 'subnet': "s1" - }) - - # Create Resource group - self.cmd('group create -n {rg} --location northeurope') - - # Create Traffic Controller - tcCount1 = len(self.cmd('service-networking traffic-controller list').get_output_in_json()) - self.cmd('service-networking traffic-controller create -g {rg} -n {tc} --tags foo=doo', - checks=self.check('tags.foo', 'doo')) - tcCount2 = len(self.cmd('service-networking traffic-controller list').get_output_in_json()) - self.assertTrue(tcCount2 == tcCount1 + 1) - self.cmd('service-networking traffic-controller show -g {rg} -n {tc}', checks=[ - self.check('name', '{tc}'), - self.check('resourceGroup', '{rg}'), - self.check('tags.foo', 'doo') - ]) - - # Create Frontend for traffic controller - self.cmd('network public-ip create -g {rg} -n {ip} --sku Standard --tier Global --location eastus2') - - tcFrontendCount1 = len(self.cmd('service-networking traffic-controller frontend list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.cmd('service-networking traffic-controller frontend create -g {rg} -n {fe} --traffic-controller-name {tc} --public-ip-address {ip}') - tcFrontendCount2 = len(self.cmd('service-networking traffic-controller frontend list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.assertTrue(tcFrontendCount2 == tcFrontendCount1 + 1) - self.cmd('service-networking traffic-controller frontend show -g {rg} -n {fe} --traffic-controller-name {tc}', checks=[ - self.check('name', '{fe}') - ]) - - #Create Association for traffic controller - vnet = self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name {subnet}').get_output_in_json() - subnet = self.cmd('network vnet subnet update -g {rg} -n {subnet} --vnet-name {vnet} --delegations Microsoft.ServiceNetworking/trafficControllers').get_output_in_json() - - associationCount1 = len(self.cmd('service-networking traffic-controller association list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.cmd('service-networking traffic-controller association create -g {rg} -n {aso} --traffic-controller-name {tc} --vnet-name {vnet} --subnet {subnet}') - associationCount2 = len(self.cmd('service-networking traffic-controller association list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.assertTrue(associationCount2 == associationCount1 + 1) - self.cmd('service-networking traffic-controller association show -g {rg} -n {aso} --traffic-controller-name {tc}', checks=[ - self.check('name', '{aso}') - ]) - - #Start Deleting - self.cmd('service-networking traffic-controller association delete -g {rg} -n {aso} --traffic-controller-name {tc} -y') - associationCount3 = len(self.cmd('service-networking traffic-controller association list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.assertTrue(associationCount3 == associationCount1) - - self.cmd('service-networking traffic-controller frontend delete -g {rg} -n {fe} --traffic-controller-name {tc} -y') - tcFrontendCount3 = len(self.cmd('service-networking traffic-controller frontend list -g {rg} --traffic-controller-name {tc}').get_output_in_json()) - self.assertTrue(tcFrontendCount3 == tcFrontendCount1) - - self.cmd('service-networking traffic-controller delete -g {rg} -n {tc} -y') - tcCount3 = len(self.cmd('service-networking traffic-controller list').get_output_in_json()) - self.assertTrue(tcCount3 == tcCount1) - - self.cmd('network public-ip delete -g {rg} -n {ip}') - self.cmd('network vnet create -g {rg} -n {vnet}') - self.cmd('group delete -n {rg} -y') \ No newline at end of file From c07974884e7c1ce8c885b77f09808763cb5c4d81 Mon Sep 17 00:00:00 2001 From: Jaishal Shah Date: Mon, 19 Jun 2023 00:22:17 -0700 Subject: [PATCH 2/3] fix pylint errros --- src/alb/azext_alb/custom.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/alb/azext_alb/custom.py b/src/alb/azext_alb/custom.py index 9e575f50df2..2cbefcb9ace 100644 --- a/src/alb/azext_alb/custom.py +++ b/src/alb/azext_alb/custom.py @@ -13,6 +13,7 @@ logger = get_logger(__name__) + class AssociationCreate(_AssociationCreate): @classmethod def _build_arguments_schema(cls, *args, **kwargs): From 1e3b7b44ac1ce7d83ac40d1610cc71b1614140b1 Mon Sep 17 00:00:00 2001 From: Jaishal Shah Date: Mon, 19 Jun 2023 00:55:14 -0700 Subject: [PATCH 3/3] code owners and address comments --- .github/CODEOWNERS | 2 +- src/alb/HISTORY.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 4996edf93ac..f3709a3b811 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -282,7 +282,7 @@ /src/storage-mover/ @calvinhzy -/src/traffic-controller/ @jaishals +/src/alb/ @jaishals /src/managedccfs/ @msftsettiy diff --git a/src/alb/HISTORY.rst b/src/alb/HISTORY.rst index 8c34bccfff8..8752512f491 100644 --- a/src/alb/HISTORY.rst +++ b/src/alb/HISTORY.rst @@ -5,4 +5,4 @@ Release History 0.1.0 ++++++ -* Initial release. \ No newline at end of file +* Initial release for ALB extension. \ No newline at end of file