diff --git a/src/azure-cli/azure/cli/command_modules/maps/_params.py b/src/azure-cli/azure/cli/command_modules/maps/_params.py index d15a1c29790..d6958d6684e 100644 --- a/src/azure-cli/azure/cli/command_modules/maps/_params.py +++ b/src/azure-cli/azure/cli/command_modules/maps/_params.py @@ -46,6 +46,8 @@ def load_arguments(self, _): with self.argument_context('maps account create') as c: c.argument('kind', options_list=['--kind'], arg_type=get_enum_type(['Gen1', 'Gen2']), help='Get or Set Kind property.') + c.argument('location', options_list=['--location', '-l'], arg_type=get_location_type(self.cli_ctx), + required=False, validator=get_default_location_from_resource_group) c.argument('disable_local_auth', options_list=['--disable-local-auth'], arg_type=get_three_state_flag(), help='Allows toggle functionality on Azure ' 'Policy to disable Azure Maps local authentication support. This will disable Shared Keys ' diff --git a/src/azure-cli/azure/cli/command_modules/maps/custom.py b/src/azure-cli/azure/cli/command_modules/maps/custom.py index 9660114d039..5ed48f79ff9 100644 --- a/src/azure-cli/azure/cli/command_modules/maps/custom.py +++ b/src/azure-cli/azure/cli/command_modules/maps/custom.py @@ -7,8 +7,6 @@ from knack.prompting import prompt_y_n from knack.util import CLIError -ACCOUNT_LOCATION = 'global' - logger = get_logger(__name__) @@ -18,6 +16,7 @@ def maps_account_create(client, name, tags=None, kind=None, + location=None, disable_local_auth=None, linked_resources=None, type_=None, @@ -44,15 +43,13 @@ def maps_account_create(client, option = prompt_y_n(hint) if not option: raise CLIError(client_denied_terms) - if kind is None: - kind = "Gen1" if disable_local_auth is None: disable_local_auth = False maps_account = {} if tags is not None: maps_account['tags'] = tags - maps_account['location'] = ACCOUNT_LOCATION - maps_account['kind'] = "Gen1" if kind is None else kind + maps_account['kind'] = kind or 'Gen2' + maps_account['location'] = location or 'eastus' maps_account['properties'] = {} maps_account['properties']['disable_local_auth'] = False if disable_local_auth is None else disable_local_auth if linked_resources is not None: diff --git a/src/azure-cli/azure/cli/command_modules/maps/tests/latest/recordings/test_create_maps_account.yaml b/src/azure-cli/azure/cli/command_modules/maps/tests/latest/recordings/test_create_maps_account.yaml index d91c60ce536..7fc8d3d0199 100644 --- a/src/azure-cli/azure/cli/command_modules/maps/tests/latest/recordings/test_create_maps_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/maps/tests/latest/recordings/test_create_maps_account.yaml @@ -1,1089 +1,1275 @@ interactions: -- request: - body: '{"location": "global", "sku": {"name": "S0"}, "kind": "Gen1", "properties": - {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --accept-tos - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:50:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"location": "global", "sku": {"name": "S0"}, "kind": "Gen1", "properties": - {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --accept-tos - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:50:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: '{"location": "global", "sku": {"name": "S1"}, "kind": "Gen1", "properties": - {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --accept-tos - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"d75d22d6-4e8e-46ae-9ac8-93bc3ab805a9\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008\",\r\n - \ \"name\": \"clis1-000008\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: '{"tags": {"key-000003": "val-000004"}, "kind": "Gen1", "sku": {"name": - "S1"}, "properties": {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account update - Connection: - - keep-alive - Content-Length: - - '120' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --tags - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {\r\n \"key-000003\": \"val-000004\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '594' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account show - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {\r\n \"key-000003\": \"val-000004\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '594' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account show - Connection: - - keep-alive - ParameterSetName: - - --ids - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {\r\n \"key-000003\": \"val-000004\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '594' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Gen1\",\r\n \"type\": - \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n - \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {\r\n \"key-000003\": \"val-000004\"\r\n }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '695' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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": "global", "sku": {"name": "S0"}, "kind": "Gen1", "properties": - {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --accept-tos - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"bb99b7b4-726a-4433-bfab-8c35a5410a61\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006\",\r\n - \ \"name\": \"cli-000006\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: '{"location": "global", "sku": {"name": "S0"}, "kind": "Gen1", "properties": - {"disableLocalAuth": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account create - Connection: - - keep-alive - Content-Length: - - '104' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --accept-tos - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007?api-version=2021-02-01 - response: - body: - string: "{\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"properties\": {\r\n \"uniqueId\": \"13b4276e-6992-48e6-b0b9-96342aea23b0\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007\",\r\n - \ \"name\": \"cli-000007\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Gen1\",\r\n \"type\": - \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n - \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"uniqueId\": \"864ba8f7-4cf6-42dd-86d0-416430bffd4f\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\r\n - \ \"name\": \"cli-000005\",\r\n \"location\": \"global\",\r\n \"tags\": - {\r\n \"key-000003\": \"val-000004\"\r\n }\r\n },\r\n {\r\n - \ \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n - \ },\r\n \"properties\": {\r\n \"uniqueId\": \"13b4276e-6992-48e6-b0b9-96342aea23b0\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": - false\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007\",\r\n - \ \"name\": \"cli-000007\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1324' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Gen1\",\r\n \"type\": - \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n - \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"uniqueId\": \"d75d22d6-4e8e-46ae-9ac8-93bc3ab805a9\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008\",\r\n - \ \"name\": \"clis1-000008\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n },\r\n {\r\n \"kind\": \"Gen1\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n - \ \"sku\": {\r\n \"name\": \"S0\",\r\n \"tier\": \"Standard\"\r\n - \ },\r\n \"properties\": {\r\n \"uniqueId\": \"bb99b7b4-726a-4433-bfab-8c35a5410a61\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"disableLocalAuth\": - false\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006\",\r\n - \ \"name\": \"cli-000006\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1280' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/listKeys?api-version=2021-02-01 - response: - body: - string: "{\r\n \"primaryKey\": \"5fGwdHtQQrCy6PsamtRlk8E3wEW3f9_cUVmRVdXG4-w\",\r\n - \ \"secondaryKey\": \"7DKg0q2oVYvzzouZbU2InTg8YwaX_juuDSmVidjVVV8\",\r\n \"primaryKeyLastUpdated\": - \"2021-06-18T08:50:51.5110656Z\",\r\n \"secondaryKeyLastUpdated\": \"2021-06-18T08:50:51.5110656Z\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '255' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: '{"keyType": "primary"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account keys renew - Connection: - - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - -n -g --key - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/regenerateKey?api-version=2021-02-01 - response: - body: - string: "{\r\n \"primaryKey\": \"lZIHpt5vbGlPumeLVHy_cUl3V1sIiKoMJ2PWAS3KBj8\",\r\n - \ \"secondaryKey\": \"7DKg0q2oVYvzzouZbU2InTg8YwaX_juuDSmVidjVVV8\",\r\n \"primaryKeyLastUpdated\": - \"2021-06-18T08:51:28.5243488Z\",\r\n \"secondaryKeyLastUpdated\": \"2021-06-18T08:50:51.5110656Z\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '255' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: '{"keyType": "secondary"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account keys renew - Connection: - - keep-alive - Content-Length: - - '24' - Content-Type: - - application/json - ParameterSetName: - - -n -g --key - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/regenerateKey?api-version=2021-02-01 - response: - body: - string: "{\r\n \"primaryKey\": \"lZIHpt5vbGlPumeLVHy_cUl3V1sIiKoMJ2PWAS3KBj8\",\r\n - \ \"secondaryKey\": \"iHoGDak-ok-y2qQtlGTSRu0D_84CaCjURKkFo_t8TjY\",\r\n \"primaryKeyLastUpdated\": - \"2021-06-18T08:51:28.5243488Z\",\r\n \"secondaryKeyLastUpdated\": \"2021-06-18T08:51:29.3376722Z\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '255' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Jun 2021 08:51:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Gen1\",\r\n \"type\": - \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"S0\",\r\n - \ \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n - \ \"uniqueId\": \"13b4276e-6992-48e6-b0b9-96342aea23b0\",\r\n \"provisioningState\": - \"Succeeded\",\r\n \"disableLocalAuth\": false\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007\",\r\n - \ \"name\": \"cli-000007\",\r\n \"location\": \"global\",\r\n \"tags\": - {}\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '651' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - 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: - - maps account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006?api-version=2021-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Jun 2021 08:51:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007?api-version=2021-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Jun 2021 08:51:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008?api-version=2021-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 18 Jun 2021 08:51:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Kestrel - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:59 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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - maps account list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - AZURECLI/2.24.0 azsdk-python-mgmt-maps/2.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts?api-version=2021-02-01 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 18 Jun 2021 08:51:59 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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_create_maps_account","date":"2025-11-12T22:55:02Z","module":"maps"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - "360" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:05 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: FA970FF649D34AF6A5B82752F4A7D22B Ref B: MWH011020808042 Ref C: 2025-11-12T22:55:05Z" + status: + code: 200 + message: OK + - request: + body: + '{"location": "eastus", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - "104" + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"37b55d1f-6066-4046-ad8f-afb23f59fab5\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:06.3188363Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:06.3188363Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\n + \ \"name\": \"cli-000005\",\n \"location\": \"eastus\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "726" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:05 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/987fc7fe-0d48-420a-8abf-5acdf29178fb + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 2BF30D9F943E42FCB87B6B26D798BC86 Ref B: CO6AA3150217045 Ref C: 2025-11-12T22:55:05Z" + status: + code: 201 + message: Created + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_create_maps_account","date":"2025-11-12T22:55:04Z","module":"maps"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - "360" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:06 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 44F91630C134422FB188CDCA360CC845 Ref B: CO6AA3150220045 Ref C: 2025-11-12T22:55:06Z" + status: + code: 200 + message: OK + - request: + body: + '{"location": "eastus", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - "104" + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"8cc81d0c-6e26-44f9-8c2f-5545bba29f03\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:06.9959846Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:06.9959846Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008\",\n + \ \"name\": \"clis1-000008\",\n \"location\": \"eastus\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "730" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:06 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/fc25a98f-f718-445f-91b5-670c87e0b805 + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 987F2FCD21654D28B9C8C104D85EA9AE Ref B: MWH011020808031 Ref C: 2025-11-12T22:55:06Z" + status: + code: 201 + message: Created + - request: + body: '{"tags": {"key-000003": "val-000004"}, "sku": {"name": "G2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account update + Connection: + - keep-alive + Content-Length: + - "61" + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --tags + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"37b55d1f-6066-4046-ad8f-afb23f59fab5\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:06.3188363Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:07.4055355Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\n + \ \"name\": \"cli-000005\",\n \"location\": \"eastus\",\n \"tags\": {\n + \ \"key-000003\": \"val-000004\"\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - "774" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:07 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/459f3bdd-2120-4a2a-9526-81b9794123a2 + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 2EBDCE473EDC45B68D325689AD8B6869 Ref B: CO6AA3150220009 Ref C: 2025-11-12T22:55:07Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"37b55d1f-6066-4046-ad8f-afb23f59fab5\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:06.3188363Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:07.4055355Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\n + \ \"name\": \"cli-000005\",\n \"location\": \"eastus\",\n \"tags\": {\n + \ \"key-000003\": \"val-000004\"\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - "774" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:07 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 01717299CAE1476F8F94EC4E961D80AC Ref B: MWH011020806025 Ref C: 2025-11-12T22:55:07Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account show + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"37b55d1f-6066-4046-ad8f-afb23f59fab5\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:06.3188363Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:07.4055355Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005\",\n + \ \"name\": \"cli-000005\",\n \"location\": \"eastus\",\n \"tags\": {\n + \ \"key-000003\": \"val-000004\"\n }\n}" + headers: + cache-control: + - no-cache + content-length: + - "774" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:07 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: E016C29CC3654D28A308CBBDB16703DD Ref B: CO6AA3150219009 Ref C: 2025-11-12T22:55:08Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"37b55d1f-6066-4046-ad8f-afb23f59fab5","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:06.3188363Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:07.4055355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005","name":"cli-000005","location":"eastus","tags":{"key-000003":"val-000004"}}]}' + headers: + cache-control: + - no-cache + content-length: + - "665" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:08 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 00-fd5728ee51705b003cab5d0d78238da5-511d83e22d2178bc-01 + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: C700A54B03C74E7B95ADDDB2B7F939D3 Ref B: MWH011020809031 Ref C: 2025-11-12T22:55:08Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_create_maps_account","date":"2025-11-12T22:55:04Z","module":"maps"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - "360" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:08 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: D84614F87E9A4F63A1A0EFF1BF9D7BF5 Ref B: MWH011020809042 Ref C: 2025-11-12T22:55:08Z" + status: + code: 200 + message: OK + - request: + body: + '{"location": "eastus", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - "104" + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"05c267cd-46b8-45f4-bb5f-09dadf78dfaf\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:09.1698747Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:09.1698747Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006\",\n + \ \"name\": \"cli-000006\",\n \"location\": \"eastus\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "726" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:08 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/7a977054-99dd-4d3e-aed4-02e3917d113d + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 77A66B691D344C63A9A7A1B48A040686 Ref B: CO6AA3150217045 Ref C: 2025-11-12T22:55:08Z" + status: + code: 201 + message: Created + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_create_maps_account","date":"2025-11-12T22:55:02Z","module":"maps"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - "360" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:09 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 8CF8E1FA655B4C009A945CEFA64502D3 Ref B: MWH011020809040 Ref C: 2025-11-12T22:55:09Z" + status: + code: 200 + message: OK + - request: + body: + '{"location": "eastus", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - "104" + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --accept-tos + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007?api-version=2021-02-01 + response: + body: + string: + "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"f717db50-e1ef-4e7f-90dc-f4b8ccc77d44\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T22:55:10.0757841Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T22:55:10.0757841Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007\",\n + \ \"name\": \"cli-000007\",\n \"location\": \"eastus\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "726" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:09 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/02b88d5d-ef7e-4aa5-ba6c-3759f7e45ef9 + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: D26248B827F54403AE0EE602D9961000 Ref B: MWH011020806040 Ref C: 2025-11-12T22:55:09Z" + status: + code: 201 + message: Created + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"37b55d1f-6066-4046-ad8f-afb23f59fab5","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:06.3188363Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:07.4055355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005","name":"cli-000005","location":"eastus","tags":{"key-000003":"val-000004"}},{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"f717db50-e1ef-4e7f-90dc-f4b8ccc77d44","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:10.0757841Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:10.0757841Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007","name":"cli-000007","location":"eastus"}]}' + headers: + cache-control: + - no-cache + content-length: + - "1284" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:09 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 00-a9edb07e141d06922c6ac65c7c27678f-e9d2aa5768a005b0-01 + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: AEADF90647E14BE8A33C22489E5D7D0E Ref B: MWH011020807029 Ref C: 2025-11-12T22:55:10Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"8cc81d0c-6e26-44f9-8c2f-5545bba29f03","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:06.9959846Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:06.9959846Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008","name":"clis1-000008","location":"eastus"},{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"05c267cd-46b8-45f4-bb5f-09dadf78dfaf","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:09.1698747Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:09.1698747Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006","name":"cli-000006","location":"eastus"}]}' + headers: + cache-control: + - no-cache + content-length: + - "1253" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:10 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 00-69ec7b722bf8ae4b67908a9596e64131-c5074dfd2d91fafe-01 + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 56DD6B193A5744B6965D047DA262B1EF Ref B: CO6AA3150219017 Ref C: 2025-11-12T22:55:10Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account keys list + Connection: + - keep-alive + Content-Length: + - "0" + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/listKeys?api-version=2021-02-01 + response: + body: + string: "{\n \"primaryKey\": \"CommonAnnotatedPrimaryKey\",\n + \ \"secondaryKey\": \"CommonAnnotatedSecondaryKey\",\n + \ \"primaryKeyLastUpdated\": \"2025-11-12T22:55:06.3634448Z\",\n \"secondaryKeyLastUpdated\": + \"2025-11-12T22:55:06.3635086Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "332" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:10 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/0b55f612-a9cf-4bc1-87dc-911f7c367004 + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 128D18A9498B4ED7A43D20072DE56876 Ref B: CO6AA3150219053 Ref C: 2025-11-12T22:55:10Z" + status: + code: 200 + message: OK + - request: + body: '{"keyType": "primary"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account keys renew + Connection: + - keep-alive + Content-Length: + - "22" + Content-Type: + - application/json + ParameterSetName: + - -n -g --key + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/regenerateKey?api-version=2021-02-01 + response: + body: + string: "{\n \"primaryKey\": \"CommonAnnotatedPrimaryKey2\",\n + \ \"secondaryKey\": \"CommonAnnotatedSecondaryKey\",\n + \ \"primaryKeyLastUpdated\": \"2025-11-12T22:55:11.4493839Z\",\n \"secondaryKeyLastUpdated\": + \"2025-11-12T22:55:06.3635086Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "332" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:10 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/183ad5d2-c2dd-42e0-8ca2-2fdd37e9f24d + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: 5605240422294AD3922DC61188885A0A Ref B: CO6AA3150220011 Ref C: 2025-11-12T22:55:11Z" + status: + code: 200 + message: OK + - request: + body: '{"keyType": "secondary"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account keys renew + Connection: + - keep-alive + Content-Length: + - "24" + Content-Type: + - application/json + ParameterSetName: + - -n -g --key + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005/regenerateKey?api-version=2021-02-01 + response: + body: + string: "{\n \"primaryKey\": \"CommonAnnotatedPrimaryKey2\",\n + \ \"secondaryKey\": \"CommonAnnotatedSecondaryKey2\",\n + \ \"primaryKeyLastUpdated\": \"2025-11-12T22:55:11.4493839Z\",\n \"secondaryKeyLastUpdated\": + \"2025-11-12T22:55:11.7333192Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - "332" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:11 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/be27f7c8-cf81-4be0-867b-e5f0ad52e9ff + x-ms-ratelimit-remaining-subscription-global-writes: + - "2999" + x-ms-ratelimit-remaining-subscription-writes: + - "199" + x-msedge-ref: + - "Ref A: C8A5F3DB805F4B8BB144EDA619BC77BF Ref B: MWH011020807036 Ref C: 2025-11-12T22:55:11Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account delete + Connection: + - keep-alive + Content-Length: + - "0" + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000005?api-version=2021-02-01 + response: + body: + string: "" + headers: + cache-control: + - no-cache + content-length: + - "0" + date: + - Wed, 12 Nov 2025 22:55:11 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/24a3edb8-970f-4dcf-af25-6a52a66b15e4 + x-ms-ratelimit-remaining-subscription-deletes: + - "199" + x-ms-ratelimit-remaining-subscription-global-deletes: + - "2999" + x-msedge-ref: + - "Ref A: F1367C55782B4779A7AE8824E19921C2 Ref B: MWH011020809052 Ref C: 2025-11-12T22:55:11Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[{"kind":"Gen2","type":"Microsoft.Maps/accounts","sku":{"name":"G2","tier":"Standard"},"properties":{"uniqueId":"f717db50-e1ef-4e7f-90dc-f4b8ccc77d44","provisioningState":"Succeeded","disableLocalAuth":false},"systemData":{"createdBy":"m@microsoft.mbelt.net","createdByType":"User","createdAt":"2025-11-12T22:55:10.0757841Z","lastModifiedBy":"m@microsoft.mbelt.net","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T22:55:10.0757841Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007","name":"cli-000007","location":"eastus"}]}' + headers: + cache-control: + - no-cache + content-length: + - "630" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:12 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 00-458bbdcc3343778d5b3c267f446cd5cc-df39ba18b9e9b8b5-01 + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 59050A3032784385994E04EA5A0C55BC Ref B: CO6AA3150218029 Ref C: 2025-11-12T22:55:12Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account delete + Connection: + - keep-alive + Content-Length: + - "0" + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/cli-000006?api-version=2021-02-01 + response: + body: + string: "" + headers: + cache-control: + - no-cache + content-length: + - "0" + date: + - Wed, 12 Nov 2025 22:55:13 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/c65cdd20-aee7-4bb3-8d91-452351091224 + x-ms-ratelimit-remaining-subscription-deletes: + - "199" + x-ms-ratelimit-remaining-subscription-global-deletes: + - "2999" + x-msedge-ref: + - "Ref A: 25DF5DCFC6C3465B8EE15222125C5057 Ref B: MWH011020808052 Ref C: 2025-11-12T22:55:13Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account delete + Connection: + - keep-alive + Content-Length: + - "0" + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts/cli-000007?api-version=2021-02-01 + response: + body: + string: "" + headers: + cache-control: + - no-cache + content-length: + - "0" + date: + - Wed, 12 Nov 2025 22:55:13 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/a6e47c73-ec46-487e-9745-019afb240140 + x-ms-ratelimit-remaining-subscription-deletes: + - "199" + x-ms-ratelimit-remaining-subscription-global-deletes: + - "2999" + x-msedge-ref: + - "Ref A: 442E92B0922E462DA3946CA543FC1B22 Ref B: MWH011020806023 Ref C: 2025-11-12T22:55:13Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account delete + Connection: + - keep-alive + Content-Length: + - "0" + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts/clis1-000008?api-version=2021-02-01 + response: + body: + string: "" + headers: + cache-control: + - no-cache + content-length: + - "0" + date: + - Wed, 12 Nov 2025 22:55:14 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus/28df7271-7fa1-441b-96a3-f7d933dd1b79 + x-ms-ratelimit-remaining-subscription-deletes: + - "199" + x-ms-ratelimit-remaining-subscription-global-deletes: + - "2999" + x-msedge-ref: + - "Ref A: 79C524FB95AF4B0DA479C7EB1A3E65E9 Ref B: MWH011020808034 Ref C: 2025-11-12T22:55:14Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - "12" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:14 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: D34A445EB29F4F488F06C8447A579605 Ref B: MWH011020806052 Ref C: 2025-11-12T22:55:15Z" + status: + code: 200 + message: OK + - request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Maps/accounts?api-version=2021-02-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - "12" + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 22:55:14 GMT + expires: + - "-1" + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - "3749" + x-msedge-ref: + - "Ref A: 5F3649A333C64E929E0FF83201A6496B Ref B: CO6AA3150220037 Ref C: 2025-11-12T22:55:15Z" + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/maps/tests/latest/test_maps_commands.py b/src/azure-cli/azure/cli/command_modules/maps/tests/latest/test_maps_commands.py index 1edeb869577..d796136ef67 100644 --- a/src/azure-cli/azure/cli/command_modules/maps/tests/latest/test_maps_commands.py +++ b/src/azure-cli/azure/cli/command_modules/maps/tests/latest/test_maps_commands.py @@ -10,8 +10,8 @@ class MapsScenarioTests(ScenarioTest): - @ResourceGroupPreparer(key='rg') - @ResourceGroupPreparer(key='rg1') + @ResourceGroupPreparer(key='rg', location="eastus") + @ResourceGroupPreparer(key='rg1', location="eastus") def test_create_maps_account(self, resource_group): tag_key = self.create_random_name(prefix='key-', length=10) tag_value = self.create_random_name(prefix='val-', length=10) @@ -21,8 +21,7 @@ def test_create_maps_account(self, resource_group): 'name1': self.create_random_name(prefix='cli-', length=20), 'name2': self.create_random_name(prefix='cli-', length=20), 'name3': self.create_random_name(prefix='clis1-', length=20), - 'sku': 's0', - 'skus1': 's1', + 'sku': 'g2', 'tags': tag_key + '=' + tag_value, 'key_type_primary': 'primary', 'key_type_secondary': 'secondary' @@ -38,28 +37,24 @@ def test_create_maps_account(self, resource_group): self.not_exists('tags') ]).get_output_in_json() - # Call create again, expect to get the same account. - account_duplicated = self.cmd( - 'az maps account create -n {name} -g {rg} --sku {sku} --accept-tos').get_output_in_json() - self.assertEqual(account, account_duplicated) - self.cmd('az maps account create -n {name3} -g {rg1} --sku {skus1} --accept-tos', + self.cmd('az maps account create -n {name3} -g {rg1} --sku {sku} --accept-tos', checks=[ self.check('name', '{name3}'), self.check('resourceGroup', '{rg1}'), - self.check('sku.name', '{skus1}', case_sensitive=False), + self.check('sku.name', '{sku}', case_sensitive=False), self.not_exists('tags') ]).get_output_in_json() # Test 'az maps account update' # Test to add a new tag to an existing account. # Test to upgrade tier to `S1` - self.cmd('az maps account update -n {name} -g {rg} --sku {skus1} --tags {tags}', + self.cmd('az maps account update -n {name} -g {rg} --sku {sku} --tags {tags}', checks=[ self.check('id', account['id']), self.check('name', '{name}'), self.check('resourceGroup', '{rg}'), - self.check('sku.name', '{skus1}', case_sensitive=False), + self.check('sku.name', '{sku}', case_sensitive=False), self.check('tags', {tag_key: tag_value}) ]) @@ -69,14 +64,14 @@ def test_create_maps_account(self, resource_group): self.check('id', account['id']), self.check('name', '{name}'), self.check('resourceGroup', '{rg}'), - self.check('sku.name', '{skus1}', case_sensitive=False) + self.check('sku.name', '{sku}', case_sensitive=False) ]) # Search by id self.cmd('az maps account show --ids ' + account['id'], checks=[ self.check('id', account['id']), self.check('name', '{name}'), self.check('resourceGroup', '{rg}'), - self.check('sku.name', '{skus1}', case_sensitive=False), + self.check('sku.name', '{sku}', case_sensitive=False), self.check('tags', {tag_key: tag_value}) ]) @@ -88,7 +83,7 @@ def test_create_maps_account(self, resource_group): self.check('[0].id', account['id']), self.check('[0].name', '{name}'), self.check('[0].resourceGroup', '{rg}'), - self.check('[0].sku.name', '{skus1}', case_sensitive=False), + self.check('[0].sku.name', '{sku}', case_sensitive=False), self.check('[0].tags', {tag_key: tag_value}) ]) diff --git a/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py b/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py index fb0800d6634..d216985f283 100644 --- a/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py +++ b/src/azure-cli/azure/cli/command_modules/network/private_link_resource_and_endpoint_connections/custom.py @@ -87,6 +87,7 @@ def register_providers(): _register_one_provider('Microsoft.FluidRelay/fluidRelayServers', '2025-03-10-preview', True) _register_one_provider('Microsoft.VideoIndexer/accounts', '2025-04-01', True) _register_one_provider('Microsoft.Security/privateLinks', '2025-09-01-preview', True) + _register_one_provider('Microsoft.Maps/accounts', '2023-12-01-preview', True) def _register_one_provider(provider, api_version, support_list_or_not, resource_get_api_version=None, support_connection_operation=True): # pylint: disable=line-too-long diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_maps.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_maps.yaml new file mode 100644 index 00000000000..a7447b485ed --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_maps.yaml @@ -0,0 +1,2537 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_maps_private_endpoint_connection_000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001","name":"test_maps_private_endpoint_connection_000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_maps","date":"2025-11-12T21:45:24Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:45:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F2AC0EF9AAF04A839D86E417D49CE8DE Ref B: CO6AA3150220029 Ref C: 2025-11-12T21:45:25Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, + "subnets": [{"name": "maps-privatelink-subnet000004", "properties": {"addressPrefix": + "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '257' + Content-Type: + - application/json + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003?api-version=2024-07-01 + response: + body: + string: '{"name":"maps-privatelink-vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003","etag":"W/\"264710f5-f636-46a1-a262-5617448945c5\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"00911d37-9b3e-4f9f-9918-8b9619f93427","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"maps-privatelink-subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004","etag":"W/\"264710f5-f636-46a1-a262-5617448945c5\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/727e919b-7df5-4b90-ad14-939703119fb8?api-version=2024-07-01&t=638985807540960896&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=bimY-ugmYUUHoYbG97j4YAx2xQ91ZVwNodlhu3bGwYm4fvosuzAHo07LWhq6BoYBhVGMOp0riY5-Vv2q__KOdRuQlJstCXwTvwJY8oKplcJpK4SSfHF5IlPdip3fvU2-uVcpiDlyTkVJCXad6tRLB7W5nVNtpGQMg5qAAvMXVrzi4irngKdRXulc4xwo1Wk1m6GINxsnG1Riiybwas8oHoh_AOvU0F-V1m5dEDcJu12oLufVVSlyTzQWxy4v1ivO2AJ60eOkco9UGgNGRITNX7XNbMVOLM57gyM5BlyCW5EWVFiKkbVlsC89O1vfcIzEf1obIolNpEQD4ToEoEaECg&h=vxf7mUCh2_8vOPxxWCzxx4yYjukbhLqXXGbaXsqgayU + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:45:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 62cce26b-cd86-4341-b0c7-9b076e4c0a41 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/eacd0110-ce47-4626-a714-69398fbc5c0d + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 0D0823987B2C42498E91A6EDFA09602E Ref B: MWH011020808062 Ref C: 2025-11-12T21:45:40Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/727e919b-7df5-4b90-ad14-939703119fb8?api-version=2024-07-01&t=638985807540960896&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=bimY-ugmYUUHoYbG97j4YAx2xQ91ZVwNodlhu3bGwYm4fvosuzAHo07LWhq6BoYBhVGMOp0riY5-Vv2q__KOdRuQlJstCXwTvwJY8oKplcJpK4SSfHF5IlPdip3fvU2-uVcpiDlyTkVJCXad6tRLB7W5nVNtpGQMg5qAAvMXVrzi4irngKdRXulc4xwo1Wk1m6GINxsnG1Riiybwas8oHoh_AOvU0F-V1m5dEDcJu12oLufVVSlyTzQWxy4v1ivO2AJ60eOkco9UGgNGRITNX7XNbMVOLM57gyM5BlyCW5EWVFiKkbVlsC89O1vfcIzEf1obIolNpEQD4ToEoEaECg&h=vxf7mUCh2_8vOPxxWCzxx4yYjukbhLqXXGbaXsqgayU + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:45:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3dbbedd5-56c8-4729-83a5-f2779eda4d39 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/6675dd6e-c47a-41bc-8659-51c6245c9a69 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EA6F031ED87F460EAA16FB23541CA7DF Ref B: MWH011020808054 Ref C: 2025-11-12T21:45:54Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/727e919b-7df5-4b90-ad14-939703119fb8?api-version=2024-07-01&t=638985807540960896&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=bimY-ugmYUUHoYbG97j4YAx2xQ91ZVwNodlhu3bGwYm4fvosuzAHo07LWhq6BoYBhVGMOp0riY5-Vv2q__KOdRuQlJstCXwTvwJY8oKplcJpK4SSfHF5IlPdip3fvU2-uVcpiDlyTkVJCXad6tRLB7W5nVNtpGQMg5qAAvMXVrzi4irngKdRXulc4xwo1Wk1m6GINxsnG1Riiybwas8oHoh_AOvU0F-V1m5dEDcJu12oLufVVSlyTzQWxy4v1ivO2AJ60eOkco9UGgNGRITNX7XNbMVOLM57gyM5BlyCW5EWVFiKkbVlsC89O1vfcIzEf1obIolNpEQD4ToEoEaECg&h=vxf7mUCh2_8vOPxxWCzxx4yYjukbhLqXXGbaXsqgayU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0a953d4f-55d6-4aae-b351-996b806138d8 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/a8d9d5b4-c698-42fe-a4c6-65882db84994 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 07495EBC2690451FB5D81CCC180CC638 Ref B: CO6AA3150219017 Ref C: 2025-11-12T21:46:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003?api-version=2024-07-01 + response: + body: + string: '{"name":"maps-privatelink-vnet000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003","etag":"W/\"87a75c7b-0a9f-4002-830e-bb9fd46f61e9\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"00911d37-9b3e-4f9f-9918-8b9619f93427","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"maps-privatelink-subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004","etag":"W/\"87a75c7b-0a9f-4002-830e-bb9fd46f61e9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + headers: + cache-control: + - no-cache + content-length: + - '1164' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:40 GMT + etag: + - W/"87a75c7b-0a9f-4002-830e-bb9fd46f61e9" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 29be1ac5-8e46-4926-8f41-7169a3a6805c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F23BC24B203445BB9191757DF4036593 Ref B: MWH011020808052 Ref C: 2025-11-12T21:46:41Z' + 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: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004?api-version=2024-07-01 + response: + body: + string: '{"name":"maps-privatelink-subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004","etag":"W/\"87a75c7b-0a9f-4002-830e-bb9fd46f61e9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:42 GMT + etag: + - W/"87a75c7b-0a9f-4002-830e-bb9fd46f61e9" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - eb6d1fc9-9e6c-4ade-a552-dea26414b727 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/bbad3eb3-ae85-4ad0-8fec-718251a71ef2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 268D256D601A4FEDB8E8EADEBCED2730 Ref B: CO6AA3150218021 Ref C: 2025-11-12T21:46:42Z' + status: + code: 200 + message: '' +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004", + "name": "maps-privatelink-subnet000004", "properties": {"addressPrefix": "10.0.0.0/24", + "delegations": [], "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: + - '486' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004?api-version=2024-07-01 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 12 Nov 2025 21:46:49 GMT + x-cache: + - CONFIG_NOCACHE + x-msedge-ref: + - 'Ref A: 34650ABA1AB6490B894BFB7F017C41C5 Ref B: CO6AA3150217053 Ref C: 2025-11-12T21:46:43Z' + status: + code: 503 + message: Service Unavailable +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004", + "name": "maps-privatelink-subnet000004", "properties": {"addressPrefix": "10.0.0.0/24", + "delegations": [], "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: + - '486' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004?api-version=2024-07-01 + response: + body: + string: '{"name":"maps-privatelink-subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004","etag":"W/\"599256a6-5de7-4ae9-b171-7548a362acfb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d925e6ac-09aa-4336-ba34-d03eaf11b6b7?api-version=2024-07-01&t=638985808100194290&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=kp443l_TZl5uXKYFKZ9Zo4dST3uoZOcyQLASXxuhYzSR6Sl1ARtRRPYslKa2snViF_W4i7CTYO7BuQExuvENcG2243Iv7a6_rmbuFCjqby5PAiWP5XBPa7Z8q-LT-HH2A-WHKCf0iNwLn5AgszGEQxS1Q3jMUqTL1xIxaVrizCHosW3kPVFG1QwOlfprBTgm0YfSL3RLbrT-nOyjZifRxCShekXqU20P4efhCRL3kjVXpceM9euKKf0XbiZOlC7qg9BKnlMUH2qnnh2opgalvtpVrqkWu8-b1VmvqumDn6DzpBInC0RD0UMy5H5XMVG-VVsXNiTStb8TvvOlV6uiWw&h=Lkaffv2zgse0Hy8mHHNh7ZsCFLC7ib1Jpcfu_u2yemU + cache-control: + - no-cache + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 212eb80d-4d2b-4c53-b3df-5d14b1b072fb + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/f97bee4d-195f-4c87-8652-240bb529752f + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 8805833203974822B012C0C0CF5C6CFE Ref B: MWH011020808023 Ref C: 2025-11-12T21:46:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d925e6ac-09aa-4336-ba34-d03eaf11b6b7?api-version=2024-07-01&t=638985808100194290&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=kp443l_TZl5uXKYFKZ9Zo4dST3uoZOcyQLASXxuhYzSR6Sl1ARtRRPYslKa2snViF_W4i7CTYO7BuQExuvENcG2243Iv7a6_rmbuFCjqby5PAiWP5XBPa7Z8q-LT-HH2A-WHKCf0iNwLn5AgszGEQxS1Q3jMUqTL1xIxaVrizCHosW3kPVFG1QwOlfprBTgm0YfSL3RLbrT-nOyjZifRxCShekXqU20P4efhCRL3kjVXpceM9euKKf0XbiZOlC7qg9BKnlMUH2qnnh2opgalvtpVrqkWu8-b1VmvqumDn6DzpBInC0RD0UMy5H5XMVG-VVsXNiTStb8TvvOlV6uiWw&h=Lkaffv2zgse0Hy8mHHNh7ZsCFLC7ib1Jpcfu_u2yemU + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 97810e19-4757-4367-af20-b6de9a305617 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/107f6198-7989-407f-a732-e4584b53f25f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0E5F70FB69A74C6EAC144E40B61631AB Ref B: CO6AA3150219023 Ref C: 2025-11-12T21:46:50Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet update + Connection: + - keep-alive + ParameterSetName: + - -n --vnet-name -g --disable-private-endpoint-network-policies + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004?api-version=2024-07-01 + response: + body: + string: '{"name":"maps-privatelink-subnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004","etag":"W/\"599256a6-5de7-4ae9-b171-7548a362acfb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + headers: + cache-control: + - no-cache + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:04 GMT + etag: + - W/"599256a6-5de7-4ae9-b171-7548a362acfb" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c8454ca2-e642-4176-9c1c-a2f6b6e7bd36 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/81dfb6db-0418-43ce-aabc-27e322c1b4f0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 94168CA07CDE4EA4B82BB1F45C840E8D Ref B: CO6AA3150220021 Ref C: 2025-11-12T21:46:50Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - '105' + Content-Type: + - application/json + ParameterSetName: + - -g -s --kind -n --accept-tos -l + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002?api-version=2021-02-01 + response: + body: + string: "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"3bc5698f-6742-4192-9779-b49a7bc8ac5c\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T21:47:05.5716591Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T21:47:05.5716591Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002\",\n + \ \"name\": \"maps-privatelink-account000002\",\n \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/dda26d46-14de-4cc8-9178-e44e5b9a034f + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: E058469096234586B84AE96746FD56DF Ref B: CO6AA3150219035 Ref C: 2025-11-12T21:47:05Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_maps_private_endpoint_connection_000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001","name":"test_maps_private_endpoint_connection_000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_maps","date":"2025-11-12T21:45:24Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 2A787B708A424BD58730D094C6530EE5 Ref B: CO6AA3150219019 Ref C: 2025-11-12T21:47:05Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"manualPrivateLinkServiceConnections": + [{"name": "maps-privatelink-endpointconn000006", "properties": {"groupIds": + ["mapsAccount"], "privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002"}}], + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '621' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005?api-version=2022-01-01 + response: + body: + string: '{"name":"maps-privatelink-endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005","etag":"W/\"c2992013-5c8b-483e-8752-ff2ec4f02d3c\"","type":"Microsoft.Network/privateEndpoints","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"234b595c-88f1-4d94-a3cb-547bce7555b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"maps-privatelink-endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005/manualPrivateLinkServiceConnections/maps-privatelink-endpointconn000006","etag":"W/\"c2992013-5c8b-483e-8752-ff2ec4f02d3c\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002","groupIds":["mapsAccount"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/networkInterfaces/maps-privatelink-endpoint000005.nic.1cbf47e5-9db7-4d8b-ad44-6a79c526473e"}],"customDnsConfigs":[]}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88146173-b59d-4697-8d87-392ed5b4354d?api-version=2022-01-01&t=638985808273221429&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=rYDSkomgHLzvjs36oobAeHgZN1JpiiMskW8vVaKl5Z1Dwqcz5ETUFLRsjUK4yoAQT5s5tjc1ZMeLsBl2BAHQEO8qQcpc6vh3TDCmnusk5Cme1Y38Ccb0JXTLO_e9otnVxI3VubQVixrTAb-4u_hFuzVE_f2BieeRzOO3aCbwdwaWD-ohb5njWfmg-Ar1ey6ajNMJKAhb5w2ED3_ncP6DYV4nI75-zAe4vxdgpw6BurT0OymHGpGknmdlXEjrRFWoo6OrpcA28YxtIwujlj7E_iaC9eB2fMmEu893-aVdXzA_FVoi6bf5ZCzLPZ58ThA1kKBxxrl8uz8GtXNI87l7wg&h=YI7KxhriZCP5gU7oFqU-9ubOBOWNFQ6eznx_WpxHY84 + cache-control: + - no-cache + content-length: + - '1947' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9e347765-ff19-4b33-bcb1-9613cc1f5824 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/b4ab3cce-642b-4a10-a221-9b697c099a55 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: E9AB875BEB7E49F29B02132EFF312DF7 Ref B: CO6AA3150217021 Ref C: 2025-11-12T21:47:06Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88146173-b59d-4697-8d87-392ed5b4354d?api-version=2022-01-01&t=638985808273221429&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=rYDSkomgHLzvjs36oobAeHgZN1JpiiMskW8vVaKl5Z1Dwqcz5ETUFLRsjUK4yoAQT5s5tjc1ZMeLsBl2BAHQEO8qQcpc6vh3TDCmnusk5Cme1Y38Ccb0JXTLO_e9otnVxI3VubQVixrTAb-4u_hFuzVE_f2BieeRzOO3aCbwdwaWD-ohb5njWfmg-Ar1ey6ajNMJKAhb5w2ED3_ncP6DYV4nI75-zAe4vxdgpw6BurT0OymHGpGknmdlXEjrRFWoo6OrpcA28YxtIwujlj7E_iaC9eB2fMmEu893-aVdXzA_FVoi6bf5ZCzLPZ58ThA1kKBxxrl8uz8GtXNI87l7wg&h=YI7KxhriZCP5gU7oFqU-9ubOBOWNFQ6eznx_WpxHY84 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ba851a96-94fa-4163-8b2c-95fac0df1d6c + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/4ab9a90a-6ee1-44c9-a758-d90e07288d89 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: EFF8B4E719184E3FBB679798A887B016 Ref B: MWH011020807034 Ref C: 2025-11-12T21:47:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88146173-b59d-4697-8d87-392ed5b4354d?api-version=2022-01-01&t=638985808273221429&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=rYDSkomgHLzvjs36oobAeHgZN1JpiiMskW8vVaKl5Z1Dwqcz5ETUFLRsjUK4yoAQT5s5tjc1ZMeLsBl2BAHQEO8qQcpc6vh3TDCmnusk5Cme1Y38Ccb0JXTLO_e9otnVxI3VubQVixrTAb-4u_hFuzVE_f2BieeRzOO3aCbwdwaWD-ohb5njWfmg-Ar1ey6ajNMJKAhb5w2ED3_ncP6DYV4nI75-zAe4vxdgpw6BurT0OymHGpGknmdlXEjrRFWoo6OrpcA28YxtIwujlj7E_iaC9eB2fMmEu893-aVdXzA_FVoi6bf5ZCzLPZ58ThA1kKBxxrl8uz8GtXNI87l7wg&h=YI7KxhriZCP5gU7oFqU-9ubOBOWNFQ6eznx_WpxHY84 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b96b0e80-4164-423b-95e4-3c9e8af9af81 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/4d1a9ce1-8fd0-44ca-924e-e23f6425709f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4C633D4F3DA24A47A95A2258832298AB Ref B: MWH011020809031 Ref C: 2025-11-12T21:47:17Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88146173-b59d-4697-8d87-392ed5b4354d?api-version=2022-01-01&t=638985808273221429&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=rYDSkomgHLzvjs36oobAeHgZN1JpiiMskW8vVaKl5Z1Dwqcz5ETUFLRsjUK4yoAQT5s5tjc1ZMeLsBl2BAHQEO8qQcpc6vh3TDCmnusk5Cme1Y38Ccb0JXTLO_e9otnVxI3VubQVixrTAb-4u_hFuzVE_f2BieeRzOO3aCbwdwaWD-ohb5njWfmg-Ar1ey6ajNMJKAhb5w2ED3_ncP6DYV4nI75-zAe4vxdgpw6BurT0OymHGpGknmdlXEjrRFWoo6OrpcA28YxtIwujlj7E_iaC9eB2fMmEu893-aVdXzA_FVoi6bf5ZCzLPZ58ThA1kKBxxrl8uz8GtXNI87l7wg&h=YI7KxhriZCP5gU7oFqU-9ubOBOWNFQ6eznx_WpxHY84 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 685cbbe3-8061-409f-9cb6-e736e45b10e2 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/48d2d037-de1a-4f76-bcce-e6c82712ad65 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D865899255C543F7906E58DFF7A14844 Ref B: MWH011020808034 Ref C: 2025-11-12T21:47:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88146173-b59d-4697-8d87-392ed5b4354d?api-version=2022-01-01&t=638985808273221429&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=rYDSkomgHLzvjs36oobAeHgZN1JpiiMskW8vVaKl5Z1Dwqcz5ETUFLRsjUK4yoAQT5s5tjc1ZMeLsBl2BAHQEO8qQcpc6vh3TDCmnusk5Cme1Y38Ccb0JXTLO_e9otnVxI3VubQVixrTAb-4u_hFuzVE_f2BieeRzOO3aCbwdwaWD-ohb5njWfmg-Ar1ey6ajNMJKAhb5w2ED3_ncP6DYV4nI75-zAe4vxdgpw6BurT0OymHGpGknmdlXEjrRFWoo6OrpcA28YxtIwujlj7E_iaC9eB2fMmEu893-aVdXzA_FVoi6bf5ZCzLPZ58ThA1kKBxxrl8uz8GtXNI87l7wg&h=YI7KxhriZCP5gU7oFqU-9ubOBOWNFQ6eznx_WpxHY84 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 18162875-c424-48b7-91d1-d68f2af5c21f + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/5afcc6b7-31f4-4a48-a92c-8d6060884ac0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6782BB410C684B9BAB7284DC862FB445 Ref B: CO6AA3150219017 Ref C: 2025-11-12T21:47:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005?api-version=2022-01-01 + response: + body: + string: '{"name":"maps-privatelink-endpoint000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005","etag":"W/\"43201c56-f38e-4412-ac50-1a234927a4a6\"","type":"Microsoft.Network/privateEndpoints","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"234b595c-88f1-4d94-a3cb-547bce7555b9","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"maps-privatelink-endpointconn000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005/manualPrivateLinkServiceConnections/maps-privatelink-endpointconn000006","etag":"W/\"43201c56-f38e-4412-ac50-1a234927a4a6\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002","groupIds":["mapsAccount"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":""}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/networkInterfaces/maps-privatelink-endpoint000005.nic.1cbf47e5-9db7-4d8b-ad44-6a79c526473e"}],"customDnsConfigs":[{"fqdn":"3bc5698f-6742-4192-9779-b49a7bc8ac5c.westus2.account.maps.azure.com","ipAddresses":["10.0.0.4"]}]}}' + headers: + cache-control: + - no-cache + content-length: + - '2032' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:58 GMT + etag: + - W/"43201c56-f38e-4412-ac50-1a234927a4a6" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7e2ea73e-589b-4ff0-a71a-6c7cc41c760e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6D1B6D93DB224BF4849C4D74A3CD8E3C Ref B: MWH011020806042 Ref C: 2025-11-12T21:47:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"properties\": {\n \"privateEndpoint\": + {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"privateLinkServiceConnectionState\": {\n \"status\": \"Pending\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": + \"Microsoft.Maps/accounts/privateEndpointConnections\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\"\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '937' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:47:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus2/3988162a-08fa-452e-a282-07e07aecd001 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 723A2B5831AB46958C13D4AC392C8A07 Ref B: CO6AA3150217045 Ref C: 2025-11-12T21:47:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Succeeded\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '873' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:48:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/c1719939-8572-4964-bbde-9f3307160070 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C7D263A5D8664D0A929FF353468860F4 Ref B: MWH011020807040 Ref C: 2025-11-12T21:48:00Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005"}, + "groupIds": ["mapsAccount"], "privateLinkServiceConnectionState": {"status": + "Approved", "description": null}, "provisioningState": "Succeeded"}, "type": + "Microsoft.Maps/accounts/privateEndpointConnections", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9", + "name": "maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9", + "location": "westus2"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + Content-Length: + - '827' + Content-Type: + - application/json + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationStatuses/69e0c68c-1014-4552-badb-698379f37d2d?api-version=2023-12-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 21:48:43 GMT + expires: + - '-1' + location: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationResults/69e0c68c-1014-4552-badb-698379f37d2d?api-version=2023-12-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/674a335a-fec3-41bb-b374-3afc6db35c45 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 0D3647731F884C318191F44C764A3E0D Ref B: MWH011020807040 Ref C: 2025-11-12T21:48:42Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Approving\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '873' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:48:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/468d35eb-184b-45be-9c8a-368acadfaac4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A8F31806DDC44A5E8B72540FBA342DB5 Ref B: CO6AA3150219051 Ref C: 2025-11-12T21:48:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Approving\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '873' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/b657b3f0-1cc4-4805-80d7-df37f47a8a42 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 43E855C9D02C45488B1B1A5D17ACC11C Ref B: MWH011020808031 Ref C: 2025-11-12T21:49:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Approving\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '873' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/e930600c-4f77-4d62-8ce4-b59bcd68f8d5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5C3C0A8D191C46129A9DC9E3ABEFAB70 Ref B: CO6AA3150220053 Ref C: 2025-11-12T21:49:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection approve + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"requestMessage\": + \"\",\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '900' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/a0ae3b3e-ca54-4b5e-9ea8-24f9db58593a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6CDE24A78F0E46FE9F1A69B9EF42D585 Ref B: MWH011020809023 Ref C: 2025-11-12T21:49:25Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"requestMessage\": + \"\",\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '900' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/ccc0a069-9c09-4f07-8fe8-ae8bc8dba5fe + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 769E15C8EFA348F9843A37F5851B30BD Ref B: MWH011020808052 Ref C: 2025-11-12T21:49:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_maps_private_endpoint_connection_000001?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001","name":"test_maps_private_endpoint_connection_000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_maps","date":"2025-11-12T21:45:24Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 228E27363CB44BA3853620CA931B5DBD Ref B: MWH011020808023 Ref C: 2025-11-12T21:49:27Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"manualPrivateLinkServiceConnections": + [{"name": "maps-privatelink-endpointconn2000008", "properties": {"groupIds": + ["mapsAccount"], "privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002"}}], + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + Content-Length: + - '622' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007?api-version=2022-01-01 + response: + body: + string: '{"name":"maps-privatelink-endpoint2000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007","etag":"W/\"93215127-e16d-4c46-9266-9def0c0f2b92\"","type":"Microsoft.Network/privateEndpoints","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"ce042580-b8f6-4aa5-bdce-ff9e1d24cdde","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"maps-privatelink-endpointconn2000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007/manualPrivateLinkServiceConnections/maps-privatelink-endpointconn2000008","etag":"W/\"93215127-e16d-4c46-9266-9def0c0f2b92\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002","groupIds":["mapsAccount"],"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + Approval","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/networkInterfaces/maps-privatelink-endpoint2000007.nic.91eecd28-9dc4-4dc5-9759-179296f7e57f"}],"customDnsConfigs":[]}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/56ae0dfb-501b-4af4-aa96-2ba9994d777e?api-version=2022-01-01&t=638985809748736784&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=MwuVokkGi9XtVvoZS5wuNpVd-OwkOMkTMQR_rbzM5eC-SyYnkEg76KTJEE9Kje3HQRILO0fmS1382QB5AA2JFgHjl9uGoSbB4V8YcBgYUZ4lyJ3fWkwoMU8jQSUf6R_-uECezkM0nnKp4RI_FkskAQYSkkpiAL6oHc5OlN9066utZ0noHzxU3WAFB3CtFM3f3LmWqLiKaWiyf5xbvGUhfuoaKwAzfEq9td1no2zGljD_d7sm8Vc06mL876KtX1XGzqo-bzMcSTmIZrlq-DkIQIB486Vpv1R8e9aiihiElG6uM82qGJ7Px7MT3TH0KlaEqt-zSBw_tpgA_bVbyLUvzg&h=kUh4VfrpGhWDZQKFanmC3J3ZYDvzqDeTXSGKU__eQgg + cache-control: + - no-cache + content-length: + - '1953' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ceea7d23-78c6-4bf4-bf38-430f8af0d72b + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/9739edbe-6fa0-4d7c-b784-2f226c531826 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 0CA2B8CB4E2B48BDA8073203D23F23EC Ref B: MWH011020809029 Ref C: 2025-11-12T21:49:33Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/56ae0dfb-501b-4af4-aa96-2ba9994d777e?api-version=2022-01-01&t=638985809748736784&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=MwuVokkGi9XtVvoZS5wuNpVd-OwkOMkTMQR_rbzM5eC-SyYnkEg76KTJEE9Kje3HQRILO0fmS1382QB5AA2JFgHjl9uGoSbB4V8YcBgYUZ4lyJ3fWkwoMU8jQSUf6R_-uECezkM0nnKp4RI_FkskAQYSkkpiAL6oHc5OlN9066utZ0noHzxU3WAFB3CtFM3f3LmWqLiKaWiyf5xbvGUhfuoaKwAzfEq9td1no2zGljD_d7sm8Vc06mL876KtX1XGzqo-bzMcSTmIZrlq-DkIQIB486Vpv1R8e9aiihiElG6uM82qGJ7Px7MT3TH0KlaEqt-zSBw_tpgA_bVbyLUvzg&h=kUh4VfrpGhWDZQKFanmC3J3ZYDvzqDeTXSGKU__eQgg + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1c5349d8-e9ff-46fa-b348-56ffaa90c3ed + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/96f543f1-2f8d-4f74-a4b7-def842cf7a77 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 145DD056292F4C589B703890BA4BD975 Ref B: MWH011020806029 Ref C: 2025-11-12T21:49:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/56ae0dfb-501b-4af4-aa96-2ba9994d777e?api-version=2022-01-01&t=638985809748736784&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=MwuVokkGi9XtVvoZS5wuNpVd-OwkOMkTMQR_rbzM5eC-SyYnkEg76KTJEE9Kje3HQRILO0fmS1382QB5AA2JFgHjl9uGoSbB4V8YcBgYUZ4lyJ3fWkwoMU8jQSUf6R_-uECezkM0nnKp4RI_FkskAQYSkkpiAL6oHc5OlN9066utZ0noHzxU3WAFB3CtFM3f3LmWqLiKaWiyf5xbvGUhfuoaKwAzfEq9td1no2zGljD_d7sm8Vc06mL876KtX1XGzqo-bzMcSTmIZrlq-DkIQIB486Vpv1R8e9aiihiElG6uM82qGJ7Px7MT3TH0KlaEqt-zSBw_tpgA_bVbyLUvzg&h=kUh4VfrpGhWDZQKFanmC3J3ZYDvzqDeTXSGKU__eQgg + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:49:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3ec0b7e5-769f-4e69-bfe2-aaae39acf6de + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/eastus2/758f0781-a6fa-482f-a2a7-80027e705b05 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: BF2E75E9FEA14DDD83326C7E9CF51987 Ref B: MWH011020806029 Ref C: 2025-11-12T21:49:45Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/56ae0dfb-501b-4af4-aa96-2ba9994d777e?api-version=2022-01-01&t=638985809748736784&c=MIIHhzCCBm-gAwIBAgITfAldUuOkqyWaFWVmdAAACV1S4zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIxMDgxMjA1WhcNMjYwNDE5MDgxMjA1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK6VhHo7SMnPI07xSUC0EKrS_gaAU3t2sorvXTakEJppgrr-M5q-yAFDicwNGCe2zSU9ZvGBPI46D9PesTntz4RhQO5-Dkx5G8vC9lZ0WV6mem5Hsnf78kDXgYxzLyAaMKv9WjuZNcTaFQKdrPAx-ZS-2EebUB404VhX1yJ3S4C3QHTpXASyoAbFfGV8tHPGM7q2s_Qr9qBJ5RUnI0t_oD0IJ_dyn_wQvIsgBjpGMentNk7AKNnJ7dWOCU76BFL9ZQAP9lNuU68JHjdsD1lABOX7Jtcv8FrW2zWgZn6TOHf9rY990h8zyuY_EBAr0xrbFD0i_O184Iy9gHWqScS_2CkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTUpdRlqz5GkJ77fs3HRMz2Z_W49DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGQmJdPitlGjIwFSf4WsFmLr4W3CmkUpm4HxfZATnxnP9vV2uH5f01rfg_lA-Q0s4GMqkftMAVNRm0Ta6w_NRSLRZO2GWa65KrQ8ITCuGR12jMTYPqYgqEIaBQAqqxvtTisw6-_rDdMBbWwvTo6h0yR_Rw0GGgX1C4WUYhFJq-o90nFF2qZEFQJht7ni8RYQonaxB281z64rp0rlXCz8r3rJXIR2RLC48IA1los4mZYaxAv_Y_LPYwZUQ_V0_YrSGK5KMJp6exPToKF_DePs6j27AncGilbWo9t96F-yKBPD57WulOVgbYwNKAZ_Klbw0ur-YLdTdCaIbUiNhmGTDvY&s=MwuVokkGi9XtVvoZS5wuNpVd-OwkOMkTMQR_rbzM5eC-SyYnkEg76KTJEE9Kje3HQRILO0fmS1382QB5AA2JFgHjl9uGoSbB4V8YcBgYUZ4lyJ3fWkwoMU8jQSUf6R_-uECezkM0nnKp4RI_FkskAQYSkkpiAL6oHc5OlN9066utZ0noHzxU3WAFB3CtFM3f3LmWqLiKaWiyf5xbvGUhfuoaKwAzfEq9td1no2zGljD_d7sm8Vc06mL876KtX1XGzqo-bzMcSTmIZrlq-DkIQIB486Vpv1R8e9aiihiElG6uM82qGJ7Px7MT3TH0KlaEqt-zSBw_tpgA_bVbyLUvzg&h=kUh4VfrpGhWDZQKFanmC3J3ZYDvzqDeTXSGKU__eQgg + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 395d4532-ceed-448a-bd10-4928140fce97 + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/85c07b5e-20b3-490f-bc36-b2db845bfb1a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 857A8603B4CF4134AB607811BC8B3E3E Ref B: MWH011020806040 Ref C: 2025-11-12T21:50:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id + --group-id --manual-request + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007?api-version=2022-01-01 + response: + body: + string: '{"name":"maps-privatelink-endpoint2000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007","etag":"W/\"55feb483-0743-4bd6-a4fd-beed18273941\"","type":"Microsoft.Network/privateEndpoints","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"ce042580-b8f6-4aa5-bdce-ff9e1d24cdde","privateLinkServiceConnections":[],"manualPrivateLinkServiceConnections":[{"name":"maps-privatelink-endpointconn2000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007/manualPrivateLinkServiceConnections/maps-privatelink-endpointconn2000008","etag":"W/\"55feb483-0743-4bd6-a4fd-beed18273941\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002","groupIds":["mapsAccount"],"privateLinkServiceConnectionState":{"status":"Pending","description":"","actionsRequired":""}},"type":"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections"}],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/virtualNetworks/maps-privatelink-vnet000003/subnets/maps-privatelink-subnet000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/networkInterfaces/maps-privatelink-endpoint2000007.nic.91eecd28-9dc4-4dc5-9759-179296f7e57f"}],"customDnsConfigs":[{"fqdn":"3bc5698f-6742-4192-9779-b49a7bc8ac5c.westus2.account.maps.azure.com","ipAddresses":["10.0.0.5"]}]}}' + headers: + cache-control: + - no-cache + content-length: + - '2038' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:06 GMT + etag: + - W/"55feb483-0743-4bd6-a4fd-beed18273941" + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 52c9f279-b885-4793-81bc-5860ad8f5a60 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 680B62FB028E48B8AD0CBCB73EA66262 Ref B: MWH011020807031 Ref C: 2025-11-12T21:50:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"properties\": {\n \"privateEndpoint\": + {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"requestMessage\": \"\",\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Approved\"\n },\n \"provisioningState\": + \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\"\n + \ },\n {\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"privateLinkServiceConnectionState\": {\n \"status\": \"Pending\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": + \"Microsoft.Maps/accounts/privateEndpointConnections\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\"\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '1889' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/5708aeb6-78d9-4e49-a97e-c2239e9b0b2f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A5141A2BAD1F4B2F869B9A5E3CBCFA18 Ref B: CO6AA3150219017 Ref C: 2025-11-12T21:50:07Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Succeeded\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '876' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/26338902-7d1f-4c07-a134-6c455e0f4afe + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 28F2E6A26A314F91818D937F78FE53AE Ref B: CO6AA3150217049 Ref C: 2025-11-12T21:50:07Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007"}, + "groupIds": ["mapsAccount"], "privateLinkServiceConnectionState": {"status": + "Rejected", "description": null}, "provisioningState": "Succeeded"}, "type": + "Microsoft.Maps/accounts/privateEndpointConnections", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde", + "name": "maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde", + "location": "westus2"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + Content-Length: + - '830' + Content-Type: + - application/json + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationStatuses/659f5ba0-320c-4651-ba54-40c93b862ba2?api-version=2023-12-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 21:50:09 GMT + expires: + - '-1' + location: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationResults/659f5ba0-320c-4651-ba54-40c93b862ba2?api-version=2023-12-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/b4a08749-b51a-435a-9a55-85ccc7b177bd + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: 8BC66AC3AF754F6CA5950E96156A78B4 Ref B: CO6AA3150218047 Ref C: 2025-11-12T21:50:08Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Rejecting\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '876' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/8809874a-dd98-4499-8bfc-47ae082a2449 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8F4828481C3A4D8AAB8F6BA8899CF998 Ref B: CO6AA3150218009 Ref C: 2025-11-12T21:50:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Rejecting\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '876' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/e59845ab-9919-4ae4-8765-cfed5e86bd25 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: DBF6ACB3131548F79C584DFAB6D40D44 Ref B: CO6AA3150217035 Ref C: 2025-11-12T21:50:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Pending\"\n },\n \"provisioningState\": \"Rejecting\"\n + \ },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '876' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/c3891993-9e60-4013-9850-8f9f7be913e3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 981E41302B3040D8A570497DFC1EFB77 Ref B: CO6AA3150219009 Ref C: 2025-11-12T21:50:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"requestMessage\": + \"\",\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '903' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/833f2b7e-3e8b-4263-a165-63075e7bb2f8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D78D68AF03794107B492D9124E58CCCC Ref B: CO6AA3150219039 Ref C: 2025-11-12T21:50:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"requestMessage\": + \"\",\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '903' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/ba28abed-e471-466f-a1f0-67d82f5cbdae + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 720E03142BF942C7BAD765E383FC8943 Ref B: CO6AA3150217017 Ref C: 2025-11-12T21:50:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --resource-name -n --type -y + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde?api-version=2023-12-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationStatuses/2a2ab703-5af5-44b7-bf42-5cc210d6c886?api-version=2023-12-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 21:50:53 GMT + expires: + - '-1' + location: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationResults/2a2ab703-5af5-44b7-bf42-5cc210d6c886?api-version=2023-12-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/f5935269-50a8-4da9-8555-43b84dbaf1e0 + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: 145E9ACF324344EAB199D065E59EB951 Ref B: CO6AA3150219019 Ref C: 2025-11-12T21:50:52Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"properties\": {\n \"privateEndpoint\": + {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"requestMessage\": \"\",\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Approved\"\n },\n \"provisioningState\": + \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\"\n + \ },\n {\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint2000007\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"requestMessage\": \"\",\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Rejected\"\n },\n \"provisioningState\": + \"Deleting\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\",\n + \ \"name\": \"maps-privatelink-endpoint2000007.ce042580-b8f6-4aa5-bdce-ff9e1d24cdde\"\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '1919' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:50:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/a8de7bbb-9106-4028-99a8-3659947d2001 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5C387BE9A2C0462CB586643573844043 Ref B: MWH011020806025 Ref C: 2025-11-12T21:50:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"properties\": {\n \"privateEndpoint\": + {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"requestMessage\": \"\",\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Approved\"\n },\n \"provisioningState\": + \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\"\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '968' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:51:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/4ba29b20-c4ce-4b6e-b3d5-ddf8951d1303 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 22F4B5D538644028A77895A419FD0170 Ref B: CO6AA3150218039 Ref C: 2025-11-12T21:51:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection show + Connection: + - keep-alive + ParameterSetName: + - -g --resource-name -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n \"requestMessage\": + \"\",\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\"\n + \ },\n \"provisioningState\": \"Succeeded\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '900' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:51:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/9344749f-8905-464d-9377-a67a51a3c70e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4C05E9FD89ED48F98470EF01F932F257 Ref B: CO6AA3150218049 Ref C: 2025-11-12T21:51:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --resource-name -n --type -y + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9?api-version=2023-12-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationStatuses/53d88f77-8208-495e-bccf-980cc2d2a20a?api-version=2023-12-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 21:51:05 GMT + expires: + - '-1' + location: + - https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maps/operationResults/53d88f77-8208-495e-bccf-980cc2d2a20a?api-version=2023-12-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/2bf301eb-3c1e-48e9-8bad-98240239bf56 + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: 319EA395B97E4083B61E429068821F82 Ref B: MWH011020807036 Ref C: 2025-11-12T21:51:05Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"properties\": {\n \"privateEndpoint\": + {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Network/privateEndpoints/maps-privatelink-endpoint000005\"\n + \ },\n \"groupIds\": [\n \"mapsAccount\"\n ],\n + \ \"requestMessage\": \"\",\n \"privateLinkServiceConnectionState\": + {\n \"status\": \"Approved\"\n },\n \"provisioningState\": + \"Deleting\"\n },\n \"type\": \"Microsoft.Maps/accounts/privateEndpointConnections\",\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections/maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\",\n + \ \"name\": \"maps-privatelink-endpoint000005.234b595c-88f1-4d94-a3cb-547bce7555b9\"\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '967' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:51:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/b452262d-18a4-4b2f-862d-ae415addffc9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1099906CE5B243EB8584B29CCDF25038 Ref B: MWH011020806052 Ref C: 2025-11-12T21:51:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection list + Connection: + - keep-alive + ParameterSetName: + - -g -n --type + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_endpoint_connection_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateEndpointConnections?api-version=2023-12-01-preview + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:51:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/616ff8e2-f3bd-4044-84dc-2cdd179dc24b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 90418C28F88B4178AD463C134AB23506 Ref B: MWH011020807062 Ref C: 2025-11-12T21:51:17Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_maps.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_maps.yaml new file mode 100644 index 00000000000..c560385a23f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_maps.yaml @@ -0,0 +1,118 @@ +interactions: +- request: + body: '{"location": "westus2", "sku": {"name": "G2"}, "kind": "Gen2", "properties": + {"disableLocalAuth": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - maps account create + Connection: + - keep-alive + Content-Length: + - '105' + Content-Type: + - application/json + ParameterSetName: + - -g -s --kind -n --accept-tos -l + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_link_resource_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002?api-version=2021-02-01 + response: + body: + string: "{\n \"kind\": \"Gen2\",\n \"type\": \"Microsoft.Maps/accounts\",\n + \ \"sku\": {\n \"name\": \"G2\",\n \"tier\": \"Standard\"\n },\n \"properties\": + {\n \"uniqueId\": \"d85d8ad0-b4b9-43cf-b17b-3b9fd0cebaf7\",\n \"provisioningState\": + \"Succeeded\",\n \"disableLocalAuth\": false\n },\n \"systemData\": {\n + \ \"createdBy\": \"m@microsoft.mbelt.net\",\n \"createdByType\": \"User\",\n + \ \"createdAt\": \"2025-11-12T21:46:43.9712844Z\",\n \"lastModifiedBy\": + \"m@microsoft.mbelt.net\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2025-11-12T21:46:43.9712844Z\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_link_resource_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002\",\n + \ \"name\": \"maps-privatelink-account000002\",\n \"location\": \"westus2\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/355bcb24-80ba-4834-9780-72ea341489fe + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' + x-ms-ratelimit-remaining-subscription-writes: + - '199' + x-msedge-ref: + - 'Ref A: B232FF119EB048368C1F493E217D1AC5 Ref B: MWH011020809034 Ref C: 2025-11-12T21:46:43Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-link-resource list + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.13.7 (Linux-6.17.7-arch1-1-x86_64-with-glibc2.42) AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_link_resource_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateLinkResources?api-version=2023-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_maps_private_link_resource_000001/providers/Microsoft.Maps/accounts/maps-privatelink-account000002/privateLinkResources/mapsAccount\",\n + \ \"name\": \"mapsAccount\",\n \"type\": \"Microsoft.Maps/accounts/privateLinkResources\",\n + \ \"properties\": {\n \"groupId\": \"mapsAccount\",\n \"requiredMembers\": + [\n \"mapsAccount_0\"\n ],\n \"requiredZoneNames\": + [\n \"privatelink.account.maps.azure.com\"\n ]\n }\n + \ }\n ]\n}" + headers: + cache-control: + - no-cache + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 21:46:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=a1358d2f-a71f-4e96-86b8-33821da3bb29,objectId=1a41d7bc-dc4d-4125-a13e-7c3c9dd0e9e5/westus2/eafb3b25-387c-4f5b-8906-55f6754fd7e9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 35ED60D4562D43C18EED3604A494EB99 Ref B: MWH011020809042 Ref C: 2025-11-12T21:46:44Z' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py index 506ff638da2..2b72cd17948 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py @@ -2073,6 +2073,232 @@ def test_disk_access_private_endpoint(self, resource_group): self.check('@[0].properties.privateLinkServiceConnectionState.status', 'Approved') ]) +class NetworkPrivateLinkMapsScenarioTest(ScenarioTest): + @AllowLargeResponse() + @ResourceGroupPreparer( + name_prefix="test_maps_private_link_resource_", location="westus2" + ) + def test_private_link_resource_maps(self, resource_group): + self.kwargs.update( + { + "maps_account": self.create_random_name("maps-privatelink-account", 40), + "resource_group": resource_group, + } + ) + + result = self.cmd( + "maps account create -g {resource_group} -s G2 --kind Gen2 -n {maps_account} --accept-tos -l westus2" + ).get_output_in_json() + self.kwargs["maps_account_id"] = result["id"] + + self.cmd( + "network private-link-resource list --id {maps_account_id}", + checks=[ + self.check("length(@)", 1), + ], + ) + + @AllowLargeResponse() + @ResourceGroupPreparer( + name_prefix="test_maps_private_endpoint_connection_", location="westus2" + ) + def test_private_endpoint_connection_maps(self, resource_group): + self.kwargs.update( + { + "resource_group": resource_group, + "maps_account": self.create_random_name("maps-privatelink-account", 40), + "vnet_name": self.create_random_name("maps-privatelink-vnet", 40), + "subnet_name": self.create_random_name("maps-privatelink-subnet", 40), + "endpoint_name": self.create_random_name( + "maps-privatelink-endpoint", 40 + ), + "endpoint_conn_name": self.create_random_name( + "maps-privatelink-endpointconn", 40 + ), + "second_endpoint_name": self.create_random_name( + "maps-privatelink-endpoint2", 40 + ), + "second_endpoint_conn_name": self.create_random_name( + "maps-privatelink-endpointconn2", 40 + ), + "description_msg": "somedescription", + } + ) + + # Prepare network + self.cmd( + "network vnet create -n {vnet_name} -g {resource_group} --subnet-name {subnet_name}", + checks=self.check("length(newVNet.subnets)", 1), + ) + self.cmd( + "network vnet subnet update -n {subnet_name} --vnet-name {vnet_name} -g {resource_group} " + "--disable-private-endpoint-network-policies true", + checks=self.check("privateEndpointNetworkPolicies", "Disabled"), + ) + + # Create maps account + maps_account = self.cmd( + "maps account create -g {resource_group} -s G2 --kind Gen2 -n {maps_account} --accept-tos -l westus2" + ).get_output_in_json() + self.kwargs["maps_account_id"] = maps_account["id"] + + # Create endpoint with manual request + result = self.cmd( + "network private-endpoint create -g {resource_group} -n {endpoint_name} --vnet-name {vnet_name} --subnet {subnet_name} " + "--connection-name {endpoint_conn_name} --private-connection-resource-id {maps_account_id} " + "--group-id mapsAccount --manual-request" + ).get_output_in_json() + self.assertTrue(self.kwargs["endpoint_name"].lower() in result["name"].lower()) + + result = self.cmd( + "network private-endpoint-connection list -g {resource_group} -n {maps_account} --type Microsoft.Maps/accounts", + checks=[ + self.check("length(@)", 1), + self.check( + "@[0].properties.privateLinkServiceConnectionState.status", + "Pending", + ), + ], + ).get_output_in_json() + self.kwargs["endpoint_request"] = result[0]["name"] + + # Approve the first endpoint connection + self.cmd( + "network private-endpoint-connection approve -g {resource_group} --resource-name {maps_account} -n {endpoint_request} --type Microsoft.Maps/accounts", + checks=[ + self.check( + "properties.privateLinkServiceConnectionState.status", "Approved" + ) + ], + ) + + # Wait for provisioning state to be "Succeeded" after approval + for _ in range(6): + result = self.cmd( + "network private-endpoint-connection show -g {resource_group} --resource-name {maps_account} -n {endpoint_request} --type Microsoft.Maps/accounts" + ).get_output_in_json() + provisioning_state = result.get("properties", {}).get( + "provisioningState", "" + ) + if provisioning_state == "Succeeded": + if ( + not result.get("properties", {}) + .get("privateLinkServiceConnectionState", {}) + .get("status") + == "Approved" + ): + self.fail("Private endpoint connection approval failed") + break + time.sleep(10) + else: + self.fail("Private endpoint connection approval did not complete in time") + + # Create second endpoint with manual request + result = self.cmd( + "network private-endpoint create -g {resource_group} -n {second_endpoint_name} --vnet-name {vnet_name} --subnet {subnet_name} " + "--connection-name {second_endpoint_conn_name} --private-connection-resource-id {maps_account_id} " + "--group-id mapsAccount --manual-request" + ).get_output_in_json() + self.assertTrue( + self.kwargs["second_endpoint_name"].lower() in result["name"].lower() + ) + + result = self.cmd( + "network private-endpoint-connection list -g {resource_group} -n {maps_account} --type Microsoft.Maps/accounts", + checks=[ + self.check("length(@)", 2), + ], + ).get_output_in_json() + self.kwargs["second_endpoint_request"] = [ + conn["name"] + for conn in result + if self.kwargs["second_endpoint_name"].lower() + in conn["properties"]["privateEndpoint"]["id"].lower() + ][0] + + # Reject the second endpoint connection + self.cmd( + "network private-endpoint-connection reject -g {resource_group} --resource-name {maps_account} -n {second_endpoint_request} --type Microsoft.Maps/accounts", + checks=[ + self.check( + "properties.privateLinkServiceConnectionState.status", "Rejected" + ) + ], + ) + + for _ in range(6): + result = self.cmd( + "network private-endpoint-connection show -g {resource_group} --resource-name {maps_account} -n {second_endpoint_request} --type Microsoft.Maps/accounts" + ).get_output_in_json() + provisioning_state = result.get("properties", {}).get( + "provisioningState", "" + ) + if provisioning_state == "Succeeded": + if ( + not result.get("properties", {}) + .get("privateLinkServiceConnectionState", {}) + .get("status") + == "Rejected" + ): + self.fail("Private endpoint connection rejection failed") + break + time.sleep(10) + else: + self.fail("Private endpoint connection rejection did not complete in time") + + # Remove second endpoint + self.cmd( + "network private-endpoint-connection delete -g {resource_group} --resource-name {maps_account} -n {second_endpoint_request} --type Microsoft.Maps/accounts -y" + ) + + # Wait for deletion to complete + for _ in range(6): + connections = self.cmd( + "network private-endpoint-connection list -g {resource_group} -n {maps_account} --type Microsoft.Maps/accounts" + ).get_output_in_json() + + # Check if second endpoint is gone + second_endpoint_exists = any( + conn["name"] == self.kwargs["second_endpoint_request"] + for conn in connections + ) + + if not second_endpoint_exists: + break + time.sleep(10) + else: + self.fail("Second endpoint connection deletion did not complete in time") + + # Verify first endpoint is still approved + self.cmd( + "network private-endpoint-connection show -g {resource_group} --resource-name {maps_account} -n {endpoint_request} --type Microsoft.Maps/accounts", + checks=[ + self.check( + "properties.privateLinkServiceConnectionState.status", "Approved" + ), + self.check("name", "{endpoint_request}"), + ], + ) + + # Remove first endpoint + self.cmd( + "network private-endpoint-connection delete -g {resource_group} --resource-name {maps_account} -n {endpoint_request} --type Microsoft.Maps/accounts -y" + ) + + # Wait for deletion to complete + for _ in range(6): + connections = self.cmd( + "network private-endpoint-connection list -g {resource_group} -n {maps_account} --type Microsoft.Maps/accounts" + ).get_output_in_json() + + if len(connections) == 0: + break + time.sleep(10) + else: + self.fail("First endpoint connection deletion did not complete in time") + + self.assertEqual(len(connections), 0) + class NetworkARMTemplateBasedScenarioTest(ScenarioTest): def _test_private_endpoint_connection_scenario(self, resource_group, target_resource_name, resource_type): @@ -4727,7 +4953,7 @@ def test_private_endpoint_connection_elasticsan(self, resource_group): # Test delete self.cmd('az network private-endpoint-connection delete --id {pec_id} -y') - + class NetworkPrivateLinkMongoClustersTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_mongo_cl', location='eastus2euap') def test_private_link_resource_cosmosdb_mongo_clusters(self, resource_group): @@ -4789,13 +5015,13 @@ def test_private_endpoint_connection_cosmosdb_mongo_clusters(self, resource_grou # check for resource provisioning state self.check_provisioning_state_for_mongocluster_resource() self.kwargs['cluster_id'] = cluster['id'] - + self.cmd('az network vnet create -n {vnet} -g {rg} -l {loc} --subnet-name {subnet}', checks=self.check('length(newVNet.subnets)', 1)) self.cmd('az network vnet subnet update -n {subnet} --vnet-name {vnet} -g {rg} ' '--disable-private-endpoint-network-policies true', checks=self.check('privateEndpointNetworkPolicies', 'Disabled')) - + target_private_link_resource = self.cmd('az network private-link-resource list --name {cluster_name} --resource-group {rg} --type {namespace}/{resource_type}').get_output_in_json() self.kwargs.update({ 'group_id': target_private_link_resource[0]['properties']['groupId'] @@ -5003,7 +5229,7 @@ def get_provisioning_state_for_postgresql_flexible_server(self): def check_provisioning_state_for_postgresql_flexible_server(self): # Wait for a moment before the server provisioning has begun to avoid inaccurate 404 errors. - time.sleep(10) + time.sleep(10) count = 0 print("checking status of creation...........") state = self.get_provisioning_state_for_postgresql_flexible_server() @@ -5096,7 +5322,7 @@ def test_private_link_managed_environment(self, resource_group): self.cmd('az network private-endpoint-connection delete --id {pec_id} -y') class NetworkPrivateLinkDeidServiceScenarioTest(ScenarioTest): - + @live_only() @AllowLargeResponse(size_kb=8024) # set size to 8024KB 'az extension add' has a rather large index @ResourceGroupPreparer(name_prefix='cli_test_deidservice_plr') @@ -5107,7 +5333,7 @@ def test_private_link_resource_deidservice(self, resource_group): 'loc': 'eastus', 'rg': resource_group }) - + self.cmd('az extension add -n healthcareapis') self.cmd( 'az healthcareapis deidservice create --name {serviceName} -g {rg} --location {loc}'