From c78743e2d0649367ded943876ad50e7856345af3 Mon Sep 17 00:00:00 2001 From: jordlay <72226943+jordlay@users.noreply.github.com> Date: Fri, 19 Apr 2024 18:00:07 +0100 Subject: [PATCH 01/17] updated changelog (#180) * updated changelog * markups --------- Co-authored-by: Jordan --- src/aosm/HISTORY.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index 818e0e6d7fd..2741f715480 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -5,6 +5,9 @@ Release History 2.0.0b1 ++++++++ +* Renamed nfdvName to nfdv in CGVs +* Added useful comments to input files +* Added 1:1 mapping between NFVIsFromSite and NF RETs * Added expose_all parameter in input file to expose all parameters in deployParameters and CGS * Removed multiple_instances and depends_on from input file * Added: mutating webhook for injectArtifactStoreDetails @@ -23,7 +26,6 @@ Release History * Fixed: Manifest name built from ACR name, so clashes * Fixed: Nexus image version must be semver * Fixed: Sensible error when no type given in helm chart schema -* No changes, building wheel from correct branch * Fixed: customLocation missing from Nexus * Fixed: helm charts not uploading correctly * Added: Nexus support From 06b2ac4bb8beb1a6aabafdbeeeb0add330f1ec67 Mon Sep 17 00:00:00 2001 From: Cyclam <95434717+Cyclam@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:16:02 +0100 Subject: [PATCH 02/17] Autogen CLI: (#181) - Add examples - Minor rewording - Ensure all commands are preview --- src/aosm/azext_aosm/aaz/latest/aosm/__cmd_group.py | 1 + src/aosm/azext_aosm/aaz/latest/aosm/publisher/__cmd_group.py | 1 + .../latest/aosm/publisher/artifact_manifest/__cmd_group.py | 1 + .../aaz/latest/aosm/publisher/artifact_manifest/_list.py | 3 +++ .../aosm/publisher/artifact_manifest/_list_credential.py | 4 ++++ .../latest/aosm/publisher/artifact_manifest/_update_state.py | 3 +++ .../latest/aosm/publisher/artifact_store/artifact/_list.py | 3 +++ .../aosm/publisher/artifact_store/artifact/version/_list.py | 3 +++ .../artifact_store/artifact/version/_update_state.py | 3 +++ .../aosm/publisher/configuration_group_schema/_list.py | 3 +++ .../publisher/configuration_group_schema/_update_state.py | 3 +++ .../publisher/network_function_definition/version/_list.py | 5 ++++- .../network_function_definition/version/_update_state.py | 3 +++ .../aosm/publisher/network_service_design/version/_list.py | 5 ++++- .../network_service_design/version/_update_state.py | 3 +++ 15 files changed, 42 insertions(+), 2 deletions(-) diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/__cmd_group.py b/src/aosm/azext_aosm/aaz/latest/aosm/__cmd_group.py index 7976a47e869..9913b2ee9e7 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/__cmd_group.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/__cmd_group.py @@ -13,6 +13,7 @@ @register_command_group( "aosm", + is_preview=True, ) class __CMDGroup(AAZCommandGroup): """Manage Azure Operator Service Manager resources. diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/__cmd_group.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/__cmd_group.py index a9c3764dca7..40e546f99f4 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/__cmd_group.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/__cmd_group.py @@ -13,6 +13,7 @@ @register_command_group( "aosm publisher", + is_preview=True, ) class __CMDGroup(AAZCommandGroup): """Commands to manage publisher resources. diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/__cmd_group.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/__cmd_group.py index 77e42f47729..9afc79d2715 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/__cmd_group.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/__cmd_group.py @@ -13,6 +13,7 @@ @register_command_group( "aosm publisher artifact-manifest", + is_preview=True, ) class __CMDGroup(AAZCommandGroup): """Commands to manage artifact manifest resources. diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list.py index 0a89d613148..031b552d4a3 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list.py @@ -17,6 +17,9 @@ ) class List(AAZCommand): """List information about the artifact manifest. + + :example: List information about the artifact manifest in the 'contoso' artifact store of the 'contoso' publisher + az aosm publisher artifact-manifest list --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list_credential.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list_credential.py index cd302577721..94c3a78808a 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list_credential.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_list_credential.py @@ -13,9 +13,13 @@ @register_command( "aosm publisher artifact-manifest list-credential", + is_preview=True, ) class ListCredential(AAZCommand): """List credential for publishing artifacts defined in artifact manifest. + + :example: List credential to use for publishing an artifact from the 'contoso-manifest' manifest + az aosm publisher artifact-manifest list-credential --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso --name contoso-manifest """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_update_state.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_update_state.py index de3abd35bed..ebb6fdcbcc4 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_update_state.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_manifest/_update_state.py @@ -17,6 +17,9 @@ ) class UpdateState(AAZCommand): """Update state for artifact manifest. + + :example: Update the 'contoso-manifest' artifact manifest's state to 'Uploaded' + az aosm publisher artifact-manifest update-state --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso --name contoso-manifest --state Uploaded """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/_list.py index a79de7138c9..25f7c9e25c7 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/_list.py @@ -17,6 +17,9 @@ ) class List(AAZCommand): """List all the available artifacts in the parent Artifact Store. + + :example: List all available artifacts in the 'contoso' artifact store of the 'contoso' publisher + az aosm publisher artifact-store artifact list --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_list.py index 0da8273beab..d575af3ba93 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_list.py @@ -17,6 +17,9 @@ ) class List(AAZCommand): """List a Artifact overview information. + + :example: List overview information for the 'nginx' artifact in the 'contoso' artifact store of the 'contoso' publisher + az aosm publisher artifact-store artifact version list --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso --artifact-name nginx """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_update_state.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_update_state.py index aded71e7f7a..424d200fdd4 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_update_state.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/artifact_store/artifact/version/_update_state.py @@ -17,6 +17,9 @@ ) class UpdateState(AAZCommand): """Update artifact state defined in artifact store. + + :example: Deprecate the 1.0.0 version of the 'nginx' artifact in the 'contoso' artifact store of the 'contoso' publisher + az aosm publisher artifact-store artifact version update-state --resource-group contoso-aosm --publisher-name contoso --artifact-store-name contoso --artifact-name nginx --name 1.0.0 --artifact-state Deprecated """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_list.py index 9a7edcc2b54..4474c8fc43f 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_list.py @@ -17,6 +17,9 @@ ) class List(AAZCommand): """List information of the configuration group schemas under a publisher. + + :example: List the configuration group schemas defined under the contoso publisher + az aosm publisher configuration-group-schema list --resource-group contoso-aosm --publisher-name contoso """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_update_state.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_update_state.py index ee928e93b7e..93afbd0d345 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_update_state.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/configuration_group_schema/_update_state.py @@ -17,6 +17,9 @@ ) class UpdateState(AAZCommand): """Update configuration group schema state. + + :example: Change the 'nginx-cgs' config group schema to 'Active' state + az aosm publisher configuration-group-schema update-state --resource-group contoso-aosm --publisher-name contoso --name nginx-cgs --version-state Active """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_list.py index 34435b938de..9f361ce6f6c 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_list.py @@ -16,7 +16,10 @@ is_preview=True, ) class List(AAZCommand): - """List information about a list of network function definition versions under a network function definition group. + """List information about the network function definition versions available in the specified network function definition group. + + :example: List information about the network function definition versions available in the 'nginx' network function definition group + az aosm publisher network-function-definition version list --resource-group contoso-aosm --publisher-name contoso --group-name nginx """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_update_state.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_update_state.py index 7b7a106e927..d60add3ee27 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_update_state.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_function_definition/version/_update_state.py @@ -17,6 +17,9 @@ ) class UpdateState(AAZCommand): """Update network function definition version state. + + :example: Change version 2.0.0 of the 'nginx' network function definition group to 'Active' state + az aosm publisher network-function-definition version update-state --resource-group contoso-aosm --publisher-name contoso --group-name nginx --version-name 2.0.0 --version-state Active """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_list.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_list.py index 51888b03e17..8e7c34441a6 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_list.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_list.py @@ -16,7 +16,10 @@ is_preview=True, ) class List(AAZCommand): - """List information about a list of network service design versions under a network service design group. + """List information about the network service design versions available under the specified network service design group. + + :example: List information about the network service design versions available in the 'contoso-service' network service design group + az aosm publisher network-function-definition version list --resource-group contoso-aosm --publisher-name contoso --group-name contoso-service """ _aaz_info = { diff --git a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_update_state.py b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_update_state.py index faec26a4d70..1d1b4a37a2c 100644 --- a/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_update_state.py +++ b/src/aosm/azext_aosm/aaz/latest/aosm/publisher/network_service_design/version/_update_state.py @@ -17,6 +17,9 @@ ) class UpdateState(AAZCommand): """Update network service design version state. + + :example: Change version 1.0.0 of the 'contoso-service' network service design group to 'Deprecated' state + az aosm publisher network-service-design version update-state --resource-group contoso-aosm --publisher-name contoso --group-name contoso-service --version-name 1.0.0 --version-state Deprecated """ _aaz_info = { From 20f72a677dba243c3cc16c89931bdf9e31f63047 Mon Sep 17 00:00:00 2001 From: patrykkulik-microsoft <116072282+patrykkulik-microsoft@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:51:44 +0100 Subject: [PATCH 03/17] Add quotes to the CNF input config image sources comment (#182) --- .../configuration_models/onboarding_cnf_input_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aosm/azext_aosm/configuration_models/onboarding_cnf_input_config.py b/src/aosm/azext_aosm/configuration_models/onboarding_cnf_input_config.py index a4cefaf2c3c..1f76548b22d 100644 --- a/src/aosm/azext_aosm/configuration_models/onboarding_cnf_input_config.py +++ b/src/aosm/azext_aosm/configuration_models/onboarding_cnf_input_config.py @@ -68,7 +68,7 @@ class OnboardingCNFInputConfig(OnboardingNFDBaseInputConfig): metadata={ "comment": ( "List of registries from which to pull the image(s).\n" - "For example [sourceacr.azurecr.io/test, myacr2.azurecr.io, ghcr.io/path].\n" + 'For example ["sourceacr.azurecr.io/test", "myacr2.azurecr.io", "ghcr.io/path"].\n' "For non Azure Container Registries, ensure you have run a docker login command before running build.\n" ) }, From af455e485e61a7173dcc2beaf5d7554221b0f54a Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Sat, 20 Apr 2024 03:06:10 -0700 Subject: [PATCH 04/17] Adding check to see if base resources publisher and artifact store are present --- src/aosm/azext_aosm/common/constants.py | 3 ++ .../reader/bicep_definition.py | 49 ++++++++++++++++++- 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/aosm/azext_aosm/common/constants.py b/src/aosm/azext_aosm/common/constants.py index d5d86b568ca..4589ff1805e 100644 --- a/src/aosm/azext_aosm/common/constants.py +++ b/src/aosm/azext_aosm/common/constants.py @@ -39,6 +39,9 @@ class ManifestsExist(str, Enum): NONE = "none" SOME = "some" +class BaseResourcesExist: + PUBLISHER = False + ARTIFACT_STORE = False CNF_TYPE = "ContainerizedNetworkFunction" VNF_TYPE = "VirtualNetworkFunction" diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index f3078d2595f..e7dce1e8fa2 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -19,7 +19,9 @@ BaseCommonParametersConfig, CoreVNFCommonParametersConfig from azext_aosm.definition_folder.reader.base_definition import \ BaseDefinitionElement -from azext_aosm.common.constants import ManifestsExist +from azext_aosm.common.constants import ( + ManifestsExist, + BaseResourcesExist,) logger = get_logger(__name__) @@ -153,6 +155,43 @@ def _artifact_manifests_exist( return ManifestsExist.NONE + @staticmethod + def _base_Resources_exist( + config: BaseCommonParametersConfig, command_context: CommandContext + ) -> BaseResourcesExist: + """ + + Returns True if all required manifests exist, False if none do, and raises an + AzCLIError if some but not all exist. + + Current code only allows one manifest for ACR, and one manifest for SA (if applicable), + so that's all we check for. + """ + try: + command_context.aosm_client.publishers.get( + resource_group_name=config.publisherResourceGroupName, + publisher_name=config.publisherName, + ) + publisher_exists = True + BaseResourcesExist.PUBLISHER = True + + except azure_exceptions.ResourceNotFoundError: + publisher_exists = False + + try: + command_context.aosm_client.artifact_store.get( + resource_group_name=config.publisherResourceGroupName, + publisher_name=config.publisherName, + artifact_store_name=config.saArtifactStoreName, + ) + artifact_store_exists = True + BaseResourcesExist.ARTIFACT_STORE = True + + except azure_exceptions.ResourceNotFoundError: + artifact_store_exists = False + + return BaseResourcesExist + def deploy( self, config: BaseCommonParametersConfig, command_context: CommandContext ): @@ -168,6 +207,14 @@ def deploy( # Currently, _only_ manifests are special, but if we need to add any more custom code, # breaking this into a separate class (like we do for artifacts) is probably the right # thing to do. + if self.path.name == "base": + base_resources_exist = self._base_Resources_exist( + config=config, command_context=command_context + ) + if base_resources_exist.PUBLISHER and base_resources_exist.ARTIFACT_STORE: + logger.info("Base resources already exist; skipping deployment.") + return + if self.path.name == "artifactManifest": manifests_exist = self._artifact_manifests_exist( config=config, command_context=command_context From 6392bb43c8a4619d26acc9d42f0f5ead9a5dc94e Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Sat, 20 Apr 2024 04:32:14 -0700 Subject: [PATCH 05/17] Resolving minor errors --- .../azext_aosm/definition_folder/reader/bicep_definition.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index e7dce1e8fa2..34c94f5711d 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -179,10 +179,10 @@ def _base_Resources_exist( publisher_exists = False try: - command_context.aosm_client.artifact_store.get( + command_context.aosm_client.artifact_stores.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, - artifact_store_name=config.saArtifactStoreName, + artifact_store_name=config.acrArtifactStoreName, ) artifact_store_exists = True BaseResourcesExist.ARTIFACT_STORE = True From 25c1f2c75132d5e0bfdd1af00ae12ce9ed0ecd98 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Wed, 24 Apr 2024 17:42:08 -0700 Subject: [PATCH 06/17] Adding checks for nfdg and nsdg --- src/aosm/azext_aosm/common/constants.py | 3 +- .../reader/bicep_definition.py | 51 +++++++++++++++---- 2 files changed, 42 insertions(+), 12 deletions(-) diff --git a/src/aosm/azext_aosm/common/constants.py b/src/aosm/azext_aosm/common/constants.py index 4589ff1805e..5f299068a6a 100644 --- a/src/aosm/azext_aosm/common/constants.py +++ b/src/aosm/azext_aosm/common/constants.py @@ -40,8 +40,7 @@ class ManifestsExist(str, Enum): SOME = "some" class BaseResourcesExist: - PUBLISHER = False - ARTIFACT_STORE = False + BASE_RESOURCES_EXIST = False CNF_TYPE = "ContainerizedNetworkFunction" VNF_TYPE = "VirtualNetworkFunction" diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 34c94f5711d..14514ebccde 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -16,7 +16,7 @@ from azext_aosm.common.command_context import CommandContext from azext_aosm.common.utils import convert_bicep_to_arm from azext_aosm.configuration_models.common_parameters_config import \ - BaseCommonParametersConfig, CoreVNFCommonParametersConfig + BaseCommonParametersConfig, CoreVNFCommonParametersConfig, NFDCommonParametersConfig, NexusVNFCommonParametersConfig, NSDCommonParametersConfig from azext_aosm.definition_folder.reader.base_definition import \ BaseDefinitionElement from azext_aosm.common.constants import ( @@ -167,29 +167,60 @@ def _base_Resources_exist( Current code only allows one manifest for ACR, and one manifest for SA (if applicable), so that's all we check for. """ + base_resources_exist = BaseResourcesExist.BASE_RESOURCES_EXIST try: command_context.aosm_client.publishers.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, ) - publisher_exists = True - BaseResourcesExist.PUBLISHER = True - + base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - publisher_exists = False - + base_resources_exist = False + try: command_context.aosm_client.artifact_stores.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, artifact_store_name=config.acrArtifactStoreName, ) - artifact_store_exists = True - BaseResourcesExist.ARTIFACT_STORE = True - + base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - artifact_store_exists = False + base_resources_exist = False + if isinstance(config, NFDCommonParametersConfig): + try: + command_context.aosm_client.nfDefinitionGroups.get( + resource_group_name=config.publisherResourceGroupName, + publisher_name=config.publisherName, + nf_name=config.nfDefinitionGroup, + ) + base_resources_exist = True + except azure_exceptions.ResourceNotFoundError: + base_resources_exist = False + + if isinstance(config, CoreVNFCommonParametersConfig): + try: + command_context.aosm_client.artifact_stores.get( + resource_group_name=config.publisherResourceGroupName, + publisher_name=config.publisherName, + artifact_store_name=config.saArtifactStoreName, + ) + base_resources_exist = True + except azure_exceptions.ResourceNotFoundError: + base_resources_exist = False + + if isinstance(config, NSDCommonParametersConfig): + try: + command_context.aosm_client.nsDesignGroups.get( + resource_group_name=config.publisherResourceGroupName, + publisher_name=config.publisherName, + nsd_name=config.nsDesignGroup, + ) + base_resources_exist = True + except azure_exceptions.ResourceNotFoundError: + base_resources_exist = False + + BaseResourcesExist.BASE_RESOURCES_EXIST = base_resources_exist return BaseResourcesExist def deploy( From 5a4ef2be90d732474ac31d0b0504ca9a783a09be Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Wed, 24 Apr 2024 23:48:29 -0700 Subject: [PATCH 07/17] Updating the integration test recording --- .../reader/bicep_definition.py | 10 +- .../test_vnf_nsd_build_and_publish.yaml | 1479 ++++++++++++----- 2 files changed, 1042 insertions(+), 447 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 14514ebccde..61d566cf173 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -189,10 +189,10 @@ def _base_Resources_exist( if isinstance(config, NFDCommonParametersConfig): try: - command_context.aosm_client.nfDefinitionGroups.get( + command_context.aosm_client.network_function_definition_groups.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, - nf_name=config.nfDefinitionGroup, + network_function_definition_group_name=config.nfDefinitionGroup, ) base_resources_exist = True except azure_exceptions.ResourceNotFoundError: @@ -211,10 +211,10 @@ def _base_Resources_exist( if isinstance(config, NSDCommonParametersConfig): try: - command_context.aosm_client.nsDesignGroups.get( + command_context.aosm_client.network_service_design_groups.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, - nsd_name=config.nsDesignGroup, + network_service_design_group_name=config.nsDesignGroup, ) base_resources_exist = True except azure_exceptions.ResourceNotFoundError: @@ -242,7 +242,7 @@ def deploy( base_resources_exist = self._base_Resources_exist( config=config, command_context=command_context ) - if base_resources_exist.PUBLISHER and base_resources_exist.ARTIFACT_STORE: + if base_resources_exist.BASE_RESOURCES_EXIST: logger.info("Base resources already exist; skipping deployment.") return diff --git a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml index 042d9c6668a..1fab8b145a0 100644 --- a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml +++ b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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: @@ -26,22 +26,222 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:08:15 GMT + - Thu, 25 Apr 2024 05:19:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DE9753CFA885438A9254683FD111E95A Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:19:16Z' status: code: 204 message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher'' + under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '270' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: D62859D39E2843599E524442750B1749 Ref B: SN4AA2022304051 Ref C: 2024-04-25T05:19:17Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr'' + under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '296' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: A223C987A4AE4CC8AF3595EDCB80B537 Ref B: SN4AA2022302029 Ref C: 2024-04-25T05:19:17Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm'' + under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 74DE9A59F04840AA88F1FAF6806914E6 Ref B: SN4AA2022302049 Ref C: 2024-04-25T05:19:17Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store'' + under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '303' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 83C77560E7614D2EB47940A9A92B1807 Ref B: SN4AA2022302019 Ref C: 2024-04-25T05:19:18Z' + status: + code: 404 + message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "4595863518953475042"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "330068761100729304"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -83,22 +283,22 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713272902", - "name": "AOSM_CLI_deployment_1713272902", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4595863518953475042", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007459", + "name": "AOSM_CLI_deployment_1714007459", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "e8de01a9-8158-4e6a-bc0e-4668ec1c7fda", "providers": [{"namespace": "Microsoft.HybridNetwork", + "4fe0e091-bad1-4f8f-9f9e-decb821d88cb", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -125,28 +325,32 @@ interactions: cache-control: - no-cache content-length: - - '4028' + - '4027' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:21 GMT + - Thu, 25 Apr 2024 05:19:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: FD0A60BD95C14354AC8A5BEF096A8E36 Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:19:20Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "4595863518953475042"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "330068761100729304"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -188,22 +392,22 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713272902", - "name": "AOSM_CLI_deployment_1713272902", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4595863518953475042", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007459", + "name": "AOSM_CLI_deployment_1714007459", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-16T13:08:22.2836921Z", "duration": "PT0.0007337S", "correlationId": - "35e60e41-0ac9-49a7-97a1-b6a7962f68e8", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-25T05:19:30.9406411Z", "duration": "PT0.0004409S", "correlationId": + "e1e084d3-d325-4e5d-b283-68bfc803965e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -224,25 +428,29 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu-vm"}]}}' 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_1713272902/operationStatuses/08584883339833700466?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_1714007459/operationStatuses/08584875845164226843?api-version=2022-09-01 cache-control: - no-cache content-length: - - '3182' + - '3181' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:22 GMT + - Thu, 25 Apr 2024 05:19:31 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 09FD63E961484B969AA30C0EECFEB972 Ref B: SN4AA2022304021 Ref C: 2024-04-25T05:19:23Z' status: code: 201 message: Created @@ -260,10 +468,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -275,15 +483,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:22 GMT + - Thu, 25 Apr 2024 05:19:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 67D3C9B0E558415EB9194358A10C40DA Ref B: SN4AA2022305025 Ref C: 2024-04-25T05:19:31Z' status: code: 200 message: OK @@ -301,10 +513,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -316,15 +528,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:51 GMT + - Thu, 25 Apr 2024 05:20:02 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E473C3D81464463995E2DC2BFD455333 Ref B: DM2AA1091213053 Ref C: 2024-04-25T05:20:02Z' status: code: 200 message: OK @@ -342,10 +558,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -357,15 +573,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:09:22 GMT + - Thu, 25 Apr 2024 05:20:33 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4B32414CC71842D3B6786ED5F3B8BB40 Ref B: SN4AA2022305035 Ref C: 2024-04-25T05:20:33Z' status: code: 200 message: OK @@ -383,10 +603,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -398,15 +618,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:09:51 GMT + - Thu, 25 Apr 2024 05:21:04 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BE304F02A1CF43618DB744112DBF0415 Ref B: SN4AA2022304017 Ref C: 2024-04-25T05:21:04Z' status: code: 200 message: OK @@ -424,10 +648,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -439,15 +663,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:10:20 GMT + - Thu, 25 Apr 2024 05:21:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5D974D704D814E0DADFA0D8CE958838C Ref B: DM2AA1091212037 Ref C: 2024-04-25T05:21:35Z' status: code: 200 message: OK @@ -465,10 +693,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -480,15 +708,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:10:50 GMT + - Thu, 25 Apr 2024 05:22:06 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 73FE46BA96964A9BA7C83B1E038A2DAC Ref B: SN4AA2022305021 Ref C: 2024-04-25T05:22:06Z' status: code: 200 message: OK @@ -506,10 +738,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -521,15 +753,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:11:21 GMT + - Thu, 25 Apr 2024 05:22:37 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AB44DB46ED514E799946F4D334FF24F5 Ref B: DM2AA1091214025 Ref C: 2024-04-25T05:22:37Z' status: code: 200 message: OK @@ -547,10 +783,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -562,15 +798,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:11:49 GMT + - Thu, 25 Apr 2024 05:23:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9550F4AF1C29453099806ED53B0A0E48 Ref B: SN4AA2022302035 Ref C: 2024-04-25T05:23:08Z' status: code: 200 message: OK @@ -588,10 +828,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883339833700466?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/08584875845164226843?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -603,15 +843,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:19 GMT + - Thu, 25 Apr 2024 05:23:39 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 58FE02A72544478682B8D2556D02D99A Ref B: SN4AA2022303047 Ref C: 2024-04-25T05:23:39Z' status: code: 200 message: OK @@ -629,22 +873,22 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713272902", - "name": "AOSM_CLI_deployment_1713272902", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4595863518953475042", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007459", + "name": "AOSM_CLI_deployment_1714007459", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-16T13:12:07.5717024Z", "duration": "PT3M45.288744S", - "correlationId": "35e60e41-0ac9-49a7-97a1-b6a7962f68e8", "providers": [{"namespace": + "timestamp": "2024-04-25T05:23:28.4612448Z", "duration": "PT3M57.5210446S", + "correlationId": "e1e084d3-d325-4e5d-b283-68bfc803965e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", @@ -675,15 +919,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:19 GMT + - Thu, 25 Apr 2024 05:23:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6D6636BD9EB94435BEA98F2FBA2FACDA Ref B: SN4AA2022305017 Ref C: 2024-04-25T05:23:39Z' status: code: 200 message: OK @@ -701,8 +949,8 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0?api-version=2023-09-01 response: @@ -718,17 +966,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:19 GMT + - Thu, 25 Apr 2024 05:23:40 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: E2ECF5841F824191A3F44CA3B87DAD80 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:23:41Z' status: code: 404 message: Not Found @@ -746,8 +998,8 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0?api-version=2023-09-01 response: @@ -763,24 +1015,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:19 GMT + - Thu, 25 Apr 2024 05:23:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 93AF03750B21486C807684CAD4F0375E Ref B: DM2AA1091211039 Ref C: 2024-04-25T05:23:41Z' status: code: 404 message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14347213902282880649"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "13033189923379786498"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -815,21 +1071,21 @@ interactions: Connection: - keep-alive Content-Length: - - '2299' + - '2300' Content-Type: - application/json ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713273146", - "name": "AOSM_CLI_deployment_1713273146", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14347213902282880649", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007722", + "name": "AOSM_CLI_deployment_1714007722", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": @@ -837,7 +1093,7 @@ interactions: "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "4b5d463f-3938-4a10-9a5d-056483a45be3", "providers": [{"namespace": "Microsoft.HybridNetwork", + "d1b1e998-00d2-4d6d-b559-43c0b2e73518", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -850,24 +1106,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:24 GMT + - Thu, 25 Apr 2024 05:23:46 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 0E87C688CE8F42D09168873B97C41A3D Ref B: SN4AA2022302025 Ref C: 2024-04-25T05:23:43Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14347213902282880649"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "13033189923379786498"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -902,52 +1162,56 @@ interactions: Connection: - keep-alive Content-Length: - - '2299' + - '2300' Content-Type: - application/json ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713273146", - "name": "AOSM_CLI_deployment_1713273146", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14347213902282880649", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007722", + "name": "AOSM_CLI_deployment_1714007722", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-16T13:12:25.5594541Z", "duration": "PT0.0006074S", - "correlationId": "f9c7ecbe-d587-4f86-ba84-49d9780f4ecf", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-25T05:23:50.146689Z", "duration": "PT0.0004332S", + "correlationId": "86b2c933-ab38-4474-81d9-e8a98b8bf902", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1713273146/operationStatuses/08584883337401066204?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_1714007722/operationStatuses/08584875842572410454?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1139' + - '1138' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:25 GMT + - Thu, 25 Apr 2024 05:23:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: C352635D2067449590883DD0864CF079 Ref B: SN4AA2022302035 Ref C: 2024-04-25T05:23:46Z' status: code: 201 message: Created @@ -965,10 +1229,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883337401066204?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/08584875842572410454?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -980,15 +1244,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:25 GMT + - Thu, 25 Apr 2024 05:23:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EBFF659ED248488695CBBFE6D7CC9702 Ref B: SN4AA2022302037 Ref C: 2024-04-25T05:23:51Z' status: code: 200 message: OK @@ -1006,10 +1274,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883337401066204?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/08584875842572410454?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1021,15 +1289,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:12:55 GMT + - Thu, 25 Apr 2024 05:24:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F39680F95E0E469DA4E830140F75BD7A Ref B: SN4AA2022304033 Ref C: 2024-04-25T05:24:22Z' status: code: 200 message: OK @@ -1047,10 +1319,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883337401066204?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/08584875842572410454?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1062,15 +1334,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:24 GMT + - Thu, 25 Apr 2024 05:24:52 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6B6D20B4490849D3AE6B5B2267E35C50 Ref B: DM2AA1091212027 Ref C: 2024-04-25T05:24:52Z' status: code: 200 message: OK @@ -1088,10 +1364,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883337401066204?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/08584875842572410454?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1103,15 +1379,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:54 GMT + - Thu, 25 Apr 2024 05:25:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E0CDE24913F3454EB739605DA58533D9 Ref B: DM2AA1091212017 Ref C: 2024-04-25T05:25:24Z' status: code: 200 message: OK @@ -1129,23 +1409,23 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713273146", - "name": "AOSM_CLI_deployment_1713273146", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14347213902282880649", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007722", + "name": "AOSM_CLI_deployment_1714007722", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-16T13:13:47.3083141Z", "duration": "PT1M21.7494674S", - "correlationId": "f9c7ecbe-d587-4f86-ba84-49d9780f4ecf", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-25T05:25:16.5384061Z", "duration": "PT1M26.3921503S", + "correlationId": "86b2c933-ab38-4474-81d9-e8a98b8bf902", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -1158,15 +1438,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:54 GMT + - Thu, 25 Apr 2024 05:25:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: AC4ADBB8DE2C423EA459853FD17F918D Ref B: SN4AA2022303011 Ref C: 2024-04-25T05:25:24Z' status: code: 200 message: OK @@ -1186,15 +1470,15 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: string: '{"username": "ubuntu-vm-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io", - "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-04-17T13:13:56.8427489+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io", + "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-04-26T05:25:28.1415095+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -1204,13 +1488,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:56 GMT + - Thu, 25 Apr 2024 05:25:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-build-version: @@ -1219,6 +1505,8 @@ interactions: - 'True' x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: A371482807F84BAFAB98DA9FFBEA3E45 Ref B: SN4AA2022305021 Ref C: 2024-04-25T05:25:25Z' status: code: 200 message: OK @@ -1238,7 +1526,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1258,7 +1546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:29 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1267,7 +1555,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:automated-cli-tests-artifact:push,pull" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1283,11 +1571,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apush%2Cpull + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1297,7 +1585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:29 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1325,7 +1613,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1340,13 +1628,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:30 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 3810ed7f-fa42-420b-80b1-475159062fc5 + - ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a location: - - /v2/automated-cli-tests-artifact/blobs/uploads/3810ed7f-fa42-420b-80b1-475159062fc5?_nouploadcache=false&_state=N2nJsSCDg27SKRxPBSeZnhKeXGSrLvZ8fue2DZmlVoF7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjM4MTBlZDdmLWZhNDItNDIwYi04MGIxLTQ3NTE1OTA2MmZjNSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0xNlQxMzoxMzo1Ny40OTE4MTg2MTFaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a?_nouploadcache=false&_state=68qkUG1Hv8Dog6mCBoz5Weg1kuBuYe6Z73dlOaYxN_t7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVkNGZlMjdkLTJmZmEtNGE2YS1hNmQ4LTRmNzIyZTZiNTQyYSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMC4yODc4NzgwODVaIn0%3D range: - 0-0 server: @@ -1419,7 +1707,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/3810ed7f-fa42-420b-80b1-475159062fc5?_nouploadcache=false&_state=N2nJsSCDg27SKRxPBSeZnhKeXGSrLvZ8fue2DZmlVoF7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjM4MTBlZDdmLWZhNDItNDIwYi04MGIxLTQ3NTE1OTA2MmZjNSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0xNlQxMzoxMzo1Ny40OTE4MTg2MTFaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a?_nouploadcache=false&_state=68qkUG1Hv8Dog6mCBoz5Weg1kuBuYe6Z73dlOaYxN_t7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVkNGZlMjdkLTJmZmEtNGE2YS1hNmQ4LTRmNzIyZTZiNTQyYSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMC4yODc4NzgwODVaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b response: body: string: '' @@ -1434,7 +1722,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:30 GMT docker-content-digest: - sha256:e71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b docker-distribution-api-version: @@ -1467,7 +1755,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1487,7 +1775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:31 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1496,7 +1784,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1512,11 +1800,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1526,7 +1814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:31 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1554,7 +1842,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1569,13 +1857,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:32 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - ec08a746-9100-4f0a-ab71-cf252af14449 + - 55188052-cb33-43e7-b2c9-38ac170929f9 location: - - /v2/automated-cli-tests-artifact/blobs/uploads/ec08a746-9100-4f0a-ab71-cf252af14449?_nouploadcache=false&_state=U4PxEc7ZPjmDH5Lum_jeOTz2aZvBYD-p67_QIYJkLiF7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVjMDhhNzQ2LTkxMDAtNGYwYS1hYjcxLWNmMjUyYWYxNDQ0OSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0xNlQxMzoxMzo1Ny44MjAzOTI5ODFaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/55188052-cb33-43e7-b2c9-38ac170929f9?_nouploadcache=false&_state=REMk054EhNdzCUfrhsAk6j7EXdSDj_8cLtkoNacGe-p7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjU1MTg4MDUyLWNiMzMtNDNlNy1iMmM5LTM4YWMxNzA5MjlmOSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMi4zOTcxNTk2MTJaIn0%3D range: - 0-0 server: @@ -1604,7 +1892,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ec08a746-9100-4f0a-ab71-cf252af14449?_nouploadcache=false&_state=U4PxEc7ZPjmDH5Lum_jeOTz2aZvBYD-p67_QIYJkLiF7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVjMDhhNzQ2LTkxMDAtNGYwYS1hYjcxLWNmMjUyYWYxNDQ0OSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0xNlQxMzoxMzo1Ny44MjAzOTI5ODFaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/55188052-cb33-43e7-b2c9-38ac170929f9?_nouploadcache=false&_state=REMk054EhNdzCUfrhsAk6j7EXdSDj_8cLtkoNacGe-p7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjU1MTg4MDUyLWNiMzMtNDNlNy1iMmM5LTM4YWMxNzA5MjlmOSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMi4zOTcxNTk2MTJaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -1619,7 +1907,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:13:57 GMT + - Thu, 25 Apr 2024 05:25:33 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -1658,7 +1946,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1678,7 +1966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:58 GMT + - Thu, 25 Apr 2024 05:25:33 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1687,7 +1975,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1703,11 +1991,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1717,7 +2005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:13:58 GMT + - Thu, 25 Apr 2024 05:25:34 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1751,7 +2039,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '' @@ -1766,7 +2054,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:13:58 GMT + - Thu, 25 Apr 2024 05:25:34 GMT docker-content-digest: - sha256:17d25d33c38f40fda4c9e45a0cec218b3f7f75e9c680ed8dd2a12ed0abdbc36b docker-distribution-api-version: @@ -1799,16 +2087,16 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: - string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-0441DCA7/providers/Microsoft.Storage/storageAccounts/0441dca7ubuntublobstore5", + string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-6FB3A87A/providers/Microsoft.Storage/storageAccounts/6fb3a87aubuntublobstore8", "containerCredentials": [{"containerName": "automatedclitestsvhd-1-0-0", "containerSasUri": "https://xxxxxxxxxxxxxxx.blob.core.windows.net/automatedclitestsvhd-1-0-0?sv=2021-08-06&si=StorageAccountAccessPolicy&sr=xxxxxxxxxxxxxxxxxxxx"}], - "expiry": "2024-04-17T13:14:00.1536208+00:00", "credentialType": "AzureStorageAccountToken"}' + "expiry": "2024-04-26T05:25:37.9056921+00:00", "credentialType": "AzureStorageAccountToken"}' headers: cache-control: - no-cache @@ -1817,13 +2105,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:14:00 GMT + - Thu, 25 Apr 2024 05:25:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-build-version: @@ -1831,7 +2121,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 16C05A7F07C04172BEB97FC33579CB60 Ref B: DM2AA1091211035 Ref C: 2024-04-25T05:25:35Z' status: code: 200 message: OK @@ -1847,13 +2139,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) x-ms-blob-content-length: - '512' x-ms-blob-type: - PageBlob x-ms-date: - - Tue, 16 Apr 2024 13:14:02 GMT + - Thu, 25 Apr 2024 01:17:16 GMT x-ms-version: - '2022-11-02' method: PUT @@ -1865,11 +2157,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:14:00 GMT + - Thu, 25 Apr 2024 05:25:38 GMT etag: - - '"0x8DC5E1714AAF5C2"' + - '"0x8DC64E824853FA3"' last-modified: - - Tue, 16 Apr 2024 13:14:00 GMT + - Thu, 25 Apr 2024 05:25:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -1899,11 +2191,11 @@ interactions: Content-Type: - application/octet-stream If-Match: - - '"0x8DC5E1714AAF5C2"' + - '"0x8DC64E824853FA3"' User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.8.10 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) x-ms-date: - - Tue, 16 Apr 2024 13:14:02 GMT + - Thu, 25 Apr 2024 01:17:17 GMT x-ms-page-write: - update x-ms-range: @@ -1919,11 +2211,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:14:00 GMT + - Thu, 25 Apr 2024 05:25:38 GMT etag: - - '"0x8DC5E1714EEB767"' + - '"0x8DC64E824E6A15B"' last-modified: - - Tue, 16 Apr 2024 13:14:00 GMT + - Thu, 25 Apr 2024 05:25:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-sequence-number: @@ -1940,7 +2232,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "12072405825285278441"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "15824080055511440865"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -1991,28 +2283,28 @@ interactions: Connection: - keep-alive Content-Length: - - '3771' + - '3772' Content-Type: - application/json ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713273247", - "name": "AOSM_CLI_deployment_1713273247", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "12072405825285278441", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007840", + "name": "AOSM_CLI_deployment_1714007840", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "dd629976-3e9a-495b-86da-73a6b63e9baa", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "5729cd70-6249-4d62-85d7-09400c0b670f", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": @@ -2025,24 +2317,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:14:05 GMT + - Thu, 25 Apr 2024 05:25:43 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 1A55703A63A9453AB06900019F17A39B Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:25:41Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "12072405825285278441"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "15824080055511440865"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -2093,34 +2389,34 @@ interactions: Connection: - keep-alive Content-Length: - - '3771' + - '3772' Content-Type: - application/json ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713273247", - "name": "AOSM_CLI_deployment_1713273247", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "12072405825285278441", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007840", + "name": "AOSM_CLI_deployment_1714007840", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2024-04-16T13:14:06.5182362Z", "duration": "PT0.0000744S", "correlationId": - "aa229535-f8a6-40e5-b706-c5d368c0cb27", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T05:25:47.6555427Z", "duration": "PT0.0006856S", "correlationId": + "2c7e8086-50b5-4d97-9600-3709c736d6a2", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "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_1713273247/operationStatuses/08584883336391176441?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_1714007840/operationStatuses/08584875841396088684?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -2128,17 +2424,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:14:06 GMT + - Thu, 25 Apr 2024 05:25:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: E96CE62D0D724F00B9F2BF9E12AFBC43 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:25:44Z' status: code: 201 message: Created @@ -2156,30 +2456,34 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883336391176441?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/08584875841396088684?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:14:06 GMT + - Thu, 25 Apr 2024 05:25:48 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 873060DBEE7A4EC4BCAC970B904C70D8 Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:25:48Z' status: code: 200 message: OK @@ -2197,10 +2501,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883336391176441?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/08584875841396088684?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2212,15 +2516,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:14:36 GMT + - Thu, 25 Apr 2024 05:26:19 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F8D19E0648964997B26769FA2F1C7FA3 Ref B: SN4AA2022302019 Ref C: 2024-04-25T05:26:19Z' status: code: 200 message: OK @@ -2238,10 +2546,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883336391176441?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/08584875841396088684?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2253,15 +2561,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:06 GMT + - Thu, 25 Apr 2024 05:26:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 883A1C37D49B4534A7982DBC61CF4B38 Ref B: SN4AA2022302021 Ref C: 2024-04-25T05:26:50Z' status: code: 200 message: OK @@ -2279,10 +2591,10 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883336391176441?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/08584875841396088684?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -2294,15 +2606,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:36 GMT + - Thu, 25 Apr 2024 05:27:20 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7C767609B24E402185158A9145E30A6A Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:27:20Z' status: code: 200 message: OK @@ -2320,23 +2636,23 @@ interactions: ParameterSetName: - --build-output-folder --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713273247", - "name": "AOSM_CLI_deployment_1713273247", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "12072405825285278441", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007840", + "name": "AOSM_CLI_deployment_1714007840", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2024-04-16T13:15:26.4916326Z", "duration": "PT1M19.9734708S", "correlationId": - "aa229535-f8a6-40e5-b706-c5d368c0cb27", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T05:27:11.8900185Z", "duration": "PT1M24.2351614S", "correlationId": + "2c7e8086-50b5-4d97-9600-3709c736d6a2", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0"}]}}' @@ -2348,15 +2664,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:36 GMT + - Thu, 25 Apr 2024 05:27:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2D38FCAF3FF4400FAFF6606B35480962 Ref B: DM2AA1091214053 Ref C: 2024-04-25T05:27:21Z' status: code: 200 message: OK @@ -2374,8 +2694,8 @@ interactions: ParameterSetName: - -f User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0?api-version=2023-09-01 response: @@ -2383,9 +2703,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0", "name": "1.0.0", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-16T13:14:06.9513421Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-25T05:25:49.7596406Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2024-04-16T13:14:06.9513421Z"}, "properties": {"networkFunctionTemplate": + "2024-04-25T05:25:49.7596406Z"}, "properties": {"networkFunctionTemplate": {"networkFunctionApplications": [{"artifactProfile": {"vhdArtifactProfile": {"vhdName": "automated-cli-tests-vhd", "vhdVersion": "1-0-0"}, "artifactStore": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store"}}, @@ -2409,19 +2729,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:37 GMT + - Thu, 25 Apr 2024 05:27:22 GMT etag: - - '"1f001e4f-0000-1100-0000-661e79b20000"' + - '"f700162b-0000-1100-0000-6629e96d0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-providerhub-traffic: - 'True' + x-msedge-ref: + - 'Ref A: 9411F8A301C843D681681B48389A4397 Ref B: DM2AA1091211023 Ref C: 2024-04-25T05:27:22Z' status: code: 200 message: OK @@ -2439,8 +2763,8 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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: @@ -2452,22 +2776,187 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:15:37 GMT + - Thu, 25 Apr 2024 05:27:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DEC9FAAFFC4A4C69ACE1B2B10711327E Ref B: SN4AA2022304021 Ref C: 2024-04-25T05:27:22Z' status: code: 204 message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher?api-version=2023-09-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher", + "name": "automated-cli-tests-ubuntu-publisher", "type": "microsoft.hybridnetwork/publishers", + "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", + "createdByType": "User", "createdAt": "2024-04-25T05:19:35.0840654Z", "lastModifiedBy": + "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-04-25T05:19:35.0840654Z"}, "properties": {"scope": "Private", "provisioningState": + "Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '624' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:27:23 GMT + etag: + - '"f200fd3e-0000-1100-0000-6629e7f80000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-msedge-ref: + - 'Ref A: 968093613017411FABA8E8117A359BDA Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:27:23Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr?api-version=2023-09-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr", + "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", + "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", + "createdByType": "User", "createdAt": "2024-04-25T05:21:01.5372701Z", "lastModifiedBy": + "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "Application", "lastModifiedAt": + "2024-04-25T05:26:04.9704717Z"}, "properties": {"storeType": "AzureContainerRegistry", + "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": + {"name": "ubuntu-acr-HostedResources-44A2AC18", "location": "uksouth"}, "provisioningState": + "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-44A2AC18/providers/Microsoft.ContainerRegistry/registries/AutomatedCliTestsUbuntuPublisherUbuntuAcf47b58e70d"}}' + headers: + cache-control: + - no-cache + content-length: + - '1045' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:27:24 GMT + etag: + - '"0700098c-0000-1000-0000-6629e96d0000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-providerhub-traffic: + - 'True' + x-msedge-ref: + - 'Ref A: 96310DA1D4B84D74BCF1F5F36103F46A Ref B: DM2AA1091211011 Ref C: 2024-04-25T05:27:23Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nsd publish + Connection: + - keep-alive + ParameterSetName: + - --build-output-folder + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkServiceDesignGroups/ubuntu?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkServiceDesignGroups/ubuntu'' + under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 05:27:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: BE56F60BDD2B427BA9BF345521D7B455 Ref B: DM2AA1091213045 Ref C: 2024-04-25T05:27:24Z' + status: + code: 404 + message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14743947880900953734"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "7209447708351625668"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -2502,21 +2991,21 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713273343", - "name": "AOSM_CLI_deployment_1713273343", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14743947880900953734", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007946", + "name": "AOSM_CLI_deployment_1714007946", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "6cd4b820-c985-4d40-9084-b1b2539dd937", "providers": [{"namespace": "Microsoft.HybridNetwork", + "22c17508-b594-4710-824c-474f77ab7daf", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -2537,28 +3026,32 @@ interactions: cache-control: - no-cache content-length: - - '3034' + - '3033' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:41 GMT + - Thu, 25 Apr 2024 05:27:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: AB0FCB20522B409FBAAC79E9300F0696 Ref B: SN4AA2022302009 Ref C: 2024-04-25T05:27:28Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14743947880900953734"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "7209447708351625668"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -2593,21 +3086,21 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713273343", - "name": "AOSM_CLI_deployment_1713273343", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14743947880900953734", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007946", + "name": "AOSM_CLI_deployment_1714007946", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-16T13:15:42.6486828Z", "duration": "PT0.0003317S", "correlationId": - "ff0f5875-e8c2-431a-a2ae-791397b949b5", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-25T05:27:35.0499289Z", "duration": "PT0.0009884S", "correlationId": + "8c91c0de-c4c9-4b49-9510-db3701a39b71", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -2623,25 +3116,29 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu"}]}}' 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_1713273343/operationStatuses/08584883335430249127?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_1714007946/operationStatuses/08584875840323775856?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2413' + - '2412' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:42 GMT + - Thu, 25 Apr 2024 05:27:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 054B653AE23449E0BB2BEEDF706BFD4E Ref B: SN4AA2022305051 Ref C: 2024-04-25T05:27:31Z' status: code: 201 message: Created @@ -2659,30 +3156,34 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:15:42 GMT + - Thu, 25 Apr 2024 05:27:36 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A7FAB415581748E79257523269E75074 Ref B: DM2AA1091211031 Ref C: 2024-04-25T05:27:36Z' status: code: 200 message: OK @@ -2700,10 +3201,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2715,15 +3216,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:16:12 GMT + - Thu, 25 Apr 2024 05:28:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8D79286A4E6C4600AEDEF2EC5D24A2C9 Ref B: DM2AA1091211035 Ref C: 2024-04-25T05:28:07Z' status: code: 200 message: OK @@ -2741,10 +3246,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2756,15 +3261,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:16:42 GMT + - Thu, 25 Apr 2024 05:28:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2FBD3C7358B14F54A63B0CAC2384245C Ref B: SN4AA2022304039 Ref C: 2024-04-25T05:28:38Z' status: code: 200 message: OK @@ -2782,10 +3291,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2797,15 +3306,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:17:12 GMT + - Thu, 25 Apr 2024 05:29:09 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D12EDE2D8710488D833A825311B5AC53 Ref B: DM2AA1091213021 Ref C: 2024-04-25T05:29:08Z' status: code: 200 message: OK @@ -2823,10 +3336,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2838,15 +3351,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:17:40 GMT + - Thu, 25 Apr 2024 05:29:39 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1D54336FC85B4A718D24BA2343A71D2F Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:29:39Z' status: code: 200 message: OK @@ -2864,10 +3381,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2879,15 +3396,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:18:09 GMT + - Thu, 25 Apr 2024 05:30:10 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EF571EBC75DE40C19935ADCD38AA0DD5 Ref B: SN4AA2022305017 Ref C: 2024-04-25T05:30:10Z' status: code: 200 message: OK @@ -2905,10 +3426,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2920,15 +3441,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:18:39 GMT + - Thu, 25 Apr 2024 05:30:41 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: ECAF3244451F42AA878E855144675570 Ref B: SN4AA2022302051 Ref C: 2024-04-25T05:30:41Z' status: code: 200 message: OK @@ -2946,10 +3471,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2961,15 +3486,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:10 GMT + - Thu, 25 Apr 2024 05:31:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A295CCE0A36547DEBF0FE90AB0EF922B Ref B: SN4AA2022304025 Ref C: 2024-04-25T05:31:12Z' status: code: 200 message: OK @@ -2987,10 +3516,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883335430249127?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/08584875840323775856?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3002,15 +3531,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:38 GMT + - Thu, 25 Apr 2024 05:31:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5E1C1D730ADA4069B2C09D1A4B7F640C Ref B: DM2AA1091214053 Ref C: 2024-04-25T05:31:43Z' status: code: 200 message: OK @@ -3028,21 +3561,21 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713273343", - "name": "AOSM_CLI_deployment_1713273343", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14743947880900953734", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714007946", + "name": "AOSM_CLI_deployment_1714007946", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-16T13:19:27.3124125Z", "duration": "PT3M44.6640614S", - "correlationId": "ff0f5875-e8c2-431a-a2ae-791397b949b5", "providers": [{"namespace": + "timestamp": "2024-04-25T05:31:21.7861649Z", "duration": "PT3M46.7372244S", + "correlationId": "8c91c0de-c4c9-4b49-9510-db3701a39b71", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": @@ -3062,22 +3595,24 @@ interactions: headers: cache-control: - no-cache - connection: - - close content-length: - - '3050' + - '3049' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:38 GMT + - Thu, 25 Apr 2024 05:31:43 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1C26DC5A7E5E421E9C656908367E6DD3 Ref B: DM2AA1091213019 Ref C: 2024-04-25T05:31:43Z' status: code: 200 message: OK @@ -3095,8 +3630,8 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0?api-version=2023-09-01 response: @@ -3112,24 +3647,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:39 GMT + - Thu, 25 Apr 2024 05:31:44 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 95057F4B74664172946E61EEB1553DBD Ref B: DM2AA1091212027 Ref C: 2024-04-25T05:31:44Z' status: code: 404 message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "4244437476724292391"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "2863414179742292638"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -3153,27 +3692,27 @@ interactions: Connection: - keep-alive Content-Length: - - '1408' + - '1409' Content-Type: - application/json ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713273583", - "name": "AOSM_CLI_deployment_1713273583", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4244437476724292391", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008205", + "name": "AOSM_CLI_deployment_1714008205", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "95221558-4498-45e2-9c09-0583afa64b10", "providers": [{"namespace": "Microsoft.HybridNetwork", + "67a55a07-39f7-44d5-a1ba-e44062b33f7f", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -3185,24 +3724,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:42 GMT + - Thu, 25 Apr 2024 05:31:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 0C538B9517BF41348B3DCC8BDFED9CA5 Ref B: SN4AA2022305045 Ref C: 2024-04-25T05:31:47Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "4244437476724292391"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "2863414179742292638"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -3226,32 +3769,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1408' + - '1409' Content-Type: - application/json ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713273583", - "name": "AOSM_CLI_deployment_1713273583", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4244437476724292391", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008205", + "name": "AOSM_CLI_deployment_1714008205", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-16T13:19:42.9828172Z", "duration": "PT0.0006542S", - "correlationId": "ee5db3bd-1723-4e48-a1e5-f1e139b9fc53", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-25T05:31:53.0701729Z", "duration": "PT0.0006037S", + "correlationId": "04cf01de-cb19-4f9b-81f8-e9745785b068", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1713273583/operationStatuses/08584883333027222951?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_1714008205/operationStatuses/08584875837741694758?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -3259,17 +3802,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:42 GMT + - Thu, 25 Apr 2024 05:31:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 575A85AC17F3468DB989B0525C128F2F Ref B: DM2AA1091212039 Ref C: 2024-04-25T05:31:49Z' status: code: 201 message: Created @@ -3287,30 +3834,34 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883333027222951?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/08584875837741694758?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:19:42 GMT + - Thu, 25 Apr 2024 05:31:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4D1A3DEC23044CD8AE010EE4F2055915 Ref B: SN4AA2022302025 Ref C: 2024-04-25T05:31:54Z' status: code: 200 message: OK @@ -3328,10 +3879,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883333027222951?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/08584875837741694758?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3343,15 +3894,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:20:12 GMT + - Thu, 25 Apr 2024 05:32:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BFFC326C01A24AD4B816341408792777 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:32:24Z' status: code: 200 message: OK @@ -3369,10 +3924,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883333027222951?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/08584875837741694758?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3384,15 +3939,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:20:40 GMT + - Thu, 25 Apr 2024 05:32:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 545CF6F87A2B4E5D94F5A55AA421062C Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:32:55Z' status: code: 200 message: OK @@ -3410,10 +3969,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883333027222951?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/08584875837741694758?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3425,15 +3984,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:10 GMT + - Thu, 25 Apr 2024 05:33:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 021252804A72433F9D70056CF2E1B5D5 Ref B: DM2AA1091213021 Ref C: 2024-04-25T05:33:26Z' status: code: 200 message: OK @@ -3451,21 +4014,21 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713273583", - "name": "AOSM_CLI_deployment_1713273583", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "4244437476724292391", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008205", + "name": "AOSM_CLI_deployment_1714008205", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-16T13:21:09.8419899Z", "duration": "PT1M26.8598269S", - "correlationId": "ee5db3bd-1723-4e48-a1e5-f1e139b9fc53", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-25T05:33:23.9495753Z", "duration": "PT1M30.8800061S", + "correlationId": "04cf01de-cb19-4f9b-81f8-e9745785b068", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -3477,15 +4040,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:10 GMT + - Thu, 25 Apr 2024 05:33:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 11398B21477E4835946F8F3350A29A8C Ref B: SN4AA2022303025 Ref C: 2024-04-25T05:33:27Z' status: code: 200 message: OK @@ -3505,15 +4072,15 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: string: '{"username": "ubuntu-nsd-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io", - "repositories": ["ubuntu"], "expiry": "2024-04-17T13:21:16.8129886+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io", + "repositories": ["ubuntu"], "expiry": "2024-04-26T05:33:32.6612115+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -3523,13 +4090,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:16 GMT + - Thu, 25 Apr 2024 05:33:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-build-version: @@ -3538,6 +4107,8 @@ interactions: - 'True' x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3995F9EA150A455694237E35DBF27094 Ref B: SN4AA2022305011 Ref C: 2024-04-25T05:33:30Z' status: code: 200 message: OK @@ -3557,7 +4128,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -3577,7 +4148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:33 GMT docker-distribution-api-version: - registry/2.0 server: @@ -3586,7 +4157,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -3602,11 +4173,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -3616,7 +4187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:34 GMT server: - AzureContainerRegistry strict-transport-security: @@ -3644,7 +4215,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -3659,13 +4230,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:34 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - a4b7f09e-12a9-4751-ae3a-4d05c72c7fa2 + - 78273909-84ee-4588-94fe-376e79f7fdfe location: - - /v2/ubuntu/blobs/uploads/a4b7f09e-12a9-4751-ae3a-4d05c72c7fa2?_nouploadcache=false&_state=NdO6huBXH3TDSMe403U0pGZK0D4-7zs0vDHOXcecV0Z7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiYTRiN2YwOWUtMTJhOS00NzUxLWFlM2EtNGQwNWM3MmM3ZmEyIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTE2VDEzOjIxOjE3LjMyMTQ0MDMzNFoifQ%3D%3D + - /v2/ubuntu/blobs/uploads/78273909-84ee-4588-94fe-376e79f7fdfe?_nouploadcache=false&_state=1rDUVTG8bNRp1NWa8OINKl6P6dZ9XBe0oW-Kl8xF5mh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzgyNzM5MDktODRlZS00NTg4LTk0ZmUtMzc2ZTc5ZjdmZGZlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjM0Ljc5NjE0OTA4NloifQ%3D%3D range: - 0-0 server: @@ -3681,7 +4252,7 @@ interactions: - request: body: '{"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "13997939921627854066"}}, "parameters": {"configObject": + "0.26.170.59819", "templateHash": "7518080251401560663"}}, "parameters": {"configObject": {"type": "secureObject"}}, "variables": {"resourceGroupId": "[resourceGroup().id]", "identityObject": "[if(equals(parameters(''configObject'').managedIdentityId, ''''), createObject(''type'', ''SystemAssigned''), createObject(''type'', ''UserAssigned'', @@ -3715,7 +4286,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/a4b7f09e-12a9-4751-ae3a-4d05c72c7fa2?_nouploadcache=false&_state=NdO6huBXH3TDSMe403U0pGZK0D4-7zs0vDHOXcecV0Z7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiYTRiN2YwOWUtMTJhOS00NzUxLWFlM2EtNGQwNWM3MmM3ZmEyIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTE2VDEzOjIxOjE3LjMyMTQ0MDMzNFoifQ%3D%3D&digest=sha256%3A3ccb87556f82c72b4c80c83273d1ac390d77d09ef3504cce53e2c7dd78338bfe + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/78273909-84ee-4588-94fe-376e79f7fdfe?_nouploadcache=false&_state=1rDUVTG8bNRp1NWa8OINKl6P6dZ9XBe0oW-Kl8xF5mh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzgyNzM5MDktODRlZS00NTg4LTk0ZmUtMzc2ZTc5ZjdmZGZlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjM0Ljc5NjE0OTA4NloifQ%3D%3D&digest=sha256%3A5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 response: body: string: '' @@ -3730,13 +4301,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:40 GMT docker-content-digest: - - sha256:3ccb87556f82c72b4c80c83273d1ac390d77d09ef3504cce53e2c7dd78338bfe + - sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 docker-distribution-api-version: - registry/2.0 location: - - /v2/ubuntu/blobs/sha256:3ccb87556f82c72b4c80c83273d1ac390d77d09ef3504cce53e2c7dd78338bfe + - /v2/ubuntu/blobs/sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 server: - AzureContainerRegistry strict-transport-security: @@ -3763,7 +4334,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -3783,7 +4354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -3792,7 +4363,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -3808,11 +4379,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -3822,7 +4393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:41 GMT server: - AzureContainerRegistry strict-transport-security: @@ -3830,7 +4401,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.3' + - '333.316667' status: code: 200 message: OK @@ -3850,7 +4421,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -3865,13 +4436,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:42 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 34c4c8b8-d90d-4b0d-841d-59e2277e23a4 + - 74997a2b-1a68-4bab-b837-4869f52ea681 location: - - /v2/ubuntu/blobs/uploads/34c4c8b8-d90d-4b0d-841d-59e2277e23a4?_nouploadcache=false&_state=qwb7OExMjydwf5Tul-7GIBLyIGK9WLrukjrYhzIWXax7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiMzRjNGM4YjgtZDkwZC00YjBkLTg0MWQtNTllMjI3N2UyM2E0IiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTE2VDEzOjIxOjE3LjU4NjIzMzQzOVoifQ%3D%3D + - /v2/ubuntu/blobs/uploads/74997a2b-1a68-4bab-b837-4869f52ea681?_nouploadcache=false&_state=rQ8YgrNCsHsD1h72O9HO5Yi-wUP0jeN8qAK0dvhn4At7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzQ5OTdhMmItMWE2OC00YmFiLWI4MzctNDg2OWY1MmVhNjgxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjQyLjAwNTg2NDc4N1oifQ%3D%3D range: - 0-0 server: @@ -3900,7 +4471,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/blobs/uploads/34c4c8b8-d90d-4b0d-841d-59e2277e23a4?_nouploadcache=false&_state=qwb7OExMjydwf5Tul-7GIBLyIGK9WLrukjrYhzIWXax7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiMzRjNGM4YjgtZDkwZC00YjBkLTg0MWQtNTllMjI3N2UyM2E0IiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTE2VDEzOjIxOjE3LjU4NjIzMzQzOVoifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/74997a2b-1a68-4bab-b837-4869f52ea681?_nouploadcache=false&_state=rQ8YgrNCsHsD1h72O9HO5Yi-wUP0jeN8qAK0dvhn4At7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzQ5OTdhMmItMWE2OC00YmFiLWI4MzctNDg2OWY1MmVhNjgxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjQyLjAwNTg2NDc4N1oifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -3915,7 +4486,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:42 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -3937,7 +4508,7 @@ interactions: "config": {"mediaType": "application/vnd.unknown.config.v1+json", "size": 2, "digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"}, "layers": [{"mediaType": "application/vnd.oci.image.layer.v1.tar", "size": 1981, - "digest": "sha256:3ccb87556f82c72b4c80c83273d1ac390d77d09ef3504cce53e2c7dd78338bfe", + "digest": "sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166", "annotations": {"org.opencontainers.image.title": "ubuntu-vm.json"}}], "annotations": {}}' headers: @@ -3954,7 +4525,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -3974,7 +4545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:43 GMT docker-distribution-api-version: - registry/2.0 server: @@ -3983,7 +4554,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -3999,11 +4570,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io + - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4013,7 +4584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:17 GMT + - Thu, 25 Apr 2024 05:33:43 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4021,7 +4592,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.283333' + - '333.316667' status: code: 200 message: OK @@ -4030,7 +4601,7 @@ interactions: "config": {"mediaType": "application/vnd.unknown.config.v1+json", "size": 2, "digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"}, "layers": [{"mediaType": "application/vnd.oci.image.layer.v1.tar", "size": 1981, - "digest": "sha256:3ccb87556f82c72b4c80c83273d1ac390d77d09ef3504cce53e2c7dd78338bfe", + "digest": "sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166", "annotations": {"org.opencontainers.image.title": "ubuntu-vm.json"}}], "annotations": {}}' headers: @@ -4047,7 +4618,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuaca3e684b70e.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '' @@ -4062,13 +4633,13 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:21:18 GMT + - Thu, 25 Apr 2024 05:33:44 GMT docker-content-digest: - - sha256:7516e68c6e8b63fcbb428b1ac84e62da7af611846b0a395a546642d45bfe3141 + - sha256:af1388b6ce985243feeb696d1140b41318b4032856531d64cd1929e7e9131ffd docker-distribution-api-version: - registry/2.0 location: - - /v2/ubuntu/manifests/sha256:7516e68c6e8b63fcbb428b1ac84e62da7af611846b0a395a546642d45bfe3141 + - /v2/ubuntu/manifests/sha256:af1388b6ce985243feeb696d1140b41318b4032856531d64cd1929e7e9131ffd server: - AzureContainerRegistry strict-transport-security: @@ -4082,7 +4653,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "7665769847335104070"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "14714070778274661333"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4137,28 +4708,28 @@ interactions: Connection: - keep-alive Content-Length: - - '4147' + - '4149' Content-Type: - application/json ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1713273682", - "name": "AOSM_CLI_deployment_1713273682", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "7665769847335104070", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008325", + "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "14714070778274661333", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "0001-01-01T00:00:00Z", "duration": - "PT0S", "correlationId": "d1e292f0-5baa-4604-9806-521286a98be5", "providers": + "PT0S", "correlationId": "dd7366c4-d29c-4c28-9c69-537a00ed5d18", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4174,28 +4745,32 @@ interactions: cache-control: - no-cache content-length: - - '2504' + - '2505' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:20 GMT + - Thu, 25 Apr 2024 05:33:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: B5928AE0B9194B3EA30875BDBC0AB140 Ref B: SN4AA2022303017 Ref C: 2024-04-25T05:33:47Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "7665769847335104070"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "14714070778274661333"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4250,28 +4825,28 @@ interactions: Connection: - keep-alive Content-Length: - - '4147' + - '4149' Content-Type: - application/json ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1713273682", - "name": "AOSM_CLI_deployment_1713273682", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "7665769847335104070", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008325", + "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "14714070778274661333", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-16T13:21:21.7260107Z", - "duration": "PT0.000726S", "correlationId": "a61f081e-5a1e-46cf-8601-243a87ddf2f7", + "provisioningState": "Accepted", "timestamp": "2024-04-25T05:33:54.2640356Z", + "duration": "PT0.0004873S", "correlationId": "a210ff72-0b91-42be-be8b-ce0debabe19a", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4283,25 +4858,29 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/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_1713273682/operationStatuses/08584883332040032533?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_1714008325/operationStatuses/08584875836530516423?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2013' + - '2015' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:21 GMT + - Thu, 25 Apr 2024 05:33:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: A21AAA811A5445BD8E42AACFD600DBC1 Ref B: SN4AA2022304009 Ref C: 2024-04-25T05:33:50Z' status: code: 201 message: Created @@ -4319,30 +4898,34 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883332040032533?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/08584875836530516423?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:21 GMT + - Thu, 25 Apr 2024 05:33:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CA5B745277D1408F88564DE2E0CFF846 Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:33:55Z' status: code: 200 message: OK @@ -4360,10 +4943,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883332040032533?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/08584875836530516423?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -4375,15 +4958,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:21:51 GMT + - Thu, 25 Apr 2024 05:34:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3121DCE335DB4018B92207C4A475BFDE Ref B: DM2AA1091212031 Ref C: 2024-04-25T05:34:26Z' status: code: 200 message: OK @@ -4401,10 +4988,10 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584883332040032533?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/08584875836530516423?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -4416,15 +5003,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:22:21 GMT + - Thu, 25 Apr 2024 05:34:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6FFCC7B7D6FC4F0C98A35A438F315D78 Ref B: DM2AA1091213051 Ref C: 2024-04-25T05:34:57Z' status: code: 200 message: OK @@ -4442,22 +5033,22 @@ interactions: ParameterSetName: - --build-output-folder User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1713273682", - "name": "AOSM_CLI_deployment_1713273682", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "7665769847335104070", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714008325", + "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "14714070778274661333", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-16T13:22:05.2982239Z", - "duration": "PT43.5729392S", "correlationId": "a61f081e-5a1e-46cf-8601-243a87ddf2f7", + "provisioningState": "Succeeded", "timestamp": "2024-04-25T05:34:44.2475249Z", + "duration": "PT49.9839766S", "correlationId": "a210ff72-0b91-42be-be8b-ce0debabe19a", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4473,19 +5064,23 @@ interactions: cache-control: - no-cache content-length: - - '2518' + - '2519' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:22:21 GMT + - Thu, 25 Apr 2024 05:34:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F4681776477E4EB3AABC8288B1A88B90 Ref B: DM2AA1091211023 Ref C: 2024-04-25T05:34:58Z' status: code: 200 message: OK From 382bef74ccf7442bbb5bb7c39969800f51fca6f5 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 00:15:34 -0700 Subject: [PATCH 08/17] Updating recodings for integration testing --- .../test_cnf_nfd_build_and_publish.yaml | 609 +++++++++---- .../test_vnf_nsd_build_and_publish.yaml | 830 +++++++++--------- 2 files changed, 851 insertions(+), 588 deletions(-) diff --git a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml index d1325a594c7..3e91ea33849 100644 --- a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml +++ b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001?api-version=2022-09-01 response: @@ -26,22 +26,173 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2024 13:00:40 GMT + - Thu, 25 Apr 2024 06:48:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8EAC4C80BA924B9894B247FDDFF9FF53 Ref B: SN4AA2022302029 Ref C: 2024-04-25T06:48:48Z' status: code: 204 message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -b --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher'' + under resource group ''cli_test_cnf_nfd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 06:48:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: ABEE1D2D6CF7472A83CC0F5961B73D11 Ref B: DM2AA1091213051 Ref C: 2024-04-25T06:48:48Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -b --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr'' + under resource group ''cli_test_cnf_nfd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 06:48:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: EB82E16275E14DD7AFD01F14C1694EDE Ref B: DM2AA1091211023 Ref C: 2024-04-25T06:48:49Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aosm nfd publish + Connection: + - keep-alive + ParameterSetName: + - -b --definition-type + User-Agent: + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/networkFunctionDefinitionGroups/nginx?api-version=2023-09-01 + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/networkFunctionDefinitionGroups/nginx'' + under resource group ''cli_test_cnf_nfd_000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '307' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 25 Apr 2024 06:48:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: CA5627AF8BCB46E7BC2847D166BD3A2F Ref B: DM2AA1091212009 Ref C: 2024-04-25T06:48:49Z' + status: + code: 404 + message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "15628236071821911085"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "10367121729954115364"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -70,26 +221,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1890' + - '1891' Content-Type: - application/json ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272445", - "name": "AOSM_CLI_deployment_1713272445", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "15628236071821911085", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", + "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "494dfe8c-15d2-4a98-a99a-137a523a1c25", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "2e8ff158-9ac4-4364-83c4-f22191cf87e4", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", @@ -113,24 +264,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:00:44 GMT + - Thu, 25 Apr 2024 06:48:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 769AA2C8BC8F491EB34B85132D9614F9 Ref B: SN4AA2022303035 Ref C: 2024-04-25T06:48:53Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "15628236071821911085"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "10367121729954115364"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of a publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": {"description": @@ -159,27 +314,27 @@ interactions: Connection: - keep-alive Content-Length: - - '1890' + - '1891' Content-Type: - application/json ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272445", - "name": "AOSM_CLI_deployment_1713272445", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "15628236071821911085", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", + "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2024-04-16T13:00:45.5609042Z", "duration": "PT0.0008285S", "correlationId": - "982295a5-7b5c-463b-8d28-52f53624ef6c", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T06:48:59.3106638Z", "duration": "PT0.0004378S", "correlationId": + "1e80bd81-e066-4f08-9bde-93c096a07205", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -194,7 +349,7 @@ interactions: "resourceName": "automated-cli-tests-nginx-publisher/nginx"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272445/operationStatuses/08584883344401524198?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732/operationStatuses/08584875791481513340?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -202,17 +357,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:00:44 GMT + - Thu, 25 Apr 2024 06:48:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 7E8CF3C7C8FB48C183C9BF019035F4CD Ref B: DM2AA1091211031 Ref C: 2024-04-25T06:48:56Z' status: code: 201 message: Created @@ -230,30 +389,34 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:00:44 GMT + - Thu, 25 Apr 2024 06:49:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8FB14E7034EC4D2485376C3DAE596498 Ref B: SN4AA2022302037 Ref C: 2024-04-25T06:49:00Z' status: code: 200 message: OK @@ -271,10 +434,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -286,15 +449,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:01:15 GMT + - Thu, 25 Apr 2024 06:49:31 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7DB5021CAA9A4635993546D72E8CD82D Ref B: DM2AA1091214053 Ref C: 2024-04-25T06:49:31Z' status: code: 200 message: OK @@ -312,10 +479,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -327,15 +494,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:01:45 GMT + - Thu, 25 Apr 2024 06:50:02 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8884CF64D9E640AF95F81F7A25480B0C Ref B: SN4AA2022303039 Ref C: 2024-04-25T06:50:01Z' status: code: 200 message: OK @@ -353,10 +524,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -368,15 +539,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:02:15 GMT + - Thu, 25 Apr 2024 06:50:32 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6568BB2A106147FBB33DA126E7951595 Ref B: DM2AA1091211035 Ref C: 2024-04-25T06:50:32Z' status: code: 200 message: OK @@ -394,10 +569,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -409,15 +584,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:02:44 GMT + - Thu, 25 Apr 2024 06:51:03 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E89483F31F9648A8897CA59C166A448C Ref B: DM2AA1091214053 Ref C: 2024-04-25T06:51:03Z' status: code: 200 message: OK @@ -435,10 +614,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -450,15 +629,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:03:12 GMT + - Thu, 25 Apr 2024 06:51:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 69D5D055BF644C2DA85A79C516FCD2E3 Ref B: DM2AA1091211053 Ref C: 2024-04-25T06:51:34Z' status: code: 200 message: OK @@ -476,10 +659,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -491,15 +674,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:03:42 GMT + - Thu, 25 Apr 2024 06:52:05 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 655D58094D5B4A5D8851DC15B070BE44 Ref B: DM2AA1091211049 Ref C: 2024-04-25T06:52:05Z' status: code: 200 message: OK @@ -517,10 +704,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -532,15 +719,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:13 GMT + - Thu, 25 Apr 2024 06:52:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8D7EDAFA3E8C4515B2CAC16CFF5F179F Ref B: DM2AA1091212047 Ref C: 2024-04-25T06:52:35Z' status: code: 200 message: OK @@ -558,10 +749,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883344401524198?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -573,15 +764,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:43 GMT + - Thu, 25 Apr 2024 06:53:06 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6FBF54DA7C964707BF3244B3F9EB37F4 Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:53:06Z' status: code: 200 message: OK @@ -599,21 +794,21 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272445", - "name": "AOSM_CLI_deployment_1713272445", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "15628236071821911085", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", + "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2024-04-16T13:04:32.594907Z", "duration": "PT3M47.0348313S", "correlationId": - "982295a5-7b5c-463b-8d28-52f53624ef6c", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T06:52:51.1765955Z", "duration": "PT3M51.8663695S", "correlationId": + "1e80bd81-e066-4f08-9bde-93c096a07205", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -633,19 +828,23 @@ interactions: cache-control: - no-cache content-length: - - '3053' + - '3054' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:43 GMT + - Thu, 25 Apr 2024 06:53:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 499A27021443477C92314996A8BD50CB Ref B: SN4AA2022303051 Ref C: 2024-04-25T06:53:06Z' status: code: 200 message: OK @@ -663,8 +862,8 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0?api-version=2023-09-01 response: @@ -680,24 +879,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:43 GMT + - Thu, 25 Apr 2024 06:53:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-failure-cause: - gateway + x-msedge-ref: + - 'Ref A: 13239307FD564B0399B7EB99940F340E Ref B: SN4AA2022303019 Ref C: 2024-04-25T06:53:07Z' status: code: 404 message: Not Found - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14797403328055843136"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "12600420176313960646"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -723,27 +926,27 @@ interactions: Connection: - keep-alive Content-Length: - - '1521' + - '1522' Content-Type: - application/json ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272688", - "name": "AOSM_CLI_deployment_1713272688", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14797403328055843136", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", + "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "41bfd32f-0640-436c-aa3c-2f164faadd1c", "providers": [{"namespace": "Microsoft.HybridNetwork", + "fdcb57db-b109-4fbc-a6bc-d8092e57fc62", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0"}]}}' @@ -755,24 +958,28 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:48 GMT + - Thu, 25 Apr 2024 06:53:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 096913EA2590405999E1A8ED68396249 Ref B: SN4AA2022305035 Ref C: 2024-04-25T06:53:10Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "14797403328055843136"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "12600420176313960646"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -798,50 +1005,54 @@ interactions: Connection: - keep-alive Content-Length: - - '1521' + - '1522' Content-Type: - application/json ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272688", - "name": "AOSM_CLI_deployment_1713272688", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14797403328055843136", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", + "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-16T13:04:49.5854159Z", "duration": "PT0.0008638S", - "correlationId": "b9f98d1b-8ccb-41a6-9fb2-e0969f882f6a", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-25T06:53:15.9703446Z", "duration": "PT0.000421S", + "correlationId": "3c8b6557-fba4-4068-b0b0-134a49da736e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272688/operationStatuses/08584883341960697191?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988/operationStatuses/08584875788913009168?api-version=2022-09-01 cache-control: - no-cache content-length: - - '982' + - '981' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:48 GMT + - Thu, 25 Apr 2024 06:53:15 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 0376DC8DC59643B0A29B607653A6C1E8 Ref B: DM2AA1091212033 Ref C: 2024-04-25T06:53:13Z' status: code: 201 message: Created @@ -859,10 +1070,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883341960697191?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -874,15 +1085,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:04:48 GMT + - Thu, 25 Apr 2024 06:53:16 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4BCD524D903A48F9B5F62305116F3B7E Ref B: DM2AA1091214023 Ref C: 2024-04-25T06:53:16Z' status: code: 200 message: OK @@ -900,10 +1115,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883341960697191?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -915,15 +1130,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:05:17 GMT + - Thu, 25 Apr 2024 06:53:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3FA51E41B51B4FE79486766658378B18 Ref B: DM2AA1091212051 Ref C: 2024-04-25T06:53:47Z' status: code: 200 message: OK @@ -941,10 +1160,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883341960697191?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -956,15 +1175,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:05:47 GMT + - Thu, 25 Apr 2024 06:54:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E2B5442C002243BA88E5F810635FDA2A Ref B: DM2AA1091211023 Ref C: 2024-04-25T06:54:18Z' status: code: 200 message: OK @@ -982,10 +1205,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883341960697191?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -997,15 +1220,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:17 GMT + - Thu, 25 Apr 2024 06:54:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6936DAA4EC77444190C71A82612384CC Ref B: DM2AA1091211017 Ref C: 2024-04-25T06:54:49Z' status: code: 200 message: OK @@ -1023,21 +1250,21 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272688", - "name": "AOSM_CLI_deployment_1713272688", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14797403328055843136", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", + "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-16T13:06:10.9595899Z", "duration": "PT1M21.3750378S", - "correlationId": "b9f98d1b-8ccb-41a6-9fb2-e0969f882f6a", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-25T06:54:42.6630094Z", "duration": "PT1M26.6930858S", + "correlationId": "3c8b6557-fba4-4068-b0b0-134a49da736e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0"}]}}' @@ -1049,15 +1276,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:17 GMT + - Thu, 25 Apr 2024 06:54:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 38A2EA622EF64404B78EFDF059F9F8AC Ref B: DM2AA1091214021 Ref C: 2024-04-25T06:54:49Z' status: code: 200 message: OK @@ -1077,31 +1308,33 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: string: '{"username": "nginx-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsnginxpublishernginxacr72dc38a622.azurecr.io", - "repositories": ["nginxdemo", "nginx"], "expiry": "2024-04-17T13:06:20.2909529+00:00", + "acrServerUrl": "https://automatedclitestsnginxpublishernginxacrcacb1f0e22.azurecr.io", + "repositories": ["nginxdemo", "nginx"], "expiry": "2024-04-26T06:54:53.766974+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: - no-cache content-length: - - '338' + - '337' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:19 GMT + - Thu, 25 Apr 2024 06:54:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-build-version: @@ -1110,13 +1343,15 @@ interactions: - 'True' x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E576960F3DE047EE9E3532EA3FF643C7 Ref B: DM2AA1091213049 Ref C: 2024-04-25T06:54:51Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "13894353345379066482"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "8222130002561750249"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -1166,21 +1401,21 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272806", - "name": "AOSM_CLI_deployment_1713272806", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "13894353345379066482", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", + "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", - "duration": "PT0S", "correlationId": "7c85e7d3-2f12-4532-8c6e-4a21869726f0", + "duration": "PT0S", "correlationId": "7caf74a2-82c1-4b58-98a1-409861327925", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": @@ -1189,28 +1424,32 @@ interactions: cache-control: - no-cache content-length: - - '1329' + - '1328' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:44 GMT + - Thu, 25 Apr 2024 06:57:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: D219DFBC480C4F5C8C6FC248C5910106 Ref B: SN4AA2022304035 Ref C: 2024-04-25T06:57:19Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.54.24096", "templateHash": "13894353345379066482"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "8222130002561750249"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -1260,45 +1499,49 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272806", - "name": "AOSM_CLI_deployment_1713272806", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "13894353345379066482", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", + "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": - "Incremental", "provisioningState": "Accepted", "timestamp": "2024-04-16T13:06:45.8173784Z", - "duration": "PT0.0008056S", "correlationId": "be87c359-0934-48ea-bc12-fa9aa4197fde", + "Incremental", "provisioningState": "Accepted", "timestamp": "2024-04-25T06:57:25.2301648Z", + "duration": "PT0.0005354S", "correlationId": "5134370b-0193-4528-8bfa-4e161349d28e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272806/operationStatuses/08584883340798271292?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237/operationStatuses/08584875786419850383?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1059' + - '1058' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:45 GMT + - Thu, 25 Apr 2024 06:57:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 8E1FD601D08D4715B6BAA1BCE6AD814C Ref B: DM2AA1091211017 Ref C: 2024-04-25T06:57:21Z' status: code: 201 message: Created @@ -1316,10 +1559,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883340798271292?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 response: body: string: '{"status": "Accepted"}' @@ -1331,15 +1574,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:06:45 GMT + - Thu, 25 Apr 2024 06:57:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DDD4F3B3ADD1475688BF10F8BDB5E8EF Ref B: DM2AA1091213031 Ref C: 2024-04-25T06:57:26Z' status: code: 200 message: OK @@ -1357,10 +1604,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883340798271292?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1372,15 +1619,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:07:14 GMT + - Thu, 25 Apr 2024 06:57:57 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D363DBC013114844BA9D502ADB8DF281 Ref B: DM2AA1091213035 Ref C: 2024-04-25T06:57:56Z' status: code: 200 message: OK @@ -1398,10 +1649,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883340798271292?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1413,15 +1664,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:07:44 GMT + - Thu, 25 Apr 2024 06:58:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 79F50746D41040D0A2B89C7E81CFF3A1 Ref B: DM2AA1091211051 Ref C: 2024-04-25T06:58:27Z' status: code: 200 message: OK @@ -1439,10 +1694,10 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584883340798271292?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1454,15 +1709,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:14 GMT + - Thu, 25 Apr 2024 06:58:58 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1378D2B57A974C7DB74632CE323DA583 Ref B: DM2AA1091212047 Ref C: 2024-04-25T06:58:58Z' status: code: 200 message: OK @@ -1480,21 +1739,21 @@ interactions: ParameterSetName: - -b --definition-type User-Agent: - - AZURECLI/2.57.0.post20240219064455 azsdk-python-core/1.30.0 Python/3.8.10 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1713272806", - "name": "AOSM_CLI_deployment_1713272806", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "13894353345379066482", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", + "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": - "Incremental", "provisioningState": "Succeeded", "timestamp": "2024-04-16T13:08:06.9694954Z", - "duration": "PT1M21.1529226S", "correlationId": "be87c359-0934-48ea-bc12-fa9aa4197fde", + "Incremental", "provisioningState": "Succeeded", "timestamp": "2024-04-25T06:58:49.9082075Z", + "duration": "PT1M24.6785781S", "correlationId": "5134370b-0193-4528-8bfa-4e161349d28e", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": @@ -1503,19 +1762,23 @@ interactions: cache-control: - no-cache content-length: - - '1345' + - '1344' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2024 13:08:14 GMT + - Thu, 25 Apr 2024 06:58:59 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B52A59A4D78B45BDA29DD61E18A6362C Ref B: SN4AA2022302033 Ref C: 2024-04-25T06:58:59Z' status: code: 200 message: OK diff --git a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml index 1fab8b145a0..1bee2adee01 100644 --- a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml +++ b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml @@ -14,7 +14,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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: @@ -26,7 +26,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:19:16 GMT + - Thu, 25 Apr 2024 06:59:04 GMT expires: - '-1' pragma: @@ -38,7 +38,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DE9753CFA885438A9254683FD111E95A Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:19:16Z' + - 'Ref A: EF3AA94FADDA45CBA462BB5DF3448A7D Ref B: DM2AA1091213039 Ref C: 2024-04-25T06:59:05Z' status: code: 204 message: No Content @@ -57,7 +57,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher?api-version=2023-09-01 response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:16 GMT + - Thu, 25 Apr 2024 06:59:04 GMT expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: D62859D39E2843599E524442750B1749 Ref B: SN4AA2022304051 Ref C: 2024-04-25T05:19:17Z' + - 'Ref A: 4B6890576F2F473FA6A29C281E388E0E Ref B: SN4AA2022302051 Ref C: 2024-04-25T06:59:05Z' status: code: 404 message: Not Found @@ -106,7 +106,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr?api-version=2023-09-01 response: @@ -122,7 +122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:17 GMT + - Thu, 25 Apr 2024 06:59:05 GMT expires: - '-1' pragma: @@ -136,7 +136,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: A223C987A4AE4CC8AF3595EDCB80B537 Ref B: SN4AA2022302029 Ref C: 2024-04-25T05:19:17Z' + - 'Ref A: 7ACC409FA43348ECB851C9C228E1CB3E Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:59:05Z' status: code: 404 message: Not Found @@ -155,7 +155,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm?api-version=2023-09-01 response: @@ -171,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:17 GMT + - Thu, 25 Apr 2024 06:59:05 GMT expires: - '-1' pragma: @@ -185,7 +185,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 74DE9A59F04840AA88F1FAF6806914E6 Ref B: SN4AA2022302049 Ref C: 2024-04-25T05:19:17Z' + - 'Ref A: 494CDB4C7C2E4B578241382CC8AA0523 Ref B: DM2AA1091213011 Ref C: 2024-04-25T06:59:06Z' status: code: 404 message: Not Found @@ -204,7 +204,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store?api-version=2023-09-01 response: @@ -220,7 +220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:17 GMT + - Thu, 25 Apr 2024 06:59:06 GMT expires: - '-1' pragma: @@ -234,7 +234,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 83C77560E7614D2EB47940A9A92B1807 Ref B: SN4AA2022302019 Ref C: 2024-04-25T05:19:18Z' + - 'Ref A: 77304FEDD0CB4BF580B52B20183F7E29 Ref B: SN4AA2022304019 Ref C: 2024-04-25T06:59:06Z' status: code: 404 message: Not Found @@ -284,13 +284,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714007459", - "name": "AOSM_CLI_deployment_1714007459", "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_1714028348", + "name": "AOSM_CLI_deployment_1714028348", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -298,7 +298,7 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "4fe0e091-bad1-4f8f-9f9e-decb821d88cb", "providers": [{"namespace": "Microsoft.HybridNetwork", + "102cd870-a5fa-4eec-8b24-6e46bbbc84ba", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:22 GMT + - Thu, 25 Apr 2024 06:59:11 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: FD0A60BD95C14354AC8A5BEF096A8E36 Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:19:20Z' + - 'Ref A: 0E80264E53584D98BB71CC256141991A Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:59:09Z' status: code: 200 message: OK @@ -393,21 +393,21 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714007459", - "name": "AOSM_CLI_deployment_1714007459", "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_1714028348", + "name": "AOSM_CLI_deployment_1714028348", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-25T05:19:30.9406411Z", "duration": "PT0.0004409S", "correlationId": - "e1e084d3-d325-4e5d-b283-68bfc803965e", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-25T06:59:16.1918998Z", "duration": "PT0.0004074S", "correlationId": + "0cb2a4a8-c0a7-40b6-9407-11d8e3466aeb", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -428,7 +428,7 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu-vm"}]}}' 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_1714007459/operationStatuses/08584875845164226843?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_1714028348/operationStatuses/08584875785312144750?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:31 GMT + - Thu, 25 Apr 2024 06:59:16 GMT expires: - '-1' pragma: @@ -450,7 +450,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 09FD63E961484B969AA30C0EECFEB972 Ref B: SN4AA2022304021 Ref C: 2024-04-25T05:19:23Z' + - 'Ref A: B71F97669CAB4A2F9660941A1D69CFC7 Ref B: SN4AA2022302049 Ref C: 2024-04-25T06:59:12Z' status: code: 201 message: Created @@ -469,21 +469,21 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:19:32 GMT + - Thu, 25 Apr 2024 06:59:16 GMT expires: - '-1' pragma: @@ -495,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 67D3C9B0E558415EB9194358A10C40DA Ref B: SN4AA2022305025 Ref C: 2024-04-25T05:19:31Z' + - 'Ref A: A21F97FAFBB94342BED5BD43E7E18CC0 Ref B: DM2AA1091214027 Ref C: 2024-04-25T06:59:17Z' status: code: 200 message: OK @@ -514,9 +514,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -528,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:20:02 GMT + - Thu, 25 Apr 2024 06:59:48 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E473C3D81464463995E2DC2BFD455333 Ref B: DM2AA1091213053 Ref C: 2024-04-25T05:20:02Z' + - 'Ref A: 0609E64085594637A263DC3AEAA525EB Ref B: DM2AA1091213045 Ref C: 2024-04-25T06:59:48Z' status: code: 200 message: OK @@ -559,9 +559,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -573,7 +573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:20:33 GMT + - Thu, 25 Apr 2024 07:00:18 GMT expires: - '-1' pragma: @@ -585,7 +585,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4B32414CC71842D3B6786ED5F3B8BB40 Ref B: SN4AA2022305035 Ref C: 2024-04-25T05:20:33Z' + - 'Ref A: 3C672FA3B2B44506B049EF96CEBFED7D Ref B: SN4AA2022305053 Ref C: 2024-04-25T07:00:18Z' status: code: 200 message: OK @@ -604,9 +604,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -618,7 +618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:21:04 GMT + - Thu, 25 Apr 2024 07:00:49 GMT expires: - '-1' pragma: @@ -630,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: BE304F02A1CF43618DB744112DBF0415 Ref B: SN4AA2022304017 Ref C: 2024-04-25T05:21:04Z' + - 'Ref A: E796C231926D4123B58770968943755C Ref B: DM2AA1091212027 Ref C: 2024-04-25T07:00:49Z' status: code: 200 message: OK @@ -649,9 +649,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:21:35 GMT + - Thu, 25 Apr 2024 07:01:20 GMT expires: - '-1' pragma: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 5D974D704D814E0DADFA0D8CE958838C Ref B: DM2AA1091212037 Ref C: 2024-04-25T05:21:35Z' + - 'Ref A: 9B1F0CB8C5EA4D8DB8F632A922B7B8F1 Ref B: SN4AA2022304033 Ref C: 2024-04-25T07:01:20Z' status: code: 200 message: OK @@ -694,9 +694,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -708,7 +708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:22:06 GMT + - Thu, 25 Apr 2024 07:01:50 GMT expires: - '-1' pragma: @@ -720,7 +720,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 73FE46BA96964A9BA7C83B1E038A2DAC Ref B: SN4AA2022305021 Ref C: 2024-04-25T05:22:06Z' + - 'Ref A: AED52F787E4947D5BA247D12541DF297 Ref B: DM2AA1091212049 Ref C: 2024-04-25T07:01:50Z' status: code: 200 message: OK @@ -739,9 +739,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:22:37 GMT + - Thu, 25 Apr 2024 07:02:21 GMT expires: - '-1' pragma: @@ -765,7 +765,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: AB44DB46ED514E799946F4D334FF24F5 Ref B: DM2AA1091214025 Ref C: 2024-04-25T05:22:37Z' + - 'Ref A: 0BDE02E7B6AE4D538248A173A3B996C5 Ref B: SN4AA2022305039 Ref C: 2024-04-25T07:02:21Z' status: code: 200 message: OK @@ -784,9 +784,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -798,7 +798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:08 GMT + - Thu, 25 Apr 2024 07:02:52 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9550F4AF1C29453099806ED53B0A0E48 Ref B: SN4AA2022302035 Ref C: 2024-04-25T05:23:08Z' + - 'Ref A: D0A5B61D58A64420AE7620FCF5521AD7 Ref B: SN4AA2022303047 Ref C: 2024-04-25T07:02:52Z' status: code: 200 message: OK @@ -829,9 +829,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875845164226843?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/08584875785312144750?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -843,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:39 GMT + - Thu, 25 Apr 2024 07:03:23 GMT expires: - '-1' pragma: @@ -855,7 +855,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 58FE02A72544478682B8D2556D02D99A Ref B: SN4AA2022303047 Ref C: 2024-04-25T05:23:39Z' + - 'Ref A: F26AAF80007A437A8F6B3C998D9DE1DF Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:03:23Z' status: code: 200 message: OK @@ -874,21 +874,21 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714007459", - "name": "AOSM_CLI_deployment_1714007459", "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_1714028348", + "name": "AOSM_CLI_deployment_1714028348", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-25T05:23:28.4612448Z", "duration": "PT3M57.5210446S", - "correlationId": "e1e084d3-d325-4e5d-b283-68bfc803965e", "providers": [{"namespace": + "timestamp": "2024-04-25T07:03:08.2130883Z", "duration": "PT3M52.0215959S", + "correlationId": "0cb2a4a8-c0a7-40b6-9407-11d8e3466aeb", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", @@ -919,7 +919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:40 GMT + - Thu, 25 Apr 2024 07:03:24 GMT expires: - '-1' pragma: @@ -931,7 +931,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6D6636BD9EB94435BEA98F2FBA2FACDA Ref B: SN4AA2022305017 Ref C: 2024-04-25T05:23:39Z' + - 'Ref A: A3807DF063A0476F85B57232D5D3CE0E Ref B: DM2AA1091212029 Ref C: 2024-04-25T07:03:24Z' status: code: 200 message: OK @@ -950,7 +950,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0?api-version=2023-09-01 response: @@ -966,7 +966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:40 GMT + - Thu, 25 Apr 2024 07:03:24 GMT expires: - '-1' pragma: @@ -980,7 +980,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: E2ECF5841F824191A3F44CA3B87DAD80 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:23:41Z' + - 'Ref A: 1F0B2FA298624049B7D2E9E135414675 Ref B: SN4AA2022305037 Ref C: 2024-04-25T07:03:25Z' status: code: 404 message: Not Found @@ -999,7 +999,7 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0?api-version=2023-09-01 response: @@ -1015,7 +1015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:41 GMT + - Thu, 25 Apr 2024 07:03:25 GMT expires: - '-1' pragma: @@ -1029,7 +1029,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 93AF03750B21486C807684CAD4F0375E Ref B: DM2AA1091211039 Ref C: 2024-04-25T05:23:41Z' + - 'Ref A: 2A19D945E0C947A7A2716D068D4A748E Ref B: SN4AA2022302011 Ref C: 2024-04-25T07:03:25Z' status: code: 404 message: Not Found @@ -1078,13 +1078,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714007722", - "name": "AOSM_CLI_deployment_1714007722", "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_1714028606", + "name": "AOSM_CLI_deployment_1714028606", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1093,7 +1093,7 @@ interactions: "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "d1b1e998-00d2-4d6d-b559-43c0b2e73518", "providers": [{"namespace": "Microsoft.HybridNetwork", + "8ac09ec6-9096-4e1d-9441-2802cd914d43", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -1106,7 +1106,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:46 GMT + - Thu, 25 Apr 2024 07:03:30 GMT expires: - '-1' pragma: @@ -1120,7 +1120,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0E87C688CE8F42D09168873B97C41A3D Ref B: SN4AA2022302025 Ref C: 2024-04-25T05:23:43Z' + - 'Ref A: AB2647E81F02441A900D3BE71D008D47 Ref B: SN4AA2022304019 Ref C: 2024-04-25T07:03:27Z' status: code: 200 message: OK @@ -1169,13 +1169,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714007722", - "name": "AOSM_CLI_deployment_1714007722", "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_1714028606", + "name": "AOSM_CLI_deployment_1714028606", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1183,21 +1183,21 @@ interactions: "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-25T05:23:50.146689Z", "duration": "PT0.0004332S", - "correlationId": "86b2c933-ab38-4474-81d9-e8a98b8bf902", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-25T07:03:34.2367203Z", "duration": "PT0.0009526S", + "correlationId": "8df65da5-f336-4d93-b7c5-aa844ab07c63", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1714007722/operationStatuses/08584875842572410454?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_1714028606/operationStatuses/08584875782730234213?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1138' + - '1139' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:50 GMT + - Thu, 25 Apr 2024 07:03:34 GMT expires: - '-1' pragma: @@ -1211,7 +1211,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: C352635D2067449590883DD0864CF079 Ref B: SN4AA2022302035 Ref C: 2024-04-25T05:23:46Z' + - 'Ref A: 42638008212A4F6DA2BA791690EA9177 Ref B: DM2AA1091212049 Ref C: 2024-04-25T07:03:30Z' status: code: 201 message: Created @@ -1230,21 +1230,21 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875842572410454?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/08584875782730234213?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:23:50 GMT + - Thu, 25 Apr 2024 07:03:35 GMT expires: - '-1' pragma: @@ -1256,7 +1256,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: EBFF659ED248488695CBBFE6D7CC9702 Ref B: SN4AA2022302037 Ref C: 2024-04-25T05:23:51Z' + - 'Ref A: 85A97B91C773456EADB5ECE427DA7452 Ref B: SN4AA2022303021 Ref C: 2024-04-25T07:03:35Z' status: code: 200 message: OK @@ -1275,9 +1275,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875842572410454?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/08584875782730234213?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1289,7 +1289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:24:22 GMT + - Thu, 25 Apr 2024 07:04:06 GMT expires: - '-1' pragma: @@ -1301,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F39680F95E0E469DA4E830140F75BD7A Ref B: SN4AA2022304033 Ref C: 2024-04-25T05:24:22Z' + - 'Ref A: 25CAB125768E46E29E627441C5C90E13 Ref B: SN4AA2022302023 Ref C: 2024-04-25T07:04:05Z' status: code: 200 message: OK @@ -1320,9 +1320,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875842572410454?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/08584875782730234213?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1334,7 +1334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:24:52 GMT + - Thu, 25 Apr 2024 07:04:37 GMT expires: - '-1' pragma: @@ -1346,7 +1346,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6B6D20B4490849D3AE6B5B2267E35C50 Ref B: DM2AA1091212027 Ref C: 2024-04-25T05:24:52Z' + - 'Ref A: 77400EC8D06A4F71A4B2AEF3E7A890F4 Ref B: DM2AA1091214035 Ref C: 2024-04-25T07:04:36Z' status: code: 200 message: OK @@ -1365,9 +1365,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875842572410454?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/08584875782730234213?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1379,7 +1379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:24 GMT + - Thu, 25 Apr 2024 07:05:08 GMT expires: - '-1' pragma: @@ -1391,7 +1391,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E0CDE24913F3454EB739605DA58533D9 Ref B: DM2AA1091212017 Ref C: 2024-04-25T05:25:24Z' + - 'Ref A: B474568344BE4458A2CEBB25B6FDC0B6 Ref B: SN4AA2022303039 Ref C: 2024-04-25T07:05:07Z' status: code: 200 message: OK @@ -1410,13 +1410,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714007722", - "name": "AOSM_CLI_deployment_1714007722", "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_1714028606", + "name": "AOSM_CLI_deployment_1714028606", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1424,8 +1424,8 @@ interactions: "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-25T05:25:16.5384061Z", "duration": "PT1M26.3921503S", - "correlationId": "86b2c933-ab38-4474-81d9-e8a98b8bf902", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-25T07:05:00.8307284Z", "duration": "PT1M26.5949607S", + "correlationId": "8df65da5-f336-4d93-b7c5-aa844ab07c63", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -1438,7 +1438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:24 GMT + - Thu, 25 Apr 2024 07:05:08 GMT expires: - '-1' pragma: @@ -1450,7 +1450,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: AC4ADBB8DE2C423EA459853FD17F918D Ref B: SN4AA2022303011 Ref C: 2024-04-25T05:25:24Z' + - 'Ref A: A68C20867EEC445A8859EFA21EBB08AF Ref B: SN4AA2022304035 Ref C: 2024-04-25T07:05:08Z' status: code: 200 message: OK @@ -1471,14 +1471,14 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: string: '{"username": "ubuntu-vm-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io", - "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-04-26T05:25:28.1415095+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io", + "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-04-26T07:05:11.6237035+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -1488,7 +1488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:28 GMT + - Thu, 25 Apr 2024 07:05:11 GMT expires: - '-1' pragma: @@ -1506,7 +1506,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: A371482807F84BAFAB98DA9FFBEA3E45 Ref B: SN4AA2022305021 Ref C: 2024-04-25T05:25:25Z' + - 'Ref A: 8C94E1B4F8764682BBB7F5BE5EC7DC8E Ref B: DM2AA1091211023 Ref C: 2024-04-25T07:05:09Z' status: code: 200 message: OK @@ -1526,7 +1526,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1546,7 +1546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:29 GMT + - Thu, 25 Apr 2024 07:05:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1555,7 +1555,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1571,11 +1571,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1585,7 +1585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:29 GMT + - Thu, 25 Apr 2024 07:05:14 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1613,7 +1613,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1628,13 +1628,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:30 GMT + - Thu, 25 Apr 2024 07:05:14 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a + - 6fac6a2c-beae-428e-b6fa-fd15fac0f9ef location: - - /v2/automated-cli-tests-artifact/blobs/uploads/ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a?_nouploadcache=false&_state=68qkUG1Hv8Dog6mCBoz5Weg1kuBuYe6Z73dlOaYxN_t7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVkNGZlMjdkLTJmZmEtNGE2YS1hNmQ4LTRmNzIyZTZiNTQyYSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMC4yODc4NzgwODVaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/6fac6a2c-beae-428e-b6fa-fd15fac0f9ef?_nouploadcache=false&_state=wGUh1I-_-wEWD6dlLhb94l1T5nbP7As6QOk77QhdTbB7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjZmYWM2YTJjLWJlYWUtNDI4ZS1iNmZhLWZkMTVmYWMwZjllZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNC43NDY5MDQxNjFaIn0%3D range: - 0-0 server: @@ -1707,7 +1707,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ed4fe27d-2ffa-4a6a-a6d8-4f722e6b542a?_nouploadcache=false&_state=68qkUG1Hv8Dog6mCBoz5Weg1kuBuYe6Z73dlOaYxN_t7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImVkNGZlMjdkLTJmZmEtNGE2YS1hNmQ4LTRmNzIyZTZiNTQyYSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMC4yODc4NzgwODVaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/6fac6a2c-beae-428e-b6fa-fd15fac0f9ef?_nouploadcache=false&_state=wGUh1I-_-wEWD6dlLhb94l1T5nbP7As6QOk77QhdTbB7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjZmYWM2YTJjLWJlYWUtNDI4ZS1iNmZhLWZkMTVmYWMwZjllZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNC43NDY5MDQxNjFaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b response: body: string: '' @@ -1722,7 +1722,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:30 GMT + - Thu, 25 Apr 2024 07:05:15 GMT docker-content-digest: - sha256:e71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b docker-distribution-api-version: @@ -1755,7 +1755,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1775,7 +1775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:31 GMT + - Thu, 25 Apr 2024 07:05:15 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1784,7 +1784,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:push,pull" x-content-type-options: - nosniff status: @@ -1800,11 +1800,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apush%2Cpull response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1814,7 +1814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:31 GMT + - Thu, 25 Apr 2024 07:05:16 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1822,7 +1822,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.3' + - '333.316667' status: code: 200 message: OK @@ -1842,7 +1842,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1857,13 +1857,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:32 GMT + - Thu, 25 Apr 2024 07:05:16 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 55188052-cb33-43e7-b2c9-38ac170929f9 + - 10641ba5-7f7e-4eee-a936-6062b3b12a70 location: - - /v2/automated-cli-tests-artifact/blobs/uploads/55188052-cb33-43e7-b2c9-38ac170929f9?_nouploadcache=false&_state=REMk054EhNdzCUfrhsAk6j7EXdSDj_8cLtkoNacGe-p7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjU1MTg4MDUyLWNiMzMtNDNlNy1iMmM5LTM4YWMxNzA5MjlmOSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMi4zOTcxNTk2MTJaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/10641ba5-7f7e-4eee-a936-6062b3b12a70?_nouploadcache=false&_state=_2DWmSlwAfZ_L7lH2BsQSNvN9-sXqGAGfL3bNY3dpIh7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjEwNjQxYmE1LTdmN2UtNGVlZS1hOTM2LTYwNjJiM2IxMmE3MCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNi44NTIyMDA2MDhaIn0%3D range: - 0-0 server: @@ -1892,7 +1892,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/55188052-cb33-43e7-b2c9-38ac170929f9?_nouploadcache=false&_state=REMk054EhNdzCUfrhsAk6j7EXdSDj_8cLtkoNacGe-p7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjU1MTg4MDUyLWNiMzMtNDNlNy1iMmM5LTM4YWMxNzA5MjlmOSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNToyNTozMi4zOTcxNTk2MTJaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/10641ba5-7f7e-4eee-a936-6062b3b12a70?_nouploadcache=false&_state=_2DWmSlwAfZ_L7lH2BsQSNvN9-sXqGAGfL3bNY3dpIh7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjEwNjQxYmE1LTdmN2UtNGVlZS1hOTM2LTYwNjJiM2IxMmE3MCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNi44NTIyMDA2MDhaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -1907,7 +1907,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:33 GMT + - Thu, 25 Apr 2024 07:05:17 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -1946,7 +1946,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1966,7 +1966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:33 GMT + - Thu, 25 Apr 2024 07:05:17 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1975,7 +1975,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1991,11 +1991,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -2005,7 +2005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:34 GMT + - Thu, 25 Apr 2024 07:05:18 GMT server: - AzureContainerRegistry strict-transport-security: @@ -2013,7 +2013,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.283333' + - '333.316667' status: code: 200 message: OK @@ -2039,7 +2039,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '' @@ -2054,7 +2054,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:34 GMT + - Thu, 25 Apr 2024 07:05:19 GMT docker-content-digest: - sha256:17d25d33c38f40fda4c9e45a0cec218b3f7f75e9c680ed8dd2a12ed0abdbc36b docker-distribution-api-version: @@ -2088,15 +2088,15 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: - string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-6FB3A87A/providers/Microsoft.Storage/storageAccounts/6fb3a87aubuntublobstore8", + string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-4EB912EE/providers/Microsoft.Storage/storageAccounts/4eb912eeubuntublobstoref", "containerCredentials": [{"containerName": "automatedclitestsvhd-1-0-0", "containerSasUri": "https://xxxxxxxxxxxxxxx.blob.core.windows.net/automatedclitestsvhd-1-0-0?sv=2021-08-06&si=StorageAccountAccessPolicy&sr=xxxxxxxxxxxxxxxxxxxx"}], - "expiry": "2024-04-26T05:25:37.9056921+00:00", "credentialType": "AzureStorageAccountToken"}' + "expiry": "2024-04-26T07:05:22.4533092+00:00", "credentialType": "AzureStorageAccountToken"}' headers: cache-control: - no-cache @@ -2105,7 +2105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:36 GMT + - Thu, 25 Apr 2024 07:05:22 GMT expires: - '-1' pragma: @@ -2123,7 +2123,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 16C05A7F07C04172BEB97FC33579CB60 Ref B: DM2AA1091211035 Ref C: 2024-04-25T05:25:35Z' + - 'Ref A: 85D1C04EC0E04114905E5CC4F78C2B25 Ref B: DM2AA1091211033 Ref C: 2024-04-25T07:05:19Z' status: code: 200 message: OK @@ -2139,13 +2139,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) x-ms-blob-content-length: - '512' x-ms-blob-type: - PageBlob x-ms-date: - - Thu, 25 Apr 2024 01:17:16 GMT + - Thu, 25 Apr 2024 07:05:21 GMT x-ms-version: - '2022-11-02' method: PUT @@ -2157,11 +2157,11 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:38 GMT + - Thu, 25 Apr 2024 07:05:23 GMT etag: - - '"0x8DC64E824853FA3"' + - '"0x8DC64F613958CD5"' last-modified: - - Thu, 25 Apr 2024 05:25:38 GMT + - Thu, 25 Apr 2024 07:05:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -2191,11 +2191,11 @@ interactions: Content-Type: - application/octet-stream If-Match: - - '"0x8DC64E824853FA3"' + - '"0x8DC64F613958CD5"' User-Agent: - - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) x-ms-date: - - Thu, 25 Apr 2024 01:17:17 GMT + - Thu, 25 Apr 2024 07:05:22 GMT x-ms-page-write: - update x-ms-range: @@ -2211,11 +2211,11 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:25:38 GMT + - Thu, 25 Apr 2024 07:05:24 GMT etag: - - '"0x8DC64E824E6A15B"' + - '"0x8DC64F61445525C"' last-modified: - - Thu, 25 Apr 2024 05:25:39 GMT + - Thu, 25 Apr 2024 07:05:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-sequence-number: @@ -2290,13 +2290,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714007840", - "name": "AOSM_CLI_deployment_1714007840", "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_1714028725", + "name": "AOSM_CLI_deployment_1714028725", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2304,7 +2304,7 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "5729cd70-6249-4d62-85d7-09400c0b670f", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "1f3833fc-9cf1-4661-84a4-a457196e2dd7", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": @@ -2317,7 +2317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:43 GMT + - Thu, 25 Apr 2024 07:05:28 GMT expires: - '-1' pragma: @@ -2331,7 +2331,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 1A55703A63A9453AB06900019F17A39B Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:25:41Z' + - 'Ref A: 4465A06D1B424ACAB68BE34A115040D4 Ref B: SN4AA2022304047 Ref C: 2024-04-25T07:05:26Z' status: code: 200 message: OK @@ -2396,13 +2396,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714007840", - "name": "AOSM_CLI_deployment_1714007840", "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_1714028725", + "name": "AOSM_CLI_deployment_1714028725", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2410,13 +2410,13 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2024-04-25T05:25:47.6555427Z", "duration": "PT0.0006856S", "correlationId": - "2c7e8086-50b5-4d97-9600-3709c736d6a2", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T07:05:32.8514995Z", "duration": "PT0.0008842S", "correlationId": + "0cb1f718-05b4-42c1-977f-611f2b791fca", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "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_1714007840/operationStatuses/08584875841396088684?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_1714028725/operationStatuses/08584875781544569611?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -2424,7 +2424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:47 GMT + - Thu, 25 Apr 2024 07:05:33 GMT expires: - '-1' pragma: @@ -2438,7 +2438,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: E96CE62D0D724F00B9F2BF9E12AFBC43 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:25:44Z' + - 'Ref A: 9347165FFD684BE19F065D95BE7AC611 Ref B: SN4AA2022303017 Ref C: 2024-04-25T07:05:29Z' status: code: 201 message: Created @@ -2457,9 +2457,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875841396088684?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/08584875781544569611?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2471,7 +2471,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:25:48 GMT + - Thu, 25 Apr 2024 07:05:33 GMT expires: - '-1' pragma: @@ -2483,7 +2483,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 873060DBEE7A4EC4BCAC970B904C70D8 Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:25:48Z' + - 'Ref A: FD97B391226A4B78802533B70BF1DC5F Ref B: SN4AA2022303017 Ref C: 2024-04-25T07:05:33Z' status: code: 200 message: OK @@ -2502,9 +2502,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875841396088684?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/08584875781544569611?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2516,7 +2516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:26:19 GMT + - Thu, 25 Apr 2024 07:06:04 GMT expires: - '-1' pragma: @@ -2528,7 +2528,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F8D19E0648964997B26769FA2F1C7FA3 Ref B: SN4AA2022302019 Ref C: 2024-04-25T05:26:19Z' + - 'Ref A: B212CE20E40C4532B73A3AC94EFAEA0E Ref B: DM2AA1091213047 Ref C: 2024-04-25T07:06:04Z' status: code: 200 message: OK @@ -2547,9 +2547,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875841396088684?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/08584875781544569611?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2561,7 +2561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:26:50 GMT + - Thu, 25 Apr 2024 07:06:35 GMT expires: - '-1' pragma: @@ -2573,7 +2573,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 883A1C37D49B4534A7982DBC61CF4B38 Ref B: SN4AA2022302021 Ref C: 2024-04-25T05:26:50Z' + - 'Ref A: ABD9A7F12B1F451F84FD45EC529C1088 Ref B: DM2AA1091214053 Ref C: 2024-04-25T07:06:35Z' status: code: 200 message: OK @@ -2592,9 +2592,9 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875841396088684?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/08584875781544569611?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -2606,7 +2606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:20 GMT + - Thu, 25 Apr 2024 07:07:06 GMT expires: - '-1' pragma: @@ -2618,7 +2618,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7C767609B24E402185158A9145E30A6A Ref B: DM2AA1091213017 Ref C: 2024-04-25T05:27:20Z' + - 'Ref A: DF364ABAFF3F4879AFA68F9655E9227C Ref B: DM2AA1091211035 Ref C: 2024-04-25T07:07:06Z' status: code: 200 message: OK @@ -2637,13 +2637,13 @@ interactions: - --build-output-folder --definition-type User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714007840", - "name": "AOSM_CLI_deployment_1714007840", "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_1714028725", + "name": "AOSM_CLI_deployment_1714028725", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2651,8 +2651,8 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2024-04-25T05:27:11.8900185Z", "duration": "PT1M24.2351614S", "correlationId": - "2c7e8086-50b5-4d97-9600-3709c736d6a2", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-25T07:06:56.4140411Z", "duration": "PT1M23.5634258S", "correlationId": + "0cb1f718-05b4-42c1-977f-611f2b791fca", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0"}]}}' @@ -2664,7 +2664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:21 GMT + - Thu, 25 Apr 2024 07:07:07 GMT expires: - '-1' pragma: @@ -2676,7 +2676,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 2D38FCAF3FF4400FAFF6606B35480962 Ref B: DM2AA1091214053 Ref C: 2024-04-25T05:27:21Z' + - 'Ref A: A1D54484CF754A46B5896C8126C2A1FB Ref B: DM2AA1091211051 Ref C: 2024-04-25T07:07:07Z' status: code: 200 message: OK @@ -2695,7 +2695,7 @@ interactions: - -f User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0?api-version=2023-09-01 response: @@ -2703,9 +2703,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0", "name": "1.0.0", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T05:25:49.7596406Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-25T07:05:36.044329Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2024-04-25T05:25:49.7596406Z"}, "properties": {"networkFunctionTemplate": + "2024-04-25T07:05:36.044329Z"}, "properties": {"networkFunctionTemplate": {"networkFunctionApplications": [{"artifactProfile": {"vhdArtifactProfile": {"vhdName": "automated-cli-tests-vhd", "vhdVersion": "1-0-0"}, "artifactStore": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store"}}, @@ -2725,13 +2725,13 @@ interactions: cache-control: - no-cache content-length: - - '2893' + - '2891' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:22 GMT + - Thu, 25 Apr 2024 07:07:07 GMT etag: - - '"f700162b-0000-1100-0000-6629e96d0000"' + - '"fb00417c-0000-1100-0000-662a00ce0000"' expires: - '-1' pragma: @@ -2745,7 +2745,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: 9411F8A301C843D681681B48389A4397 Ref B: DM2AA1091211023 Ref C: 2024-04-25T05:27:22Z' + - 'Ref A: 1CBAC0F2BAF648F4962DEF12A5AD93D4 Ref B: SN4AA2022304053 Ref C: 2024-04-25T07:07:08Z' status: code: 200 message: OK @@ -2764,7 +2764,7 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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: @@ -2776,7 +2776,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:27:22 GMT + - Thu, 25 Apr 2024 07:07:07 GMT expires: - '-1' pragma: @@ -2788,7 +2788,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DEC9FAAFFC4A4C69ACE1B2B10711327E Ref B: SN4AA2022304021 Ref C: 2024-04-25T05:27:22Z' + - 'Ref A: 021E4BAC5AE14762A284AEA1228D8394 Ref B: DM2AA1091211023 Ref C: 2024-04-25T07:07:08Z' status: code: 204 message: No Content @@ -2807,7 +2807,7 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher?api-version=2023-09-01 response: @@ -2815,9 +2815,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher", "name": "automated-cli-tests-ubuntu-publisher", "type": "microsoft.hybridnetwork/publishers", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T05:19:35.0840654Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-25T06:59:19.9678149Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2024-04-25T05:19:35.0840654Z"}, "properties": {"scope": "Private", "provisioningState": + "2024-04-25T06:59:19.9678149Z"}, "properties": {"scope": "Private", "provisioningState": "Succeeded"}}' headers: cache-control: @@ -2827,9 +2827,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:23 GMT + - Thu, 25 Apr 2024 07:07:08 GMT etag: - - '"f200fd3e-0000-1100-0000-6629e7f80000"' + - '"f700c53a-0000-1100-0000-6629ff580000"' expires: - '-1' pragma: @@ -2843,7 +2843,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: 968093613017411FABA8E8117A359BDA Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:27:23Z' + - 'Ref A: A19C7C4466AC49F98D09047097C0A330 Ref B: DM2AA1091213053 Ref C: 2024-04-25T07:07:09Z' status: code: 200 message: OK @@ -2862,7 +2862,7 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr?api-version=2023-09-01 response: @@ -2870,12 +2870,12 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr", "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T05:21:01.5372701Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-25T07:00:44.4981207Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "Application", "lastModifiedAt": - "2024-04-25T05:26:04.9704717Z"}, "properties": {"storeType": "AzureContainerRegistry", + "2024-04-25T07:05:49.7534576Z"}, "properties": {"storeType": "AzureContainerRegistry", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": - {"name": "ubuntu-acr-HostedResources-44A2AC18", "location": "uksouth"}, "provisioningState": - "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-44A2AC18/providers/Microsoft.ContainerRegistry/registries/AutomatedCliTestsUbuntuPublisherUbuntuAcf47b58e70d"}}' + {"name": "ubuntu-acr-HostedResources-3C66DA2D", "location": "uksouth"}, "provisioningState": + "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-3C66DA2D/providers/Microsoft.ContainerRegistry/registries/AutomatedCliTestsUbuntuPublisherUbuntuAc2cb2294f0a"}}' headers: cache-control: - no-cache @@ -2884,9 +2884,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:24 GMT + - Thu, 25 Apr 2024 07:07:09 GMT etag: - - '"0700098c-0000-1000-0000-6629e96d0000"' + - '"0700aaa5-0000-1000-0000-662a00cd0000"' expires: - '-1' pragma: @@ -2900,7 +2900,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: 96310DA1D4B84D74BCF1F5F36103F46A Ref B: DM2AA1091211011 Ref C: 2024-04-25T05:27:23Z' + - 'Ref A: 5A3C9C73DF3E4243A33943D0EC3399C8 Ref B: SN4AA2022302029 Ref C: 2024-04-25T07:07:09Z' status: code: 200 message: OK @@ -2919,7 +2919,7 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkServiceDesignGroups/ubuntu?api-version=2023-09-01 response: @@ -2935,7 +2935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:24 GMT + - Thu, 25 Apr 2024 07:07:10 GMT expires: - '-1' pragma: @@ -2949,7 +2949,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: BE56F60BDD2B427BA9BF345521D7B455 Ref B: DM2AA1091213045 Ref C: 2024-04-25T05:27:24Z' + - 'Ref A: 482F82890EFF4BCFB04F01B12DE4F38D Ref B: SN4AA2022302047 Ref C: 2024-04-25T07:07:10Z' status: code: 404 message: Not Found @@ -2992,20 +2992,20 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714007946", - "name": "AOSM_CLI_deployment_1714007946", "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_1714028831", + "name": "AOSM_CLI_deployment_1714028831", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "22c17508-b594-4710-824c-474f77ab7daf", "providers": [{"namespace": "Microsoft.HybridNetwork", + "66ee077a-3de1-420f-9509-a4454ec2570c", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -3030,7 +3030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:30 GMT + - Thu, 25 Apr 2024 07:07:15 GMT expires: - '-1' pragma: @@ -3044,7 +3044,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: AB0FCB20522B409FBAAC79E9300F0696 Ref B: SN4AA2022302009 Ref C: 2024-04-25T05:27:28Z' + - 'Ref A: B7CDB0AA834F4792AE39455FC2888EA9 Ref B: SN4AA2022305051 Ref C: 2024-04-25T07:07:13Z' status: code: 200 message: OK @@ -3087,20 +3087,20 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714007946", - "name": "AOSM_CLI_deployment_1714007946", "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_1714028831", + "name": "AOSM_CLI_deployment_1714028831", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-25T05:27:35.0499289Z", "duration": "PT0.0009884S", "correlationId": - "8c91c0de-c4c9-4b49-9510-db3701a39b71", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-25T07:07:20.2630297Z", "duration": "PT0.005192S", "correlationId": + "d6fcd613-d0eb-4920-b661-9d541555b289", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -3116,15 +3116,15 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu"}]}}' 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_1714007946/operationStatuses/08584875840323775856?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_1714028831/operationStatuses/08584875780473530896?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2412' + - '2411' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:35 GMT + - Thu, 25 Apr 2024 07:07:20 GMT expires: - '-1' pragma: @@ -3138,7 +3138,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 054B653AE23449E0BB2BEEDF706BFD4E Ref B: SN4AA2022305051 Ref C: 2024-04-25T05:27:31Z' + - 'Ref A: B842BDD69FED4F6285CB2DA0E2805C3D Ref B: DM2AA1091212021 Ref C: 2024-04-25T07:07:15Z' status: code: 201 message: Created @@ -3157,9 +3157,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3171,7 +3171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:27:36 GMT + - Thu, 25 Apr 2024 07:07:21 GMT expires: - '-1' pragma: @@ -3183,7 +3183,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A7FAB415581748E79257523269E75074 Ref B: DM2AA1091211031 Ref C: 2024-04-25T05:27:36Z' + - 'Ref A: F6BF5E380A9540E489E1780E8643213C Ref B: DM2AA1091212021 Ref C: 2024-04-25T07:07:21Z' status: code: 200 message: OK @@ -3202,9 +3202,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3216,7 +3216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:28:07 GMT + - Thu, 25 Apr 2024 07:07:51 GMT expires: - '-1' pragma: @@ -3228,7 +3228,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8D79286A4E6C4600AEDEF2EC5D24A2C9 Ref B: DM2AA1091211035 Ref C: 2024-04-25T05:28:07Z' + - 'Ref A: FE078DC007F049289B43F77C03D7B27A Ref B: DM2AA1091213051 Ref C: 2024-04-25T07:07:52Z' status: code: 200 message: OK @@ -3247,9 +3247,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3261,7 +3261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:28:38 GMT + - Thu, 25 Apr 2024 07:08:22 GMT expires: - '-1' pragma: @@ -3273,7 +3273,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 2FBD3C7358B14F54A63B0CAC2384245C Ref B: SN4AA2022304039 Ref C: 2024-04-25T05:28:38Z' + - 'Ref A: BFF4C9D4A0164E258109001FEC579944 Ref B: SN4AA2022305027 Ref C: 2024-04-25T07:08:22Z' status: code: 200 message: OK @@ -3292,9 +3292,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3306,7 +3306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:29:09 GMT + - Thu, 25 Apr 2024 07:08:53 GMT expires: - '-1' pragma: @@ -3318,7 +3318,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D12EDE2D8710488D833A825311B5AC53 Ref B: DM2AA1091213021 Ref C: 2024-04-25T05:29:08Z' + - 'Ref A: F37B08129FEA4745991B738D82E8B910 Ref B: SN4AA2022304033 Ref C: 2024-04-25T07:08:53Z' status: code: 200 message: OK @@ -3337,9 +3337,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3351,7 +3351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:29:39 GMT + - Thu, 25 Apr 2024 07:09:24 GMT expires: - '-1' pragma: @@ -3363,7 +3363,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1D54336FC85B4A718D24BA2343A71D2F Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:29:39Z' + - 'Ref A: 01461FE7D02C48BE80F6AA5F5967D9DA Ref B: DM2AA1091211031 Ref C: 2024-04-25T07:09:24Z' status: code: 200 message: OK @@ -3382,9 +3382,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3396,7 +3396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:30:10 GMT + - Thu, 25 Apr 2024 07:09:55 GMT expires: - '-1' pragma: @@ -3408,7 +3408,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: EF571EBC75DE40C19935ADCD38AA0DD5 Ref B: SN4AA2022305017 Ref C: 2024-04-25T05:30:10Z' + - 'Ref A: 753EA290A7894D0DA025BDBF7B97F3FE Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:09:55Z' status: code: 200 message: OK @@ -3427,9 +3427,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3441,7 +3441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:30:41 GMT + - Thu, 25 Apr 2024 07:10:26 GMT expires: - '-1' pragma: @@ -3453,7 +3453,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: ECAF3244451F42AA878E855144675570 Ref B: SN4AA2022302051 Ref C: 2024-04-25T05:30:41Z' + - 'Ref A: 2C0A04CF70C8483E83367C4307228DC6 Ref B: DM2AA1091213031 Ref C: 2024-04-25T07:10:26Z' status: code: 200 message: OK @@ -3472,9 +3472,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3486,7 +3486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:12 GMT + - Thu, 25 Apr 2024 07:10:56 GMT expires: - '-1' pragma: @@ -3498,7 +3498,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A295CCE0A36547DEBF0FE90AB0EF922B Ref B: SN4AA2022304025 Ref C: 2024-04-25T05:31:12Z' + - 'Ref A: E37CAE94210B401BBA8C4B109AB32D74 Ref B: SN4AA2022302049 Ref C: 2024-04-25T07:10:57Z' status: code: 200 message: OK @@ -3517,9 +3517,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875840323775856?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/08584875780473530896?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3531,7 +3531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:42 GMT + - Thu, 25 Apr 2024 07:11:28 GMT expires: - '-1' pragma: @@ -3543,7 +3543,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 5E1C1D730ADA4069B2C09D1A4B7F640C Ref B: DM2AA1091214053 Ref C: 2024-04-25T05:31:43Z' + - 'Ref A: C14D62CB8AF14D9884FC2863BB612313 Ref B: DM2AA1091211051 Ref C: 2024-04-25T07:11:27Z' status: code: 200 message: OK @@ -3562,20 +3562,20 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714007946", - "name": "AOSM_CLI_deployment_1714007946", "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_1714028831", + "name": "AOSM_CLI_deployment_1714028831", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-25T05:31:21.7861649Z", "duration": "PT3M46.7372244S", - "correlationId": "8c91c0de-c4c9-4b49-9510-db3701a39b71", "providers": [{"namespace": + "timestamp": "2024-04-25T07:11:08.8137339Z", "duration": "PT3M48.5558962S", + "correlationId": "d6fcd613-d0eb-4920-b661-9d541555b289", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": @@ -3600,7 +3600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:43 GMT + - Thu, 25 Apr 2024 07:11:28 GMT expires: - '-1' pragma: @@ -3612,7 +3612,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1C26DC5A7E5E421E9C656908367E6DD3 Ref B: DM2AA1091213019 Ref C: 2024-04-25T05:31:43Z' + - 'Ref A: 26140364CB764C60A86CB339613B7805 Ref B: DM2AA1091214011 Ref C: 2024-04-25T07:11:28Z' status: code: 200 message: OK @@ -3631,7 +3631,7 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0?api-version=2023-09-01 response: @@ -3647,7 +3647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:44 GMT + - Thu, 25 Apr 2024 07:11:29 GMT expires: - '-1' pragma: @@ -3661,7 +3661,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 95057F4B74664172946E61EEB1553DBD Ref B: DM2AA1091212027 Ref C: 2024-04-25T05:31:44Z' + - 'Ref A: A4480317D2D240B3AF8211388214C0D1 Ref B: DM2AA1091212027 Ref C: 2024-04-25T07:11:29Z' status: code: 404 message: Not Found @@ -3699,20 +3699,20 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714008205", - "name": "AOSM_CLI_deployment_1714008205", "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_1714029091", + "name": "AOSM_CLI_deployment_1714029091", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "67a55a07-39f7-44d5-a1ba-e44062b33f7f", "providers": [{"namespace": "Microsoft.HybridNetwork", + "810201d2-df3e-4330-a608-911f259b54d3", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -3724,7 +3724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:49 GMT + - Thu, 25 Apr 2024 07:11:35 GMT expires: - '-1' pragma: @@ -3738,7 +3738,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0C538B9517BF41348B3DCC8BDFED9CA5 Ref B: SN4AA2022305045 Ref C: 2024-04-25T05:31:47Z' + - 'Ref A: 117F982E82FE4CAF9EF0FDE564EC549C Ref B: DM2AA1091214019 Ref C: 2024-04-25T07:11:33Z' status: code: 200 message: OK @@ -3776,25 +3776,25 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714008205", - "name": "AOSM_CLI_deployment_1714008205", "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_1714029091", + "name": "AOSM_CLI_deployment_1714029091", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-25T05:31:53.0701729Z", "duration": "PT0.0006037S", - "correlationId": "04cf01de-cb19-4f9b-81f8-e9745785b068", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-25T07:11:39.7436449Z", "duration": "PT0.0002067S", + "correlationId": "b9bd9891-c1f4-45d1-baa8-f31fa3e66823", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1714008205/operationStatuses/08584875837741694758?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_1714029091/operationStatuses/08584875777874917392?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -3802,7 +3802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:53 GMT + - Thu, 25 Apr 2024 07:11:39 GMT expires: - '-1' pragma: @@ -3816,7 +3816,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 575A85AC17F3468DB989B0525C128F2F Ref B: DM2AA1091212039 Ref C: 2024-04-25T05:31:49Z' + - 'Ref A: 20737CAACF6F47F9A0353C09AAB5CFC5 Ref B: SN4AA2022304025 Ref C: 2024-04-25T07:11:36Z' status: code: 201 message: Created @@ -3835,9 +3835,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875837741694758?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/08584875777874917392?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3849,7 +3849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:31:54 GMT + - Thu, 25 Apr 2024 07:11:40 GMT expires: - '-1' pragma: @@ -3861,7 +3861,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4D1A3DEC23044CD8AE010EE4F2055915 Ref B: SN4AA2022302025 Ref C: 2024-04-25T05:31:54Z' + - 'Ref A: B727475D526D4976A0839918174ACF04 Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:11:40Z' status: code: 200 message: OK @@ -3880,9 +3880,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875837741694758?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/08584875777874917392?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3894,7 +3894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:32:24 GMT + - Thu, 25 Apr 2024 07:12:11 GMT expires: - '-1' pragma: @@ -3906,7 +3906,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: BFFC326C01A24AD4B816341408792777 Ref B: DM2AA1091211053 Ref C: 2024-04-25T05:32:24Z' + - 'Ref A: D89EAFA62EBF497E827FA5AD6460F99A Ref B: DM2AA1091212019 Ref C: 2024-04-25T07:12:11Z' status: code: 200 message: OK @@ -3925,9 +3925,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875837741694758?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/08584875777874917392?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3939,7 +3939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:32:55 GMT + - Thu, 25 Apr 2024 07:12:42 GMT expires: - '-1' pragma: @@ -3951,7 +3951,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 545CF6F87A2B4E5D94F5A55AA421062C Ref B: DM2AA1091211051 Ref C: 2024-04-25T05:32:55Z' + - 'Ref A: 3AC245C2B7AF4DFAA358C1D24FBD49E4 Ref B: DM2AA1091213037 Ref C: 2024-04-25T07:12:42Z' status: code: 200 message: OK @@ -3970,9 +3970,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875837741694758?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/08584875777874917392?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3984,7 +3984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:26 GMT + - Thu, 25 Apr 2024 07:13:13 GMT expires: - '-1' pragma: @@ -3996,7 +3996,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 021252804A72433F9D70056CF2E1B5D5 Ref B: DM2AA1091213021 Ref C: 2024-04-25T05:33:26Z' + - 'Ref A: 451AEC05A83E42E0968A1C66AD61B5C2 Ref B: SN4AA2022302019 Ref C: 2024-04-25T07:13:13Z' status: code: 200 message: OK @@ -4015,20 +4015,20 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714008205", - "name": "AOSM_CLI_deployment_1714008205", "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_1714029091", + "name": "AOSM_CLI_deployment_1714029091", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-25T05:33:23.9495753Z", "duration": "PT1M30.8800061S", - "correlationId": "04cf01de-cb19-4f9b-81f8-e9745785b068", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-25T07:13:05.7307437Z", "duration": "PT1M25.9873055S", + "correlationId": "b9bd9891-c1f4-45d1-baa8-f31fa3e66823", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -4040,7 +4040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:27 GMT + - Thu, 25 Apr 2024 07:13:13 GMT expires: - '-1' pragma: @@ -4052,7 +4052,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 11398B21477E4835946F8F3350A29A8C Ref B: SN4AA2022303025 Ref C: 2024-04-25T05:33:27Z' + - 'Ref A: 7409EB1927254120A01663E95D2895C1 Ref B: SN4AA2022304031 Ref C: 2024-04-25T07:13:14Z' status: code: 200 message: OK @@ -4073,14 +4073,14 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: string: '{"username": "ubuntu-nsd-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io", - "repositories": ["ubuntu"], "expiry": "2024-04-26T05:33:32.6612115+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io", + "repositories": ["ubuntu"], "expiry": "2024-04-26T07:13:19.2627546+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -4090,7 +4090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:32 GMT + - Thu, 25 Apr 2024 07:13:19 GMT expires: - '-1' pragma: @@ -4108,7 +4108,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 3995F9EA150A455694237E35DBF27094 Ref B: SN4AA2022305011 Ref C: 2024-04-25T05:33:30Z' + - 'Ref A: 4BF4E14C9AE245C7A4C0D3EE4907D270 Ref B: SN4AA2022305027 Ref C: 2024-04-25T07:13:17Z' status: code: 200 message: OK @@ -4128,7 +4128,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4148,7 +4148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:33 GMT + - Thu, 25 Apr 2024 07:13:20 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4157,7 +4157,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -4173,11 +4173,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4187,7 +4187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:34 GMT + - Thu, 25 Apr 2024 07:13:20 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4215,7 +4215,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -4230,13 +4230,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:33:34 GMT + - Thu, 25 Apr 2024 07:13:21 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 78273909-84ee-4588-94fe-376e79f7fdfe + - 5bd79d66-6697-49a0-bcf1-1b1fa92a1a61 location: - - /v2/ubuntu/blobs/uploads/78273909-84ee-4588-94fe-376e79f7fdfe?_nouploadcache=false&_state=1rDUVTG8bNRp1NWa8OINKl6P6dZ9XBe0oW-Kl8xF5mh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzgyNzM5MDktODRlZS00NTg4LTk0ZmUtMzc2ZTc5ZjdmZGZlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjM0Ljc5NjE0OTA4NloifQ%3D%3D + - /v2/ubuntu/blobs/uploads/5bd79d66-6697-49a0-bcf1-1b1fa92a1a61?_nouploadcache=false&_state=0Hsj4hhj6Lr0z55niV93PvFQlgz6rhdVUBXvW9vZf2h7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWJkNzlkNjYtNjY5Ny00OWEwLWJjZjEtMWIxZmE5MmExYTYxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIxLjI3MzQyNDM0MloifQ%3D%3D range: - 0-0 server: @@ -4286,7 +4286,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/78273909-84ee-4588-94fe-376e79f7fdfe?_nouploadcache=false&_state=1rDUVTG8bNRp1NWa8OINKl6P6dZ9XBe0oW-Kl8xF5mh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzgyNzM5MDktODRlZS00NTg4LTk0ZmUtMzc2ZTc5ZjdmZGZlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjM0Ljc5NjE0OTA4NloifQ%3D%3D&digest=sha256%3A5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/5bd79d66-6697-49a0-bcf1-1b1fa92a1a61?_nouploadcache=false&_state=0Hsj4hhj6Lr0z55niV93PvFQlgz6rhdVUBXvW9vZf2h7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWJkNzlkNjYtNjY5Ny00OWEwLWJjZjEtMWIxZmE5MmExYTYxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIxLjI3MzQyNDM0MloifQ%3D%3D&digest=sha256%3A5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 response: body: string: '' @@ -4301,7 +4301,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:33:40 GMT + - Thu, 25 Apr 2024 07:13:21 GMT docker-content-digest: - sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 docker-distribution-api-version: @@ -4334,7 +4334,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4354,7 +4354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:41 GMT + - Thu, 25 Apr 2024 07:13:22 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4363,7 +4363,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:push,pull" x-content-type-options: - nosniff status: @@ -4379,11 +4379,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apush%2Cpull response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4393,7 +4393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:41 GMT + - Thu, 25 Apr 2024 07:13:22 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4421,7 +4421,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -4436,13 +4436,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:33:42 GMT + - Thu, 25 Apr 2024 07:13:23 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 74997a2b-1a68-4bab-b837-4869f52ea681 + - 5d628ee0-2730-4b52-8cb3-8ad363b1537e location: - - /v2/ubuntu/blobs/uploads/74997a2b-1a68-4bab-b837-4869f52ea681?_nouploadcache=false&_state=rQ8YgrNCsHsD1h72O9HO5Yi-wUP0jeN8qAK0dvhn4At7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzQ5OTdhMmItMWE2OC00YmFiLWI4MzctNDg2OWY1MmVhNjgxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjQyLjAwNTg2NDc4N1oifQ%3D%3D + - /v2/ubuntu/blobs/uploads/5d628ee0-2730-4b52-8cb3-8ad363b1537e?_nouploadcache=false&_state=W29Rfq4k52ZPY71_dAqLabIwvn-bNhyRAxIPGuDfQYx7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWQ2MjhlZTAtMjczMC00YjUyLThjYjMtOGFkMzYzYjE1MzdlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIzLjQ0OTMyOTA3M1oifQ%3D%3D range: - 0-0 server: @@ -4471,7 +4471,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/blobs/uploads/74997a2b-1a68-4bab-b837-4869f52ea681?_nouploadcache=false&_state=rQ8YgrNCsHsD1h72O9HO5Yi-wUP0jeN8qAK0dvhn4At7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNzQ5OTdhMmItMWE2OC00YmFiLWI4MzctNDg2OWY1MmVhNjgxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA1OjMzOjQyLjAwNTg2NDc4N1oifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/5d628ee0-2730-4b52-8cb3-8ad363b1537e?_nouploadcache=false&_state=W29Rfq4k52ZPY71_dAqLabIwvn-bNhyRAxIPGuDfQYx7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWQ2MjhlZTAtMjczMC00YjUyLThjYjMtOGFkMzYzYjE1MzdlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIzLjQ0OTMyOTA3M1oifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -4486,7 +4486,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:33:42 GMT + - Thu, 25 Apr 2024 07:13:24 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -4525,7 +4525,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4545,7 +4545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:43 GMT + - Thu, 25 Apr 2024 07:13:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4554,7 +4554,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -4570,11 +4570,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io + - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4584,7 +4584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:43 GMT + - Thu, 25 Apr 2024 07:13:25 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4592,7 +4592,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.316667' + - '333.3' status: code: 200 message: OK @@ -4618,7 +4618,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuacf47b58e70d.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '' @@ -4633,7 +4633,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 05:33:44 GMT + - Thu, 25 Apr 2024 07:13:26 GMT docker-content-digest: - sha256:af1388b6ce985243feeb696d1140b41318b4032856531d64cd1929e7e9131ffd docker-distribution-api-version: @@ -4653,7 +4653,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.170.59819", "templateHash": "14714070778274661333"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "17477381229800961119"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4715,21 +4715,21 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: POST 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_1714008325", - "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14714070778274661333", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714029207", + "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "17477381229800961119", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "0001-01-01T00:00:00Z", "duration": - "PT0S", "correlationId": "dd7366c4-d29c-4c28-9c69-537a00ed5d18", "providers": + "PT0S", "correlationId": "cf6b1f78-ea49-4738-8626-5e8afbdd2aee", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4749,7 +4749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:50 GMT + - Thu, 25 Apr 2024 07:13:30 GMT expires: - '-1' pragma: @@ -4763,14 +4763,14 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B5928AE0B9194B3EA30875BDBC0AB140 Ref B: SN4AA2022303017 Ref C: 2024-04-25T05:33:47Z' + - 'Ref A: FD73DA99F09D4C9498478CBD3358C1E4 Ref B: DM2AA1091211035 Ref C: 2024-04-25T07:13:28Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.170.59819", "templateHash": "14714070778274661333"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "17477381229800961119"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4832,21 +4832,21 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: PUT 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_1714008325", - "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14714070778274661333", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714029207", + "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "17477381229800961119", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-25T05:33:54.2640356Z", - "duration": "PT0.0004873S", "correlationId": "a210ff72-0b91-42be-be8b-ce0debabe19a", + "provisioningState": "Accepted", "timestamp": "2024-04-25T07:13:35.1470111Z", + "duration": "PT0.0003838S", "correlationId": "f62f7ed8-381d-458c-bf5e-6c131f3ff32b", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4858,7 +4858,7 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/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_1714008325/operationStatuses/08584875836530516423?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_1714029207/operationStatuses/08584875776725085321?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -4866,7 +4866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:54 GMT + - Thu, 25 Apr 2024 07:13:35 GMT expires: - '-1' pragma: @@ -4880,7 +4880,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: A21AAA811A5445BD8E42AACFD600DBC1 Ref B: SN4AA2022304009 Ref C: 2024-04-25T05:33:50Z' + - 'Ref A: 26CED4D9B3704974B3181B63E55B8BB4 Ref B: SN4AA2022302037 Ref C: 2024-04-25T07:13:31Z' status: code: 201 message: Created @@ -4899,21 +4899,21 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875836530516423?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/08584875776725085321?api-version=2022-09-01 response: body: - string: '{"status": "Running"}' + string: '{"status": "Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:33:55 GMT + - Thu, 25 Apr 2024 07:13:36 GMT expires: - '-1' pragma: @@ -4925,7 +4925,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: CA5B745277D1408F88564DE2E0CFF846 Ref B: SN4AA2022304031 Ref C: 2024-04-25T05:33:55Z' + - 'Ref A: D7B40411746E46578406C5673178D495 Ref B: DM2AA1091211031 Ref C: 2024-04-25T07:13:36Z' status: code: 200 message: OK @@ -4944,9 +4944,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875836530516423?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/08584875776725085321?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -4958,7 +4958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:34:26 GMT + - Thu, 25 Apr 2024 07:14:06 GMT expires: - '-1' pragma: @@ -4970,7 +4970,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3121DCE335DB4018B92207C4A475BFDE Ref B: DM2AA1091212031 Ref C: 2024-04-25T05:34:26Z' + - 'Ref A: 70601460CE3048E8929C6C188702DEDD Ref B: SN4AA2022304027 Ref C: 2024-04-25T07:14:06Z' status: code: 200 message: OK @@ -4989,9 +4989,9 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875836530516423?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/08584875776725085321?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -5003,7 +5003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:34:57 GMT + - Thu, 25 Apr 2024 07:14:37 GMT expires: - '-1' pragma: @@ -5015,7 +5015,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6FFCC7B7D6FC4F0C98A35A438F315D78 Ref B: DM2AA1091213051 Ref C: 2024-04-25T05:34:57Z' + - 'Ref A: 71ED59C06A4E43DB967E16EC5B4B6082 Ref B: SN4AA2022303031 Ref C: 2024-04-25T07:14:37Z' status: code: 200 message: OK @@ -5034,21 +5034,21 @@ interactions: - --build-output-folder User-Agent: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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?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_1714008325", - "name": "AOSM_CLI_deployment_1714008325", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "14714070778274661333", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714029207", + "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "17477381229800961119", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-25T05:34:44.2475249Z", - "duration": "PT49.9839766S", "correlationId": "a210ff72-0b91-42be-be8b-ce0debabe19a", + "provisioningState": "Succeeded", "timestamp": "2024-04-25T07:14:28.2323566Z", + "duration": "PT53.0857293S", "correlationId": "f62f7ed8-381d-458c-bf5e-6c131f3ff32b", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -5068,7 +5068,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 05:34:58 GMT + - Thu, 25 Apr 2024 07:14:37 GMT expires: - '-1' pragma: @@ -5080,7 +5080,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F4681776477E4EB3AABC8288B1A88B90 Ref B: DM2AA1091211023 Ref C: 2024-04-25T05:34:58Z' + - 'Ref A: B2C52376C30F425A92B9BBA876FD9F2B Ref B: DM2AA1091214049 Ref C: 2024-04-25T07:14:38Z' status: code: 200 message: OK From 7fa4fb2c76e1dcb2942e426957f48eb3863440c5 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 00:35:04 -0700 Subject: [PATCH 09/17] Fixing style errors --- src/aosm/azext_aosm/common/constants.py | 2 -- .../reader/bicep_definition.py | 24 ++++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/aosm/azext_aosm/common/constants.py b/src/aosm/azext_aosm/common/constants.py index 5f299068a6a..d5d86b568ca 100644 --- a/src/aosm/azext_aosm/common/constants.py +++ b/src/aosm/azext_aosm/common/constants.py @@ -39,8 +39,6 @@ class ManifestsExist(str, Enum): NONE = "none" SOME = "some" -class BaseResourcesExist: - BASE_RESOURCES_EXIST = False CNF_TYPE = "ContainerizedNetworkFunction" VNF_TYPE = "VirtualNetworkFunction" diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 61d566cf173..874f01540bb 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -15,13 +15,17 @@ from knack.log import get_logger from azext_aosm.common.command_context import CommandContext from azext_aosm.common.utils import convert_bicep_to_arm -from azext_aosm.configuration_models.common_parameters_config import \ - BaseCommonParametersConfig, CoreVNFCommonParametersConfig, NFDCommonParametersConfig, NexusVNFCommonParametersConfig, NSDCommonParametersConfig +from azext_aosm.configuration_models.common_parameters_config import ( + BaseCommonParametersConfig, + CoreVNFCommonParametersConfig, + NFDCommonParametersConfig, + NSDCommonParametersConfig +) from azext_aosm.definition_folder.reader.base_definition import \ BaseDefinitionElement from azext_aosm.common.constants import ( ManifestsExist, - BaseResourcesExist,) +) logger = get_logger(__name__) @@ -158,7 +162,7 @@ def _artifact_manifests_exist( @staticmethod def _base_Resources_exist( config: BaseCommonParametersConfig, command_context: CommandContext - ) -> BaseResourcesExist: + ) -> bool: """ Returns True if all required manifests exist, False if none do, and raises an @@ -167,7 +171,6 @@ def _base_Resources_exist( Current code only allows one manifest for ACR, and one manifest for SA (if applicable), so that's all we check for. """ - base_resources_exist = BaseResourcesExist.BASE_RESOURCES_EXIST try: command_context.aosm_client.publishers.get( resource_group_name=config.publisherResourceGroupName, @@ -186,7 +189,7 @@ def _base_Resources_exist( base_resources_exist = True except azure_exceptions.ResourceNotFoundError: base_resources_exist = False - + if isinstance(config, NFDCommonParametersConfig): try: command_context.aosm_client.network_function_definition_groups.get( @@ -197,7 +200,7 @@ def _base_Resources_exist( base_resources_exist = True except azure_exceptions.ResourceNotFoundError: base_resources_exist = False - + if isinstance(config, CoreVNFCommonParametersConfig): try: command_context.aosm_client.artifact_stores.get( @@ -208,7 +211,7 @@ def _base_Resources_exist( base_resources_exist = True except azure_exceptions.ResourceNotFoundError: base_resources_exist = False - + if isinstance(config, NSDCommonParametersConfig): try: command_context.aosm_client.network_service_design_groups.get( @@ -220,8 +223,7 @@ def _base_Resources_exist( except azure_exceptions.ResourceNotFoundError: base_resources_exist = False - BaseResourcesExist.BASE_RESOURCES_EXIST = base_resources_exist - return BaseResourcesExist + return base_resources_exist def deploy( self, config: BaseCommonParametersConfig, command_context: CommandContext @@ -242,7 +244,7 @@ def deploy( base_resources_exist = self._base_Resources_exist( config=config, command_context=command_context ) - if base_resources_exist.BASE_RESOURCES_EXIST: + if base_resources_exist: logger.info("Base resources already exist; skipping deployment.") return From 97907d42cf41af7155dea9d44d173028130e1a99 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 01:43:37 -0700 Subject: [PATCH 10/17] Correcting typo --- .../azext_aosm/definition_folder/reader/bicep_definition.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 874f01540bb..6726759b24a 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -165,8 +165,7 @@ def _base_Resources_exist( ) -> bool: """ - Returns True if all required manifests exist, False if none do, and raises an - AzCLIError if some but not all exist. + Returns True if all base resources exist, False if even one does not. Current code only allows one manifest for ACR, and one manifest for SA (if applicable), so that's all we check for. From 4b73a34a0b6c5025757d092136b32ed1a7e5cdca Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 01:46:34 -0700 Subject: [PATCH 11/17] Addressing comments --- .../azext_aosm/definition_folder/reader/bicep_definition.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 6726759b24a..214db2c80e9 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -160,7 +160,7 @@ def _artifact_manifests_exist( return ManifestsExist.NONE @staticmethod - def _base_Resources_exist( + def _base_resources_exist( config: BaseCommonParametersConfig, command_context: CommandContext ) -> bool: """ @@ -240,7 +240,7 @@ def deploy( # breaking this into a separate class (like we do for artifacts) is probably the right # thing to do. if self.path.name == "base": - base_resources_exist = self._base_Resources_exist( + base_resources_exist = self._base_resources_exist( config=config, command_context=command_context ) if base_resources_exist: From 2fc7f925596cf401d1d30c7ae86825f34ab58232 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 02:28:24 -0700 Subject: [PATCH 12/17] Updating the history with the update --- src/aosm/HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index 2741f715480..9b047f409b7 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -35,6 +35,7 @@ Release History * Added validation of the values file for helm charts when using the `az aosm nfd build` command for the `cnf` definition type * Fixed helm chart image parsing in the `az aosm nfd build` command for the `cnf` definition type. This means that the images can now be extracted correctly from the helm chart. * Fixed: infinite loop bug when retrying failed artifact uploads to the ACR +* Added a check to determine if all base resources are already deployed. If they all are, the deployment of base bicep is skipped. 1.0.0b4 ++++++++ From 0aa95d08e150d7b2273a993e77bedb96082e5afe Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 02:55:34 -0700 Subject: [PATCH 13/17] Addressing comments --- .../azext_aosm/definition_folder/reader/bicep_definition.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index 214db2c80e9..e396173487a 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -229,12 +229,6 @@ def deploy( ): """Deploy the element.""" # TODO: Deploying base takes about 4 minutes, even if everything is already deployed. - # We should have a check to see if it's already deployed and skip it if so. - # The following can be used to speed up testing by skipping base deploy: TODO: remove this - # if self.path.name == "base": - # print("Temporarily skip base for debugging") - # return - # artifact manifests return an error if it already exists, so they need special handling. # Currently, _only_ manifests are special, but if we need to add any more custom code, # breaking this into a separate class (like we do for artifacts) is probably the right From 97c9633dcd0c330ecb1ab160169ba2d49bb2c72b Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Thu, 25 Apr 2024 03:55:39 -0700 Subject: [PATCH 14/17] Addressing comments --- .../reader/bicep_definition.py | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index e396173487a..e7aa3022950 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -175,9 +175,8 @@ def _base_resources_exist( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, ) - base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - base_resources_exist = False + return False try: command_context.aosm_client.artifact_stores.get( @@ -185,9 +184,8 @@ def _base_resources_exist( publisher_name=config.publisherName, artifact_store_name=config.acrArtifactStoreName, ) - base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - base_resources_exist = False + return False if isinstance(config, NFDCommonParametersConfig): try: @@ -196,9 +194,8 @@ def _base_resources_exist( publisher_name=config.publisherName, network_function_definition_group_name=config.nfDefinitionGroup, ) - base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - base_resources_exist = False + return False if isinstance(config, CoreVNFCommonParametersConfig): try: @@ -207,9 +204,8 @@ def _base_resources_exist( publisher_name=config.publisherName, artifact_store_name=config.saArtifactStoreName, ) - base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - base_resources_exist = False + return False if isinstance(config, NSDCommonParametersConfig): try: @@ -218,11 +214,10 @@ def _base_resources_exist( publisher_name=config.publisherName, network_service_design_group_name=config.nsDesignGroup, ) - base_resources_exist = True except azure_exceptions.ResourceNotFoundError: - base_resources_exist = False + return False - return base_resources_exist + return True def deploy( self, config: BaseCommonParametersConfig, command_context: CommandContext From c0888d283a48d18f93396832a50cb4cc7d04b466 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Tue, 30 Apr 2024 05:18:26 -0700 Subject: [PATCH 15/17] Adding test cases for changes --- src/aosm/azext_aosm/custom.py | 6 +- .../reader/bicep_definition.py | 4 +- .../test_cnf_nfd_build_and_publish.yaml | 340 +++---- .../test_vnf_nsd_build_and_publish.yaml | 843 ++++++++---------- .../test_bicep_definition.py | 106 +++ 5 files changed, 580 insertions(+), 719 deletions(-) create mode 100644 src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py diff --git a/src/aosm/azext_aosm/custom.py b/src/aosm/azext_aosm/custom.py index 17d89aef878..34f2bf3e31e 100644 --- a/src/aosm/azext_aosm/custom.py +++ b/src/aosm/azext_aosm/custom.py @@ -31,7 +31,7 @@ def onboard_nfd_generate_config(definition_type: str, output_file: str | None): handler = OnboardingNexusVNFCLIHandler() else: raise UnrecognizedArgumentError( - "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnfnexus'") + "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnf-nexus'") handler.generate_config(output_file) @@ -49,7 +49,7 @@ def onboard_nfd_build( handler = OnboardingNexusVNFCLIHandler(config_file_path=Path(config_file)) else: raise UnrecognizedArgumentError( - "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnfnexus'") + "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnf-nexus'") handler.build() @@ -80,7 +80,7 @@ def onboard_nfd_publish( all_deploy_params_file_path=Path(build_output_folder, ALL_PARAMETERS_FILE_NAME)) else: raise UnrecognizedArgumentError( - "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnfnexus'") + "Invalid definition type, valid values are 'cnf', 'vnf' or 'vnf-nexus'") handler.publish(command_context=command_context) diff --git a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py index e7aa3022950..1f483457fe8 100644 --- a/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py +++ b/src/aosm/azext_aosm/definition_folder/reader/bicep_definition.py @@ -199,10 +199,10 @@ def _base_resources_exist( if isinstance(config, CoreVNFCommonParametersConfig): try: - command_context.aosm_client.artifact_stores.get( + command_context.aosm_client.storage_accounts.get( resource_group_name=config.publisherResourceGroupName, publisher_name=config.publisherName, - artifact_store_name=config.saArtifactStoreName, + storgae_account_name=config.saArtifactStoreName, ) except azure_exceptions.ResourceNotFoundError: return False diff --git a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml index b30cfd8c6d8..5862ceba25b 100644 --- a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml +++ b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_cnf_nfd_build_and_publish.yaml @@ -26,7 +26,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 06:48:47 GMT + - Tue, 30 Apr 2024 10:33:22 GMT expires: - '-1' pragma: @@ -38,7 +38,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8EAC4C80BA924B9894B247FDDFF9FF53 Ref B: SN4AA2022302029 Ref C: 2024-04-25T06:48:48Z' + - 'Ref A: D28638F68F3F43E2BFC00BA57AECB72F Ref B: CO6AA3150220029 Ref C: 2024-04-30T10:33:22Z' status: code: 204 message: No Content @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:48:48 GMT + - Tue, 30 Apr 2024 10:33:22 GMT expires: - '-1' pragma: @@ -87,105 +87,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: ABEE1D2D6CF7472A83CC0F5961B73D11 Ref B: DM2AA1091213051 Ref C: 2024-04-25T06:48:48Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aosm nfd publish - Connection: - - keep-alive - ParameterSetName: - - -b --definition-type - User-Agent: - - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr?api-version=2023-09-01 - response: - body: - string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr'' - under resource group ''cli_test_cnf_nfd_000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Apr 2024 06:48:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: EB82E16275E14DD7AFD01F14C1694EDE Ref B: DM2AA1091211023 Ref C: 2024-04-25T06:48:49Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aosm nfd publish - Connection: - - keep-alive - ParameterSetName: - - -b --definition-type - User-Agent: - - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/networkFunctionDefinitionGroups/nginx?api-version=2023-09-01 - response: - body: - string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/networkFunctionDefinitionGroups/nginx'' - under resource group ''cli_test_cnf_nfd_000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '307' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Apr 2024 06:48:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: CA5627AF8BCB46E7BC2847D166BD3A2F Ref B: DM2AA1091212009 Ref C: 2024-04-25T06:48:49Z' + - 'Ref A: EC0636FFAB1F410E9E78655787223217 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:33:22Z' status: code: 404 message: Not Found @@ -233,14 +135,14 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", - "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473205", + "name": "AOSM_CLI_deployment_1714473205", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "2e8ff158-9ac4-4364-83c4-f22191cf87e4", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "28df1bdb-0625-40d6-9040-6a31051f246c", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", @@ -264,7 +166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:48:55 GMT + - Tue, 30 Apr 2024 10:33:27 GMT expires: - '-1' pragma: @@ -278,7 +180,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 769AA2C8BC8F491EB34B85132D9614F9 Ref B: SN4AA2022303035 Ref C: 2024-04-25T06:48:53Z' + - 'Ref A: 9EEF720222B94338A55B28A731B7863B Ref B: CO6AA3150218037 Ref C: 2024-04-30T10:33:25Z' status: code: 200 message: OK @@ -326,15 +228,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", - "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473205", + "name": "AOSM_CLI_deployment_1714473205", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2024-04-25T06:48:59.3106638Z", "duration": "PT0.0004378S", "correlationId": - "1e80bd81-e066-4f08-9bde-93c096a07205", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-30T10:33:33.4267894Z", "duration": "PT0.0002751S", "correlationId": + "be845226-1fdc-4827-baba-0485962c9bb8", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -349,7 +251,7 @@ interactions: "resourceName": "automated-cli-tests-nginx-publisher/nginx"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732/operationStatuses/08584875791481513340?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473205/operationStatuses/08584871336743247621?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -357,7 +259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:48:59 GMT + - Tue, 30 Apr 2024 10:33:33 GMT expires: - '-1' pragma: @@ -371,7 +273,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 7E8CF3C7C8FB48C183C9BF019035F4CD Ref B: DM2AA1091211031 Ref C: 2024-04-25T06:48:56Z' + - 'Ref A: 27777AB7E467463A98FB531E1449C23E Ref B: CO6AA3150218039 Ref C: 2024-04-30T10:33:28Z' status: code: 201 message: Created @@ -392,7 +294,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -404,7 +306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:49:00 GMT + - Tue, 30 Apr 2024 10:33:35 GMT expires: - '-1' pragma: @@ -416,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8FB14E7034EC4D2485376C3DAE596498 Ref B: SN4AA2022302037 Ref C: 2024-04-25T06:49:00Z' + - 'Ref A: 329853AD7D9B4EF89594470AC52ABC26 Ref B: CO6AA3150219021 Ref C: 2024-04-30T10:33:34Z' status: code: 200 message: OK @@ -437,7 +339,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -449,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:49:31 GMT + - Tue, 30 Apr 2024 10:34:05 GMT expires: - '-1' pragma: @@ -461,7 +363,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7DB5021CAA9A4635993546D72E8CD82D Ref B: DM2AA1091214053 Ref C: 2024-04-25T06:49:31Z' + - 'Ref A: 791756FC29FE45A4A5EB878B6390AF0C Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:34:05Z' status: code: 200 message: OK @@ -482,7 +384,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -494,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:50:02 GMT + - Tue, 30 Apr 2024 10:34:35 GMT expires: - '-1' pragma: @@ -506,7 +408,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8884CF64D9E640AF95F81F7A25480B0C Ref B: SN4AA2022303039 Ref C: 2024-04-25T06:50:01Z' + - 'Ref A: 794BA12B227E487297C72437EDA20BB9 Ref B: CO6AA3150219045 Ref C: 2024-04-30T10:34:36Z' status: code: 200 message: OK @@ -527,7 +429,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -539,7 +441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:50:32 GMT + - Tue, 30 Apr 2024 10:35:07 GMT expires: - '-1' pragma: @@ -551,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6568BB2A106147FBB33DA126E7951595 Ref B: DM2AA1091211035 Ref C: 2024-04-25T06:50:32Z' + - 'Ref A: 196FEBCCB1524F2B917788E5664A6EC4 Ref B: CO6AA3150219035 Ref C: 2024-04-30T10:35:06Z' status: code: 200 message: OK @@ -572,7 +474,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -584,7 +486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:51:03 GMT + - Tue, 30 Apr 2024 10:35:37 GMT expires: - '-1' pragma: @@ -596,7 +498,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E89483F31F9648A8897CA59C166A448C Ref B: DM2AA1091214053 Ref C: 2024-04-25T06:51:03Z' + - 'Ref A: BD7B7B00CC2E4D6580E6A5EB37D24056 Ref B: CO6AA3150220037 Ref C: 2024-04-30T10:35:37Z' status: code: 200 message: OK @@ -617,7 +519,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -629,7 +531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:51:34 GMT + - Tue, 30 Apr 2024 10:36:08 GMT expires: - '-1' pragma: @@ -641,7 +543,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 69D5D055BF644C2DA85A79C516FCD2E3 Ref B: DM2AA1091211053 Ref C: 2024-04-25T06:51:34Z' + - 'Ref A: 740FD761516140A49759BFC665C92347 Ref B: CO6AA3150218019 Ref C: 2024-04-30T10:36:08Z' status: code: 200 message: OK @@ -662,7 +564,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -674,7 +576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:52:05 GMT + - Tue, 30 Apr 2024 10:36:38 GMT expires: - '-1' pragma: @@ -686,7 +588,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 655D58094D5B4A5D8851DC15B070BE44 Ref B: DM2AA1091211049 Ref C: 2024-04-25T06:52:05Z' + - 'Ref A: 44CD05BC36AF41C187533D1CE61B0FCE Ref B: CO6AA3150219019 Ref C: 2024-04-30T10:36:39Z' status: code: 200 message: OK @@ -707,7 +609,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -719,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:52:35 GMT + - Tue, 30 Apr 2024 10:37:10 GMT expires: - '-1' pragma: @@ -731,7 +633,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 8D7EDAFA3E8C4515B2CAC16CFF5F179F Ref B: DM2AA1091212047 Ref C: 2024-04-25T06:52:35Z' + - 'Ref A: 648DB4148F004AEB88612483624E32A5 Ref B: CO6AA3150218027 Ref C: 2024-04-30T10:37:09Z' status: code: 200 message: OK @@ -752,7 +654,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875791481513340?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871336743247621?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -764,7 +666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:06 GMT + - Tue, 30 Apr 2024 10:37:41 GMT expires: - '-1' pragma: @@ -776,7 +678,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6FBF54DA7C964707BF3244B3F9EB37F4 Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:53:06Z' + - 'Ref A: B203D446009A4AD996FD0F712ECF8D89 Ref B: CO6AA3150217019 Ref C: 2024-04-30T10:37:40Z' status: code: 200 message: OK @@ -800,15 +702,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027732", - "name": "AOSM_CLI_deployment_1714027732", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473205", + "name": "AOSM_CLI_deployment_1714473205", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "10367121729954115364", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2024-04-25T06:52:51.1765955Z", "duration": "PT3M51.8663695S", "correlationId": - "1e80bd81-e066-4f08-9bde-93c096a07205", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-30T10:37:27.7733078Z", "duration": "PT3M54.3467935S", "correlationId": + "be845226-1fdc-4827-baba-0485962c9bb8", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -832,7 +734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:07 GMT + - Tue, 30 Apr 2024 10:37:41 GMT expires: - '-1' pragma: @@ -844,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 499A27021443477C92314996A8BD50CB Ref B: SN4AA2022303051 Ref C: 2024-04-25T06:53:06Z' + - 'Ref A: 501055DE78014574AE513C09915C7A18 Ref B: CO6AA3150218047 Ref C: 2024-04-30T10:37:41Z' status: code: 200 message: OK @@ -879,7 +781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:07 GMT + - Tue, 30 Apr 2024 10:37:41 GMT expires: - '-1' pragma: @@ -893,7 +795,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 13239307FD564B0399B7EB99940F340E Ref B: SN4AA2022303019 Ref C: 2024-04-25T06:53:07Z' + - 'Ref A: AD689F6750384965B1309267B909DD46 Ref B: CO6AA3150218021 Ref C: 2024-04-30T10:37:42Z' status: code: 404 message: Not Found @@ -938,15 +840,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", - "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473465", + "name": "AOSM_CLI_deployment_1714473465", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "fdcb57db-b109-4fbc-a6bc-d8092e57fc62", "providers": [{"namespace": "Microsoft.HybridNetwork", + "b93e7b98-ed16-43e1-a360-ed961567847b", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0"}]}}' @@ -958,7 +860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:12 GMT + - Tue, 30 Apr 2024 10:37:47 GMT expires: - '-1' pragma: @@ -972,7 +874,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 096913EA2590405999E1A8ED68396249 Ref B: SN4AA2022305035 Ref C: 2024-04-25T06:53:10Z' + - 'Ref A: 78915204D3944E6CB8F964D08E46D1B5 Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:37:44Z' status: code: 200 message: OK @@ -1017,28 +919,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", - "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473465", + "name": "AOSM_CLI_deployment_1714473465", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-25T06:53:15.9703446Z", "duration": "PT0.000421S", - "correlationId": "3c8b6557-fba4-4068-b0b0-134a49da736e", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-30T10:37:52.4334892Z", "duration": "PT0.0007971S", + "correlationId": "5dc45d5c-733b-4adc-9582-d450a9641663", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988/operationStatuses/08584875788913009168?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473465/operationStatuses/08584871334152176343?api-version=2022-09-01 cache-control: - no-cache content-length: - - '981' + - '982' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:15 GMT + - Tue, 30 Apr 2024 10:37:52 GMT expires: - '-1' pragma: @@ -1052,7 +954,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0376DC8DC59643B0A29B607653A6C1E8 Ref B: DM2AA1091212033 Ref C: 2024-04-25T06:53:13Z' + - 'Ref A: 7C528FBD90D342C585709FED2F83CE89 Ref B: CO6AA3150220045 Ref C: 2024-04-30T10:37:48Z' status: code: 201 message: Created @@ -1073,7 +975,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871334152176343?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1085,7 +987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:16 GMT + - Tue, 30 Apr 2024 10:37:53 GMT expires: - '-1' pragma: @@ -1097,7 +999,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4BCD524D903A48F9B5F62305116F3B7E Ref B: DM2AA1091214023 Ref C: 2024-04-25T06:53:16Z' + - 'Ref A: 1697E45CE8874440BB474FE44B116D50 Ref B: CO6AA3150220025 Ref C: 2024-04-30T10:37:53Z' status: code: 200 message: OK @@ -1118,7 +1020,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871334152176343?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1130,7 +1032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:53:47 GMT + - Tue, 30 Apr 2024 10:38:24 GMT expires: - '-1' pragma: @@ -1142,7 +1044,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3FA51E41B51B4FE79486766658378B18 Ref B: DM2AA1091212051 Ref C: 2024-04-25T06:53:47Z' + - 'Ref A: B5BE6FDB2CBE4F399BABE2629A3271BD Ref B: CO6AA3150220017 Ref C: 2024-04-30T10:38:24Z' status: code: 200 message: OK @@ -1163,7 +1065,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871334152176343?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1175,7 +1077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:54:18 GMT + - Tue, 30 Apr 2024 10:38:55 GMT expires: - '-1' pragma: @@ -1187,7 +1089,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E2B5442C002243BA88E5F810635FDA2A Ref B: DM2AA1091211023 Ref C: 2024-04-25T06:54:18Z' + - 'Ref A: F86AB9A586E34487AB4750AFD8304126 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:38:55Z' status: code: 200 message: OK @@ -1208,7 +1110,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875788913009168?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871334152176343?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1220,7 +1122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:54:49 GMT + - Tue, 30 Apr 2024 10:39:26 GMT expires: - '-1' pragma: @@ -1232,7 +1134,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 6936DAA4EC77444190C71A82612384CC Ref B: DM2AA1091211017 Ref C: 2024-04-25T06:54:49Z' + - 'Ref A: 2F830F8A760549F387384FAE05E468B8 Ref B: CO6AA3150219029 Ref C: 2024-04-30T10:39:25Z' status: code: 200 message: OK @@ -1256,15 +1158,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714027988", - "name": "AOSM_CLI_deployment_1714027988", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473465", + "name": "AOSM_CLI_deployment_1714473465", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "12600420176313960646", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "acrManifestName": {"type": "String", "value": "nginx-acr-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-25T06:54:42.6630094Z", "duration": "PT1M26.6930858S", - "correlationId": "3c8b6557-fba4-4068-b0b0-134a49da736e", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-30T10:39:17.0774806Z", "duration": "PT1M24.6447885S", + "correlationId": "5dc45d5c-733b-4adc-9582-d450a9641663", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-nginx-publisher/artifactStores/nginx-acr/artifactManifests/nginx-acr-manifest-1-0-0"}]}}' @@ -1276,7 +1178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:54:50 GMT + - Tue, 30 Apr 2024 10:39:26 GMT expires: - '-1' pragma: @@ -1288,7 +1190,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 38A2EA622EF64404B78EFDF059F9F8AC Ref B: DM2AA1091214021 Ref C: 2024-04-25T06:54:49Z' + - 'Ref A: 8666BF8825B445238F03AB435EDCEB2F Ref B: CO6AA3150219039 Ref C: 2024-04-30T10:39:26Z' status: code: 200 message: OK @@ -1315,18 +1217,18 @@ interactions: response: body: string: '{"username": "nginx-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsnginxpublishernginxacrcacb1f0e22.azurecr.io", - "repositories": ["nginxdemo", "nginx"], "expiry": "2024-04-26T06:54:53.766974+00:00", + "acrServerUrl": "https://automatedclitestsnginxpublishernginxacr192431245e.azurecr.io", + "repositories": ["nginxdemo", "nginx"], "expiry": "2024-05-01T10:39:30.3885457+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: - no-cache content-length: - - '337' + - '338' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:54:54 GMT + - Tue, 30 Apr 2024 10:39:30 GMT expires: - '-1' pragma: @@ -1344,7 +1246,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: E576960F3DE047EE9E3532EA3FF643C7 Ref B: DM2AA1091213049 Ref C: 2024-04-25T06:54:51Z' + - 'Ref A: 17968283A3C44269B0C66FF9F4621872 Ref B: CO6AA3150219035 Ref C: 2024-04-30T10:39:27Z' status: code: 200 message: OK @@ -1407,15 +1309,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", - "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473609", + "name": "AOSM_CLI_deployment_1714473609", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", - "duration": "PT0S", "correlationId": "7caf74a2-82c1-4b58-98a1-409861327925", + "duration": "PT0S", "correlationId": "a4831cef-d960-4fad-a7a2-c75f7b1622e0", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": @@ -1428,7 +1330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:57:21 GMT + - Tue, 30 Apr 2024 10:40:10 GMT expires: - '-1' pragma: @@ -1442,7 +1344,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: D219DFBC480C4F5C8C6FC248C5910106 Ref B: SN4AA2022304035 Ref C: 2024-04-25T06:57:19Z' + - 'Ref A: 9B9F6DFF2291462496ADFB5C241124DC Ref B: CO6AA3150217049 Ref C: 2024-04-30T10:40:08Z' status: code: 200 message: OK @@ -1505,29 +1407,29 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", - "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473609", + "name": "AOSM_CLI_deployment_1714473609", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": - "Incremental", "provisioningState": "Accepted", "timestamp": "2024-04-25T06:57:25.2301648Z", - "duration": "PT0.0005354S", "correlationId": "5134370b-0193-4528-8bfa-4e161349d28e", + "Incremental", "provisioningState": "Accepted", "timestamp": "2024-04-30T10:40:15.693914Z", + "duration": "PT0.0009238S", "correlationId": "4cb4c8dc-2860-42c2-9676-f89573b50a33", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": []}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237/operationStatuses/08584875786419850383?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473609/operationStatuses/08584871332719068779?api-version=2022-09-01 cache-control: - no-cache content-length: - - '1058' + - '1057' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:57:25 GMT + - Tue, 30 Apr 2024 10:40:16 GMT expires: - '-1' pragma: @@ -1541,7 +1443,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 8E1FD601D08D4715B6BAA1BCE6AD814C Ref B: DM2AA1091211017 Ref C: 2024-04-25T06:57:21Z' + - 'Ref A: F980E35883C44FD281A4E6B1B65FEE6B Ref B: CO6AA3150219037 Ref C: 2024-04-30T10:40:11Z' status: code: 201 message: Created @@ -1562,19 +1464,19 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871332719068779?api-version=2022-09-01 response: body: - string: '{"status": "Accepted"}' + string: '{"status": "Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:57:26 GMT + - Tue, 30 Apr 2024 10:40:17 GMT expires: - '-1' pragma: @@ -1586,7 +1488,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DDD4F3B3ADD1475688BF10F8BDB5E8EF Ref B: DM2AA1091213031 Ref C: 2024-04-25T06:57:26Z' + - 'Ref A: FA6A94470D6C423B8650C8DA4E7A5FAD Ref B: CO6AA3150219045 Ref C: 2024-04-30T10:40:16Z' status: code: 200 message: OK @@ -1607,7 +1509,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871332719068779?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1619,7 +1521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:57:57 GMT + - Tue, 30 Apr 2024 10:40:48 GMT expires: - '-1' pragma: @@ -1631,7 +1533,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D363DBC013114844BA9D502ADB8DF281 Ref B: DM2AA1091213035 Ref C: 2024-04-25T06:57:56Z' + - 'Ref A: 1DD159F539B2491BA05494E90BA10442 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:40:47Z' status: code: 200 message: OK @@ -1652,7 +1554,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871332719068779?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1664,7 +1566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:58:27 GMT + - Tue, 30 Apr 2024 10:41:19 GMT expires: - '-1' pragma: @@ -1676,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 79F50746D41040D0A2B89C7E81CFF3A1 Ref B: DM2AA1091211051 Ref C: 2024-04-25T06:58:27Z' + - 'Ref A: 1BD4CB5D5BC549F59D5AE6D12A9E5DD7 Ref B: CO6AA3150219017 Ref C: 2024-04-30T10:41:18Z' status: code: 200 message: OK @@ -1697,7 +1599,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584875786419850383?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584871332719068779?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1709,7 +1611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:58:58 GMT + - Tue, 30 Apr 2024 10:41:49 GMT expires: - '-1' pragma: @@ -1721,7 +1623,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1378D2B57A974C7DB74632CE323DA583 Ref B: DM2AA1091212047 Ref C: 2024-04-25T06:58:58Z' + - 'Ref A: 002C8801D70547409B8B375D0C1911DF Ref B: CO6AA3150219011 Ref C: 2024-04-30T10:41:49Z' status: code: 200 message: OK @@ -1745,15 +1647,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cnf_nfd_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_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714028237", - "name": "AOSM_CLI_deployment_1714028237", "type": "Microsoft.Resources/deployments", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cnf_nfd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714473609", + "name": "AOSM_CLI_deployment_1714473609", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "8222130002561750249", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-nginx-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "nginx-acr"}, "nfDefinitionGroup": {"type": "String", "value": "nginx"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": - "Incremental", "provisioningState": "Succeeded", "timestamp": "2024-04-25T06:58:49.9082075Z", - "duration": "PT1M24.6785781S", "correlationId": "5134370b-0193-4528-8bfa-4e161349d28e", + "Incremental", "provisioningState": "Succeeded", "timestamp": "2024-04-30T10:41:41.072492Z", + "duration": "PT1M25.3795018S", "correlationId": "4cb4c8dc-2860-42c2-9676-f89573b50a33", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": @@ -1762,11 +1664,11 @@ interactions: cache-control: - no-cache content-length: - - '1344' + - '1343' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:58:59 GMT + - Tue, 30 Apr 2024 10:41:49 GMT expires: - '-1' pragma: @@ -1778,7 +1680,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B52A59A4D78B45BDA29DD61E18A6362C Ref B: SN4AA2022302033 Ref C: 2024-04-25T06:58:59Z' + - 'Ref A: B3A83603B8514BF48AE3912D53B67863 Ref B: CO6AA3150217021 Ref C: 2024-04-30T10:41:49Z' status: code: 200 message: OK diff --git a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml index 4002019f646..74a801fe915 100644 --- a/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml +++ b/src/aosm/azext_aosm/tests/latest/integration_tests/scenario_tests/recordings/test_vnf_nsd_build_and_publish.yaml @@ -26,7 +26,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 06:59:04 GMT + - Tue, 30 Apr 2024 10:41:56 GMT expires: - '-1' pragma: @@ -38,7 +38,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: EF3AA94FADDA45CBA462BB5DF3448A7D Ref B: DM2AA1091213039 Ref C: 2024-04-25T06:59:05Z' + - 'Ref A: 5BCF7B57167D4B5D906463389AE5F38F Ref B: CO6AA3150218047 Ref C: 2024-04-30T10:41:56Z' status: code: 204 message: No Content @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:59:04 GMT + - Tue, 30 Apr 2024 10:41:56 GMT expires: - '-1' pragma: @@ -87,154 +87,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 4B6890576F2F473FA6A29C281E388E0E Ref B: SN4AA2022302051 Ref C: 2024-04-25T06:59:05Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aosm nfd publish - Connection: - - keep-alive - ParameterSetName: - - --build-output-folder --definition-type - User-Agent: - - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr?api-version=2023-09-01 - response: - body: - string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr'' - under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '296' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Apr 2024 06:59:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 7ACC409FA43348ECB851C9C228E1CB3E Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:59:05Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aosm nfd publish - Connection: - - keep-alive - ParameterSetName: - - --build-output-folder --definition-type - User-Agent: - - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm?api-version=2023-09-01 - response: - body: - string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm'' - under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '312' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Apr 2024 06:59:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 494CDB4C7C2E4B578241382CC8AA0523 Ref B: DM2AA1091213011 Ref C: 2024-04-25T06:59:06Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aosm nfd publish - Connection: - - keep-alive - ParameterSetName: - - --build-output-folder --definition-type - User-Agent: - - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 - (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store?api-version=2023-09-01 - response: - body: - string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store'' - under resource group ''cli_test_vnf_nsd_000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '303' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Apr 2024 06:59:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: 77304FEDD0CB4BF580B52B20183F7E29 Ref B: SN4AA2022304019 Ref C: 2024-04-25T06:59:06Z' + - 'Ref A: E73A779F4A044E7592C08D74C92D410E Ref B: CO6AA3150220021 Ref C: 2024-04-30T10:41:56Z' status: code: 404 message: Not Found @@ -289,8 +142,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_1714028348", - "name": "AOSM_CLI_deployment_1714028348", "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_1714473719", + "name": "AOSM_CLI_deployment_1714473719", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -298,7 +151,7 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "102cd870-a5fa-4eec-8b24-6e46bbbc84ba", "providers": [{"namespace": "Microsoft.HybridNetwork", + "5418e68e-84ea-4f25-a66d-088eabfb61dc", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -329,7 +182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:59:11 GMT + - Tue, 30 Apr 2024 10:42:01 GMT expires: - '-1' pragma: @@ -343,7 +196,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0E80264E53584D98BB71CC256141991A Ref B: SN4AA2022303025 Ref C: 2024-04-25T06:59:09Z' + - 'Ref A: AA0296A4F50B43C387172827A2E2E126 Ref B: CO6AA3150219047 Ref C: 2024-04-30T10:41:59Z' status: code: 200 message: OK @@ -398,16 +251,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_1714028348", - "name": "AOSM_CLI_deployment_1714028348", "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_1714473719", + "name": "AOSM_CLI_deployment_1714473719", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-25T06:59:16.1918998Z", "duration": "PT0.0004074S", "correlationId": - "0cb2a4a8-c0a7-40b6-9407-11d8e3466aeb", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-30T10:42:05.862138Z", "duration": "PT0.0001441S", "correlationId": + "2d443977-c768-457f-8e98-032c6eb4d4d3", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", "locations": ["uksouth"]}]}], @@ -428,15 +281,15 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu-vm"}]}}' 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_1714028348/operationStatuses/08584875785312144750?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_1714473719/operationStatuses/08584871331619186378?api-version=2022-09-01 cache-control: - no-cache content-length: - - '3181' + - '3180' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:59:16 GMT + - Tue, 30 Apr 2024 10:42:06 GMT expires: - '-1' pragma: @@ -448,9 +301,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: B71F97669CAB4A2F9660941A1D69CFC7 Ref B: SN4AA2022302049 Ref C: 2024-04-25T06:59:12Z' + - 'Ref A: F4AC603D329F474682CF86E5ADADC5EC Ref B: CO6AA3150220031 Ref C: 2024-04-30T10:42:01Z' status: code: 201 message: Created @@ -471,7 +324,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -483,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:59:16 GMT + - Tue, 30 Apr 2024 10:42:06 GMT expires: - '-1' pragma: @@ -495,7 +348,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A21F97FAFBB94342BED5BD43E7E18CC0 Ref B: DM2AA1091214027 Ref C: 2024-04-25T06:59:17Z' + - 'Ref A: B9C8D1D2892D407595441016CFADA469 Ref B: CO6AA3150220045 Ref C: 2024-04-30T10:42:07Z' status: code: 200 message: OK @@ -516,7 +369,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -528,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 06:59:48 GMT + - Tue, 30 Apr 2024 10:42:37 GMT expires: - '-1' pragma: @@ -540,7 +393,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0609E64085594637A263DC3AEAA525EB Ref B: DM2AA1091213045 Ref C: 2024-04-25T06:59:48Z' + - 'Ref A: FEBA34FD3F724A4D89133D50E86BA095 Ref B: CO6AA3150219021 Ref C: 2024-04-30T10:42:37Z' status: code: 200 message: OK @@ -561,7 +414,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -573,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:00:18 GMT + - Tue, 30 Apr 2024 10:43:08 GMT expires: - '-1' pragma: @@ -585,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3C672FA3B2B44506B049EF96CEBFED7D Ref B: SN4AA2022305053 Ref C: 2024-04-25T07:00:18Z' + - 'Ref A: AABD9156386348B380BF010ADA0145D5 Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:43:08Z' status: code: 200 message: OK @@ -606,7 +459,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -618,7 +471,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:00:49 GMT + - Tue, 30 Apr 2024 10:43:39 GMT expires: - '-1' pragma: @@ -630,7 +483,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E796C231926D4123B58770968943755C Ref B: DM2AA1091212027 Ref C: 2024-04-25T07:00:49Z' + - 'Ref A: 39FCE9B0018C42278F0371D510A4918B Ref B: CO6AA3150218037 Ref C: 2024-04-30T10:43:39Z' status: code: 200 message: OK @@ -651,7 +504,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -663,7 +516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:01:20 GMT + - Tue, 30 Apr 2024 10:44:10 GMT expires: - '-1' pragma: @@ -675,7 +528,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 9B1F0CB8C5EA4D8DB8F632A922B7B8F1 Ref B: SN4AA2022304033 Ref C: 2024-04-25T07:01:20Z' + - 'Ref A: 1387CFE01CDF41F2A62CE144F2224D6B Ref B: CO6AA3150220051 Ref C: 2024-04-30T10:44:10Z' status: code: 200 message: OK @@ -696,7 +549,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -708,7 +561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:01:50 GMT + - Tue, 30 Apr 2024 10:44:41 GMT expires: - '-1' pragma: @@ -720,7 +573,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: AED52F787E4947D5BA247D12541DF297 Ref B: DM2AA1091212049 Ref C: 2024-04-25T07:01:50Z' + - 'Ref A: D3C0A5ECD5314B3F8DC6289007F26BA9 Ref B: CO6AA3150217049 Ref C: 2024-04-30T10:44:41Z' status: code: 200 message: OK @@ -741,7 +594,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -753,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:02:21 GMT + - Tue, 30 Apr 2024 10:45:12 GMT expires: - '-1' pragma: @@ -765,7 +618,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0BDE02E7B6AE4D538248A173A3B996C5 Ref B: SN4AA2022305039 Ref C: 2024-04-25T07:02:21Z' + - 'Ref A: 2FCCAE29449D4A55AC9CCF5BD0EA680E Ref B: CO6AA3150217033 Ref C: 2024-04-30T10:45:11Z' status: code: 200 message: OK @@ -786,7 +639,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -798,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:02:52 GMT + - Tue, 30 Apr 2024 10:45:42 GMT expires: - '-1' pragma: @@ -810,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D0A5B61D58A64420AE7620FCF5521AD7 Ref B: SN4AA2022303047 Ref C: 2024-04-25T07:02:52Z' + - 'Ref A: 368068A9B3CD466090055E2D4AFB55E4 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:45:42Z' status: code: 200 message: OK @@ -831,7 +684,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875785312144750?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/08584871331619186378?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -843,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:23 GMT + - Tue, 30 Apr 2024 10:46:12 GMT expires: - '-1' pragma: @@ -855,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F26AAF80007A437A8F6B3C998D9DE1DF Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:03:23Z' + - 'Ref A: E5AF4857C172445B9DAE2F9647DA51B2 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:46:13Z' status: code: 200 message: OK @@ -879,16 +732,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_1714028348", - "name": "AOSM_CLI_deployment_1714028348", "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_1714473719", + "name": "AOSM_CLI_deployment_1714473719", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "330068761100729304", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "saArtifactStoreName": {"type": "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-25T07:03:08.2130883Z", "duration": "PT3M52.0215959S", - "correlationId": "0cb2a4a8-c0a7-40b6-9407-11d8e3466aeb", "providers": [{"namespace": + "timestamp": "2024-04-30T10:45:58.2094649Z", "duration": "PT3M52.347471S", + "correlationId": "2d443977-c768-457f-8e98-032c6eb4d4d3", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkFunctionDefinitionGroups", @@ -915,11 +768,11 @@ interactions: cache-control: - no-cache content-length: - - '4043' + - '4042' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:24 GMT + - Tue, 30 Apr 2024 10:46:13 GMT expires: - '-1' pragma: @@ -931,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A3807DF063A0476F85B57232D5D3CE0E Ref B: DM2AA1091212029 Ref C: 2024-04-25T07:03:24Z' + - 'Ref A: 67A921A7B06D43E094FF5217C2B573DC Ref B: CO6AA3150220023 Ref C: 2024-04-30T10:46:13Z' status: code: 200 message: OK @@ -966,7 +819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:24 GMT + - Tue, 30 Apr 2024 10:46:14 GMT expires: - '-1' pragma: @@ -980,7 +833,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 1F0B2FA298624049B7D2E9E135414675 Ref B: SN4AA2022305037 Ref C: 2024-04-25T07:03:25Z' + - 'Ref A: D9F3A602D6E845C3BD311EDD9F2BD754 Ref B: CO6AA3150218019 Ref C: 2024-04-30T10:46:14Z' status: code: 404 message: Not Found @@ -1015,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:25 GMT + - Tue, 30 Apr 2024 10:46:14 GMT expires: - '-1' pragma: @@ -1029,7 +882,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 2A19D945E0C947A7A2716D068D4A748E Ref B: SN4AA2022302011 Ref C: 2024-04-25T07:03:25Z' + - 'Ref A: 1807CDC61DC246D6BA67A25B34BAC1AA Ref B: CO6AA3150217019 Ref C: 2024-04-30T10:46:14Z' status: code: 404 message: Not Found @@ -1083,8 +936,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_1714028606", - "name": "AOSM_CLI_deployment_1714028606", "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_1714473977", + "name": "AOSM_CLI_deployment_1714473977", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1093,7 +946,7 @@ interactions: "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "8ac09ec6-9096-4e1d-9441-2802cd914d43", "providers": [{"namespace": "Microsoft.HybridNetwork", + "1ba09ea8-9402-4418-98e2-34ff62a6a4a4", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -1106,7 +959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:30 GMT + - Tue, 30 Apr 2024 10:46:19 GMT expires: - '-1' pragma: @@ -1120,7 +973,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: AB2647E81F02441A900D3BE71D008D47 Ref B: SN4AA2022304019 Ref C: 2024-04-25T07:03:27Z' + - 'Ref A: DC95BAD2CAD1436A8223DFE41D3C85B3 Ref B: CO6AA3150218047 Ref C: 2024-04-30T10:46:17Z' status: code: 200 message: OK @@ -1174,8 +1027,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_1714028606", - "name": "AOSM_CLI_deployment_1714028606", "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_1714473977", + "name": "AOSM_CLI_deployment_1714473977", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1183,13 +1036,13 @@ interactions: "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-25T07:03:34.2367203Z", "duration": "PT0.0009526S", - "correlationId": "8df65da5-f336-4d93-b7c5-aa844ab07c63", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-30T10:46:24.7759539Z", "duration": "PT0.0001206S", + "correlationId": "75b6429d-1feb-4e13-bb18-e2ede7c2a62c", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1714028606/operationStatuses/08584875782730234213?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_1714473977/operationStatuses/08584871329030480553?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -1197,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:34 GMT + - Tue, 30 Apr 2024 10:46:24 GMT expires: - '-1' pragma: @@ -1211,7 +1064,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 42638008212A4F6DA2BA791690EA9177 Ref B: DM2AA1091212049 Ref C: 2024-04-25T07:03:30Z' + - 'Ref A: 2A586BDD72F74E4A92ED4A24AECD0B94 Ref B: CO6AA3150217025 Ref C: 2024-04-30T10:46:20Z' status: code: 201 message: Created @@ -1232,7 +1085,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875782730234213?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/08584871329030480553?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1244,7 +1097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:03:35 GMT + - Tue, 30 Apr 2024 10:46:25 GMT expires: - '-1' pragma: @@ -1256,7 +1109,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 85A97B91C773456EADB5ECE427DA7452 Ref B: SN4AA2022303021 Ref C: 2024-04-25T07:03:35Z' + - 'Ref A: 9DF61D560A38447CBC4E783A4FBCE22B Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:46:25Z' status: code: 200 message: OK @@ -1277,7 +1130,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875782730234213?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/08584871329030480553?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1289,7 +1142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:04:06 GMT + - Tue, 30 Apr 2024 10:46:56 GMT expires: - '-1' pragma: @@ -1301,7 +1154,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 25CAB125768E46E29E627441C5C90E13 Ref B: SN4AA2022302023 Ref C: 2024-04-25T07:04:05Z' + - 'Ref A: A5C57996BED74BEAB2B416A6383803E7 Ref B: CO6AA3150220031 Ref C: 2024-04-30T10:46:56Z' status: code: 200 message: OK @@ -1322,7 +1175,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875782730234213?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/08584871329030480553?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -1334,7 +1187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:04:37 GMT + - Tue, 30 Apr 2024 10:47:27 GMT expires: - '-1' pragma: @@ -1346,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 77400EC8D06A4F71A4B2AEF3E7A890F4 Ref B: DM2AA1091214035 Ref C: 2024-04-25T07:04:36Z' + - 'Ref A: B8F6CA07B8E443059749D1D19E5228F2 Ref B: CO6AA3150219037 Ref C: 2024-04-30T10:47:26Z' status: code: 200 message: OK @@ -1367,7 +1220,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875782730234213?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/08584871329030480553?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -1379,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:08 GMT + - Tue, 30 Apr 2024 10:47:58 GMT expires: - '-1' pragma: @@ -1391,7 +1244,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B474568344BE4458A2CEBB25B6FDC0B6 Ref B: SN4AA2022303039 Ref C: 2024-04-25T07:05:07Z' + - 'Ref A: 0BB9AB34A35D468985016CC2A6639F67 Ref B: CO6AA3150220017 Ref C: 2024-04-30T10:47:57Z' status: code: 200 message: OK @@ -1415,8 +1268,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_1714028606", - "name": "AOSM_CLI_deployment_1714028606", "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_1714473977", + "name": "AOSM_CLI_deployment_1714473977", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "13033189923379786498", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -1424,8 +1277,8 @@ interactions: "String", "value": "ubuntu-blob-store"}, "acrManifestName": {"type": "String", "value": "ubuntu-vm-acr-manifest-1-0-0"}, "saManifestName": {"type": "String", "value": "ubuntu-vm-sa-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-25T07:05:00.8307284Z", "duration": "PT1M26.5949607S", - "correlationId": "8df65da5-f336-4d93-b7c5-aa844ab07c63", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-30T10:47:52.7353165Z", "duration": "PT1M27.9594832S", + "correlationId": "75b6429d-1feb-4e13-bb18-e2ede7c2a62c", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-vm-acr-manifest-1-0-0"}, @@ -1438,7 +1291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:08 GMT + - Tue, 30 Apr 2024 10:47:58 GMT expires: - '-1' pragma: @@ -1450,7 +1303,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A68C20867EEC445A8859EFA21EBB08AF Ref B: SN4AA2022304035 Ref C: 2024-04-25T07:05:08Z' + - 'Ref A: C9651A5DC244411D89CDB1F3CFC56EE0 Ref B: CO6AA3150220031 Ref C: 2024-04-30T10:47:58Z' status: code: 200 message: OK @@ -1477,8 +1330,8 @@ interactions: response: body: string: '{"username": "ubuntu-vm-acr-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io", - "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-04-26T07:05:11.6237035+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io", + "repositories": ["automated-cli-tests-artifact"], "expiry": "2024-05-01T10:48:02.4890045+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -1488,7 +1341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:11 GMT + - Tue, 30 Apr 2024 10:48:02 GMT expires: - '-1' pragma: @@ -1506,7 +1359,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 8C94E1B4F8764682BBB7F5BE5EC7DC8E Ref B: DM2AA1091211023 Ref C: 2024-04-25T07:05:09Z' + - 'Ref A: DC8D76D81D8943548CCB9913412F1FFD Ref B: CO6AA3150219047 Ref C: 2024-04-30T10:47:59Z' status: code: 200 message: OK @@ -1526,7 +1379,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1546,7 +1399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:13 GMT + - Tue, 30 Apr 2024 10:48:03 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1555,7 +1408,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1571,11 +1424,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1585,7 +1438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:14 GMT + - Tue, 30 Apr 2024 10:48:03 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1613,7 +1466,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1628,13 +1481,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:14 GMT + - Tue, 30 Apr 2024 10:48:04 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 6fac6a2c-beae-428e-b6fa-fd15fac0f9ef + - 7aa6111e-ac06-4674-8fa0-2b8ef8f09c6e location: - - /v2/automated-cli-tests-artifact/blobs/uploads/6fac6a2c-beae-428e-b6fa-fd15fac0f9ef?_nouploadcache=false&_state=wGUh1I-_-wEWD6dlLhb94l1T5nbP7As6QOk77QhdTbB7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjZmYWM2YTJjLWJlYWUtNDI4ZS1iNmZhLWZkMTVmYWMwZjllZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNC43NDY5MDQxNjFaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/7aa6111e-ac06-4674-8fa0-2b8ef8f09c6e?_nouploadcache=false&_state=Mk_BkDmapdcG9N7b1poVWEyxwC_7j9w55MPWH9q1JJ97Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjdhYTYxMTFlLWFjMDYtNDY3NC04ZmEwLTJiOGVmOGYwOWM2ZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0zMFQxMDo0ODowNC41NDMzNzY5NzRaIn0%3D range: - 0-0 server: @@ -1707,7 +1560,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/6fac6a2c-beae-428e-b6fa-fd15fac0f9ef?_nouploadcache=false&_state=wGUh1I-_-wEWD6dlLhb94l1T5nbP7As6QOk77QhdTbB7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjZmYWM2YTJjLWJlYWUtNDI4ZS1iNmZhLWZkMTVmYWMwZjllZiIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNC43NDY5MDQxNjFaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/7aa6111e-ac06-4674-8fa0-2b8ef8f09c6e?_nouploadcache=false&_state=Mk_BkDmapdcG9N7b1poVWEyxwC_7j9w55MPWH9q1JJ97Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjdhYTYxMTFlLWFjMDYtNDY3NC04ZmEwLTJiOGVmOGYwOWM2ZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0zMFQxMDo0ODowNC41NDMzNzY5NzRaIn0%3D&digest=sha256%3Ae71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b response: body: string: '' @@ -1722,7 +1575,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:15 GMT + - Tue, 30 Apr 2024 10:48:05 GMT docker-content-digest: - sha256:e71bf56543dc33dc8e550a0c574efe9a4875754a4ddf74347e448dec2462798b docker-distribution-api-version: @@ -1755,7 +1608,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1775,7 +1628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:15 GMT + - Tue, 30 Apr 2024 10:48:05 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1784,7 +1637,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:push,pull" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" x-content-type-options: - nosniff status: @@ -1800,11 +1653,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apush%2Cpull + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -1814,7 +1667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:16 GMT + - Tue, 30 Apr 2024 10:48:06 GMT server: - AzureContainerRegistry strict-transport-security: @@ -1842,7 +1695,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/ response: body: string: '' @@ -1857,13 +1710,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:16 GMT + - Tue, 30 Apr 2024 10:48:06 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 10641ba5-7f7e-4eee-a936-6062b3b12a70 + - e8452c4d-fcba-49e3-a79e-e518c92c294e location: - - /v2/automated-cli-tests-artifact/blobs/uploads/10641ba5-7f7e-4eee-a936-6062b3b12a70?_nouploadcache=false&_state=_2DWmSlwAfZ_L7lH2BsQSNvN9-sXqGAGfL3bNY3dpIh7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjEwNjQxYmE1LTdmN2UtNGVlZS1hOTM2LTYwNjJiM2IxMmE3MCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNi44NTIyMDA2MDhaIn0%3D + - /v2/automated-cli-tests-artifact/blobs/uploads/e8452c4d-fcba-49e3-a79e-e518c92c294e?_nouploadcache=false&_state=Ey7Eb7ix9BY76xW1bBaiWN5ybKdZajfs-TuONOCIRnl7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImU4NDUyYzRkLWZjYmEtNDllMy1hNzllLWU1MThjOTJjMjk0ZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0zMFQxMDo0ODowNi45MjA5NDM1ODdaIn0%3D range: - 0-0 server: @@ -1892,7 +1745,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/10641ba5-7f7e-4eee-a936-6062b3b12a70?_nouploadcache=false&_state=_2DWmSlwAfZ_L7lH2BsQSNvN9-sXqGAGfL3bNY3dpIh7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6IjEwNjQxYmE1LTdmN2UtNGVlZS1hOTM2LTYwNjJiM2IxMmE3MCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0yNVQwNzowNToxNi44NTIyMDA2MDhaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/blobs/uploads/e8452c4d-fcba-49e3-a79e-e518c92c294e?_nouploadcache=false&_state=Ey7Eb7ix9BY76xW1bBaiWN5ybKdZajfs-TuONOCIRnl7Ik5hbWUiOiJhdXRvbWF0ZWQtY2xpLXRlc3RzLWFydGlmYWN0IiwiVVVJRCI6ImU4NDUyYzRkLWZjYmEtNDllMy1hNzllLWU1MThjOTJjMjk0ZSIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAyNC0wNC0zMFQxMDo0ODowNi45MjA5NDM1ODdaIn0%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -1907,7 +1760,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:17 GMT + - Tue, 30 Apr 2024 10:48:07 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -1946,7 +1799,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1966,7 +1819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:17 GMT + - Tue, 30 Apr 2024 10:48:08 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1975,7 +1828,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:automated-cli-tests-artifact:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:automated-cli-tests-artifact:push,pull" x-content-type-options: - nosniff status: @@ -1991,11 +1844,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aautomated-cli-tests-artifact%3Apush%2Cpull response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -2005,7 +1858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:18 GMT + - Tue, 30 Apr 2024 10:48:08 GMT server: - AzureContainerRegistry strict-transport-security: @@ -2013,7 +1866,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.316667' + - '333.3' status: code: 200 message: OK @@ -2039,7 +1892,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/automated-cli-tests-artifact/manifests/1.0.0 response: body: string: '' @@ -2054,7 +1907,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:19 GMT + - Tue, 30 Apr 2024 10:48:09 GMT docker-content-digest: - sha256:17d25d33c38f40fda4c9e45a0cec218b3f7f75e9c680ed8dd2a12ed0abdbc36b docker-distribution-api-version: @@ -2093,10 +1946,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store/artifactManifests/ubuntu-vm-sa-manifest-1-0-0/listCredential?api-version=2023-09-01 response: body: - string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-4EB912EE/providers/Microsoft.Storage/storageAccounts/4eb912eeubuntublobstoref", + string: '{"storageAccountId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-blob-store-HostedResources-5521A0FA/providers/Microsoft.Storage/storageAccounts/5521a0faubuntublobstore6", "containerCredentials": [{"containerName": "automatedclitestsvhd-1-0-0", "containerSasUri": "https://xxxxxxxxxxxxxxx.blob.core.windows.net/automatedclitestsvhd-1-0-0?sv=2021-08-06&si=StorageAccountAccessPolicy&sr=xxxxxxxxxxxxxxxxxxxx"}], - "expiry": "2024-04-26T07:05:22.4533092+00:00", "credentialType": "AzureStorageAccountToken"}' + "expiry": "2024-05-01T10:48:12.2429288+00:00", "credentialType": "AzureStorageAccountToken"}' headers: cache-control: - no-cache @@ -2105,7 +1958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:22 GMT + - Tue, 30 Apr 2024 10:48:11 GMT expires: - '-1' pragma: @@ -2123,7 +1976,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 85D1C04EC0E04114905E5CC4F78C2B25 Ref B: DM2AA1091211033 Ref C: 2024-04-25T07:05:19Z' + - 'Ref A: 5E21081F919E4586A465B6797A20DCAD Ref B: CO6AA3150219045 Ref C: 2024-04-30T10:48:09Z' status: code: 200 message: OK @@ -2145,7 +1998,7 @@ interactions: x-ms-blob-type: - PageBlob x-ms-date: - - Thu, 25 Apr 2024 07:05:21 GMT + - Tue, 30 Apr 2024 10:48:13 GMT x-ms-version: - '2022-11-02' method: PUT @@ -2157,11 +2010,11 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:23 GMT + - Tue, 30 Apr 2024 10:48:12 GMT etag: - - '"0x8DC64F613958CD5"' + - '"0x8DC6903089B15FB"' last-modified: - - Thu, 25 Apr 2024 07:05:23 GMT + - Tue, 30 Apr 2024 10:48:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -2191,11 +2044,11 @@ interactions: Content-Type: - application/octet-stream If-Match: - - '"0x8DC64F613958CD5"' + - '"0x8DC6903089B15FB"' User-Agent: - azsdk-python-storage-blob/12.16.0 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) x-ms-date: - - Thu, 25 Apr 2024 07:05:22 GMT + - Tue, 30 Apr 2024 10:48:13 GMT x-ms-page-write: - update x-ms-range: @@ -2211,11 +2064,11 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:05:24 GMT + - Tue, 30 Apr 2024 10:48:13 GMT etag: - - '"0x8DC64F61445525C"' + - '"0x8DC690309034D96"' last-modified: - - Thu, 25 Apr 2024 07:05:24 GMT + - Tue, 30 Apr 2024 10:48:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-sequence-number: @@ -2295,8 +2148,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_1714028725", - "name": "AOSM_CLI_deployment_1714028725", "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_1714474096", + "name": "AOSM_CLI_deployment_1714474096", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2304,7 +2157,7 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "1f3833fc-9cf1-4661-84a4-a457196e2dd7", + "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": "b8000687-d085-405b-9b85-8cad64a4d9a8", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": @@ -2317,7 +2170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:28 GMT + - Tue, 30 Apr 2024 10:48:18 GMT expires: - '-1' pragma: @@ -2331,7 +2184,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 4465A06D1B424ACAB68BE34A115040D4 Ref B: SN4AA2022304047 Ref C: 2024-04-25T07:05:26Z' + - 'Ref A: 2CFA25649ECF4D83872323BECCF139C9 Ref B: CO6AA3150217035 Ref C: 2024-04-30T10:48:15Z' status: code: 200 message: OK @@ -2401,8 +2254,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_1714028725", - "name": "AOSM_CLI_deployment_1714028725", "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_1714474096", + "name": "AOSM_CLI_deployment_1714474096", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2410,13 +2263,13 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Accepted", "timestamp": - "2024-04-25T07:05:32.8514995Z", "duration": "PT0.0008842S", "correlationId": - "0cb1f718-05b4-42c1-977f-611f2b791fca", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-30T10:48:23.6732701Z", "duration": "PT0.0002781S", "correlationId": + "3ad6ad79-9242-4ea4-9832-9ef8b39fca72", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "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_1714028725/operationStatuses/08584875781544569611?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_1714474096/operationStatuses/08584871327839943196?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -2424,7 +2277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:33 GMT + - Tue, 30 Apr 2024 10:48:24 GMT expires: - '-1' pragma: @@ -2438,7 +2291,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 9347165FFD684BE19F065D95BE7AC611 Ref B: SN4AA2022303017 Ref C: 2024-04-25T07:05:29Z' + - 'Ref A: 4D904F2F931B40E8AB3629ECED8C4062 Ref B: CO6AA3150218029 Ref C: 2024-04-30T10:48:19Z' status: code: 201 message: Created @@ -2459,19 +2312,19 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875781544569611?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/08584871327839943196?api-version=2022-09-01 response: body: - string: '{"status": "Running"}' + string: '{"status": "Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:05:33 GMT + - Tue, 30 Apr 2024 10:48:25 GMT expires: - '-1' pragma: @@ -2483,7 +2336,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FD97B391226A4B78802533B70BF1DC5F Ref B: SN4AA2022303017 Ref C: 2024-04-25T07:05:33Z' + - 'Ref A: 1971A1D65B1A4C63A9968E30B56EAB81 Ref B: CO6AA3150219039 Ref C: 2024-04-30T10:48:24Z' status: code: 200 message: OK @@ -2504,7 +2357,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875781544569611?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/08584871327839943196?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2516,7 +2369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:06:04 GMT + - Tue, 30 Apr 2024 10:48:55 GMT expires: - '-1' pragma: @@ -2528,7 +2381,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B212CE20E40C4532B73A3AC94EFAEA0E Ref B: DM2AA1091213047 Ref C: 2024-04-25T07:06:04Z' + - 'Ref A: 1F98D2987C184BFB9429D0B4EF394605 Ref B: CO6AA3150218037 Ref C: 2024-04-30T10:48:55Z' status: code: 200 message: OK @@ -2549,7 +2402,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875781544569611?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/08584871327839943196?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -2561,7 +2414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:06:35 GMT + - Tue, 30 Apr 2024 10:49:26 GMT expires: - '-1' pragma: @@ -2573,7 +2426,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: ABD9A7F12B1F451F84FD45EC529C1088 Ref B: DM2AA1091214053 Ref C: 2024-04-25T07:06:35Z' + - 'Ref A: D0CEAB26FCA44DB89A49A61291C4BF3D Ref B: CO6AA3150219021 Ref C: 2024-04-30T10:49:26Z' status: code: 200 message: OK @@ -2594,7 +2447,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875781544569611?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/08584871327839943196?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -2606,7 +2459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:06 GMT + - Tue, 30 Apr 2024 10:49:57 GMT expires: - '-1' pragma: @@ -2618,7 +2471,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DF364ABAFF3F4879AFA68F9655E9227C Ref B: DM2AA1091211035 Ref C: 2024-04-25T07:07:06Z' + - 'Ref A: 8E34FF9ACC664C53856F6AD7417BD389 Ref B: CO6AA3150219051 Ref C: 2024-04-30T10:49:56Z' status: code: 200 message: OK @@ -2642,8 +2495,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_1714028725", - "name": "AOSM_CLI_deployment_1714028725", "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_1714474096", + "name": "AOSM_CLI_deployment_1714474096", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "15824080055511440865", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": @@ -2651,8 +2504,8 @@ interactions: "String", "value": "ubuntu-blob-store"}, "nfDefinitionGroup": {"type": "String", "value": "ubuntu-vm"}, "nfDefinitionVersion": {"type": "String", "value": "1.0.0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": - "2024-04-25T07:06:56.4140411Z", "duration": "PT1M23.5634258S", "correlationId": - "0cb1f718-05b4-42c1-977f-611f2b791fca", "providers": [{"namespace": "Microsoft.HybridNetwork", + "2024-04-30T10:49:51.2952889Z", "duration": "PT1M27.6222969S", "correlationId": + "3ad6ad79-9242-4ea4-9832-9ef8b39fca72", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0"}]}}' @@ -2664,7 +2517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:07 GMT + - Tue, 30 Apr 2024 10:49:57 GMT expires: - '-1' pragma: @@ -2676,7 +2529,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A1D54484CF754A46B5896C8126C2A1FB Ref B: DM2AA1091211051 Ref C: 2024-04-25T07:07:07Z' + - 'Ref A: 833132E39F86497486F4DE6C1CA98F9F Ref B: CO6AA3150219031 Ref C: 2024-04-30T10:49:57Z' status: code: 200 message: OK @@ -2703,9 +2556,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/networkFunctionDefinitionGroups/ubuntu-vm/networkFunctionDefinitionVersions/1.0.0", "name": "1.0.0", "type": "microsoft.hybridnetwork/publishers/networkfunctiondefinitiongroups/networkfunctiondefinitionversions", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T07:05:36.044329Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-30T10:48:27.6500396Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2024-04-25T07:05:36.044329Z"}, "properties": {"networkFunctionTemplate": + "2024-04-30T10:48:27.6500396Z"}, "properties": {"networkFunctionTemplate": {"networkFunctionApplications": [{"artifactProfile": {"vhdArtifactProfile": {"vhdName": "automated-cli-tests-vhd", "vhdVersion": "1-0-0"}, "artifactStore": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-blob-store"}}, @@ -2725,13 +2578,13 @@ interactions: cache-control: - no-cache content-length: - - '2891' + - '2893' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:07 GMT + - Tue, 30 Apr 2024 10:49:58 GMT etag: - - '"fb00417c-0000-1100-0000-662a00ce0000"' + - '"0702f3e5-0000-1100-0000-6630cc8a0000"' expires: - '-1' pragma: @@ -2745,7 +2598,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: 1CBAC0F2BAF648F4962DEF12A5AD93D4 Ref B: SN4AA2022304053 Ref C: 2024-04-25T07:07:08Z' + - 'Ref A: FF3DFE03C8E146CBABF2C36B339A5FF2 Ref B: CO6AA3150219029 Ref C: 2024-04-30T10:49:58Z' status: code: 200 message: OK @@ -2776,7 +2629,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:07:07 GMT + - Tue, 30 Apr 2024 10:49:58 GMT expires: - '-1' pragma: @@ -2788,7 +2641,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 021E4BAC5AE14762A284AEA1228D8394 Ref B: DM2AA1091211023 Ref C: 2024-04-25T07:07:08Z' + - 'Ref A: 47ABC7B435B545E39D4C2CA4F01CA60A Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:49:58Z' status: code: 204 message: No Content @@ -2815,9 +2668,9 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher", "name": "automated-cli-tests-ubuntu-publisher", "type": "microsoft.hybridnetwork/publishers", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T06:59:19.9678149Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-30T10:42:09.4557548Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": - "2024-04-25T06:59:19.9678149Z"}, "properties": {"scope": "Private", "provisioningState": + "2024-04-30T10:42:09.4557548Z"}, "properties": {"scope": "Private", "provisioningState": "Succeeded"}}' headers: cache-control: @@ -2827,9 +2680,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:08 GMT + - Tue, 30 Apr 2024 10:49:59 GMT etag: - - '"f700c53a-0000-1100-0000-6629ff580000"' + - '"e5018e19-0000-1100-0000-6630cb160000"' expires: - '-1' pragma: @@ -2843,7 +2696,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: A19C7C4466AC49F98D09047097C0A330 Ref B: DM2AA1091213053 Ref C: 2024-04-25T07:07:09Z' + - 'Ref A: 081B28C59D3643778BE09E4868DF28AC Ref B: CO6AA3150220029 Ref C: 2024-04-30T10:49:58Z' status: code: 200 message: OK @@ -2870,12 +2723,12 @@ interactions: string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr", "name": "ubuntu-acr", "type": "microsoft.hybridnetwork/publishers/artifactstores", "location": "uksouth", "systemData": {"createdBy": "xxxxxxxxxxx@microsoft.com", - "createdByType": "User", "createdAt": "2024-04-25T07:00:44.4981207Z", "lastModifiedBy": + "createdByType": "User", "createdAt": "2024-04-30T10:43:33.4436326Z", "lastModifiedBy": "xxxxxxxxxxx@microsoft.com", "lastModifiedByType": "Application", "lastModifiedAt": - "2024-04-25T07:05:49.7534576Z"}, "properties": {"storeType": "AzureContainerRegistry", + "2024-04-30T10:48:42.5007488Z"}, "properties": {"storeType": "AzureContainerRegistry", "replicationStrategy": "SingleReplication", "managedResourceGroupConfiguration": - {"name": "ubuntu-acr-HostedResources-3C66DA2D", "location": "uksouth"}, "provisioningState": - "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-3C66DA2D/providers/Microsoft.ContainerRegistry/registries/AutomatedCliTestsUbuntuPublisherUbuntuAc2cb2294f0a"}}' + {"name": "ubuntu-acr-HostedResources-040F988D", "location": "uksouth"}, "provisioningState": + "Succeeded", "storageResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ubuntu-acr-HostedResources-040F988D/providers/Microsoft.ContainerRegistry/registries/AutomatedCliTestsUbuntuPublisherUbuntuAce646428645"}}' headers: cache-control: - no-cache @@ -2884,9 +2737,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:09 GMT + - Tue, 30 Apr 2024 10:49:59 GMT etag: - - '"0700aaa5-0000-1000-0000-662a00cd0000"' + - '"0e0096c7-0000-1000-0000-6630cc8a0000"' expires: - '-1' pragma: @@ -2900,7 +2753,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-msedge-ref: - - 'Ref A: 5A3C9C73DF3E4243A33943D0EC3399C8 Ref B: SN4AA2022302029 Ref C: 2024-04-25T07:07:09Z' + - 'Ref A: 05A415ACE1574517A0199C0E1F1DC1B8 Ref B: CO6AA3150217019 Ref C: 2024-04-30T10:49:59Z' status: code: 200 message: OK @@ -2935,7 +2788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:10 GMT + - Tue, 30 Apr 2024 10:49:59 GMT expires: - '-1' pragma: @@ -2949,7 +2802,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 482F82890EFF4BCFB04F01B12DE4F38D Ref B: SN4AA2022302047 Ref C: 2024-04-25T07:07:10Z' + - 'Ref A: D0A69113355449619263FD57DFA3733D Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:50:00Z' status: code: 404 message: Not Found @@ -2997,15 +2850,15 @@ 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_1714028831", - "name": "AOSM_CLI_deployment_1714028831", "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_1714474203", + "name": "AOSM_CLI_deployment_1714474203", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "66ee077a-3de1-420f-9509-a4454ec2570c", "providers": [{"namespace": "Microsoft.HybridNetwork", + "b3acf619-3e71-4729-87d9-ba524a409041", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -3030,7 +2883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:15 GMT + - Tue, 30 Apr 2024 10:50:05 GMT expires: - '-1' pragma: @@ -3044,7 +2897,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B7CDB0AA834F4792AE39455FC2888EA9 Ref B: SN4AA2022305051 Ref C: 2024-04-25T07:07:13Z' + - 'Ref A: F408323127F641618578A25B7F2D427F Ref B: CO6AA3150217033 Ref C: 2024-04-30T10:50:02Z' status: code: 200 message: OK @@ -3092,15 +2945,15 @@ 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_1714028831", - "name": "AOSM_CLI_deployment_1714028831", "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_1714474203", + "name": "AOSM_CLI_deployment_1714474203", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2024-04-25T07:07:20.2630297Z", "duration": "PT0.005192S", "correlationId": - "d6fcd613-d0eb-4920-b661-9d541555b289", "providers": [{"namespace": "Microsoft.HybridNetwork", + "timestamp": "2024-04-30T10:50:10.6883452Z", "duration": "PT0.0009884S", "correlationId": + "7ac9eb50-52b0-4cce-8b7c-caa0ddc61cbd", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": ["uksouth"]}]}], "dependencies": @@ -3116,15 +2969,15 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/ubuntu"}]}}' 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_1714028831/operationStatuses/08584875780473530896?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_1714474203/operationStatuses/08584871326770317531?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2411' + - '2412' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:20 GMT + - Tue, 30 Apr 2024 10:50:10 GMT expires: - '-1' pragma: @@ -3138,7 +2991,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B842BDD69FED4F6285CB2DA0E2805C3D Ref B: DM2AA1091212021 Ref C: 2024-04-25T07:07:15Z' + - 'Ref A: 27F9B50DD03945AE90B93511F40FE4D5 Ref B: CO6AA3150220023 Ref C: 2024-04-30T10:50:06Z' status: code: 201 message: Created @@ -3159,7 +3012,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3171,7 +3024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:21 GMT + - Tue, 30 Apr 2024 10:50:12 GMT expires: - '-1' pragma: @@ -3183,7 +3036,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F6BF5E380A9540E489E1780E8643213C Ref B: DM2AA1091212021 Ref C: 2024-04-25T07:07:21Z' + - 'Ref A: 07DE1F9757914EC2B8B3237A8E0AE950 Ref B: CO6AA3150218019 Ref C: 2024-04-30T10:50:11Z' status: code: 200 message: OK @@ -3204,7 +3057,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3216,7 +3069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:07:51 GMT + - Tue, 30 Apr 2024 10:50:42 GMT expires: - '-1' pragma: @@ -3228,7 +3081,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FE078DC007F049289B43F77C03D7B27A Ref B: DM2AA1091213051 Ref C: 2024-04-25T07:07:52Z' + - 'Ref A: 515C429B6F564026BAC1C9F373746FE9 Ref B: CO6AA3150218047 Ref C: 2024-04-30T10:50:42Z' status: code: 200 message: OK @@ -3249,7 +3102,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3261,7 +3114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:08:22 GMT + - Tue, 30 Apr 2024 10:51:13 GMT expires: - '-1' pragma: @@ -3273,7 +3126,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: BFF4C9D4A0164E258109001FEC579944 Ref B: SN4AA2022305027 Ref C: 2024-04-25T07:08:22Z' + - 'Ref A: 577876E1CBFE4796B81E036A640BD6CC Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:51:13Z' status: code: 200 message: OK @@ -3294,7 +3147,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3306,7 +3159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:08:53 GMT + - Tue, 30 Apr 2024 10:51:43 GMT expires: - '-1' pragma: @@ -3318,7 +3171,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: F37B08129FEA4745991B738D82E8B910 Ref B: SN4AA2022304033 Ref C: 2024-04-25T07:08:53Z' + - 'Ref A: 3BF6F0F046164AD0AED4E28DA0AAEEF1 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:51:44Z' status: code: 200 message: OK @@ -3339,7 +3192,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3351,7 +3204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:09:24 GMT + - Tue, 30 Apr 2024 10:52:14 GMT expires: - '-1' pragma: @@ -3363,7 +3216,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 01461FE7D02C48BE80F6AA5F5967D9DA Ref B: DM2AA1091211031 Ref C: 2024-04-25T07:09:24Z' + - 'Ref A: 39A5243F2E3E47D89CF48B4B3DE3368F Ref B: CO6AA3150220031 Ref C: 2024-04-30T10:52:14Z' status: code: 200 message: OK @@ -3384,7 +3237,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3396,7 +3249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:09:55 GMT + - Tue, 30 Apr 2024 10:52:46 GMT expires: - '-1' pragma: @@ -3408,7 +3261,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 753EA290A7894D0DA025BDBF7B97F3FE Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:09:55Z' + - 'Ref A: 490D2964B5D84FAF9048D1D2BB37B364 Ref B: CO6AA3150220021 Ref C: 2024-04-30T10:52:45Z' status: code: 200 message: OK @@ -3429,7 +3282,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3441,7 +3294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:10:26 GMT + - Tue, 30 Apr 2024 10:53:16 GMT expires: - '-1' pragma: @@ -3453,7 +3306,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 2C0A04CF70C8483E83367C4307228DC6 Ref B: DM2AA1091213031 Ref C: 2024-04-25T07:10:26Z' + - 'Ref A: 1E23B72EF28C4CFEB2FA097B65883102 Ref B: CO6AA3150218021 Ref C: 2024-04-30T10:53:16Z' status: code: 200 message: OK @@ -3474,7 +3327,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3486,7 +3339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:10:56 GMT + - Tue, 30 Apr 2024 10:53:47 GMT expires: - '-1' pragma: @@ -3498,7 +3351,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E37CAE94210B401BBA8C4B109AB32D74 Ref B: SN4AA2022302049 Ref C: 2024-04-25T07:10:57Z' + - 'Ref A: 3E7244F92BCD42678EF21792FE9C7EFB Ref B: CO6AA3150217033 Ref C: 2024-04-30T10:53:47Z' status: code: 200 message: OK @@ -3519,7 +3372,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875780473530896?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/08584871326770317531?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3531,7 +3384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:28 GMT + - Tue, 30 Apr 2024 10:54:17 GMT expires: - '-1' pragma: @@ -3543,7 +3396,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: C14D62CB8AF14D9884FC2863BB612313 Ref B: DM2AA1091211051 Ref C: 2024-04-25T07:11:27Z' + - 'Ref A: C3600D2701AC428CB51B2EC286033419 Ref B: CO6AA3150218037 Ref C: 2024-04-30T10:54:18Z' status: code: 200 message: OK @@ -3567,15 +3420,15 @@ 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_1714028831", - "name": "AOSM_CLI_deployment_1714028831", "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_1714474203", + "name": "AOSM_CLI_deployment_1714474203", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "7209447708351625668", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "nsDesignGroup": {"type": "String", "value": "ubuntu"}}, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2024-04-25T07:11:08.8137339Z", "duration": "PT3M48.5558962S", - "correlationId": "d6fcd613-d0eb-4920-b661-9d541555b289", "providers": [{"namespace": + "timestamp": "2024-04-30T10:54:02.8864077Z", "duration": "PT3M52.1990509S", + "correlationId": "7ac9eb50-52b0-4cce-8b7c-caa0ddc61cbd", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers", "locations": ["uksouth"]}, {"resourceType": "publishers/artifactStores", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups", "locations": @@ -3600,7 +3453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:28 GMT + - Tue, 30 Apr 2024 10:54:19 GMT expires: - '-1' pragma: @@ -3612,7 +3465,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 26140364CB764C60A86CB339613B7805 Ref B: DM2AA1091214011 Ref C: 2024-04-25T07:11:28Z' + - 'Ref A: 9FD924A67F554B56A63F268E25224566 Ref B: CO6AA3150217035 Ref C: 2024-04-30T10:54:18Z' status: code: 200 message: OK @@ -3647,7 +3500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:29 GMT + - Tue, 30 Apr 2024 10:54:18 GMT expires: - '-1' pragma: @@ -3661,7 +3514,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: A4480317D2D240B3AF8211388214C0D1 Ref B: DM2AA1091212027 Ref C: 2024-04-25T07:11:29Z' + - 'Ref A: 290C045AC8B04C1E88BF9B8774A5399F Ref B: CO6AA3150219039 Ref C: 2024-04-30T10:54:19Z' status: code: 404 message: Not Found @@ -3704,15 +3557,15 @@ 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_1714029091", - "name": "AOSM_CLI_deployment_1714029091", "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_1714474462", + "name": "AOSM_CLI_deployment_1714474462", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": "Succeeded", "timestamp": "0001-01-01T00:00:00Z", "duration": "PT0S", "correlationId": - "810201d2-df3e-4330-a608-911f259b54d3", "providers": [{"namespace": "Microsoft.HybridNetwork", + "92c855c3-3566-41ea-b358-16c2798aa321", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "validatedResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -3724,7 +3577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:35 GMT + - Tue, 30 Apr 2024 10:54:24 GMT expires: - '-1' pragma: @@ -3738,7 +3591,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 117F982E82FE4CAF9EF0FDE564EC549C Ref B: DM2AA1091214019 Ref C: 2024-04-25T07:11:33Z' + - 'Ref A: F7839E90DF8B44889A01657EC6CE50A9 Ref B: CO6AA3150219031 Ref C: 2024-04-30T10:54:21Z' status: code: 200 message: OK @@ -3781,20 +3634,20 @@ 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_1714029091", - "name": "AOSM_CLI_deployment_1714029091", "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_1714474462", + "name": "AOSM_CLI_deployment_1714474462", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Accepted", "timestamp": "2024-04-25T07:11:39.7436449Z", "duration": "PT0.0002067S", - "correlationId": "b9bd9891-c1f4-45d1-baa8-f31fa3e66823", "providers": [{"namespace": + "Accepted", "timestamp": "2024-04-30T10:54:28.7703717Z", "duration": "PT0.0008564S", + "correlationId": "a5e969ce-9a49-4831-b711-e1056a7ba74a", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "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_1714029091/operationStatuses/08584875777874917392?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_1714474462/operationStatuses/08584871324188150889?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -3802,7 +3655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:39 GMT + - Tue, 30 Apr 2024 10:54:29 GMT expires: - '-1' pragma: @@ -3816,7 +3669,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 20737CAACF6F47F9A0353C09AAB5CFC5 Ref B: SN4AA2022304025 Ref C: 2024-04-25T07:11:36Z' + - 'Ref A: 28989FF8C8074E3C9A88B81D4486CEB7 Ref B: CO6AA3150217025 Ref C: 2024-04-30T10:54:25Z' status: code: 201 message: Created @@ -3837,19 +3690,19 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875777874917392?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/08584871324188150889?api-version=2022-09-01 response: body: - string: '{"status": "Running"}' + string: '{"status": "Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:11:40 GMT + - Tue, 30 Apr 2024 10:54:29 GMT expires: - '-1' pragma: @@ -3861,7 +3714,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B727475D526D4976A0839918174ACF04 Ref B: SN4AA2022305009 Ref C: 2024-04-25T07:11:40Z' + - 'Ref A: 3A89491CC9A640E48D702E9D99B66992 Ref B: CO6AA3150219047 Ref C: 2024-04-30T10:54:29Z' status: code: 200 message: OK @@ -3882,7 +3735,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875777874917392?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/08584871324188150889?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3894,7 +3747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:12:11 GMT + - Tue, 30 Apr 2024 10:55:00 GMT expires: - '-1' pragma: @@ -3906,7 +3759,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D89EAFA62EBF497E827FA5AD6460F99A Ref B: DM2AA1091212019 Ref C: 2024-04-25T07:12:11Z' + - 'Ref A: 0B5035ECAB0444C2839551D95B809AF1 Ref B: CO6AA3150217019 Ref C: 2024-04-30T10:55:00Z' status: code: 200 message: OK @@ -3927,7 +3780,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875777874917392?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/08584871324188150889?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -3939,7 +3792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:12:42 GMT + - Tue, 30 Apr 2024 10:55:31 GMT expires: - '-1' pragma: @@ -3951,7 +3804,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 3AC245C2B7AF4DFAA358C1D24FBD49E4 Ref B: DM2AA1091213037 Ref C: 2024-04-25T07:12:42Z' + - 'Ref A: 18E941633E4D48C8849D98EC3D8FBAD0 Ref B: CO6AA3150220023 Ref C: 2024-04-30T10:55:31Z' status: code: 200 message: OK @@ -3972,7 +3825,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875777874917392?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/08584871324188150889?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -3984,7 +3837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:13 GMT + - Tue, 30 Apr 2024 10:56:02 GMT expires: - '-1' pragma: @@ -3996,7 +3849,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 451AEC05A83E42E0968A1C66AD61B5C2 Ref B: SN4AA2022302019 Ref C: 2024-04-25T07:13:13Z' + - 'Ref A: A1620ACF81DE4C8DB53C15A6FA74BA91 Ref B: CO6AA3150220031 Ref C: 2024-04-30T10:56:01Z' status: code: 200 message: OK @@ -4020,15 +3873,15 @@ 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_1714029091", - "name": "AOSM_CLI_deployment_1714029091", "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_1714474462", + "name": "AOSM_CLI_deployment_1714474462", "type": "Microsoft.Resources/deployments", "properties": {"templateHash": "2863414179742292638", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "acrArtifactStoreName": {"type": "String", "value": "ubuntu-acr"}, "acrManifestName": {"type": "String", "value": "ubuntu-nsd-manifest-1-0-0"}}, "mode": "Incremental", "provisioningState": - "Succeeded", "timestamp": "2024-04-25T07:13:05.7307437Z", "duration": "PT1M25.9873055S", - "correlationId": "b9bd9891-c1f4-45d1-baa8-f31fa3e66823", "providers": [{"namespace": + "Succeeded", "timestamp": "2024-04-30T10:55:56.519388Z", "duration": "PT1M27.7498727S", + "correlationId": "a5e969ce-9a49-4831-b711-e1056a7ba74a", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/artifactStores/artifactManifests", "locations": ["uksouth"]}]}], "dependencies": [], "outputResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.HybridNetwork/publishers/automated-cli-tests-ubuntu-publisher/artifactStores/ubuntu-acr/artifactManifests/ubuntu-nsd-manifest-1-0-0"}]}}' @@ -4036,11 +3889,11 @@ interactions: cache-control: - no-cache content-length: - - '1263' + - '1262' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:13 GMT + - Tue, 30 Apr 2024 10:56:02 GMT expires: - '-1' pragma: @@ -4052,7 +3905,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7409EB1927254120A01663E95D2895C1 Ref B: SN4AA2022304031 Ref C: 2024-04-25T07:13:14Z' + - 'Ref A: EFAFED13222149209F3CD5E0CB59CCB3 Ref B: CO6AA3150220027 Ref C: 2024-04-30T10:56:02Z' status: code: 200 message: OK @@ -4079,8 +3932,8 @@ interactions: response: body: string: '{"username": "ubuntu-nsd-manifest-1-0-0", "acrToken": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", - "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io", - "repositories": ["ubuntu"], "expiry": "2024-04-26T07:13:19.2627546+00:00", + "acrServerUrl": "https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io", + "repositories": ["ubuntu"], "expiry": "2024-05-01T10:56:07.6055732+00:00", "credentialType": "AzureContainerRegistryScopedToken"}' headers: cache-control: @@ -4090,7 +3943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:19 GMT + - Tue, 30 Apr 2024 10:56:08 GMT expires: - '-1' pragma: @@ -4108,7 +3961,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 4BF4E14C9AE245C7A4C0D3EE4907D270 Ref B: SN4AA2022305027 Ref C: 2024-04-25T07:13:17Z' + - 'Ref A: 56EF45F609B841649F0DC331095183E9 Ref B: CO6AA3150218047 Ref C: 2024-04-30T10:56:05Z' status: code: 200 message: OK @@ -4128,7 +3981,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4148,7 +4001,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:20 GMT + - Tue, 30 Apr 2024 10:56:08 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4157,7 +4010,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -4173,11 +4026,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4187,7 +4040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:20 GMT + - Tue, 30 Apr 2024 10:56:09 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4215,7 +4068,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -4230,13 +4083,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:13:21 GMT + - Tue, 30 Apr 2024 10:56:09 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 5bd79d66-6697-49a0-bcf1-1b1fa92a1a61 + - 976e1b74-c813-4fac-8c6b-2d17be2efeaa location: - - /v2/ubuntu/blobs/uploads/5bd79d66-6697-49a0-bcf1-1b1fa92a1a61?_nouploadcache=false&_state=0Hsj4hhj6Lr0z55niV93PvFQlgz6rhdVUBXvW9vZf2h7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWJkNzlkNjYtNjY5Ny00OWEwLWJjZjEtMWIxZmE5MmExYTYxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIxLjI3MzQyNDM0MloifQ%3D%3D + - /v2/ubuntu/blobs/uploads/976e1b74-c813-4fac-8c6b-2d17be2efeaa?_nouploadcache=false&_state=WpwRnbUlLxTGmJ16Di39e-orU_dUXnXZX6xO94o37_V7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiOTc2ZTFiNzQtYzgxMy00ZmFjLThjNmItMmQxN2JlMmVmZWFhIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTMwVDEwOjU2OjA5LjkwNjY0NDYzNVoifQ%3D%3D range: - 0-0 server: @@ -4286,7 +4139,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/5bd79d66-6697-49a0-bcf1-1b1fa92a1a61?_nouploadcache=false&_state=0Hsj4hhj6Lr0z55niV93PvFQlgz6rhdVUBXvW9vZf2h7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWJkNzlkNjYtNjY5Ny00OWEwLWJjZjEtMWIxZmE5MmExYTYxIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIxLjI3MzQyNDM0MloifQ%3D%3D&digest=sha256%3A5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/976e1b74-c813-4fac-8c6b-2d17be2efeaa?_nouploadcache=false&_state=WpwRnbUlLxTGmJ16Di39e-orU_dUXnXZX6xO94o37_V7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiOTc2ZTFiNzQtYzgxMy00ZmFjLThjNmItMmQxN2JlMmVmZWFhIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTMwVDEwOjU2OjA5LjkwNjY0NDYzNVoifQ%3D%3D&digest=sha256%3A5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 response: body: string: '' @@ -4301,7 +4154,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:13:21 GMT + - Tue, 30 Apr 2024 10:56:10 GMT docker-content-digest: - sha256:5a70ffcd7cb26333cc6ce712458642da234a2da0605c202775b4400588ca4166 docker-distribution-api-version: @@ -4334,7 +4187,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4354,7 +4207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:22 GMT + - Tue, 30 Apr 2024 10:56:11 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4363,7 +4216,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:push,pull" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:ubuntu:pull,push" x-content-type-options: - nosniff status: @@ -4379,11 +4232,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apush%2Cpull + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4393,7 +4246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:22 GMT + - Tue, 30 Apr 2024 10:56:11 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4401,7 +4254,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.316667' + - '333.3' status: code: 200 message: OK @@ -4421,7 +4274,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: POST - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/ + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/ response: body: string: '' @@ -4436,13 +4289,13 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:13:23 GMT + - Tue, 30 Apr 2024 10:56:12 GMT docker-distribution-api-version: - registry/2.0 docker-upload-uuid: - - 5d628ee0-2730-4b52-8cb3-8ad363b1537e + - bf01e208-177e-4289-a3eb-15295a191c6a location: - - /v2/ubuntu/blobs/uploads/5d628ee0-2730-4b52-8cb3-8ad363b1537e?_nouploadcache=false&_state=W29Rfq4k52ZPY71_dAqLabIwvn-bNhyRAxIPGuDfQYx7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWQ2MjhlZTAtMjczMC00YjUyLThjYjMtOGFkMzYzYjE1MzdlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIzLjQ0OTMyOTA3M1oifQ%3D%3D + - /v2/ubuntu/blobs/uploads/bf01e208-177e-4289-a3eb-15295a191c6a?_nouploadcache=false&_state=s2x_qJ1jW8KnO9MnVGo1-0mBaCPLeOru4U0ebtjhOmh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiYmYwMWUyMDgtMTc3ZS00Mjg5LWEzZWItMTUyOTVhMTkxYzZhIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTMwVDEwOjU2OjEyLjIyMjE5NzQ4MloifQ%3D%3D range: - 0-0 server: @@ -4471,7 +4324,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/blobs/uploads/5d628ee0-2730-4b52-8cb3-8ad363b1537e?_nouploadcache=false&_state=W29Rfq4k52ZPY71_dAqLabIwvn-bNhyRAxIPGuDfQYx7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiNWQ2MjhlZTAtMjczMC00YjUyLThjYjMtOGFkMzYzYjE1MzdlIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTI1VDA3OjEzOjIzLjQ0OTMyOTA3M1oifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/blobs/uploads/bf01e208-177e-4289-a3eb-15295a191c6a?_nouploadcache=false&_state=s2x_qJ1jW8KnO9MnVGo1-0mBaCPLeOru4U0ebtjhOmh7Ik5hbWUiOiJ1YnVudHUiLCJVVUlEIjoiYmYwMWUyMDgtMTc3ZS00Mjg5LWEzZWItMTUyOTVhMTkxYzZhIiwiT2Zmc2V0IjowLCJTdGFydGVkQXQiOiIyMDI0LTA0LTMwVDEwOjU2OjEyLjIyMjE5NzQ4MloifQ%3D%3D&digest=sha256%3A44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a response: body: string: '' @@ -4486,7 +4339,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:13:24 GMT + - Tue, 30 Apr 2024 10:56:12 GMT docker-content-digest: - sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a docker-distribution-api-version: @@ -4525,7 +4378,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -4545,7 +4398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:24 GMT + - Tue, 30 Apr 2024 10:56:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -4554,7 +4407,7 @@ interactions: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains www-authenticate: - - Bearer realm="https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io",scope="repository:ubuntu:pull,push" + - Bearer realm="https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token",service="automatedclitestsubuntupublisherubuntuace646428645.azurecr.io",scope="repository:ubuntu:push,pull" x-content-type-options: - nosniff status: @@ -4570,11 +4423,11 @@ interactions: Connection: - keep-alive Service: - - automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io + - automatedclitestsubuntupublisherubuntuace646428645.azurecr.io User-Agent: - oras-py method: GET - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io&scope=repository%3Aubuntu%3Apull%2Cpush + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/oauth2/token?service=automatedclitestsubuntupublisherubuntuace646428645.azurecr.io&scope=repository%3Aubuntu%3Apush%2Cpull response: body: string: '{"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}' @@ -4584,7 +4437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:25 GMT + - Tue, 30 Apr 2024 10:56:13 GMT server: - AzureContainerRegistry strict-transport-security: @@ -4592,7 +4445,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '333.3' + - '333.316667' status: code: 200 message: OK @@ -4618,7 +4471,7 @@ interactions: User-Agent: - python-requests/2.31.0 method: PUT - uri: https://automatedclitestsubuntupublisherubuntuac2cb2294f0a.azurecr.io/v2/ubuntu/manifests/1.0.0 + uri: https://automatedclitestsubuntupublisherubuntuace646428645.azurecr.io/v2/ubuntu/manifests/1.0.0 response: body: string: '' @@ -4633,7 +4486,7 @@ interactions: content-length: - '0' date: - - Thu, 25 Apr 2024 07:13:26 GMT + - Tue, 30 Apr 2024 10:56:14 GMT docker-content-digest: - sha256:af1388b6ce985243feeb696d1140b41318b4032856531d64cd1929e7e9131ffd docker-distribution-api-version: @@ -4653,7 +4506,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.170.59819", "templateHash": "17477381229800961119"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "9252910439095697196"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4708,7 +4561,7 @@ interactions: Connection: - keep-alive Content-Length: - - '4149' + - '4148' Content-Type: - application/json ParameterSetName: @@ -4720,16 +4573,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/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_1714029207", - "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "17477381229800961119", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714474577", + "name": "AOSM_CLI_deployment_1714474577", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "9252910439095697196", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "0001-01-01T00:00:00Z", "duration": - "PT0S", "correlationId": "cf6b1f78-ea49-4738-8626-5e8afbdd2aee", "providers": + "PT0S", "correlationId": "ddae97c8-4fde-475a-ae2e-be4d74053fd7", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4745,11 +4598,11 @@ interactions: cache-control: - no-cache content-length: - - '2505' + - '2504' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:30 GMT + - Tue, 30 Apr 2024 10:56:20 GMT expires: - '-1' pragma: @@ -4763,14 +4616,14 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: FD73DA99F09D4C9498478CBD3358C1E4 Ref B: DM2AA1091211035 Ref C: 2024-04-25T07:13:28Z' + - 'Ref A: 3DB651241E4447988F874EE699E80501 Ref B: CO6AA3150219027 Ref C: 2024-04-30T10:56:16Z' status: code: 200 message: OK - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": {"_generator": {"name": "bicep", "version": - "0.26.170.59819", "templateHash": "17477381229800961119"}}, "parameters": {"location": + "0.26.170.59819", "templateHash": "9252910439095697196"}}, "parameters": {"location": {"type": "string"}, "publisherName": {"type": "string", "metadata": {"description": "Name of an existing publisher, expected to be in the resource group where you deploy the template"}}, "acrArtifactStoreName": {"type": "string", "metadata": @@ -4825,7 +4678,7 @@ interactions: Connection: - keep-alive Content-Length: - - '4149' + - '4148' Content-Type: - application/json ParameterSetName: @@ -4837,16 +4690,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_1714029207", - "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "17477381229800961119", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714474577", + "name": "AOSM_CLI_deployment_1714474577", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "9252910439095697196", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-25T07:13:35.1470111Z", - "duration": "PT0.0003838S", "correlationId": "f62f7ed8-381d-458c-bf5e-6c131f3ff32b", + "provisioningState": "Accepted", "timestamp": "2024-04-30T10:56:25.2098829Z", + "duration": "PT0.0005288S", "correlationId": "a7e6485a-34bf-40af-ace3-71df02d21f41", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -4858,15 +4711,15 @@ interactions: "resourceName": "automated-cli-tests-ubuntu-publisher/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_1714029207/operationStatuses/08584875776725085321?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_1714474577/operationStatuses/08584871323025628943?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2015' + - '2014' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:35 GMT + - Tue, 30 Apr 2024 10:56:26 GMT expires: - '-1' pragma: @@ -4880,7 +4733,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 26CED4D9B3704974B3181B63E55B8BB4 Ref B: SN4AA2022302037 Ref C: 2024-04-25T07:13:31Z' + - 'Ref A: D7351D613C1C48E09AE0D046A6E1F449 Ref B: CO6AA3150218037 Ref C: 2024-04-30T10:56:20Z' status: code: 201 message: Created @@ -4901,19 +4754,19 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875776725085321?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/08584871323025628943?api-version=2022-09-01 response: body: - string: '{"status": "Running"}' + string: '{"status": "Accepted"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:13:36 GMT + - Tue, 30 Apr 2024 10:56:25 GMT expires: - '-1' pragma: @@ -4925,7 +4778,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D7B40411746E46578406C5673178D495 Ref B: DM2AA1091211031 Ref C: 2024-04-25T07:13:36Z' + - 'Ref A: 762F06C3989143D9AE9C5FD1A573FF9E Ref B: CO6AA3150218019 Ref C: 2024-04-30T10:56:26Z' status: code: 200 message: OK @@ -4946,7 +4799,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875776725085321?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/08584871323025628943?api-version=2022-09-01 response: body: string: '{"status": "Running"}' @@ -4958,7 +4811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:14:06 GMT + - Tue, 30 Apr 2024 10:56:56 GMT expires: - '-1' pragma: @@ -4970,7 +4823,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 70601460CE3048E8929C6C188702DEDD Ref B: SN4AA2022304027 Ref C: 2024-04-25T07:14:06Z' + - 'Ref A: 26E97A2979144F859575C65BBC8DDD37 Ref B: CO6AA3150217021 Ref C: 2024-04-30T10:56:56Z' status: code: 200 message: OK @@ -4991,7 +4844,7 @@ interactions: - AZURECLI/2.59.0.post20240417071921 azsdk-python-core/1.30.1 Python/3.10.12 (Linux-5.15.146.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) 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/08584875776725085321?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/08584871323025628943?api-version=2022-09-01 response: body: string: '{"status": "Succeeded"}' @@ -5003,7 +4856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:14:37 GMT + - Tue, 30 Apr 2024 10:57:27 GMT expires: - '-1' pragma: @@ -5015,7 +4868,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 71ED59C06A4E43DB967E16EC5B4B6082 Ref B: SN4AA2022303031 Ref C: 2024-04-25T07:14:37Z' + - 'Ref A: 78451BEB421042DDB15669EE93F0131E Ref B: CO6AA3150219021 Ref C: 2024-04-30T10:57:27Z' status: code: 200 message: OK @@ -5039,16 +4892,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_1714029207", - "name": "AOSM_CLI_deployment_1714029207", "type": "Microsoft.Resources/deployments", - "properties": {"templateHash": "17477381229800961119", "parameters": {"location": + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vnf_nsd_000001/providers/Microsoft.Resources/deployments/AOSM_CLI_deployment_1714474577", + "name": "AOSM_CLI_deployment_1714474577", "type": "Microsoft.Resources/deployments", + "properties": {"templateHash": "9252910439095697196", "parameters": {"location": {"type": "String", "value": "uksouth"}, "publisherName": {"type": "String", "value": "automated-cli-tests-ubuntu-publisher"}, "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": "2024-04-25T07:14:28.2323566Z", - "duration": "PT53.0857293S", "correlationId": "f62f7ed8-381d-458c-bf5e-6c131f3ff32b", + "provisioningState": "Succeeded", "timestamp": "2024-04-30T10:57:19.1231395Z", + "duration": "PT53.9137854S", "correlationId": "a7e6485a-34bf-40af-ace3-71df02d21f41", "providers": [{"namespace": "Microsoft.HybridNetwork", "resourceTypes": [{"resourceType": "publishers/configurationGroupSchemas", "locations": ["uksouth"]}, {"resourceType": "publishers/networkServiceDesignGroups/networkServiceDesignVersions", "locations": @@ -5064,11 +4917,11 @@ interactions: cache-control: - no-cache content-length: - - '2519' + - '2518' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Apr 2024 07:14:37 GMT + - Tue, 30 Apr 2024 10:57:28 GMT expires: - '-1' pragma: @@ -5080,7 +4933,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B2C52376C30F425A92B9BBA876FD9F2B Ref B: DM2AA1091214049 Ref C: 2024-04-25T07:14:38Z' + - 'Ref A: 886742CDFA0541E8A739193E01097A88 Ref B: CO6AA3150219037 Ref C: 2024-04-30T10:57:28Z' status: code: 200 message: OK diff --git a/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py b/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py new file mode 100644 index 00000000000..317a0eb7132 --- /dev/null +++ b/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py @@ -0,0 +1,106 @@ +import unittest +from unittest.mock import Mock, patch +from azext_aosm.definition_folder.reader.bicep_definition import BicepDefinitionElement +from azure.core.exceptions import ResourceNotFoundError +from azext_aosm.configuration_models.common_parameters_config import ( + CoreVNFCommonParametersConfig, + CNFCommonParametersConfig, + NexusVNFCommonParametersConfig, + NSDCommonParametersConfig, +) + +class TestBicepDefinitionElement(unittest.TestCase): + @patch('azext_aosm.definition_folder.reader.bicep_definition.azure_exceptions.ResourceNotFoundError', new_callable=ResourceNotFoundError) + def setUp(self, mock_exception): + self.command_context = Mock() + self.config = Mock() + self.mock_exception = mock_exception + + self.resources = { + "cnf": CNFCommonParametersConfig( + location="test_location", + acrManifestName="test_acr_manifest", + nfDefinitionVersion="test_nf_version", + publisherResourceGroupName="test_resource_group", + publisherName="test_publisher", + acrArtifactStoreName="test_acr_store", + nfDefinitionGroup="test_nf_group", + ), + "vnf": CoreVNFCommonParametersConfig( + location="test_location", + publisherResourceGroupName="test_resource_group", + publisherName="test_publisher", + acrArtifactStoreName="test_acr_store", + acrManifestName="test_acr_manifest", + saArtifactStoreName="test_sa_store", + saManifestName="test_sa_manifest", + nfDefinitionGroup="test_nf_group", + nfDefinitionVersion="test_nf_version", + ), + "nexus_vnf": NexusVNFCommonParametersConfig( + location="test_location", + nfDefinitionVersion="test_nf_version", + acrManifestName="test_acr_manifest", + publisherResourceGroupName="test_resource_group", + publisherName="test_publisher", + acrArtifactStoreName="test_acr_store", + nfDefinitionGroup="test_nf_group", + ), + "nsd": NSDCommonParametersConfig( + location="test_location", + publisherResourceGroupName="test_resource_group", + publisherName="test_publisher", + acrArtifactStoreName="test_acr_store", + acrManifestName="test_acr_manifest", + nsDesignGroup="test_ns_group", + nsDesignVersion="test_ns_version", + nfviSiteName="test_nfvi_site", + ), + } + + def test_base_resources_exist_all_exist(self): + for resource_type, config in self.resources.items(): + with self.subTest(resource_type=resource_type): + self.command_context.reset_mock() + result = BicepDefinitionElement._base_resources_exist(config, self.command_context) + self.assertTrue(result) + + def test_base_resources_exist_few_base_resources_missing(self): + for resource_type, config in self.resources.items(): + with self.subTest(resource_type=resource_type): + self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_all_base_resources_missing_cnf(self): + self.config = self.resources["cnf"] + self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception + self.command_context.aosm_client.artifact_stores.get.side_effect = self.mock_exception + self.command_context.aosm_client.network_function_definition_groups.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_all_base_resources_missing_vnf(self): + self.config = self.resources["vnf"] + self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception + self.command_context.aosm_client.artifact_stores.get.side_effect = self.mock_exception + self.command_context.aosm_client.network_function_definition_groups.get.side_effect = self.mock_exception + self.command_context.aosm_client.storage_accounts.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_all_base_resources_missing_nexus_vnf(self): + self.config = self.resources["nexus_vnf"] + self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception + self.command_context.aosm_client.artifact_stores.get.side_effect = self.mock_exception + self.command_context.aosm_client.network_function_definition_groups.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_all_base_resources_missing_nsd(self): + self.config = self.resources["nsd"] + self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception + self.command_context.aosm_client.artifact_stores.get.side_effect = self.mock_exception + self.command_context.aosm_client.network_service_design_groups.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) \ No newline at end of file From 8bf19af630e2f68e8ad142a17b0e0652bb82610b Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Tue, 30 Apr 2024 05:20:33 -0700 Subject: [PATCH 16/17] REsolving style errors --- src/aosm/azext_aosm/inputs/helm_chart_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aosm/azext_aosm/inputs/helm_chart_input.py b/src/aosm/azext_aosm/inputs/helm_chart_input.py index 0e5fc50c3cf..b69a350c482 100644 --- a/src/aosm/azext_aosm/inputs/helm_chart_input.py +++ b/src/aosm/azext_aosm/inputs/helm_chart_input.py @@ -136,7 +136,7 @@ def from_chart_path( unpacked_chart_path = extract_tarfile(chart_path, temp_dir) name, version = HelmChartInput._get_name_and_version(unpacked_chart_path) - + shutil.rmtree(temp_dir) logger.debug("Deleted temporary directory %s", temp_dir) From d3434244d0f1d00d4b3795bbd25518405163d711 Mon Sep 17 00:00:00 2001 From: rkaraddi Date: Tue, 30 Apr 2024 07:06:37 -0700 Subject: [PATCH 17/17] Adding more test cases --- .../test_bicep_definition.py | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py b/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py index 317a0eb7132..50b09be2229 100644 --- a/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py +++ b/src/aosm/azext_aosm/tests/latest/unit_test/test_definiton_folder_builder/test_bicep_definition.py @@ -65,13 +65,40 @@ def test_base_resources_exist_all_exist(self): result = BicepDefinitionElement._base_resources_exist(config, self.command_context) self.assertTrue(result) - def test_base_resources_exist_few_base_resources_missing(self): + def test_base_resources_exist_publisher_missing(self): for resource_type, config in self.resources.items(): with self.subTest(resource_type=resource_type): self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception result = BicepDefinitionElement._base_resources_exist(config, self.command_context) self.assertFalse(result) + def test_base_resources_exist_artifact_store_missing(self): + for resource_type, config in self.resources.items(): + with self.subTest(resource_type=resource_type): + self.command_context.aosm_client.artifact_stores.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_nfd_group_missing(self): + for resource_type, config in self.resources.items(): + if(resource_type != "nsd"): + with self.subTest(resource_type=resource_type): + self.command_context.aosm_client.network_function_definition_groups.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_sa_store_missing_vnf(self): + self.config = self.resources["vnf"] + self.command_context.aosm_client.storage_accounts.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) + + def test_base_resources_exist_nsd_group_missing(self): + self.config = self.resources["nsd"] + self.command_context.aosm_client.network_service_design_groups.get.side_effect = self.mock_exception + result = BicepDefinitionElement._base_resources_exist(self.config, self.command_context) + self.assertFalse(result) + def test_base_resources_exist_all_base_resources_missing_cnf(self): self.config = self.resources["cnf"] self.command_context.aosm_client.publishers.get.side_effect = self.mock_exception