From 28e3262fc1e2a9aaa8aed2da189944133a186828 Mon Sep 17 00:00:00 2001 From: sunnycarter <36891339+sunnycarter@users.noreply.github.com> Date: Thu, 31 Aug 2023 11:23:18 +0100 Subject: [PATCH 1/2] Check for Azure features on deploy and delete (#71) * WIP: Check for features on deploy and delete * linting * Anand has confirmed names of flags * Update test recording as now has calls to Features API * Update src/aosm/azext_aosm/custom.py Co-authored-by: jamiedparsons <111778988+jamiedparsons@users.noreply.github.com> * docstring markups --------- Co-authored-by: jamiedparsons <111778988+jamiedparsons@users.noreply.github.com> --- src/aosm/azext_aosm/_client_factory.py | 7 + src/aosm/azext_aosm/custom.py | 131 +- .../test_vnf_nsd_publish_and_delete.yaml | 2630 +++++++++++------ src/aosm/azext_aosm/tests/latest/test_nsd.py | 99 +- src/aosm/azext_aosm/util/constants.py | 6 + 5 files changed, 1891 insertions(+), 982 deletions(-) diff --git a/src/aosm/azext_aosm/_client_factory.py b/src/aosm/azext_aosm/_client_factory.py index 61fe56814a4..03f02d141ae 100644 --- a/src/aosm/azext_aosm/_client_factory.py +++ b/src/aosm/azext_aosm/_client_factory.py @@ -20,6 +20,13 @@ def cf_resources(cli_ctx, subscription_id=None): ) +def cf_features(cli_ctx, subscription_id=None): + """Return the client for checking feature enablement.""" + return get_mgmt_service_client( + cli_ctx, ResourceType.MGMT_RESOURCE_FEATURES, subscription_id=subscription_id + ) + + def cf_acr_registries(cli_ctx, *_) -> ContainerRegistryManagementClient: """ Returns the client for managing container registries. diff --git a/src/aosm/azext_aosm/custom.py b/src/aosm/azext_aosm/custom.py index 46774f55091..17ae1841a0c 100644 --- a/src/aosm/azext_aosm/custom.py +++ b/src/aosm/azext_aosm/custom.py @@ -15,9 +15,11 @@ InvalidArgumentValueError, UnclassifiedUserFault, ) +from azure.cli.core.commands import AzCliCommand +from azure.core import exceptions as azure_exceptions from knack.log import get_logger -from azext_aosm._client_factory import cf_acr_registries, cf_resources +from azext_aosm._client_factory import cf_acr_registries, cf_features, cf_resources from azext_aosm._configuration import ( CNFConfiguration, Configuration, @@ -32,7 +34,15 @@ from azext_aosm.generate_nfd.nfd_generator_base import NFDGenerator from azext_aosm.generate_nfd.vnf_nfd_generator import VnfNfdGenerator from azext_aosm.generate_nsd.nsd_generator import NSDGenerator -from azext_aosm.util.constants import CNF, DeployableResourceTypes, NSD, SkipSteps, VNF +from azext_aosm.util.constants import ( + AOSM_FEATURE_NAMESPACE, + AOSM_REQUIRED_FEATURES, + CNF, + NSD, + VNF, + DeployableResourceTypes, + SkipSteps, +) from azext_aosm.util.management_clients import ApiClients from azext_aosm.vendored_sdks import HybridNetworkManagementClient @@ -49,10 +59,11 @@ def build_definition( """ Build a definition. - :param cmd: - :type cmd: _type_ + :param definition_type: VNF or CNF :param config_file: path to the file :param definition_type: VNF, CNF + :param interactive - whether to prompt for input when creating deploy parameters + mapping files :param force: force the build even if the design has already been built """ @@ -135,8 +146,54 @@ def _generate_nfd( nfd_generator.generate_nfd() +def _check_features_enabled(cmd: AzCliCommand): + """ + Check that the required Azure features are enabled on the subscription. + + :param cmd: The AzCLICommand object for the original command that was run, we use + this to retrieve the CLI context in order to get the features client for access + to the features API. + """ + features_client = cf_features(cmd.cli_ctx) + # Check that the required features are enabled on the subscription + for feature in AOSM_REQUIRED_FEATURES: + try: + feature_result = features_client.features.get( + resource_provider_namespace=AOSM_FEATURE_NAMESPACE, + feature_name=feature, + ) + if ( + not feature_result + or not feature_result.properties.state == "Registered" + ): + # We don't want to log the name of the feature to the user as it is + # a hidden feature. We do want to log it to the debug log though. + logger.debug( + "Feature %s is not registered on the subscription.", feature + ) + raise CLIInternalError( + "Your Azure subscription has not been fully onboarded to AOSM. " + "Please see the AOSM onboarding documentation for more information." + ) + except azure_exceptions.ResourceNotFoundError as rerr: + # If the feature is not found, it is not registered, but also something has + # gone wrong with the CLI code and onboarding instructions. + logger.debug( + "Feature not found error - Azure doesn't recognise the feature %s." + "This indicates a coding error or error with the AOSM onboarding " + "instructions.", + feature, + ) + logger.debug(rerr) + raise CLIInternalError( + "CLI encountered an error checking that your " + "subscription has been onboarded to AOSM. Please raise an issue against" + " the CLI." + ) from rerr + + def publish_definition( - cmd, + cmd: AzCliCommand, client: HybridNetworkManagementClient, definition_type, config_file, @@ -149,8 +206,13 @@ def publish_definition( """ Publish a generated definition. - :param cmd: - :param client: + :param cmd: The AzCLICommand object for the command that was run, we use this to + find the CLI context (from which, for example, subscription id and + credentials can be found, and other clients can be generated.) + :param client: The AOSM client. This is created in _client_factory.py and passed + in by commands.py - we could alternatively just use cf_aosm as + we use cf_resources, but other extensions seem to pass a client + around like this. :type client: HybridNetworkManagementClient :param definition_type: VNF or CNF :param config_file: Path to the config file for the NFDV @@ -166,6 +228,9 @@ def publish_definition( file for manifest parameters :param skip: options to skip, either publish bicep or upload artifacts """ + # Check that the required features are enabled on the subscription + _check_features_enabled(cmd) + print("Publishing definition.") api_clients = ApiClients( aosm_client=client, @@ -198,7 +263,7 @@ def publish_definition( def delete_published_definition( - cmd, + cmd: AzCliCommand, client: HybridNetworkManagementClient, definition_type, config_file, @@ -208,6 +273,13 @@ def delete_published_definition( """ Delete a published definition. + :param cmd: The AzCLICommand object for the command that was run, we use this to + find the CLI context (from which, for example, subscription id and + credentials can be found, and other clients can be generated.) + :param client: The AOSM client. This is created in _client_factory.py and passed + in by commands.py - we could alternatively just use cf_aosm as + we use cf_resources, but other extensions seem to pass a client + around like this. :param definition_type: CNF or VNF :param config_file: Path to the config file :param clean: if True, will delete the NFDG, artifact stores and publisher too. @@ -215,6 +287,9 @@ def delete_published_definition( with care. :param force: if True, will not prompt for confirmation before deleting the resources. """ + # Check that the required features are enabled on the subscription + _check_features_enabled(cmd) + config = _get_config_from_file( config_file=config_file, configuration_type=definition_type ) @@ -282,14 +357,21 @@ def _generate_config(configuration_type: str, output_file: str = "input.json"): def build_design( - cmd, client: HybridNetworkManagementClient, config_file: str, force: bool = False + cmd: AzCliCommand, + client: HybridNetworkManagementClient, + config_file: str, + force: bool = False, ): """ Build a Network Service Design. - :param cmd: - :type cmd: _type_ - :param client: + :param cmd: The AzCLICommand object for the command that was run, we use this to + find the CLI context (from which, for example, subscription id and + credentials can be found, and other clients can be generated.) + :param client: The AOSM client. This is created in _client_factory.py and passed + in by commands.py - we could alternatively just use cf_aosm as + we use cf_resources, but other extensions seem to pass a client + around like this. :type client: HybridNetworkManagementClient :param config_file: path to the file :param force: force the build, even if the design has already been built @@ -314,7 +396,7 @@ def build_design( def delete_published_design( - cmd, + cmd: AzCliCommand, client: HybridNetworkManagementClient, config_file, clean=False, @@ -323,6 +405,13 @@ def delete_published_design( """ Delete a published NSD. + :param cmd: The AzCLICommand object for the command that was run, we use this to + find the CLI context (from which, for example, subscription id and + credentials can be found, and other clients can be generated.) + :param client: The AOSM client. This is created in _client_factory.py and passed + in by commands.py - we could alternatively just use cf_aosm as + we use cf_resources, but other extensions seem to pass a client + around like this. :param config_file: Path to the config file :param clean: if True, will delete the NSDG, artifact stores and publisher too. Defaults to False. Only works if no resources have those as a parent. @@ -330,6 +419,9 @@ def delete_published_design( :param clean: if True, will delete the NSDG on top of the other resources. :param force: if True, will not prompt for confirmation before deleting the resources. """ + # Check that the required features are enabled on the subscription + _check_features_enabled(cmd) + config = _get_config_from_file(config_file=config_file, configuration_type=NSD) api_clients = ApiClients( @@ -341,7 +433,7 @@ def delete_published_design( def publish_design( - cmd, + cmd: AzCliCommand, client: HybridNetworkManagementClient, config_file, design_file: Optional[str] = None, @@ -353,8 +445,13 @@ def publish_design( """ Publish a generated design. - :param cmd: - :param client: + :param cmd: The AzCLICommand object for the command that was run, we use this to + find the CLI context (from which, for example, subscription id and + credentials can be found, and other clients can be generated.) + :param client: The AOSM client. This is created in _client_factory.py and passed + in by commands.py - we could alternatively just use cf_aosm as + we use cf_resources, but other extensions seem to pass a client + around like this. :type client: HybridNetworkManagementClient :param config_file: Path to the config file for the NSDV :param design_file: Optional path to an override bicep template to deploy the NSDV. @@ -368,6 +465,8 @@ def publish_design( file for manifest parameters :param skip: options to skip, either publish bicep or upload artifacts """ + # Check that the required features are enabled on the subscription + _check_features_enabled(cmd) print("Publishing design.") api_clients = ApiClients( diff --git a/src/aosm/azext_aosm/tests/latest/recordings/test_vnf_nsd_publish_and_delete.yaml b/src/aosm/azext_aosm/tests/latest/recordings/test_vnf_nsd_publish_and_delete.yaml index 2bd2b21dda3..26f4ff1279a 100644 --- a/src/aosm/azext_aosm/tests/latest/recordings/test_vnf_nsd_publish_and_delete.yaml +++ b/src/aosm/azext_aosm/tests/latest/recordings/test_vnf_nsd_publish_and_delete.yaml @@ -1,4 +1,184 @@ interactions: +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -f --definition-type + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-09-01"}' + headers: + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -f --definition-type + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/AllowPreReleaseFeatures"}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -f --definition-type + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-04-01-preview"}' + headers: + cache-control: + - no-cache + content-length: + - '306' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -f --definition-type + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/MsiForResourceEnabled"}' + headers: + cache-control: + - no-cache + content-length: + - '300' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -25,7 +205,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 15:51:59 GMT + - Tue, 29 Aug 2023 15:46:33 GMT expires: - '-1' pragma: @@ -59,8 +239,8 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001", "name": "cli_test_vnf_nsd_000001", "type": "Microsoft.Resources/resourceGroups", "location": "westcentralus", "tags": {"product": "azurecli", "cause": "automation", - "test": "test_vnf_nsd_publish_and_delete", "date": "2023-08-24T15:51:56Z", - "module": "aosm", "autoDelete": "true", "expiresOn": "2023-09-23T15:51:58.4231943Z"}, + "test": "test_vnf_nsd_publish_and_delete", "date": "2023-08-29T15:46:31Z", + "module": "aosm", "autoDelete": "true", "expiresOn": "2023-09-28T15:46:31.4504856Z"}, "properties": {"provisioningState": "Succeeded"}}' headers: cache-control: @@ -70,7 +250,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:51:59 GMT + - Tue, 29 Aug 2023 15:46:34 GMT expires: - '-1' pragma: @@ -115,7 +295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:51:59 GMT + - Tue, 29 Aug 2023 15:46:34 GMT expires: - '-1' pragma: @@ -156,23 +336,23 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", "name": "ubuntuPublisher", "type": "microsoft.hybridnetwork/publishers", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:52:00.8042955Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:46:35.343537Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:52:00.8042955Z"}, "properties": {"scope": "Private", "provisioningState": + "2023-08-29T15:46:35.343537Z"}, "properties": {"scope": "Private", "provisioningState": "Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '587' + - '585' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:52:01 GMT + - Tue, 29 Aug 2023 15:46:36 GMT etag: - - '"2000d9d6-0000-0600-0000-64e77ca20000"' + - '"00003a03-0000-0600-0000-64ee12dc0000"' expires: - '-1' pragma: @@ -207,13 +387,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Accepted", "startTime": "2023-08-24T15:52:01.8771894Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:46:36.3703473Z"}' headers: cache-control: - no-cache @@ -222,9 +402,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:52:01 GMT + - Tue, 29 Aug 2023 15:46:36 GMT etag: - - '"680064db-0000-0600-0000-64e77ca10000"' + - '"0300f9b2-0000-0600-0000-64ee12dc0000"' expires: - '-1' pragma: @@ -257,13 +437,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Accepted", "startTime": "2023-08-24T15:52:01.8771894Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:46:36.3703473Z"}' headers: cache-control: - no-cache @@ -272,9 +452,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:52:32 GMT + - Tue, 29 Aug 2023 15:47:07 GMT etag: - - '"680064db-0000-0600-0000-64e77ca10000"' + - '"0300f9b2-0000-0600-0000-64ee12dc0000"' expires: - '-1' pragma: @@ -307,13 +487,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Accepted", "startTime": "2023-08-24T15:52:01.8771894Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:46:36.3703473Z"}' headers: cache-control: - no-cache @@ -322,9 +502,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:02 GMT + - Tue, 29 Aug 2023 15:47:36 GMT etag: - - '"680064db-0000-0600-0000-64e77ca10000"' + - '"0300f9b2-0000-0600-0000-64ee12dc0000"' expires: - '-1' pragma: @@ -357,13 +537,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "b7bea456-7565-4a4a-96e7-06bce133e82c*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "d432786f-2bb0-4ab6-a110-8c838d02c669*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Succeeded", "startTime": "2023-08-24T15:52:01.8771894Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T15:46:36.3703473Z", "properties": null}' headers: cache-control: @@ -373,9 +553,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:31 GMT + - Tue, 29 Aug 2023 15:48:06 GMT etag: - - '"680030dc-0000-0600-0000-64e77ce50000"' + - '"3a017121-0000-0700-0000-64ee131f0000"' expires: - '-1' pragma: @@ -414,21 +594,21 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", "name": "ubuntuPublisher", "type": "microsoft.hybridnetwork/publishers", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:52:00.8042955Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:46:35.343537Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:52:00.8042955Z"}, "properties": {"scope": "Private", "provisioningState": + "2023-08-29T15:46:35.343537Z"}, "properties": {"scope": "Private", "provisioningState": "Succeeded"}}' headers: cache-control: - no-cache content-length: - - '588' + - '586' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:31 GMT + - Tue, 29 Aug 2023 15:48:07 GMT etag: - - '"20000fd7-0000-0600-0000-64e77cad0000"' + - '"00003c03-0000-0600-0000-64ee12e60000"' expires: - '-1' pragma: @@ -477,7 +657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:32 GMT + - Tue, 29 Aug 2023 15:48:07 GMT expires: - '-1' pragma: @@ -518,14 +698,14 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:53:33.3686433Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:48:08.8909773Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:53:33.3686433Z"}, "properties": {"storeType": "AzureContainerRegistry", + "2023-08-29T15:48:08.8909773Z"}, "properties": {"storeType": "AzureContainerRegistry", "managedResourceGroupConfiguration": {"location": "westcentralus", "name": - "ubuntu-acr-HostedResources-59B033BE"}, "provisioningState": "Accepted"}}' + "ubuntu-acr-HostedResources-663B284E"}, "provisioningState": "Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -533,9 +713,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:34 GMT + - Tue, 29 Aug 2023 15:48:22 GMT etag: - - '"1700c225-0000-0600-0000-64e77cfe0000"' + - '"0000422c-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -570,24 +750,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Accepted", "startTime": "2023-08-24T15:53:34.734957Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:48:23.0483823Z"}' headers: cache-control: - no-cache content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:53:34 GMT + - Tue, 29 Aug 2023 15:48:22 GMT etag: - - '"680049dc-0000-0600-0000-64e77cfe0000"' + - '"00000d06-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -620,24 +800,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Accepted", "startTime": "2023-08-24T15:53:34.734957Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:48:23.0483823Z"}' headers: cache-control: - no-cache content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:54:05 GMT + - Tue, 29 Aug 2023 15:48:52 GMT etag: - - '"680049dc-0000-0600-0000-64e77cfe0000"' + - '"00000d06-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -670,24 +850,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Accepted", "startTime": "2023-08-24T15:53:34.734957Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:48:23.0483823Z"}' headers: cache-control: - no-cache content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:54:35 GMT + - Tue, 29 Aug 2023 15:49:23 GMT etag: - - '"680049dc-0000-0600-0000-64e77cfe0000"' + - '"00000d06-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -720,24 +900,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Accepted", "startTime": "2023-08-24T15:53:34.734957Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:48:23.0483823Z"}' headers: cache-control: - no-cache content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:55:05 GMT + - Tue, 29 Aug 2023 15:49:53 GMT etag: - - '"680049dc-0000-0600-0000-64e77cfe0000"' + - '"00000d06-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -770,24 +950,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Accepted", "startTime": "2023-08-24T15:53:34.734957Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:48:23.0483823Z"}' headers: cache-control: - no-cache content-length: - - '562' + - '563' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:55:37 GMT + - Tue, 29 Aug 2023 15:50:24 GMT etag: - - '"680049dc-0000-0600-0000-64e77cfe0000"' + - '"00000d06-0000-0600-0000-64ee13470000"' expires: - '-1' pragma: @@ -820,25 +1000,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "8d2be368-ac01-4589-b357-3ca3852cf648*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "ea36bfeb-7c82-4a37-846c-5ec81e0807ad*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Succeeded", "startTime": "2023-08-24T15:53:34.734957Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T15:48:23.0483823Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '583' + - '584' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:08 GMT + - Tue, 29 Aug 2023 15:50:54 GMT etag: - - '"6800bbe2-0000-0600-0000-64e77d7e0000"' + - '"2602caa8-0000-0100-0000-64ee13c70000"' expires: - '-1' pragma: @@ -877,12 +1057,12 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:53:33.3686433Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:48:08.8909773Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:53:33.3686433Z"}, "properties": {"storeType": "AzureContainerRegistry", + "2023-08-29T15:48:08.8909773Z"}, "properties": {"storeType": "AzureContainerRegistry", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": - {"name": "ubuntu-acr-HostedResources-59B033BE", "location": "westcentralus"}, - "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-59B033BE/providers/Microsoft.ContainerRegistry/registries/UbuntupublisherUbuntuAcrd18ac8e07e"}}' + {"name": "ubuntu-acr-HostedResources-663B284E", "location": "westcentralus"}, + "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-663B284E/providers/Microsoft.ContainerRegistry/registries/UbuntupublisherUbuntuAcr8e894d23e6"}}' headers: cache-control: - no-cache @@ -891,9 +1071,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:09 GMT + - Tue, 29 Aug 2023 15:50:54 GMT etag: - - '"17003526-0000-0600-0000-64e77d510000"' + - '"0000e22c-0000-0600-0000-64ee139a0000"' expires: - '-1' pragma: @@ -942,7 +1122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:09 GMT + - Tue, 29 Aug 2023 15:50:55 GMT expires: - '-1' pragma: @@ -983,14 +1163,14 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", "name": "ubuntu-blob-store", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:56:11.0743249Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:50:56.2512265Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:56:11.0743249Z"}, "properties": {"storeType": "AzureStorageAccount", + "2023-08-29T15:50:56.2512265Z"}, "properties": {"storeType": "AzureStorageAccount", "managedResourceGroupConfiguration": {"location": "westcentralus", "name": - "ubuntu-blob-store-HostedResources-4F638472"}, "provisioningState": "Accepted"}}' + "ubuntu-blob-store-HostedResources-0C8DFD0E"}, "provisioningState": "Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -998,9 +1178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:11 GMT + - Tue, 29 Aug 2023 15:50:57 GMT etag: - - '"1700a226-0000-0600-0000-64e77d9c0000"' + - '"0000652d-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1035,13 +1215,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Accepted", "startTime": "2023-08-24T15:56:12.1348749Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:50:57.2229314Z"}' headers: cache-control: - no-cache @@ -1050,9 +1230,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:11 GMT + - Tue, 29 Aug 2023 15:50:57 GMT etag: - - '"6800c9e2-0000-0600-0000-64e77d9c0000"' + - '"00001b06-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1085,13 +1265,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Accepted", "startTime": "2023-08-24T15:56:12.1348749Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:50:57.2229314Z"}' headers: cache-control: - no-cache @@ -1100,9 +1280,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:56:42 GMT + - Tue, 29 Aug 2023 15:51:27 GMT etag: - - '"6800c9e2-0000-0600-0000-64e77d9c0000"' + - '"00001b06-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1135,13 +1315,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Accepted", "startTime": "2023-08-24T15:56:12.1348749Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:50:57.2229314Z"}' headers: cache-control: - no-cache @@ -1150,9 +1330,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:57:12 GMT + - Tue, 29 Aug 2023 15:51:56 GMT etag: - - '"6800c9e2-0000-0600-0000-64e77d9c0000"' + - '"00001b06-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1185,13 +1365,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Accepted", "startTime": "2023-08-24T15:56:12.1348749Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:50:57.2229314Z"}' headers: cache-control: - no-cache @@ -1200,9 +1380,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:57:45 GMT + - Tue, 29 Aug 2023 15:52:28 GMT etag: - - '"6800c9e2-0000-0600-0000-64e77d9c0000"' + - '"00001b06-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1235,13 +1415,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Accepted", "startTime": "2023-08-24T15:56:12.1348749Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:50:57.2229314Z"}' headers: cache-control: - no-cache @@ -1250,9 +1430,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:15 GMT + - Tue, 29 Aug 2023 15:52:58 GMT etag: - - '"6800c9e2-0000-0600-0000-64e77d9c0000"' + - '"00001b06-0000-0600-0000-64ee13e10000"' expires: - '-1' pragma: @@ -1285,13 +1465,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "4fc48ca0-f8aa-4304-8632-308494328919*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "d3a33817-9106-4a6e-a2f3-10462ca5c7ae*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Succeeded", "startTime": "2023-08-24T15:56:12.1348749Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T15:50:57.2229314Z", "properties": null}' headers: cache-control: @@ -1301,9 +1481,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:46 GMT + - Tue, 29 Aug 2023 15:53:28 GMT etag: - - '"63008117-0000-0100-0000-64e77e1c0000"' + - '"00002106-0000-0600-0000-64ee14610000"' expires: - '-1' pragma: @@ -1342,12 +1522,12 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", "name": "ubuntu-blob-store", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:56:11.0743249Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:50:56.2512265Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:56:11.0743249Z"}, "properties": {"storeType": "AzureStorageAccount", + "2023-08-29T15:50:56.2512265Z"}, "properties": {"storeType": "AzureStorageAccount", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": - {"name": "ubuntu-blob-store-HostedResources-4F638472", "location": "westcentralus"}, - "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-4F638472/providers/Microsoft.Storage/storageAccounts/4f638472ubuntublobstoreb"}}' + {"name": "ubuntu-blob-store-HostedResources-0C8DFD0E", "location": "westcentralus"}, + "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-0C8DFD0E/providers/Microsoft.Storage/storageAccounts/0c8dfd0eubuntublobstored"}}' headers: cache-control: - no-cache @@ -1356,9 +1536,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:46 GMT + - Tue, 29 Aug 2023 15:53:28 GMT etag: - - '"17002e27-0000-0600-0000-64e77df80000"' + - '"0000b92d-0000-0600-0000-64ee14400000"' expires: - '-1' pragma: @@ -1407,7 +1587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:47 GMT + - Tue, 29 Aug 2023 15:53:28 GMT expires: - '-1' pragma: @@ -1448,12 +1628,12 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", "name": "ubuntu-vm-nfdg", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:58:48.4200797Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:53:30.5177253Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:58:48.4200797Z"}, "properties": {"provisioningState": "Accepted"}}' + "2023-08-29T15:53:30.5177253Z"}, "properties": {"provisioningState": "Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -1461,9 +1641,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:50 GMT + - Tue, 29 Aug 2023 15:53:31 GMT etag: - - '"09004aee-0000-0600-0000-64e77e3b0000"' + - '"00003c04-0000-0600-0000-64ee147b0000"' expires: - '-1' pragma: @@ -1498,24 +1678,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Accepted", "startTime": "2023-08-24T15:58:50.9729566Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:53:31.672989Z"}' headers: cache-control: - no-cache content-length: - - '584' + - '583' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:58:50 GMT + - Tue, 29 Aug 2023 15:53:31 GMT etag: - - '"680010e6-0000-0600-0000-64e77e3a0000"' + - '"0300bbc5-0000-0600-0000-64ee147b0000"' expires: - '-1' pragma: @@ -1548,24 +1728,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Accepted", "startTime": "2023-08-24T15:58:50.9729566Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:53:31.672989Z"}' headers: cache-control: - no-cache content-length: - - '584' + - '583' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:59:21 GMT + - Tue, 29 Aug 2023 15:54:01 GMT etag: - - '"680010e6-0000-0600-0000-64e77e3a0000"' + - '"0300bbc5-0000-0600-0000-64ee147b0000"' expires: - '-1' pragma: @@ -1598,24 +1778,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Accepted", "startTime": "2023-08-24T15:58:50.9729566Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:53:31.672989Z"}' headers: cache-control: - no-cache content-length: - - '584' + - '583' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 15:59:51 GMT + - Tue, 29 Aug 2023 15:54:32 GMT etag: - - '"680010e6-0000-0600-0000-64e77e3a0000"' + - '"0300bbc5-0000-0600-0000-64ee147b0000"' expires: - '-1' pragma: @@ -1648,25 +1828,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c66de8a0-f296-47f6-9aee-6217d9bcb6a3*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "f6282936-0229-4f1d-a3a2-f24f421970f1*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Succeeded", "startTime": "2023-08-24T15:58:50.9729566Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T15:53:31.672989Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '605' + - '604' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:21 GMT + - Tue, 29 Aug 2023 15:55:01 GMT etag: - - '"57005324-0000-0700-0000-64e77e7d0000"' + - '"9701c20a-0000-0800-0000-64ee14bf0000"' expires: - '-1' pragma: @@ -1705,9 +1885,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", "name": "ubuntu-vm-nfdg", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:58:48.4200797Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:53:30.5177253Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:58:48.4200797Z"}, "properties": {"description": null, "provisioningState": + "2023-08-29T15:53:30.5177253Z"}, "properties": {"description": null, "provisioningState": "Succeeded"}}' headers: cache-control: @@ -1717,9 +1897,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:21 GMT + - Tue, 29 Aug 2023 15:55:02 GMT etag: - - '"090052ee-0000-0600-0000-64e77e440000"' + - '"00003e04-0000-0600-0000-64ee14860000"' expires: - '-1' pragma: @@ -1768,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:22 GMT + - Tue, 29 Aug 2023 15:55:02 GMT expires: - '-1' pragma: @@ -1813,7 +1993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:22 GMT + - Tue, 29 Aug 2023 15:55:02 GMT expires: - '-1' pragma: @@ -1884,8 +2064,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892827", - "name": "AOSM_CLI_deployment_1692892827", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324506", + "name": "AOSM_CLI_deployment_1693324506", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15169602856414121474", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -1895,7 +2075,7 @@ interactions: "nfName": {"type": "String", "value": "ubuntu-vm"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "58c1c55e-105f-4068-ab6d-9548da2c19a6", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "3feaa34a-f426-4216-905a-f489fff3160d", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0"}, @@ -1908,7 +2088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:30 GMT + - Tue, 29 Aug 2023 15:55:08 GMT expires: - '-1' pragma: @@ -1983,8 +2163,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892827", - "name": "AOSM_CLI_deployment_1692892827", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324506", + "name": "AOSM_CLI_deployment_1693324506", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15169602856414121474", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -1994,13 +2174,13 @@ interactions: "nfName": {"type": "String", "value": "ubuntu-vm"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2023-08-24T16:00:33.5555778Z", "duration": "PT0.0005862S", "correlationId": - "63ecc845-bf8b-4388-82dc-ce742adc14d7", "providers": [{"namespace": "Microsoft.Hybridnetwork", + "2023-08-29T15:55:11.7583889Z", "duration": "PT0.0002148S", "correlationId": + "f964cef3-3041-45ad-81ac-c11eaaae08b7", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892827/operationStatuses/08585087140536565080?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324506/operationStatuses/08585082823751958274?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -2008,7 +2188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:34 GMT + - Tue, 29 Aug 2023 15:55:11 GMT expires: - '-1' pragma: @@ -2038,7 +2218,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140536565080?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823751958274?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -2050,7 +2230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:00:34 GMT + - Tue, 29 Aug 2023 15:55:12 GMT expires: - '-1' pragma: @@ -2080,7 +2260,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140536565080?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823751958274?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -2092,7 +2272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:05 GMT + - Tue, 29 Aug 2023 15:55:43 GMT expires: - '-1' pragma: @@ -2125,8 +2305,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892827", - "name": "AOSM_CLI_deployment_1692892827", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324506", + "name": "AOSM_CLI_deployment_1693324506", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15169602856414121474", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -2136,8 +2316,8 @@ interactions: "nfName": {"type": "String", "value": "ubuntu-vm"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2023-08-24T16:01:02.0374569Z", "duration": "PT28.4824653S", "correlationId": - "63ecc845-bf8b-4388-82dc-ce742adc14d7", "providers": [{"namespace": "Microsoft.Hybridnetwork", + "2023-08-29T15:55:42.3955798Z", "duration": "PT30.6374057S", "correlationId": + "f964cef3-3041-45ad-81ac-c11eaaae08b7", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -2150,7 +2330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:05 GMT + - Tue, 29 Aug 2023 15:55:43 GMT expires: - '-1' pragma: @@ -2187,9 +2367,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0", "name": "ubuntu-vm-sa-manifest-1-0-0", "type": "microsoft.hybridnetwork/publishers/artifactstores/artifactmanifests", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:00:37.8080167Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:55:16.1701519Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:00:37.8080167Z"}, "properties": {"artifacts": [{"artifactName": + "2023-08-29T15:55:16.1701519Z"}, "properties": {"artifacts": [{"artifactName": "ubuntu-vm-vhd", "artifactType": "VhdImageFile", "artifactVersion": "1-0-0"}], "artifactManifestState": "Uploading", "provisioningState": "Succeeded"}}' headers: @@ -2200,9 +2380,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:06 GMT + - Tue, 29 Aug 2023 15:55:43 GMT etag: - - '"20002fac-0000-0600-0000-64e77ead0000"' + - '"0000160f-0000-0600-0000-64ee14ea0000"' expires: - '-1' pragma: @@ -2242,10 +2422,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0/listCredential?api-version=2023-04-01-preview response: body: - string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-4F638472/providers/Microsoft.Storage/storageAccounts/4f638472ubuntublobstoreb", + string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-0C8DFD0E/providers/Microsoft.Storage/storageAccounts/0c8dfd0eubuntublobstored", "containerCredentials": [{"containerName": "ubuntuvmvhd-1-0-0", "containerSasUri": "https://xxxxxxxxxxxxxxx.blob.core.windows.net/ubuntuvmvhd-1-0-0?sv=2021-08-06&si=StorageAccountAccessPolicy&sr=xxxxxxxxxxxxxxxxxxxx"}], - "expiry": "2023-08-25T16:01:08.8582418+00:00", "credentialType": "AzureStorageAccountToken"}' + "expiry": "2023-08-30T15:55:45.6103964+00:00", "credentialType": "AzureStorageAccountToken"}' headers: cache-control: - no-cache @@ -2254,7 +2434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:08 GMT + - Tue, 29 Aug 2023 15:55:44 GMT expires: - '-1' pragma: @@ -2299,9 +2479,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0", "name": "ubuntu-vm-acr-manifest-1-0-0", "type": "microsoft.hybridnetwork/publishers/artifactstores/artifactmanifests", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:00:37.7924048Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:55:16.1232743Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:00:37.7924048Z"}, "properties": {"artifacts": [{"artifactName": + "2023-08-29T15:55:16.1232743Z"}, "properties": {"artifacts": [{"artifactName": "ubuntu-vm-arm-template", "artifactType": "ArmTemplate", "artifactVersion": "1.0.0"}], "artifactManifestState": "Uploading", "provisioningState": "Succeeded"}}' headers: @@ -2312,9 +2492,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:08 GMT + - Tue, 29 Aug 2023 15:55:54 GMT etag: - - '"200040ac-0000-0600-0000-64e77eb80000"' + - '"0000180f-0000-0600-0000-64ee14f90000"' expires: - '-1' pragma: @@ -2355,8 +2535,8 @@ interactions: response: body: string: '{"username": "ubuntu-vm-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io", "repositories": - ["ubuntu-vm-arm-template"], "expiry": "2023-08-25T16:01:10.3248733+00:00", + "acrServerUrl": "https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io", "repositories": + ["ubuntu-vm-arm-template"], "expiry": "2023-08-30T15:55:55.9964501+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -2366,7 +2546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:11 GMT + - Tue, 29 Aug 2023 15:55:56 GMT expires: - '-1' pragma: @@ -2406,7 +2586,7 @@ interactions: x-ms-blob-type: - PageBlob x-ms-date: - - Thu, 24 Aug 2023 16:01:09 GMT + - Tue, 29 Aug 2023 15:55:56 GMT x-ms-version: - '2023-01-03' method: PUT @@ -2418,11 +2598,11 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:11 GMT + - Tue, 29 Aug 2023 15:55:56 GMT etag: - - '"0x8DBA4BB568B63CB"' + - '"0x8DBA8A86EE207F7"' last-modified: - - Thu, 24 Aug 2023 16:01:12 GMT + - Tue, 29 Aug 2023 15:55:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -2452,11 +2632,11 @@ interactions: Content-Type: - application/octet-stream If-Match: - - '"0x8DBA4BB568B63CB"' + - '"0x8DBA8A86EE207F7"' User-Agent: - azsdk-python-storage-blob/12.17.0 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) x-ms-date: - - Thu, 24 Aug 2023 16:01:10 GMT + - Tue, 29 Aug 2023 15:55:57 GMT x-ms-page-write: - update x-ms-range: @@ -2472,11 +2652,11 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:12 GMT + - Tue, 29 Aug 2023 15:55:57 GMT etag: - - '"0x8DBA4BB56A41849"' + - '"0x8DBA8A86EFD541F"' last-modified: - - Thu, 24 Aug 2023 16:01:12 GMT + - Tue, 29 Aug 2023 15:55:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-sequence-number: @@ -2506,7 +2686,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -2526,7 +2706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:12 GMT + - Tue, 29 Aug 2023 15:55:58 GMT docker-distribution-api-version: - registry/2.0 server: @@ -2535,7 +2715,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" x-content-type-options: - nosniff status: @@ -2551,11 +2731,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -2565,7 +2745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:13 GMT + - Tue, 29 Aug 2023 15:55:58 GMT server: - openresty strict-transport-security: @@ -2593,7 +2773,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ response: body: string: '' @@ -2608,13 +2788,13 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:13 GMT + - Tue, 29 Aug 2023 15:55:58 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 318bd0c2-5f8b-4447-b03c-f5609fb06ded + - 5fadc8f5-b3d6-40d1-8668-3e4af73befb7 location: - - /v2/ubuntu-vm-arm-template/blobs/uploads/318bd0c2-5f8b-4447-b03c-f5609fb06ded?_nouploadcache=false&_state=yua3eMmBqFsoh1C2o6dfh6QMukkV28S5EIRr1fKCuJt7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6IjMxOGJkMGMyLTVmOGItNDQ0Ny1iMDNjLWY1NjA5ZmIwNmRlZCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yNFQxNjowMToxMy4yODUyNDQwNVoifQ%3D%3D + - /v2/ubuntu-vm-arm-template/blobs/uploads/5fadc8f5-b3d6-40d1-8668-3e4af73befb7?_nouploadcache=false&_state=4Fo-lXSoT6fpl62615Nxz5oPtqNHHDwXHb3REoA7pbx7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6IjVmYWRjOGY1LWIzZDYtNDBkMS04NjY4LTNlNGFmNzNiZWZiNyIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yOVQxNTo1NTo1OC41MzEzMDc3NTVaIn0%3D range: - 0-0 server: @@ -2687,7 +2867,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/318bd0c2-5f8b-4447-b03c-f5609fb06ded?_nouploadcache=false&_state=yua3eMmBqFsoh1C2o6dfh6QMukkV28S5EIRr1fKCuJt7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6IjMxOGJkMGMyLTVmOGItNDQ0Ny1iMDNjLWY1NjA5ZmIwNmRlZCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yNFQxNjowMToxMy4yODUyNDQwNVoifQ%3D%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/5fadc8f5-b3d6-40d1-8668-3e4af73befb7?_nouploadcache=false&_state=4Fo-lXSoT6fpl62615Nxz5oPtqNHHDwXHb3REoA7pbx7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6IjVmYWRjOGY1LWIzZDYtNDBkMS04NjY4LTNlNGFmNzNiZWZiNyIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yOVQxNTo1NTo1OC41MzEzMDc3NTVaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b response: body: string: '' @@ -2702,7 +2882,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:13 GMT + - Tue, 29 Aug 2023 15:55:58 GMT docker-content-digest: - sha256:e71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b docker-distribution-api-version: @@ -2735,7 +2915,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -2755,7 +2935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:13 GMT + - Tue, 29 Aug 2023 15:55:58 GMT docker-distribution-api-version: - registry/2.0 server: @@ -2764,7 +2944,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" x-content-type-options: - nosniff status: @@ -2780,11 +2960,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -2794,7 +2974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:14 GMT + - Tue, 29 Aug 2023 15:55:59 GMT server: - openresty strict-transport-security: @@ -2822,7 +3002,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/ response: body: string: '' @@ -2837,13 +3017,13 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:14 GMT + - Tue, 29 Aug 2023 15:55:59 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - c733ba94-4aa0-4db7-8194-798e0a015dde + - a4753e4b-54a9-4fc6-8e84-99359fdf505f location: - - /v2/ubuntu-vm-arm-template/blobs/uploads/c733ba94-4aa0-4db7-8194-798e0a015dde?_nouploadcache=false&_state=_eLGyAG_Buj8oQSC8ZMELwlVo3B6PYur8ugIhkdl85J7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6ImM3MzNiYTk0LTRhYTAtNGRiNy04MTk0LTc5OGUwYTAxNWRkZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yNFQxNjowMToxNC4yMzgwNjg4NDFaIn0%3D + - /v2/ubuntu-vm-arm-template/blobs/uploads/a4753e4b-54a9-4fc6-8e84-99359fdf505f?_nouploadcache=false&_state=brpszlUaMZlcgHIXdbdAImcdrg0zRwo_CWknisOSRap7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6ImE0NzUzZTRiLTU0YTktNGZjNi04ZTg0LTk5MzU5ZmRmNTA1ZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yOVQxNTo1NTo1OS4zMTA2MTY1OTVaIn0%3D range: - 0-0 server: @@ -2872,7 +3052,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/c733ba94-4aa0-4db7-8194-798e0a015dde?_nouploadcache=false&_state=_eLGyAG_Buj8oQSC8ZMELwlVo3B6PYur8ugIhkdl85J7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6ImM3MzNiYTk0LTRhYTAtNGRiNy04MTk0LTc5OGUwYTAxNWRkZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yNFQxNjowMToxNC4yMzgwNjg4NDFaIn0%3D&digest=sha256%3Ae3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/blobs/uploads/a4753e4b-54a9-4fc6-8e84-99359fdf505f?_nouploadcache=false&_state=brpszlUaMZlcgHIXdbdAImcdrg0zRwo_CWknisOSRap7Ik5hbWUiOiJ1YnVudHUtdm0tYXJtLXRlbXBsYXRlIiwiVVVJRCI6ImE0NzUzZTRiLTU0YTktNGZjNi04ZTg0LTk5MzU5ZmRmNTA1ZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyMy0wOC0yOVQxNTo1NTo1OS4zMTA2MTY1OTVaIn0%3D&digest=sha256%3Ae3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 response: body: string: '' @@ -2887,7 +3067,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:14 GMT + - Tue, 29 Aug 2023 15:55:59 GMT docker-content-digest: - sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 docker-distribution-api-version: @@ -2926,7 +3106,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/manifests/1.0.0 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -2946,7 +3126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:14 GMT + - Tue, 29 Aug 2023 15:55:59 GMT docker-distribution-api-version: - registry/2.0 server: @@ -2955,7 +3135,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-arm-template:pull,push" x-content-type-options: - nosniff status: @@ -2971,11 +3151,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-arm-template%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -2985,7 +3165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:14 GMT + - Tue, 29 Aug 2023 15:55:59 GMT server: - openresty strict-transport-security: @@ -3019,7 +3199,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-arm-template/manifests/1.0.0 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-arm-template/manifests/1.0.0 response: body: string: '' @@ -3034,7 +3214,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:01:15 GMT + - Tue, 29 Aug 2023 15:56:00 GMT docker-content-digest: - sha256:8923fa544da97914212bc9173ec512741d331940e4a2c7b6fbad979657a5c507 docker-distribution-api-version: @@ -3125,8 +3305,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892875", - "name": "AOSM_CLI_deployment_1692892875", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324562", + "name": "AOSM_CLI_deployment_1693324562", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "1926705401567781373", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -3136,7 +3316,7 @@ interactions: "value": "1.0.0"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "8d120c37-9714-4a7e-a5c6-9e948899fb6a", "providers": [{"namespace": "Microsoft.Hybridnetwork", + "358fefb4-997e-4764-93ee-8dce6e41f410", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "locations": ["westcentralus"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/networkfunctiondefinitiongroups/ubuntu-vm-nfdg/networkfunctiondefinitionversions/1.0.0"}]}}' @@ -3148,7 +3328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:18 GMT + - Tue, 29 Aug 2023 15:56:03 GMT expires: - '-1' pragma: @@ -3240,8 +3420,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892875", - "name": "AOSM_CLI_deployment_1692892875", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324562", + "name": "AOSM_CLI_deployment_1693324562", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "1926705401567781373", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -3250,21 +3430,21 @@ interactions: "String", "value": "ubuntu-vm-nfdg"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2023-08-24T16:01:20.881841Z", "duration": "PT0.0006239S", - "correlationId": "8f411ae7-1d8e-4d24-8abf-69a39a3a0c27", "providers": [{"namespace": + "Accepted", "timestamp": "2023-08-29T15:56:07.0620969Z", "duration": "PT0.0001316S", + "correlationId": "c12ea2f4-c906-4529-961f-4faf217719d0", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "locations": ["westcentralus"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892875/operationStatuses/08585087140052578905?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324562/operationStatuses/08585082823207719763?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1296' + - '1297' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:20 GMT + - Tue, 29 Aug 2023 15:56:07 GMT expires: - '-1' pragma: @@ -3294,7 +3474,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140052578905?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823207719763?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -3306,7 +3486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:20 GMT + - Tue, 29 Aug 2023 15:56:08 GMT expires: - '-1' pragma: @@ -3336,7 +3516,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140052578905?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823207719763?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3348,7 +3528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:01:51 GMT + - Tue, 29 Aug 2023 15:56:38 GMT expires: - '-1' pragma: @@ -3378,7 +3558,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140052578905?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823207719763?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3390,7 +3570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:02:36 GMT + - Tue, 29 Aug 2023 15:57:09 GMT expires: - '-1' pragma: @@ -3420,7 +3600,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087140052578905?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082823207719763?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3432,7 +3612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:07 GMT + - Tue, 29 Aug 2023 15:57:39 GMT expires: - '-1' pragma: @@ -3465,8 +3645,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692892875", - "name": "AOSM_CLI_deployment_1692892875", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324562", + "name": "AOSM_CLI_deployment_1693324562", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "1926705401567781373", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -3475,22 +3655,20 @@ interactions: "String", "value": "ubuntu-vm-nfdg"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}, "vhdVersion": {"type": "String", "value": "1-0-0"}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2023-08-24T16:02:39.2124156Z", "duration": "PT1M18.3311985S", - "correlationId": "8f411ae7-1d8e-4d24-8abf-69a39a3a0c27", "providers": [{"namespace": + "Succeeded", "timestamp": "2023-08-29T15:57:28.5850113Z", "duration": "PT1M21.523046S", + "correlationId": "c12ea2f4-c906-4529-961f-4faf217719d0", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "locations": ["westcentralus"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/networkfunctiondefinitiongroups/ubuntu-vm-nfdg/networkfunctiondefinitionversions/1.0.0"}]}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '1572' + - '1571' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:07 GMT + - Tue, 29 Aug 2023 15:57:39 GMT expires: - '-1' pragma: @@ -3527,9 +3705,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/networkfunctiondefinitiongroups/ubuntu-vm-nfdg/networkfunctiondefinitionversions/1.0.0", "name": "1.0.0", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:01:25.1475401Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:56:10.8293417Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:01:25.1475401Z"}, "properties": {"networkFunctionTemplate": + "2023-08-29T15:56:10.8293417Z"}, "properties": {"networkFunctionTemplate": {"networkFunctionApplications": [{"artifactProfile": {"vhdArtifactProfile": {"vhdName": "ubuntu-vm-vhd", "vhdVersion": "1-0-0"}, "artifactStore": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store"}}, @@ -3553,9 +3731,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:08 GMT + - Tue, 29 Aug 2023 15:57:40 GMT etag: - - '"000095d9-0000-0600-0000-64e77ee30000"' + - '"00003600-0000-0600-0000-64ee152a0000"' expires: - '-1' pragma: @@ -3577,7 +3755,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3588,34 +3766,41 @@ interactions: - -f User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001?api-version=2022-09-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01?api-version=2021-07-01 response: body: - string: '' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-09-01"}' headers: cache-control: - no-cache content-length: - - '0' + - '290' + content-type: + - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:08 GMT + - Tue, 29 Aug 2023 15:57:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3627,32 +3812,30 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures?api-version=2021-07-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001", - "name": "cli_test_vnf_nsd_000001", "type": "Microsoft.Resources/resourceGroups", - "location": "westcentralus", "tags": {"product": "azurecli", "cause": "automation", - "test": "test_vnf_nsd_publish_and_delete", "date": "2023-08-24T15:51:56Z", - "module": "aosm", "autoDelete": "true", "expiresOn": "2023-09-23T15:51:58.4231943Z"}, - "properties": {"provisioningState": "Succeeded"}}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/AllowPreReleaseFeatures"}' headers: cache-control: - no-cache content-length: - - '476' + - '304' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:08 GMT + - Tue, 29 Aug 2023 15:57:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -3662,7 +3845,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3672,30 +3855,22 @@ interactions: ParameterSetName: - -f User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview?api-version=2021-07-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "name": "ubuntuPublisher", "type": "microsoft.hybridnetwork/publishers", "location": - "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:52:00.8042955Z", "lastModifiedBy": - "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T15:52:00.8042955Z"}, "properties": {"scope": "Private", "provisioningState": - "Succeeded"}}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-04-01-preview"}' headers: cache-control: - no-cache content-length: - - '588' + - '306' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:08 GMT - etag: - - '"20000fd7-0000-0600-0000-64e77cad0000"' + - Tue, 29 Aug 2023 15:57:40 GMT expires: - '-1' pragma: @@ -3705,11 +3880,9 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' status: code: 200 message: OK @@ -3717,7 +3890,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3727,32 +3900,22 @@ interactions: ParameterSetName: - -f User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled?api-version=2021-07-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", - "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T15:53:33.3686433Z", "lastModifiedBy": - "b8ed041c-aa91-418e-8f47-20c70abc2de1", "lastModifiedByType": "Application", - "lastModifiedAt": "2023-08-24T16:01:38.4961035Z"}, "properties": {"storeType": - "AzureContainerRegistry", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": - {"name": "ubuntu-acr-HostedResources-59B033BE", "location": "westcentralus"}, - "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-59B033BE/providers/Microsoft.ContainerRegistry/registries/UbuntupublisherUbuntuAcrd18ac8e07e"}}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/MsiForResourceEnabled"}' headers: cache-control: - no-cache content-length: - - '1031' + - '300' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:09 GMT - etag: - - '"17009c28-0000-0600-0000-64e77ee20000"' + - Tue, 29 Aug 2023 15:57:40 GMT expires: - '-1' pragma: @@ -3762,16 +3925,14 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-providerhub-traffic: - - 'True' status: code: 200 message: OK - request: - body: '{"location": "westcentralus"}' + body: null headers: Accept: - application/json @@ -3781,39 +3942,22 @@ interactions: - aosm nsd publish Connection: - keep-alive - Content-Length: - - '29' - Content-Type: - - application/json ParameterSetName: - -f User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu?api-version=2023-04-01-preview + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "name": "ubuntu", "type": "microsoft.hybridnetwork/publishers/networkservicedesigngroups", - "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:03:10.7668139Z", "lastModifiedBy": - "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:03:10.7668139Z"}, "properties": {"description": null, "provisioningState": - "Accepted"}}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '640' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Thu, 24 Aug 2023 16:03:12 GMT - etag: - - '"02005298-0000-0600-0000-64e77f410000"' + - Tue, 29 Aug 2023 15:57:41 GMT expires: - '-1' pragma: @@ -3822,16 +3966,230 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-build-version: - - 1.0.02386.1640 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created -- request: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - -f + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001?api-version=2022-09-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001", + "name": "cli_test_vnf_nsd_000001", "type": "Microsoft.Resources/resourceGroups", + "location": "westcentralus", "tags": {"product": "azurecli", "cause": "automation", + "test": "test_vnf_nsd_publish_and_delete", "date": "2023-08-29T15:46:31Z", + "module": "aosm", "autoDelete": "true", "expiresOn": "2023-09-28T15:46:31.4504856Z"}, + "properties": {"provisioningState": "Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:57:41 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: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - -f + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher?api-version=2023-04-01-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", + "name": "ubuntuPublisher", "type": "microsoft.hybridnetwork/publishers", "location": + "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", + "createdByType": "User", "createdAt": "2023-08-29T15:46:35.343537Z", "lastModifiedBy": + "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-08-29T15:46:35.343537Z"}, "properties": {"scope": "Private", "provisioningState": + "Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '586' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:57:42 GMT + etag: + - '"00003c03-0000-0600-0000-64ee12e60000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - -f + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr?api-version=2023-04-01-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", + "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", + "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", + "createdByType": "User", "createdAt": "2023-08-29T15:48:08.8909773Z", "lastModifiedBy": + "b8ed041c-aa91-418e-8f47-20c70abc2de1", "lastModifiedByType": "Application", + "lastModifiedAt": "2023-08-29T15:56:25.5771605Z"}, "properties": {"storeType": + "AzureContainerRegistry", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": + {"name": "ubuntu-acr-HostedResources-663B284E", "location": "westcentralus"}, + "provisioningState": "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-663B284E/providers/Microsoft.ContainerRegistry/registries/UbuntupublisherUbuntuAcr8e894d23e6"}}' + headers: + cache-control: + - no-cache + content-length: + - '1031' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:57:42 GMT + etag: + - '"0000ec2e-0000-0600-0000-64ee152a0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + status: + code: 200 + message: OK +- request: + body: '{"location": "westcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + Content-Length: + - '29' + Content-Type: + - application/json + ParameterSetName: + - -f + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu?api-version=2023-04-01-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", + "name": "ubuntu", "type": "microsoft.hybridnetwork/publishers/networkservicedesigngroups", + "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", + "createdByType": "User", "createdAt": "2023-08-29T15:57:43.9163403Z", "lastModifiedBy": + "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-08-29T15:57:43.9163403Z"}, "properties": {"description": null, "provisioningState": + "Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview + cache-control: + - no-cache + content-length: + - '640' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:57:53 GMT + etag: + - '"00003901-0000-0600-0000-64ee15810000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-build-version: + - 1.0.02386.1640 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: body: null headers: Accept: @@ -3848,24 +4206,24 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", - "name": "82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", + "name": "8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "status": "Accepted", "startTime": "2023-08-24T16:03:12.8156983Z"}' + "status": "Accepted", "startTime": "2023-08-29T15:57:53.242231Z"}' headers: cache-control: - no-cache content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:12 GMT + - Tue, 29 Aug 2023 15:57:53 GMT etag: - - '"0d00a438-0000-0600-0000-64e77f400000"' + - '"00002606-0000-0600-0000-64ee15810000"' expires: - '-1' pragma: @@ -3898,25 +4256,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", - "name": "82069ad7-f304-484a-a9fe-a9fff161c55b*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", + "name": "8e5f8d49-efa6-47d9-8cdd-6ed90c40c51f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "status": "Succeeded", "startTime": "2023-08-24T16:03:12.8156983Z", "endTime": - "2023-08-24T16:03:17.7056886Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T15:57:53.242231Z", "endTime": + "2023-08-29T15:58:01.2586688Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '635' + - '634' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:43 GMT + - Tue, 29 Aug 2023 15:58:24 GMT etag: - - '"0d00a638-0000-0600-0000-64e77f450000"' + - '"00002706-0000-0600-0000-64ee15890000"' expires: - '-1' pragma: @@ -3955,9 +4313,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", "name": "ubuntu", "type": "microsoft.hybridnetwork/publishers/networkservicedesigngroups", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:03:10.7668139Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:57:43.9163403Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:03:10.7668139Z"}, "properties": {"description": null, "provisioningState": + "2023-08-29T15:57:43.9163403Z"}, "properties": {"description": null, "provisioningState": "Succeeded"}}' headers: cache-control: @@ -3967,9 +4325,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:43 GMT + - Tue, 29 Aug 2023 15:58:24 GMT etag: - - '"02005398-0000-0600-0000-64e77f450000"' + - '"00003a01-0000-0600-0000-64ee15890000"' expires: - '-1' pragma: @@ -4018,7 +4376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:44 GMT + - Tue, 29 Aug 2023 15:58:25 GMT expires: - '-1' pragma: @@ -4078,8 +4436,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893028", - "name": "AOSM_CLI_deployment_1692893028", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324707", + "name": "AOSM_CLI_deployment_1693324707", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2851085707422332070", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -4087,7 +4445,7 @@ interactions: "armTemplateNames": {"type": "Array", "value": ["ubuntu-vm-nfdg_nf_artifact"]}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": - "PT0S", "correlationId": "07a53220-6f0d-42af-894e-16e9234fbaf9", "providers": + "PT0S", "correlationId": "c7001363-001e-40fd-957e-3e8d9eec8f78", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0"}]}}' @@ -4099,7 +4457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:49 GMT + - Tue, 29 Aug 2023 15:58:29 GMT expires: - '-1' pragma: @@ -4163,30 +4521,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893028", - "name": "AOSM_CLI_deployment_1692893028", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324707", + "name": "AOSM_CLI_deployment_1693324707", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2851085707422332070", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestNames": {"type": "Array", "value": ["ubuntu-vm-nfdg-nf-acr-manifest-1-0-0"]}, "armTemplateNames": {"type": "Array", "value": ["ubuntu-vm-nfdg_nf_artifact"]}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", - "provisioningState": "Accepted", "timestamp": "2023-08-24T16:03:52.144488Z", - "duration": "PT0.0001188S", "correlationId": "4eccbc67-0868-45b8-9bbe-cd5b24067d41", + "provisioningState": "Accepted", "timestamp": "2023-08-29T15:58:32.6763857Z", + "duration": "PT0.0002267S", "correlationId": "09cc96a3-cdc7-44c1-bb35-9d1fbb6828c7", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893028/operationStatuses/08585087138547804458?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324707/operationStatuses/08585082821741459869?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1127' + - '1128' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:52 GMT + - Tue, 29 Aug 2023 15:58:33 GMT expires: - '-1' pragma: @@ -4216,7 +4574,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087138547804458?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082821741459869?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -4228,7 +4586,49 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:03:53 GMT + - Tue, 29 Aug 2023 15:58:33 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - -f + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082821741459869?api-version=2022-09-01 + response: + body: + string: '{"status": "Running"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 15:59:03 GMT expires: - '-1' pragma: @@ -4258,7 +4658,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087138547804458?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082821741459869?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -4270,7 +4670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:25 GMT + - Tue, 29 Aug 2023 15:59:33 GMT expires: - '-1' pragma: @@ -4303,16 +4703,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893028", - "name": "AOSM_CLI_deployment_1692893028", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324707", + "name": "AOSM_CLI_deployment_1693324707", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2851085707422332070", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestNames": {"type": "Array", "value": ["ubuntu-vm-nfdg-nf-acr-manifest-1-0-0"]}, "armTemplateNames": {"type": "Array", "value": ["ubuntu-vm-nfdg_nf_artifact"]}, "armTemplateVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", - "provisioningState": "Succeeded", "timestamp": "2023-08-24T16:04:20.6449064Z", - "duration": "PT28.5005372S", "correlationId": "4eccbc67-0868-45b8-9bbe-cd5b24067d41", + "provisioningState": "Succeeded", "timestamp": "2023-08-29T15:59:16.4310587Z", + "duration": "PT43.7548997S", "correlationId": "09cc96a3-cdc7-44c1-bb35-9d1fbb6828c7", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["westcentralus"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0"}]}}' @@ -4324,7 +4724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:25 GMT + - Tue, 29 Aug 2023 15:59:33 GMT expires: - '-1' pragma: @@ -4361,9 +4761,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Hybridnetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", "name": "ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", "type": "microsoft.hybridnetwork/publishers/artifactstores/artifactmanifests", "location": "westcentralus", "systemData": {"createdBy": "sunnycarter@microsoft.com", - "createdByType": "User", "createdAt": "2023-08-24T16:03:56.0771383Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2023-08-29T15:58:36.6237908Z", "lastModifiedBy": "sunnycarter@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2023-08-24T16:03:56.0771383Z"}, "properties": {"artifacts": [{"artifactName": + "2023-08-29T15:58:36.6237908Z"}, "properties": {"artifacts": [{"artifactName": "ubuntu-vm-nfdg_nf_artifact", "artifactType": "ArmTemplate", "artifactVersion": "1.0.0"}], "artifactManifestState": "Uploading", "provisioningState": "Succeeded"}}' headers: @@ -4374,9 +4774,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:25 GMT + - Tue, 29 Aug 2023 15:59:35 GMT etag: - - '"2000a3ad-0000-0600-0000-64e77f7c0000"' + - '"00002e0f-0000-0600-0000-64ee15c20000"' expires: - '-1' pragma: @@ -4417,8 +4817,8 @@ interactions: response: body: string: '{"username": "ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io", "repositories": - ["ubuntu-vm-nfdg_nf_artifact"], "expiry": "2023-08-25T16:04:26.8180227+00:00", + "acrServerUrl": "https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io", "repositories": + ["ubuntu-vm-nfdg_nf_artifact"], "expiry": "2023-08-30T15:59:36.9854136+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -4428,7 +4828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:27 GMT + - Tue, 29 Aug 2023 15:59:37 GMT expires: - '-1' pragma: @@ -4466,7 +4866,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4486,7 +4886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:31 GMT + - Tue, 29 Aug 2023 15:59:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4495,7 +4895,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:pull,push" x-content-type-options: - nosniff status: @@ -4511,11 +4911,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4525,7 +4925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:31 GMT + - Tue, 29 Aug 2023 15:59:41 GMT server: - openresty strict-transport-security: @@ -4553,7 +4953,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ response: body: string: '' @@ -4568,13 +4968,13 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:04:32 GMT + - Tue, 29 Aug 2023 15:59:41 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - fbc77141-8bc1-45b8-90b3-e36836fc2775 + - 616589d9-557e-4af4-871d-f280e01b03a0 location: - - /v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/fbc77141-8bc1-45b8-90b3-e36836fc2775?_nouploadcache=false&_state=F7eDLjyvqwajCoX8cgmXk_BluQl1UgUObzDGjLPddR17Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiJmYmM3NzE0MS04YmMxLTQ1YjgtOTBiMy1lMzY4MzZmYzI3NzUiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjRUMTY6MDQ6MzEuOTAxODI0Mjg5WiJ9 + - /v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/616589d9-557e-4af4-871d-f280e01b03a0?_nouploadcache=false&_state=ITMtpjWT0X3FyZxRkfW8TSCsQEgfPobzsxGv3RD2amh7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI2MTY1ODlkOS01NTdlLTRhZjQtODcxZC1mMjgwZTAxYjAzYTAiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjlUMTU6NTk6NDEuMzI1OTkwNjQyWiJ9 range: - 0-0 server: @@ -4641,7 +5041,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/fbc77141-8bc1-45b8-90b3-e36836fc2775?_nouploadcache=false&_state=F7eDLjyvqwajCoX8cgmXk_BluQl1UgUObzDGjLPddR17Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiJmYmM3NzE0MS04YmMxLTQ1YjgtOTBiMy1lMzY4MzZmYzI3NzUiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjRUMTY6MDQ6MzEuOTAxODI0Mjg5WiJ9&digest=sha256%3Acda1bbb871260a2c7624e8adc401dec0667351f923fe545647b887e9f5271aad + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/616589d9-557e-4af4-871d-f280e01b03a0?_nouploadcache=false&_state=ITMtpjWT0X3FyZxRkfW8TSCsQEgfPobzsxGv3RD2amh7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI2MTY1ODlkOS01NTdlLTRhZjQtODcxZC1mMjgwZTAxYjAzYTAiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjlUMTU6NTk6NDEuMzI1OTkwNjQyWiJ9&digest=sha256%3Acda1bbb871260a2c7624e8adc401dec0667351f923fe545647b887e9f5271aad response: body: string: '' @@ -4656,7 +5056,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:04:32 GMT + - Tue, 29 Aug 2023 15:59:41 GMT docker-content-digest: - sha256:cda1bbb871260a2c7624e8adc401dec0667351f923fe545647b887e9f5271aad docker-distribution-api-version: @@ -4689,7 +5089,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4709,7 +5109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:32 GMT + - Tue, 29 Aug 2023 15:59:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4718,7 +5118,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:push,pull" x-content-type-options: - nosniff status: @@ -4734,11 +5134,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apush%2Cpull response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4748,7 +5148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:32 GMT + - Tue, 29 Aug 2023 15:59:41 GMT server: - openresty strict-transport-security: @@ -4776,7 +5176,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/ response: body: string: '' @@ -4791,13 +5191,13 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:04:32 GMT + - Tue, 29 Aug 2023 15:59:42 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 97b04ea6-33e0-485a-a93e-a47aa589a9b2 + - 7e7be12d-db35-4887-b41a-2114682c1037 location: - - /v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/97b04ea6-33e0-485a-a93e-a47aa589a9b2?_nouploadcache=false&_state=lzegn4qYjkNrBuwm54aujoFLjnBV0r7T9STa6a7_URh7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI5N2IwNGVhNi0zM2UwLTQ4NWEtYTkzZS1hNDdhYTU4OWE5YjIiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjRUMTY6MDQ6MzIuOTM1MjYwMjA1WiJ9 + - /v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/7e7be12d-db35-4887-b41a-2114682c1037?_nouploadcache=false&_state=GVN-YkeTyht6G_aBax7zYcamgtM7JtwGtvNV0AOv9tV7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI3ZTdiZTEyZC1kYjM1LTQ4ODctYjQxYS0yMTE0NjgyYzEwMzciLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjlUMTU6NTk6NDIuMTE3NDg5ODQ4WiJ9 range: - 0-0 server: @@ -4826,7 +5226,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/97b04ea6-33e0-485a-a93e-a47aa589a9b2?_nouploadcache=false&_state=lzegn4qYjkNrBuwm54aujoFLjnBV0r7T9STa6a7_URh7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI5N2IwNGVhNi0zM2UwLTQ4NWEtYTkzZS1hNDdhYTU4OWE5YjIiLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjRUMTY6MDQ6MzIuOTM1MjYwMjA1WiJ9&digest=sha256%3Ae3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/blobs/uploads/7e7be12d-db35-4887-b41a-2114682c1037?_nouploadcache=false&_state=GVN-YkeTyht6G_aBax7zYcamgtM7JtwGtvNV0AOv9tV7Ik5hbWUiOiJ1YnVudHUtdm0tbmZkZ19uZl9hcnRpZmFjdCIsIlVVSUQiOiI3ZTdiZTEyZC1kYjM1LTQ4ODctYjQxYS0yMTE0NjgyYzEwMzciLCJPZmZzZXQiOjAsIlN0YXJ0ZWRBdCI6IjIwMjMtMDgtMjlUMTU6NTk6NDIuMTE3NDg5ODQ4WiJ9&digest=sha256%3Ae3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 response: body: string: '' @@ -4841,7 +5241,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:04:33 GMT + - Tue, 29 Aug 2023 15:59:42 GMT docker-content-digest: - sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 docker-distribution-api-version: @@ -4880,7 +5280,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/manifests/1.0.0 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4900,7 +5300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:33 GMT + - Tue, 29 Aug 2023 15:59:42 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4909,7 +5309,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacrd18ac8e07e.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:pull,push" + - Bearer realm="https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token",service="ubuntupublisherubuntuacr8e894d23e6.azurecr.io",scope="repository:ubuntu-vm-nfdg_nf_artifact:pull,push" x-content-type-options: - nosniff status: @@ -4925,11 +5325,11 @@ interactions: Connection: - keep-alive Service: - - ubuntupublisherubuntuacrd18ac8e07e.azurecr.io + - ubuntupublisherubuntuacr8e894d23e6.azurecr.io User-Agent: - oras-py method: GET - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacrd18ac8e07e.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apull%2Cpush + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/oauth2/token?service=ubuntupublisherubuntuacr8e894d23e6.azurecr.io&scope=repository%3Aubuntu-vm-nfdg_nf_artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4939,7 +5339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:33 GMT + - Tue, 29 Aug 2023 15:59:42 GMT server: - openresty strict-transport-security: @@ -4973,7 +5373,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://ubuntupublisherubuntuacrd18ac8e07e.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/manifests/1.0.0 + uri: https://ubuntupublisherubuntuacr8e894d23e6.azurecr.io/v2/ubuntu-vm-nfdg_nf_artifact/manifests/1.0.0 response: body: string: '' @@ -4988,7 +5388,7 @@ interactions: content-length: - '0' date: - - Thu, 24 Aug 2023 16:04:34 GMT + - Tue, 29 Aug 2023 15:59:43 GMT docker-content-digest: - sha256:7b3db21b27fb97e6d1c92f21747cf67e213ae2360c4a63a390b859a7b5e17b77 docker-distribution-api-version: @@ -5078,8 +5478,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893075", - "name": "AOSM_CLI_deployment_1692893075", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324785", + "name": "AOSM_CLI_deployment_1693324785", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "18201962655924189778", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": @@ -5087,7 +5487,7 @@ interactions: {"type": "String", "value": "1.0.0"}, "nfviSiteName": {"type": "String", "value": "ubuntu_NFVI"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "4a6663bc-d197-46eb-9b30-1c2bbf46c1ed", "providers": [{"namespace": "Microsoft.Hybridnetwork", + "0df9ebe1-6935-4823-ab6f-9a0a8a099640", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["westcentralus"]}, {"resourceType": "publishers/networkservicedesigngroups/networkservicedesignversions", "locations": ["westcentralus"]}]}], "dependencies": [{"dependsOn": [{"id": @@ -5106,7 +5506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:38 GMT + - Tue, 29 Aug 2023 15:59:46 GMT expires: - '-1' pragma: @@ -5197,16 +5597,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893075", - "name": "AOSM_CLI_deployment_1692893075", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324785", + "name": "AOSM_CLI_deployment_1693324785", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "18201962655924189778", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}, "nsDesignVersion": {"type": "String", "value": "1.0.0"}, "nfviSiteName": {"type": "String", "value": "ubuntu_NFVI"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2023-08-24T16:04:40.5057579Z", "duration": "PT0.0007955S", "correlationId": - "5622d3ca-bc00-46ba-a56a-b90fca292487", "providers": [{"namespace": "Microsoft.Hybridnetwork", + "2023-08-29T15:59:49.2140578Z", "duration": "PT0.0007847S", "correlationId": + "ebc2b215-e495-4423-9438-efe28eb3d0d4", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["westcentralus"]}, {"resourceType": "publishers/networkservicedesigngroups/networkservicedesignversions", "locations": ["westcentralus"]}]}], "dependencies": [{"dependsOn": [{"id": @@ -5217,7 +5617,7 @@ interactions: "resourceName": "ubuntuPublisher/ubuntu/1.0.0"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893075/operationStatuses/08585087138057025190?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324785/operationStatuses/08585082820977388054?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -5225,7 +5625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:40 GMT + - Tue, 29 Aug 2023 15:59:50 GMT expires: - '-1' pragma: @@ -5255,7 +5655,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087138057025190?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082820977388054?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -5267,7 +5667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:04:40 GMT + - Tue, 29 Aug 2023 15:59:50 GMT expires: - '-1' pragma: @@ -5297,7 +5697,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087138057025190?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082820977388054?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -5309,7 +5709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:05:12 GMT + - Tue, 29 Aug 2023 16:00:19 GMT expires: - '-1' pragma: @@ -5339,7 +5739,7 @@ interactions: User-Agent: - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585087138057025190?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585082820977388054?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -5351,7 +5751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:05:43 GMT + - Tue, 29 Aug 2023 16:00:50 GMT expires: - '-1' pragma: @@ -5384,16 +5784,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1692893075", - "name": "AOSM_CLI_deployment_1692893075", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1693324785", + "name": "AOSM_CLI_deployment_1693324785", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "18201962655924189778", "parameters": {"location": {"type": "String", "value": "westcentralus"}, "publisherName": {"type": "String", "value": "ubuntuPublisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}, "nsDesignVersion": {"type": "String", "value": "1.0.0"}, "nfviSiteName": {"type": "String", "value": "ubuntu_NFVI"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2023-08-24T16:05:42.6610816Z", "duration": "PT1M2.1561192S", - "correlationId": "5622d3ca-bc00-46ba-a56a-b90fca292487", "providers": [{"namespace": + "timestamp": "2023-08-29T16:00:42.7888709Z", "duration": "PT53.5755978S", + "correlationId": "ebc2b215-e495-4423-9438-efe28eb3d0d4", "providers": [{"namespace": "Microsoft.Hybridnetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["westcentralus"]}, {"resourceType": "publishers/networkservicedesigngroups/networkservicedesignversions", "locations": ["westcentralus"]}]}], "dependencies": [{"dependsOn": [{"id": @@ -5408,11 +5808,11 @@ interactions: cache-control: - no-cache content-length: - - '2412' + - '2411' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:05:43 GMT + - Tue, 29 Aug 2023 16:00:51 GMT expires: - '-1' pragma: @@ -5430,62 +5830,52 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: - aosm nsd delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -f --clean --force User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0?api-version=2023-04-01-preview + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01?api-version=2021-07-01 response: body: - string: 'null' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-09-01"}' headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '4' + - '290' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:05:46 GMT - etag: - - '"f003a303-0000-0600-0000-64e77fda0000"' + - Tue, 29 Aug 2023 16:00:51 GMT expires: - '-1' - location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-build-version: - - 1.0.02386.1640 - x-ms-providerhub-traffic: - - 'True' - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -5495,47 +5885,42 @@ interactions: ParameterSetName: - -f --clean --force User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures?api-version=2021-07-01 response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "name": "a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", - "status": "Deleting", "startTime": "2023-08-24T16:05:45.7779924Z"}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/AllowPreReleaseFeatures"}' headers: - azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '606' + - '304' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:05:46 GMT - etag: - - '"680085f6-0000-0600-0000-64e77fd90000"' + - Tue, 29 Aug 2023 16:00:51 GMT expires: - '-1' - location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -5545,28 +5930,22 @@ interactions: ParameterSetName: - -f --clean --force User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview?api-version=2021-07-01 response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "name": "a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", - "status": "Succeeded", "startTime": "2023-08-24T16:05:45.7779924Z", "endTime": - "2023-08-24T16:05:52.5924501Z", "properties": null}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-04-01-preview"}' headers: cache-control: - no-cache content-length: - - '670' + - '306' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:06:16 GMT - etag: - - '"68008af6-0000-0600-0000-64e77fe00000"' + - Tue, 29 Aug 2023 16:00:51 GMT expires: - '-1' pragma: @@ -5576,7 +5955,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -5586,7 +5965,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -5596,28 +5975,22 @@ interactions: ParameterSetName: - -f --clean --force User-Agent: - - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65?api-version=2020-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled?api-version=2021-07-01 response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "name": "a46c4064-2c71-4917-8a77-f86a92b86205*C72A0125C1B0D0569A82E29901B39DD48772792BAF591B0D1C59883B086CFA65", - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", - "status": "Succeeded", "startTime": "2023-08-24T16:05:45.7779924Z", "endTime": - "2023-08-24T16:05:52.5924501Z", "properties": null}' + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/MsiForResourceEnabled"}' headers: cache-control: - no-cache content-length: - - '670' + - '300' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:06:16 GMT - etag: - - '"68008af6-0000-0600-0000-64e77fe00000"' + - Tue, 29 Aug 2023 16:00:51 GMT expires: - '-1' pragma: @@ -5627,7 +6000,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -5652,13 +6025,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0?api-version=2023-04-01-preview response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5666,13 +6039,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:06:19 GMT + - Tue, 29 Aug 2023 16:00:54 GMT etag: - - '"200087ae-0000-0600-0000-64e77ffb0000"' + - '"00002a00-0000-0600-0000-64ee16360000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -5684,7 +6057,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -5705,36 +6078,193 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", - "name": "553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", - "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", - "status": "Deleting", "startTime": "2023-08-24T16:06:18.6941862Z"}' + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "name": "0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", + "status": "Deleting", "startTime": "2023-08-29T16:00:53.6598892Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview cache-control: - no-cache content-length: - - '618' + - '606' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:00:54 GMT + etag: + - '"00002b06-0000-0600-0000-64ee16350000"' + expires: + - '-1' + location: + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd delete + Connection: + - keep-alive + ParameterSetName: + - -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview + response: + body: + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "name": "0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", + "status": "Succeeded", "startTime": "2023-08-29T16:00:53.6598892Z", "endTime": + "2023-08-29T16:01:03.2956106Z", "properties": null}' + headers: + cache-control: + - no-cache + content-length: + - '670' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:01:24 GMT + etag: + - '"00002c06-0000-0600-0000-64ee163f0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd delete + Connection: + - keep-alive + ParameterSetName: + - -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7?api-version=2020-01-01-preview + response: + body: + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "name": "0c741975-66e4-4a20-9250-8b4286973587*7F8DC5BF7193E63CB1613E8CF9959AAF6FF43D206B9468ABA965B313544E20E7", + "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu/networkServiceDesignVersions/1.0.0", + "status": "Succeeded", "startTime": "2023-08-29T16:00:53.6598892Z", "endTime": + "2023-08-29T16:01:03.2956106Z", "properties": null}' + headers: + cache-control: + - no-cache + content-length: + - '670' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:01:24 GMT + etag: + - '"00002c06-0000-0600-0000-64ee163f0000"' + expires: + - '-1' + pragma: + - no-cache + 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: + - aosm nsd delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 + (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0?api-version=2023-04-01-preview + response: + body: + string: 'null' + headers: + azure-asyncoperation: + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview + cache-control: + - no-cache + content-length: + - '4' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:06:19 GMT + - Tue, 29 Aug 2023 16:01:26 GMT etag: - - '"0d000539-0000-0600-0000-64e77ffa0000"' + - '"0000de0f-0000-0600-0000-64ee16570000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-build-version: + - 1.0.02386.1640 + x-ms-providerhub-traffic: + - 'True' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' status: code: 202 message: Accepted @@ -5755,16 +6285,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", - "name": "553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", + "name": "9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", - "status": "Deleting", "startTime": "2023-08-24T16:06:18.6941862Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:01:26.2822183Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5772,13 +6302,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:06:49 GMT + - Tue, 29 Aug 2023 16:01:27 GMT etag: - - '"0d000539-0000-0600-0000-64e77ffa0000"' + - '"030003db-0000-0600-0000-64ee16560000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -5805,14 +6335,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", - "name": "553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", + "name": "9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:06:18.6941862Z", "endTime": - "2023-08-24T16:06:52.9622606Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:01:26.2822183Z", "endTime": + "2023-08-29T16:01:55.1417126Z", "properties": null}' headers: cache-control: - no-cache @@ -5821,9 +6351,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:20 GMT + - Tue, 29 Aug 2023 16:01:56 GMT etag: - - '"0d001f39-0000-0600-0000-64e7801c0000"' + - '"030048dc-0000-0600-0000-64ee16730000"' expires: - '-1' pragma: @@ -5856,14 +6386,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", - "name": "553d7aa2-7978-4ed0-a8c6-f443353c27bc*8C319F845FB1C8E9B5C65A082E388EDAE8415C7CD4DC39D5EF7147D5ABF13634", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", + "name": "9d4c799a-87a2-46a4-8835-ba55a6b403f0*DB692E0A0A4C5AD9CA3492FE4C39590F7AE07FBADAB5C39D246972FD64B25CCF", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-nfdg-nf-acr-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:06:18.6941862Z", "endTime": - "2023-08-24T16:06:52.9622606Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:01:26.2822183Z", "endTime": + "2023-08-29T16:01:55.1417126Z", "properties": null}' headers: cache-control: - no-cache @@ -5872,9 +6402,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:20 GMT + - Tue, 29 Aug 2023 16:01:57 GMT etag: - - '"0d001f39-0000-0600-0000-64e7801c0000"' + - '"030048dc-0000-0600-0000-64ee16730000"' expires: - '-1' pragma: @@ -5915,7 +6445,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5923,13 +6453,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:22 GMT + - Tue, 29 Aug 2023 16:02:00 GMT etag: - - '"b2009e96-0000-0600-0000-64e7803b0000"' + - '"00009201-0000-0600-0000-64ee16780000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -5962,16 +6492,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", - "name": "e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", + "name": "608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/configurationGroupSchemas/ubuntu_ConfigGroupSchema", - "status": "Deleting", "startTime": "2023-08-24T16:07:22.254059Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:01:59.477457Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -5979,13 +6509,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:23 GMT + - Tue, 29 Aug 2023 16:02:00 GMT etag: - - '"6800a5ff-0000-0600-0000-64e7803a0000"' + - '"030078dc-0000-0600-0000-64ee16770000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6012,25 +6542,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", - "name": "e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", + "name": "608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/configurationGroupSchemas/ubuntu_ConfigGroupSchema", - "status": "Succeeded", "startTime": "2023-08-24T16:07:22.254059Z", "endTime": - "2023-08-24T16:07:28.3924704Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:01:59.477457Z", "endTime": + "2023-08-29T16:02:03.488937Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '651' + - '650' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:53 GMT + - Tue, 29 Aug 2023 16:02:30 GMT etag: - - '"69004e00-0000-0600-0000-64e780400000"' + - '"0300a2dc-0000-0600-0000-64ee167b0000"' expires: - '-1' pragma: @@ -6063,25 +6593,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", - "name": "e115f48c-b0b0-4337-8029-fc6f26b480c6*3605ADF8F8E01DF805E73863AE1394001CC63D4F5B8D3C59898CBC5F9A83AF51", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", + "name": "608cd2f1-59d6-43a0-98ee-4b7bdb22e100*ECDDF7375EFCF3921DDCEFC854B2890F0514C1081A8FA77D7EDAA293F3B7E7FA", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/configurationGroupSchemas/ubuntu_ConfigGroupSchema", - "status": "Succeeded", "startTime": "2023-08-24T16:07:22.254059Z", "endTime": - "2023-08-24T16:07:28.3924704Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:01:59.477457Z", "endTime": + "2023-08-29T16:02:03.488937Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '651' + - '650' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:53 GMT + - Tue, 29 Aug 2023 16:02:30 GMT etag: - - '"69004e00-0000-0600-0000-64e780400000"' + - '"0300a2dc-0000-0600-0000-64ee167b0000"' expires: - '-1' pragma: @@ -6122,7 +6652,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6130,13 +6660,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:55 GMT + - Tue, 29 Aug 2023 16:02:32 GMT etag: - - '"02007d98-0000-0600-0000-64e7805b0000"' + - '"00006a01-0000-0600-0000-64ee16980000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6169,16 +6699,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", - "name": "6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", + "name": "65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "status": "Deleting", "startTime": "2023-08-24T16:07:55.2018322Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:02:31.6031656Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6186,13 +6716,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:07:55 GMT + - Tue, 29 Aug 2023 16:02:32 GMT etag: - - '"0d006839-0000-0600-0000-64e7805b0000"' + - '"00002f06-0000-0600-0000-64ee16970000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6219,25 +6749,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", - "name": "6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", + "name": "65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "status": "Succeeded", "startTime": "2023-08-24T16:07:55.2018322Z", "endTime": - "2023-08-24T16:08:00.7269132Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:02:31.6031656Z", "endTime": + "2023-08-29T16:02:34.488496Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '635' + - '634' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:08:25 GMT + - Tue, 29 Aug 2023 16:03:02 GMT etag: - - '"0d006b39-0000-0600-0000-64e780600000"' + - '"00003006-0000-0600-0000-64ee169a0000"' expires: - '-1' pragma: @@ -6270,25 +6800,25 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", - "name": "6d23512d-cbb8-4252-9f38-573f747c1149*53C8DC39476B596E433AF2FA0B23E756482A041129272170226926D9542C88A2", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", + "name": "65c4ef13-5825-4856-baec-0ea93c271b7f*9D25250BBC2AF4272BC5A5112F330DF31E214F0F8177FA01557C3977EAD7CC4B", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkServiceDesignGroups/ubuntu", - "status": "Succeeded", "startTime": "2023-08-24T16:07:55.2018322Z", "endTime": - "2023-08-24T16:08:00.7269132Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:02:31.6031656Z", "endTime": + "2023-08-29T16:02:34.488496Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '635' + - '634' content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:08:25 GMT + - Tue, 29 Aug 2023 16:03:02 GMT etag: - - '"0d006b39-0000-0600-0000-64e780600000"' + - '"00003006-0000-0600-0000-64ee169a0000"' expires: - '-1' pragma: @@ -6304,6 +6834,186 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd delete + Connection: + - keep-alive + ParameterSetName: + - --definition-type -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-09-01", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-09-01"}' + headers: + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:03:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd delete + Connection: + - keep-alive + ParameterSetName: + - --definition-type -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/AllowPreReleaseFeatures", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/AllowPreReleaseFeatures"}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd delete + Connection: + - keep-alive + ParameterSetName: + - --definition-type -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/Allow-2023-04-01-preview", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/Allow-2023-04-01-preview"}' + headers: + cache-control: + - no-cache + content-length: + - '306' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd delete + Connection: + - keep-alive + ParameterSetName: + - --definition-type -f --clean --force + User-Agent: + - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled?api-version=2021-07-01 + response: + body: + string: '{"properties": {"state": "Registered"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Features/providers/Microsoft.HybridNetwork/features/MsiForResourceEnabled", + "type": "Microsoft.Features/providers/features", "name": "Microsoft.HybridNetwork/MsiForResourceEnabled"}' + headers: + cache-control: + - no-cache + content-length: + - '300' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 29 Aug 2023 16:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -6329,7 +7039,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6337,13 +7047,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:08:27 GMT + - Tue, 29 Aug 2023 16:03:05 GMT etag: - - '"000097d9-0000-0600-0000-64e7807c0000"' + - '"00003800-0000-0600-0000-64ee16ba0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6376,16 +7086,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", - "name": "ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", + "name": "aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg/networkFunctionDefinitionVersions/1.0.0", - "status": "Deleting", "startTime": "2023-08-24T16:08:28.3530907Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:03:06.0145598Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6393,13 +7103,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:08:27 GMT + - Tue, 29 Aug 2023 16:03:06 GMT etag: - - '"0d009d39-0000-0600-0000-64e7807c0000"' + - '"03008cdf-0000-0600-0000-64ee16ba0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6426,16 +7136,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", - "name": "ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", + "name": "aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg/networkFunctionDefinitionVersions/1.0.0", - "status": "Deleting", "startTime": "2023-08-24T16:08:28.3530907Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:03:06.0145598Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6443,13 +7153,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:08:58 GMT + - Tue, 29 Aug 2023 16:03:35 GMT etag: - - '"0d009d39-0000-0600-0000-64e7807c0000"' + - '"03008cdf-0000-0600-0000-64ee16ba0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6476,16 +7186,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", - "name": "ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", + "name": "aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg/networkFunctionDefinitionVersions/1.0.0", - "status": "Deleting", "startTime": "2023-08-24T16:08:28.3530907Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:03:06.0145598Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6493,13 +7203,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:09:28 GMT + - Tue, 29 Aug 2023 16:04:06 GMT etag: - - '"0d009d39-0000-0600-0000-64e7807c0000"' + - '"03008cdf-0000-0600-0000-64ee16ba0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6526,13 +7236,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", - "name": "ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", + "name": "aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg/networkFunctionDefinitionVersions/1.0.0", - "status": "Succeeded", "startTime": "2023-08-24T16:08:28.3530907Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:03:06.0145598Z", "properties": null}' headers: cache-control: @@ -6542,9 +7252,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:09:58 GMT + - Tue, 29 Aug 2023 16:04:36 GMT etag: - - '"70001f6a-0000-0700-0000-64e780bf0000"' + - '"0300afe2-0000-0600-0000-64ee16fd0000"' expires: - '-1' pragma: @@ -6577,13 +7287,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", - "name": "ec882454-ff5b-45d9-825f-5a20e8c138d8*7C1AD58E046381AD2ED325F0FDCEA92582216C89E85CC73C222335229B5F3601", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", + "name": "aafe5dd0-a6b8-459e-9e68-ec24a0f3fd74*F2CAF33CA3B47F264B3C684F7D827296FD7E2DECF9DD193082093436D7292A47", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg/networkFunctionDefinitionVersions/1.0.0", - "status": "Succeeded", "startTime": "2023-08-24T16:08:28.3530907Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:03:06.0145598Z", "properties": null}' headers: cache-control: @@ -6593,9 +7303,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:09:58 GMT + - Tue, 29 Aug 2023 16:04:36 GMT etag: - - '"70001f6a-0000-0700-0000-64e780bf0000"' + - '"0300afe2-0000-0600-0000-64ee16fd0000"' expires: - '-1' pragma: @@ -6636,7 +7346,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6644,13 +7354,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:00 GMT + - Tue, 29 Aug 2023 16:04:38 GMT etag: - - '"200008b0-0000-0600-0000-64e780d80000"' + - '"00003510-0000-0600-0000-64ee17170000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6683,16 +7393,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", - "name": "c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", + "name": "15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0", - "status": "Deleting", "startTime": "2023-08-24T16:09:59.9340552Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:04:38.5945997Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6700,13 +7410,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:00 GMT + - Tue, 29 Aug 2023 16:04:38 GMT etag: - - '"0d00273a-0000-0600-0000-64e780d70000"' + - '"0300d8e3-0000-0600-0000-64ee17160000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6733,14 +7443,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", - "name": "c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", + "name": "15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:09:59.9340552Z", "endTime": - "2023-08-24T16:10:04.3159607Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:04:38.5945997Z", "endTime": + "2023-08-29T16:04:42.8673091Z", "properties": null}' headers: cache-control: - no-cache @@ -6749,9 +7459,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:30 GMT + - Tue, 29 Aug 2023 16:05:09 GMT etag: - - '"0d002a3a-0000-0600-0000-64e780dc0000"' + - '"0300fae3-0000-0600-0000-64ee171a0000"' expires: - '-1' pragma: @@ -6784,14 +7494,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", - "name": "c8496bd0-928d-4e1d-9a5b-3102e7bc2fd1*D1874706236BBE1D3454E8D0BD8BB273C5D0E8A6B32F26A5E3D096F93B79A71D", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", + "name": "15b4c924-80ca-4e5f-9149-835be9756471*B6943EBA12F10489DAA3AC3D9E77837B54D532FEF60B933E735DA59000AFDE79", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:09:59.9340552Z", "endTime": - "2023-08-24T16:10:04.3159607Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:04:38.5945997Z", "endTime": + "2023-08-29T16:04:42.8673091Z", "properties": null}' headers: cache-control: - no-cache @@ -6800,9 +7510,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:31 GMT + - Tue, 29 Aug 2023 16:05:09 GMT etag: - - '"0d002a3a-0000-0600-0000-64e780dc0000"' + - '"0300fae3-0000-0600-0000-64ee171a0000"' expires: - '-1' pragma: @@ -6843,7 +7553,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6851,13 +7561,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:33 GMT + - Tue, 29 Aug 2023 16:05:11 GMT etag: - - '"20004bb0-0000-0600-0000-64e780f90000"' + - '"00003610-0000-0600-0000-64ee17380000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6890,16 +7600,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", - "name": "bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", + "name": "217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0", - "status": "Deleting", "startTime": "2023-08-24T16:10:33.3961553Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:05:11.6158607Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -6907,13 +7617,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:10:33 GMT + - Tue, 29 Aug 2023 16:05:11 GMT etag: - - '"0d005b3a-0000-0600-0000-64e780f90000"' + - '"030050e5-0000-0600-0000-64ee17370000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -6940,14 +7650,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", - "name": "bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", + "name": "217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:10:33.3961553Z", "endTime": - "2023-08-24T16:10:38.2121143Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:05:11.6158607Z", "endTime": + "2023-08-29T16:05:29.9848076Z", "properties": null}' headers: cache-control: - no-cache @@ -6956,9 +7666,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:11:05 GMT + - Tue, 29 Aug 2023 16:05:41 GMT etag: - - '"0d006a3a-0000-0600-0000-64e780fe0000"' + - '"03001ee6-0000-0600-0000-64ee17490000"' expires: - '-1' pragma: @@ -6991,14 +7701,14 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", - "name": "bf8df8c7-d231-4122-8542-c850cb1d1855*4936AD9BE9CA11FE54ACFF611EAB3820D8EF3E5E0AB34441FFACC79BE5C26B7E", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", + "name": "217f9262-1baa-4ead-8d54-ec2bb59887ca*6D4A88C4C492FF795DB9717A6CA26AF2F20572E19A448839FF1467472F8832B8", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0", - "status": "Succeeded", "startTime": "2023-08-24T16:10:33.3961553Z", "endTime": - "2023-08-24T16:10:38.2121143Z", "properties": null}' + "status": "Succeeded", "startTime": "2023-08-29T16:05:11.6158607Z", "endTime": + "2023-08-29T16:05:29.9848076Z", "properties": null}' headers: cache-control: - no-cache @@ -7007,9 +7717,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:11:06 GMT + - Tue, 29 Aug 2023 16:05:41 GMT etag: - - '"0d006a3a-0000-0600-0000-64e780fe0000"' + - '"03001ee6-0000-0600-0000-64ee17490000"' expires: - '-1' pragma: @@ -7050,7 +7760,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7058,13 +7768,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:11:09 GMT + - Tue, 29 Aug 2023 16:05:46 GMT etag: - - '"09007aef-0000-0600-0000-64e7811d0000"' + - '"00005304-0000-0600-0000-64ee175b0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7097,16 +7807,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Deleting", "startTime": "2023-08-24T16:11:08.9404909Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:05:46.9649481Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7114,13 +7824,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:11:09 GMT + - Tue, 29 Aug 2023 16:05:46 GMT etag: - - '"6900cb10-0000-0600-0000-64e7811c0000"' + - '"0300f3e6-0000-0600-0000-64ee175a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7147,16 +7857,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Deleting", "startTime": "2023-08-24T16:11:08.9404909Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:05:46.9649481Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7164,13 +7874,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:11:38 GMT + - Tue, 29 Aug 2023 16:06:17 GMT etag: - - '"6900cb10-0000-0600-0000-64e7811c0000"' + - '"0300f3e6-0000-0600-0000-64ee175a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7197,16 +7907,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Deleting", "startTime": "2023-08-24T16:11:08.9404909Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:05:46.9649481Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7214,13 +7924,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:12:09 GMT + - Tue, 29 Aug 2023 16:06:46 GMT etag: - - '"6900cb10-0000-0600-0000-64e7811c0000"' + - '"0300f3e6-0000-0600-0000-64ee175a0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7247,13 +7957,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Succeeded", "startTime": "2023-08-24T16:11:08.9404909Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:05:46.9649481Z", "properties": null}' headers: cache-control: @@ -7263,9 +7973,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:12:39 GMT + - Tue, 29 Aug 2023 16:07:17 GMT etag: - - '"0b01e332-0000-0800-0000-64e781600000"' + - '"3a01a854-0000-0700-0000-64ee179d0000"' expires: - '-1' pragma: @@ -7298,13 +8008,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", - "name": "c3164c13-e442-4a0c-a2df-e9933b944992*84C4ECA09469BBDA75EE23B0C96AD5D368A53F08FAF2B9701A3C6CBC6EA3616A", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", + "name": "bd9455a4-332a-4388-bb8d-99bd77a07e3c*34B427E14DE04F9E01EC345CFC242026724C04F83B62981A24B26738B0658890", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/networkFunctionDefinitionGroups/ubuntu-vm-nfdg", - "status": "Succeeded", "startTime": "2023-08-24T16:11:08.9404909Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:05:46.9649481Z", "properties": null}' headers: cache-control: @@ -7314,9 +8024,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:12:39 GMT + - Tue, 29 Aug 2023 16:07:18 GMT etag: - - '"0b01e332-0000-0800-0000-64e781600000"' + - '"3a01a854-0000-0700-0000-64ee179d0000"' expires: - '-1' pragma: @@ -7357,7 +8067,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7365,13 +8075,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:12:40 GMT + - Tue, 29 Aug 2023 16:07:19 GMT etag: - - '"1700472c-0000-0600-0000-64e781790000"' + - '"00000e32-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7404,16 +8114,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7421,13 +8131,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:12:41 GMT + - Tue, 29 Aug 2023 16:07:19 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7454,16 +8164,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7471,13 +8181,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:13:10 GMT + - Tue, 29 Aug 2023 16:07:50 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7504,16 +8214,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7521,13 +8231,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:13:41 GMT + - Tue, 29 Aug 2023 16:08:20 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7554,16 +8264,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7571,13 +8281,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:14:12 GMT + - Tue, 29 Aug 2023 16:08:49 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7604,16 +8314,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7621,13 +8331,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:14:46 GMT + - Tue, 29 Aug 2023 16:09:20 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7654,16 +8364,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7671,13 +8381,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:15:16 GMT + - Tue, 29 Aug 2023 16:09:51 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7704,16 +8414,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Deleting", "startTime": "2023-08-24T16:12:41.2375373Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:07:19.8256543Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7721,13 +8431,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:15:46 GMT + - Tue, 29 Aug 2023 16:10:21 GMT etag: - - '"69002c15-0000-0600-0000-64e781790000"' + - '"00003c06-0000-0600-0000-64ee17b70000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7754,13 +8464,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Succeeded", "startTime": "2023-08-24T16:12:41.2375373Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:07:19.8256543Z", "properties": null}' headers: cache-control: @@ -7770,9 +8480,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:16:16 GMT + - Tue, 29 Aug 2023 16:10:51 GMT etag: - - '"57008942-0000-0700-0000-64e782340000"' + - '"00004206-0000-0600-0000-64ee18730000"' expires: - '-1' pragma: @@ -7805,13 +8515,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", - "name": "51e99b04-3c26-4c0b-a408-c0a2be0c938d*1F07EC3B84B32EE3331AD7794A88FFCA376AE4194DB5BB18A725E793AB9FB2E9", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", + "name": "aa35a345-7239-43ff-a781-48eaf9546bac*842403C2D698915B1A40AB6D01D511CBFBB4711F0C80395109E20179A98D03A5", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-acr", - "status": "Succeeded", "startTime": "2023-08-24T16:12:41.2375373Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:07:19.8256543Z", "properties": null}' headers: cache-control: @@ -7821,9 +8531,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:16:17 GMT + - Tue, 29 Aug 2023 16:10:52 GMT etag: - - '"57008942-0000-0700-0000-64e782340000"' + - '"00004206-0000-0600-0000-64ee18730000"' expires: - '-1' pragma: @@ -7864,7 +8574,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7872,13 +8582,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:16:18 GMT + - Tue, 29 Aug 2023 16:10:53 GMT etag: - - '"17006d2d-0000-0600-0000-64e782530000"' + - '"00003033-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7911,16 +8621,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7928,13 +8638,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:16:18 GMT + - Tue, 29 Aug 2023 16:10:53 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -7961,16 +8671,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -7978,13 +8688,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:16:48 GMT + - Tue, 29 Aug 2023 16:11:23 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8011,16 +8721,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8028,13 +8738,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:17:19 GMT + - Tue, 29 Aug 2023 16:11:53 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8061,16 +8771,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8078,13 +8788,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:17:51 GMT + - Tue, 29 Aug 2023 16:12:24 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8111,16 +8821,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8128,13 +8838,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:18:23 GMT + - Tue, 29 Aug 2023 16:12:53 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8161,16 +8871,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8178,13 +8888,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:18:54 GMT + - Tue, 29 Aug 2023 16:13:24 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8211,16 +8921,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Deleting", "startTime": "2023-08-24T16:16:19.0475184Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:10:53.6036813Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8228,13 +8938,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:19:24 GMT + - Tue, 29 Aug 2023 16:13:54 GMT etag: - - '"6900e01b-0000-0600-0000-64e782530000"' + - '"00004506-0000-0600-0000-64ee188d0000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8261,13 +8971,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Succeeded", "startTime": "2023-08-24T16:16:19.0475184Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:10:53.6036813Z", "properties": null}' headers: cache-control: @@ -8277,9 +8987,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:19:57 GMT + - Tue, 29 Aug 2023 16:14:24 GMT etag: - - '"6300da61-0000-0100-0000-64e7830e0000"' + - '"00005106-0000-0600-0000-64ee19490000"' expires: - '-1' pragma: @@ -8312,13 +9022,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", - "name": "a42de484-0aa0-4172-a431-de74d44ee435*BA0DC5AEE6CA8D2853010C439BC0D492FCD6138389C1A542C20294E8066128F0", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", + "name": "faab2d0b-ba75-4d24-b89c-14c8acf9355f*A3808BC884BD95AE15E56E8748664E7C3524F1EC592A9123E52D67500437CAA6", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher/artifactStores/ubuntu-blob-store", - "status": "Succeeded", "startTime": "2023-08-24T16:16:19.0475184Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:10:53.6036813Z", "properties": null}' headers: cache-control: @@ -8328,9 +9038,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:19:57 GMT + - Tue, 29 Aug 2023 16:14:24 GMT etag: - - '"6300da61-0000-0100-0000-64e7830e0000"' + - '"00005106-0000-0600-0000-64ee19490000"' expires: - '-1' pragma: @@ -8371,7 +9081,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8379,13 +9089,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:20:03 GMT + - Tue, 29 Aug 2023 16:14:30 GMT etag: - - '"200047f1-0000-0600-0000-64e783330000"' + - '"00003f03-0000-0600-0000-64ee19660000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8418,16 +9128,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Deleting", "startTime": "2023-08-24T16:20:03.6361889Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:14:30.1589659Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8435,13 +9145,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:20:03 GMT + - Tue, 29 Aug 2023 16:14:30 GMT etag: - - '"6900da24-0000-0600-0000-64e783330000"' + - '"0300ebfe-0000-0600-0000-64ee19660000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8468,16 +9178,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Deleting", "startTime": "2023-08-24T16:20:03.6361889Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:14:30.1589659Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8485,13 +9195,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:20:34 GMT + - Tue, 29 Aug 2023 16:15:00 GMT etag: - - '"6900da24-0000-0600-0000-64e783330000"' + - '"0300ebfe-0000-0600-0000-64ee19660000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8518,16 +9228,16 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Deleting", "startTime": "2023-08-24T16:20:03.6361889Z"}' + "status": "Deleting", "startTime": "2023-08-29T16:14:30.1589659Z"}' headers: azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview cache-control: - no-cache content-length: @@ -8535,13 +9245,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:21:05 GMT + - Tue, 29 Aug 2023 16:15:30 GMT etag: - - '"6900da24-0000-0600-0000-64e783330000"' + - '"0300ebfe-0000-0600-0000-64ee19660000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + - https://management.azure.com/providers/Microsoft.HybridNetwork/locations/westcentralus/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview pragma: - no-cache strict-transport-security: @@ -8568,13 +9278,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Succeeded", "startTime": "2023-08-24T16:20:03.6361889Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:14:30.1589659Z", "properties": null}' headers: cache-control: @@ -8584,9 +9294,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:21:35 GMT + - Tue, 29 Aug 2023 16:16:00 GMT etag: - - '"0b01b159-0000-0800-0000-64e783760000"' + - '"3a019872-0000-0700-0000-64ee19a90000"' expires: - '-1' pragma: @@ -8619,13 +9329,13 @@ interactions: - AZURECLI/2.51.0 azsdk-python-hybridnetwork/2020-01-01-preview Python/3.8.10 (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012?api-version=2020-01-01-preview + uri: https://management.azure.com/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E?api-version=2020-01-01-preview response: body: - string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", - "name": "9c17a845-51e6-49a9-ac2a-bab87a516099*61386E9D475D356830EFD4E736C811580B85F4B40B3E931DE66755A06CD89012", + string: '{"id": "/providers/Microsoft.HybridNetwork/locations/WESTCENTRALUS/operationStatuses/1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", + "name": "1fab29a6-416a-4e5f-90e4-41c0a4901685*F6DEDAD7F1E32D08F5303D47DA80D64D1BEF1079F6DA03768755401B08ACDB6E", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/ubuntuPublisher", - "status": "Succeeded", "startTime": "2023-08-24T16:20:03.6361889Z", "properties": + "status": "Succeeded", "startTime": "2023-08-29T16:14:30.1589659Z", "properties": null}' headers: cache-control: @@ -8635,9 +9345,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 24 Aug 2023 16:21:35 GMT + - Tue, 29 Aug 2023 16:16:01 GMT etag: - - '"0b01b159-0000-0800-0000-64e783760000"' + - '"3a019872-0000-0700-0000-64ee19a90000"' expires: - '-1' pragma: diff --git a/src/aosm/azext_aosm/tests/latest/test_nsd.py b/src/aosm/azext_aosm/tests/latest/test_nsd.py index 9e07363e11d..1e8c0354106 100644 --- a/src/aosm/azext_aosm/tests/latest/test_nsd.py +++ b/src/aosm/azext_aosm/tests/latest/test_nsd.py @@ -3,20 +3,32 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -import os -from dataclasses import dataclass -from distutils.dir_util import copy_tree import json +import os import shutil import subprocess +from dataclasses import dataclass +from distutils.dir_util import copy_tree from filecmp import dircmp from pathlib import Path -from unittest.mock import patch from tempfile import TemporaryDirectory +from typing import Any +from unittest.mock import Mock, patch import jsonschema - -from azext_aosm.custom import generate_design_config, build_design +import pytest +from azure.cli.core.azclierror import CLIInternalError +from azure.core import exceptions as azure_exceptions +from azure.mgmt.resource.features.v2015_12_01.models import ( + FeatureProperties, + FeatureResult, +) + +from azext_aosm.custom import ( + _check_features_enabled, + build_design, + generate_design_config, +) mock_nsd_folder = ((Path(__file__).parent) / "mock_nsd").resolve() output_folder = ((Path(__file__).parent) / "nsd_output").resolve() @@ -125,6 +137,52 @@ def __init__(self) -> None: mock_client = AOSMClient() +class MockFeatures: + """Mock class for _check_features_enabled.""" + + def __init__(self) -> None: + """Mock init.""" + self.mock_state = "NotRegistered" + + def get( + self, resource_provider_namespace: str, feature_name: str, **kwargs: Any + ) -> FeatureResult: + """Mock Features get function.""" + return FeatureResult( + name=feature_name, properties=FeatureProperties(state=self.mock_state) + ) + + +class MockMissingFeatures: + """Mock class for _check_features_enabled.""" + + def __init__(self) -> None: + """Fake init.""" + pass + + def get( + self, resource_provider_namespace: str, feature_name: str, **kwargs: Any + ) -> FeatureResult: + """Mock features get function that raises an exception.""" + raise azure_exceptions.ResourceNotFoundError() + + +class FeaturesClient: + """Mock class for _check_features_enabled.""" + + def __init__(self) -> None: + """Mock class for _check_features_enabled.""" + self.features = MockFeatures() + + +class MissingFeaturesClient: + """Mock class for _check_features_enabled.""" + + def __init__(self) -> None: + """Mock class for _check_features_enabled.""" + self.features = MockMissingFeatures() + + class FakeCmd: def __init__(self) -> None: self.cli_ctx = None @@ -301,3 +359,32 @@ def test_build_multiple_nfs(self, cf_resources): compare_to_expected_output("test_build_multiple_nfs") finally: os.chdir(starting_directory) + + def test_check_features(self, caplog): + """ + Test the _check_features_enabled function. + + Does not test the actual feature check, just that the function logs and raises + exceptions appropriately. + """ + mock_features_client = FeaturesClient() + mock_missing_features_client = MissingFeaturesClient() + caplog.set_level("DEBUG") + with patch("azext_aosm.custom.cf_features", return_value=mock_features_client): + mock_features_client.features.mock_state = "NotRegistered" + + with pytest.raises(CLIInternalError): + _check_features_enabled(mock_cmd) + assert "is not registered on the subscription" in caplog.text + mock_features_client.features.mock_state = "Registered" + _check_features_enabled(mock_cmd) + + with patch( + "azext_aosm.custom.cf_features", return_value=mock_missing_features_client + ): + with pytest.raises(CLIInternalError): + _check_features_enabled(mock_cmd) + assert ( + "CLI encountered an error checking that your " + "subscription has been onboarded to AOSM." in caplog.text + ) diff --git a/src/aosm/azext_aosm/util/constants.py b/src/aosm/azext_aosm/util/constants.py index 9612402fcac..a8133c3f28f 100644 --- a/src/aosm/azext_aosm/util/constants.py +++ b/src/aosm/azext_aosm/util/constants.py @@ -98,3 +98,9 @@ class SkipSteps(Enum): r".*\/resourceGroups\/(?P[^\/]*)\/providers\/Microsoft." r"ContainerRegistry\/registries\/(?P[^\/]*)" ) + +# Required features for AOSM publish aka deploy +AOSM_FEATURE_NAMESPACE = "Microsoft.HybridNetwork" +AOSM_REQUIRED_FEATURES = [ + "Allow-2023-09-01", +] From 445c2204580b758e1ccf1b6d46c90a3cc60ad60a Mon Sep 17 00:00:00 2001 From: jordlay <72226943+jordlay@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:38:14 +0100 Subject: [PATCH 2/2] Jl/nfdv proxy (#73) * added publisher scope to input file; changed to proxy nsdv * fixed get request on proxy nfdv (should be overwritten when autogenerated again) * small print bug fix --------- Co-authored-by: Jordan --- src/aosm/azext_aosm/_configuration.py | 13 +++++++++++++ src/aosm/azext_aosm/deploy/pre_deploy.py | 3 +-- src/aosm/azext_aosm/generate_nsd/nf_ret.py | 7 ++++--- ...twork_function_definition_versions_operations.py | 7 ++----- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/src/aosm/azext_aosm/_configuration.py b/src/aosm/azext_aosm/_configuration.py index b8d14d68f77..7a5f2e00ac4 100644 --- a/src/aosm/azext_aosm/_configuration.py +++ b/src/aosm/azext_aosm/_configuration.py @@ -333,6 +333,7 @@ def validate(self): NFD_LOCATION = "The region that the NFDV is published to." PUBLISHER_RESOURCE_GROUP = "The resource group that the publisher is hosted in." PUBLISHER_NAME = "The name of the publisher that this NFDV is published under." +PUBLISHER_SCOPE = "The scope that the publisher is published under. Currently, only 'private' is supported." NFD_TYPE = "Type of Network Function. Valid values are 'cnf' or 'vnf'" MULTIPLE_INSTANCES = ( "Set to true or false. Whether the NSD should allow arbitrary numbers of this " @@ -350,6 +351,7 @@ class NFDRETConfiguration: name: str = NFD_NAME version: str = NFD_VERSION publisher_offering_location: str = NFD_LOCATION + publisher_scope: str = PUBLISHER_SCOPE type: str = NFD_TYPE multiple_instances: Union[str, bool] = MULTIPLE_INSTANCES @@ -380,6 +382,17 @@ def validate(self) -> None: f"Network function definition offering location must be set, for {self.name}" ) + if self.publisher_scope == PUBLISHER_SCOPE: + raise ValidationError( + f"Network function definition publisher scope must be set, for {self.name}" + ) + + # Temporary validation while only private publishers exist + if self.publisher_scope not in ["private", "Private"]: + raise ValidationError( + "Only private publishers are currently supported" + ) + if self.type not in [CNF, VNF]: raise ValueError( f"Network Function Type must be cnf or vnf for {self.name}" diff --git a/src/aosm/azext_aosm/deploy/pre_deploy.py b/src/aosm/azext_aosm/deploy/pre_deploy.py index 26deff1cf9e..2faa2109e97 100644 --- a/src/aosm/azext_aosm/deploy/pre_deploy.py +++ b/src/aosm/azext_aosm/deploy/pre_deploy.py @@ -440,8 +440,7 @@ def ensure_nsdg_exists( :type location: str """ print( - "Creating Network Service Design Group %s if it does not exist", - nsdg_name, + f"Creating Network Service Design Group {nsdg_name} if it does not exist", ) logger.info( "Creating Network Service Design Group %s if it does not exist", diff --git a/src/aosm/azext_aosm/generate_nsd/nf_ret.py b/src/aosm/azext_aosm/generate_nsd/nf_ret.py index ab335b1123f..04bca314bf5 100644 --- a/src/aosm/azext_aosm/generate_nsd/nf_ret.py +++ b/src/aosm/azext_aosm/generate_nsd/nf_ret.py @@ -50,9 +50,10 @@ def _get_nfdv( "Reading existing NFDV resource object " f"{config.version} from group {config.name}" ) - nfdv_object = api_clients.aosm_client.network_function_definition_versions.get( - resource_group_name=config.publisher_resource_group, - publisher_name=config.publisher, + nfdv_object = api_clients.aosm_client.proxy_network_function_definition_versions.get( + publisher_scope_name=config.publisher_scope, + publisher_location_name=config.publisher_offering_location, + proxy_publisher_name=config.publisher, network_function_definition_group_name=config.name, network_function_definition_version_name=config.version, ) diff --git a/src/aosm/azext_aosm/vendored_sdks/operations/_proxy_network_function_definition_versions_operations.py b/src/aosm/azext_aosm/vendored_sdks/operations/_proxy_network_function_definition_versions_operations.py index 7f0e01c882e..96a4972870d 100644 --- a/src/aosm/azext_aosm/vendored_sdks/operations/_proxy_network_function_definition_versions_operations.py +++ b/src/aosm/azext_aosm/vendored_sdks/operations/_proxy_network_function_definition_versions_operations.py @@ -98,8 +98,8 @@ def build_get_request( # Construct parameters _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] - _query_parameters['publisherScopeName'] = _SERIALIZER.query("publisher_scope_name", publisher_scope_name, 'str', max_length=64, min_length=0, pattern=r'^[a-zA-Z0-9][a-zA-Z0-9_-]*$') - _query_parameters['publisherLocationName'] = _SERIALIZER.query("publisher_location_name", publisher_location_name, 'str', max_length=64, min_length=0, pattern=r'^[a-zA-Z0-9][a-zA-Z0-9_-]*$') + _query_parameters['publisherScope'] = _SERIALIZER.query("publisher_scope_name", publisher_scope_name, 'str', max_length=64, min_length=0, pattern=r'^[a-zA-Z0-9][a-zA-Z0-9_-]*$') + _query_parameters['publisherLocation'] = _SERIALIZER.query("publisher_location_name", publisher_location_name, 'str', max_length=64, min_length=0, pattern=r'^[a-zA-Z0-9][a-zA-Z0-9_-]*$') _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers @@ -285,21 +285,18 @@ def get( ) request = _convert_request(request) request.url = self._client.format_url(request.url) - pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response - if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('NetworkFunctionDefinitionVersionOverview', pipeline_response) - if cls: return cls(pipeline_response, deserialized, {})